pax_global_header00006660000000000000000000000064150712226500014512gustar00rootroot0000000000000052 comment=7708026449bed86239b1cd5bce6e3c34dbca6415 tree-sitter-yaml-0.7.2/000077500000000000000000000000001507122265000147275ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/.editorconfig000066400000000000000000000010351507122265000174030ustar00rootroot00000000000000root = true [*] charset = utf-8 [*.{json,toml,yml,gyp}] indent_style = space indent_size = 2 [*.js] indent_style = space indent_size = 2 [*.scm] indent_style = space indent_size = 2 [*.{c,cc,h}] indent_style = space indent_size = 4 [*.rs] indent_style = space indent_size = 4 [*.{py,pyi}] indent_style = space indent_size = 4 [*.swift] indent_style = space indent_size = 4 [*.go] indent_style = tab indent_size = 8 [Makefile] indent_style = tab indent_size = 8 [parser.c] indent_size = 2 [{alloc,array,parser}.h] indent_size = 2 tree-sitter-yaml-0.7.2/.gitattributes000066400000000000000000000016551507122265000176310ustar00rootroot00000000000000* text=auto eol=lf # Generated source files src/*.json linguist-generated src/parser.c linguist-generated src/tree_sitter/* linguist-generated # C bindings bindings/c/** linguist-generated CMakeLists.txt linguist-generated Makefile linguist-generated # Rust bindings bindings/rust/* linguist-generated Cargo.toml linguist-generated Cargo.lock linguist-generated # Node.js bindings bindings/node/* linguist-generated binding.gyp linguist-generated package.json linguist-generated package-lock.json linguist-generated # Python bindings bindings/python/** linguist-generated setup.py linguist-generated pyproject.toml linguist-generated # Go bindings bindings/go/* linguist-generated go.mod linguist-generated go.sum linguist-generated # Swift bindings bindings/swift/** linguist-generated Package.swift linguist-generated Package.resolved linguist-generated # Zig bindings build.zig linguist-generated build.zig.zon linguist-generated tree-sitter-yaml-0.7.2/.github/000077500000000000000000000000001507122265000162675ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/.github/dependabot.yml000066400000000000000000000002351507122265000211170ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" commit-message: prefix: "ci" tree-sitter-yaml-0.7.2/.github/workflows/000077500000000000000000000000001507122265000203245ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/.github/workflows/ci.yml000066400000000000000000000027331507122265000214470ustar00rootroot00000000000000name: CI on: push: branches: [master] paths: - grammar.js - src/** - test/** - bindings/** - binding.gyp pull_request: paths: - grammar.js - src/** - test/** - bindings/** - binding.gyp concurrency: group: ${{github.workflow}}-${{github.ref}} cancel-in-progress: true jobs: test: name: Test parsers runs-on: ${{matrix.os}} strategy: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] steps: - name: Checkout repository uses: actions/checkout@v4 with: submodules: true - name: Set up tree-sitter uses: tree-sitter/setup-action/cli@v2 - name: Run tests uses: tree-sitter/parser-test-action@v2 with: generate: false test-rust: true - name: Set up test suite shell: bash run: |- printf '%s\n' examples/*.yaml > "$RUNNER_TEMP/test-files" while read -r file; do printf '%s\n' "$file" >> "$RUNNER_TEMP/test-files" if [[ -f ${file/in.yaml/error} ]]; then printf '%s\n' "$file" >> "$RUNNER_TEMP/invalid-files" fi done < <(find -L examples/yaml-test-suite/name -name in.yaml) - name: Parse test suite uses: tree-sitter/parse-action@v4 with: files-list: ${{runner.temp}}/test-files invalid-files-list: ${{runner.temp}}/invalid-files tree-sitter-yaml-0.7.2/.github/workflows/fuzz.yml000066400000000000000000000007361507122265000220530ustar00rootroot00000000000000name: Fuzz on: push: branches: [master] paths: - src/schema.core.c - src/scanner.c pull_request: paths: - src/schema.core.c - src/scanner.c concurrency: group: ${{github.workflow}}-${{github.ref}} cancel-in-progress: true jobs: fuzz: name: Fuzz scanner runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Run fuzzer uses: tree-sitter/fuzz-action@v4 tree-sitter-yaml-0.7.2/.github/workflows/lint.yml000066400000000000000000000007771507122265000220300ustar00rootroot00000000000000name: Lint on: push: branches: [master] paths: - grammar.js pull_request: paths: - grammar.js jobs: lint: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Node.js uses: actions/setup-node@v4 with: cache: npm node-version: ${{vars.NODE_VERSION}} - name: Install modules run: npm ci --legacy-peer-deps - name: Run ESLint run: npm run lint tree-sitter-yaml-0.7.2/.github/workflows/publish.yml000066400000000000000000000013431507122265000225160ustar00rootroot00000000000000name: Publish package on: push: tags: ["*"] permissions: contents: write id-token: write attestations: write jobs: github: uses: tree-sitter/workflows/.github/workflows/release.yml@main with: attestations: true npm: uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main secrets: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} with: package-name: "@tree-sitter-grammars/tree-sitter-yaml" crates: uses: tree-sitter/workflows/.github/workflows/package-crates.yml@main secrets: CARGO_REGISTRY_TOKEN: ${{secrets.CARGO_TOKEN}} pypi: uses: tree-sitter/workflows/.github/workflows/package-pypi.yml@main secrets: PYPI_API_TOKEN: ${{secrets.PYPI_TOKEN}} tree-sitter-yaml-0.7.2/.gitignore000066400000000000000000000006011507122265000167140ustar00rootroot00000000000000# Rust artifacts target/ # Node artifacts build/ prebuilds/ node_modules/ # Swift artifacts .build/ # Go artifacts _obj/ # Python artifacts .venv/ dist/ *.egg-info *.whl # C artifacts *.a *.so *.so.* *.dylib *.dll *.pc *.exp *.lib # Zig artifacts .zig-cache/ zig-cache/ zig-out/ # Example dirs /examples/*/ # Grammar volatiles *.wasm *.obj *.o # Archives *.tar.gz *.tgz *.zip tree-sitter-yaml-0.7.2/.gitmodules000066400000000000000000000002151507122265000171020ustar00rootroot00000000000000[submodule "yaml-test-suite"] path = examples/yaml-test-suite url = https://github.com/yaml/yaml-test-suite branch = data shallow = true tree-sitter-yaml-0.7.2/CMakeLists.txt000066400000000000000000000062031507122265000174700ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.13) project(tree-sitter-yaml VERSION "0.7.2" DESCRIPTION "YAML grammar for tree-sitter" HOMEPAGE_URL "https://github.com/tree-sitter-grammars/tree-sitter-yaml" LANGUAGES C) option(BUILD_SHARED_LIBS "Build using shared libraries" ON) option(TREE_SITTER_REUSE_ALLOCATOR "Reuse the library allocator" OFF) set(TREE_SITTER_ABI_VERSION 14 CACHE STRING "Tree-sitter ABI version") if(NOT ${TREE_SITTER_ABI_VERSION} MATCHES "^[0-9]+$") unset(TREE_SITTER_ABI_VERSION CACHE) message(FATAL_ERROR "TREE_SITTER_ABI_VERSION must be an integer") endif() find_program(TREE_SITTER_CLI tree-sitter DOC "Tree-sitter CLI") add_custom_command(OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/src/parser.c" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/grammar.json" COMMAND "${TREE_SITTER_CLI}" generate src/grammar.json --abi=${TREE_SITTER_ABI_VERSION} WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" COMMENT "Generating parser.c") add_library(tree-sitter-yaml src/parser.c) if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/src/scanner.c) target_sources(tree-sitter-yaml PRIVATE src/scanner.c) endif() target_include_directories(tree-sitter-yaml PRIVATE src INTERFACE $ $) set(YAML_SCHEMA core CACHE STRING "YAML schema") set(YAML_SCHEMA_VALUES core json legacy CACHE INTERNAL "Allowed schemas") set_property(CACHE YAML_SCHEMA PROPERTY STRINGS ${YAML_SCHEMA_VALUES}) if(NOT YAML_SCHEMA IN_LIST YAML_SCHEMA_VALUES) message(FATAL_ERROR "YAML_SCHEMA must be one of ${YAML_SCHEMA_VALUES}") endif() target_compile_definitions(tree-sitter-yaml PRIVATE $<$:TREE_SITTER_REUSE_ALLOCATOR> $<$:TREE_SITTER_DEBUG> YAML_SCHEMA=${YAML_SCHEMA}) set_target_properties(tree-sitter-yaml PROPERTIES C_STANDARD 11 POSITION_INDEPENDENT_CODE ON SOVERSION "${TREE_SITTER_ABI_VERSION}.${PROJECT_VERSION_MAJOR}" DEFINE_SYMBOL "") configure_file(bindings/c/tree-sitter-yaml.pc.in "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-yaml.pc" @ONLY) include(GNUInstallDirs) install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bindings/c/tree_sitter" DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" FILES_MATCHING PATTERN "*.h") install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-yaml.pc" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig") install(TARGETS tree-sitter-yaml LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}") file(GLOB QUERIES queries/*.scm) install(FILES ${QUERIES} DESTINATION "${CMAKE_INSTALL_DATADIR}/tree-sitter/queries/yaml") add_custom_target(ts-test "${TREE_SITTER_CLI}" test WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" COMMENT "tree-sitter test") tree-sitter-yaml-0.7.2/Cargo.lock000066400000000000000000000127651507122265000166470ustar00rootroot00000000000000# This file is automatically @generated by Cargo. # It is not intended for manual editing. version = 4 [[package]] name = "aho-corasick" version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] [[package]] name = "cc" version = "1.2.39" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f" dependencies = [ "find-msvc-tools", "shlex", ] [[package]] name = "equivalent" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "find-msvc-tools" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ced73b1dacfc750a6db6c0a0c3a3853c8b41997e2e2c563dc90804ae6867959" [[package]] name = "hashbrown" version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" [[package]] name = "indexmap" version = "2.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" dependencies = [ "equivalent", "hashbrown", ] [[package]] name = "itoa" version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" [[package]] name = "memchr" version = "2.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" [[package]] name = "proc-macro2" version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" dependencies = [ "unicode-ident", ] [[package]] name = "quote" version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" dependencies = [ "proc-macro2", ] [[package]] name = "regex" version = "1.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" dependencies = [ "aho-corasick", "memchr", "regex-automata", "regex-syntax", ] [[package]] name = "regex-automata" version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" dependencies = [ "aho-corasick", "memchr", "regex-syntax", ] [[package]] name = "regex-syntax" version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" [[package]] name = "ryu" version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] name = "serde" version = "1.0.227" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80ece43fc6fbed4eb5392ab50c07334d3e577cbf40997ee896fe7af40bba4245" dependencies = [ "serde_core", ] [[package]] name = "serde_core" version = "1.0.227" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a576275b607a2c86ea29e410193df32bc680303c82f31e275bbfcafe8b33be5" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" version = "1.0.227" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51e694923b8824cf0e9b382adf0f60d4e05f348f357b38833a3fa5ed7c2ede04" dependencies = [ "proc-macro2", "quote", "syn", ] [[package]] name = "serde_json" version = "1.0.145" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" dependencies = [ "indexmap", "itoa", "memchr", "ryu", "serde", "serde_core", ] [[package]] name = "shlex" version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "streaming-iterator" version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520" [[package]] name = "syn" version = "2.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" dependencies = [ "proc-macro2", "quote", "unicode-ident", ] [[package]] name = "tree-sitter" version = "0.25.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d7b8994f367f16e6fa14b5aebbcb350de5d7cbea82dc5b00ae997dd71680dd2" dependencies = [ "cc", "regex", "regex-syntax", "serde_json", "streaming-iterator", "tree-sitter-language", ] [[package]] name = "tree-sitter-language" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8" [[package]] name = "tree-sitter-yaml" version = "0.7.2" dependencies = [ "cc", "tree-sitter", "tree-sitter-language", ] [[package]] name = "unicode-ident" version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" tree-sitter-yaml-0.7.2/Cargo.toml000066400000000000000000000013641507122265000166630ustar00rootroot00000000000000[package] name = "tree-sitter-yaml" description = "YAML grammar for tree-sitter" version = "0.7.2" authors = ["Ika ", "Amaan Qureshi "] license = "MIT" readme = "README.md" keywords = ["incremental", "parsing", "tree-sitter", "yaml"] categories = ["parser-implementations", "parsing", "text-editors"] repository = "https://github.com/tree-sitter-grammars/tree-sitter-yaml" edition = "2021" autoexamples = false build = "bindings/rust/build.rs" include = [ "bindings/rust/*", "grammar.js", "queries/*", "src/*", "tree-sitter.json", "/LICENSE", ] [lib] path = "bindings/rust/lib.rs" [dependencies] tree-sitter-language = "0.1" [build-dependencies] cc = "1.2" [dev-dependencies] tree-sitter = "0.25.4" tree-sitter-yaml-0.7.2/LICENSE000066400000000000000000000021211507122265000157300ustar00rootroot00000000000000Copyright (c) 2024 tree-sitter-grammars contributors Copyright (c) 2019-2021 Ika Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. tree-sitter-yaml-0.7.2/Makefile000066400000000000000000000067331507122265000164000ustar00rootroot00000000000000ifeq ($(OS),Windows_NT) $(error Windows is not supported) endif LANGUAGE_NAME := tree-sitter-yaml HOMEPAGE_URL := https://github.com/tree-sitter-grammars/tree-sitter-yaml VERSION := 0.7.2 # repository SRC_DIR := src TS ?= tree-sitter # install directory layout PREFIX ?= /usr/local DATADIR ?= $(PREFIX)/share INCLUDEDIR ?= $(PREFIX)/include LIBDIR ?= $(PREFIX)/lib PCLIBDIR ?= $(LIBDIR)/pkgconfig # source/object files PARSER := $(SRC_DIR)/parser.c EXTRAS := $(SRC_DIR)/scanner.c OBJS := $(patsubst %.c,%.o,$(PARSER) $(EXTRAS)) # schema YAML_SCHEMA := core ifeq ($(filter $(YAML_SCHEMA),core json legacy),) $(error YAML_SCHEMA must be one of core/json/legacy) endif # flags ARFLAGS ?= rcs override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC -DYAML_SCHEMA=$(YAML_SCHEMA) # ABI versioning SONAME_MAJOR = $(shell sed -n 's/\#define LANGUAGE_VERSION //p' $(PARSER)) SONAME_MINOR = $(word 1,$(subst ., ,$(VERSION))) # OS-specific bits ifeq ($(shell uname),Darwin) SOEXT = dylib SOEXTVER_MAJOR = $(SONAME_MAJOR).$(SOEXT) SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).$(SOEXT) LINKSHARED = -dynamiclib -Wl,-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SOEXTVER),-rpath,@executable_path/../Frameworks else SOEXT = so SOEXTVER_MAJOR = $(SOEXT).$(SONAME_MAJOR) SOEXTVER = $(SOEXT).$(SONAME_MAJOR).$(SONAME_MINOR) LINKSHARED = -shared -Wl,-soname,lib$(LANGUAGE_NAME).$(SOEXTVER) endif ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) PCLIBDIR := $(PREFIX)/libdata/pkgconfig endif all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a: $(OBJS) $(AR) $(ARFLAGS) $@ $^ lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ ifneq ($(STRIP),) $(STRIP) $@ endif $(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in sed -e 's|@PROJECT_VERSION@|$(VERSION)|' \ -e 's|@CMAKE_INSTALL_LIBDIR@|$(LIBDIR:$(PREFIX)/%=%)|' \ -e 's|@CMAKE_INSTALL_INCLUDEDIR@|$(INCLUDEDIR:$(PREFIX)/%=%)|' \ -e 's|@PROJECT_DESCRIPTION@|$(DESCRIPTION)|' \ -e 's|@PROJECT_HOMEPAGE_URL@|$(HOMEPAGE_URL)|' \ -e 's|@CMAKE_INSTALL_PREFIX@|$(PREFIX)|' $< > $@ $(PARSER): $(SRC_DIR)/grammar.json $(TS) generate $^ install: all install -d '$(DESTDIR)$(DATADIR)'/tree-sitter/queries/yaml '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' install -m644 bindings/c/tree_sitter/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc install -m644 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) install -m644 queries/*.scm '$(DESTDIR)$(DATADIR)'/tree-sitter/queries/yaml uninstall: $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) \ '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) \ '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc $(RM) -r '$(DESTDIR)$(DATADIR)'/tree-sitter/queries/yaml clean: $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) test: $(TS) test .PHONY: all install uninstall clean test tree-sitter-yaml-0.7.2/Package.resolved000066400000000000000000000011431507122265000200260ustar00rootroot00000000000000{ "object": { "pins": [ { "package": "SwiftTreeSitter", "repositoryURL": "https://github.com/tree-sitter/swift-tree-sitter", "state": { "branch": null, "revision": "36aa61d1b531f744f35229f010efba9c6d6cbbdd", "version": "0.9.0" } }, { "package": "TreeSitter", "repositoryURL": "https://github.com/tree-sitter/tree-sitter", "state": { "branch": null, "revision": "d97db6d63507eb62c536bcb2c4ac7d70c8ec665e", "version": "0.23.2" } } ] }, "version": 1 } tree-sitter-yaml-0.7.2/Package.swift000066400000000000000000000021151507122265000173370ustar00rootroot00000000000000// swift-tools-version:5.3 import Foundation import PackageDescription var sources = ["src/parser.c"] if FileManager.default.fileExists(atPath: "src/scanner.c") { sources.append("src/scanner.c") } let package = Package( name: "TreeSitterYAML", products: [ .library(name: "TreeSitterYAML", targets: ["TreeSitterYAML"]), ], dependencies: [ .package(name: "SwiftTreeSitter", url: "https://github.com/tree-sitter/swift-tree-sitter", from: "0.9.0"), ], targets: [ .target( name: "TreeSitterYAML", dependencies: [], path: ".", sources: sources, resources: [ .copy("queries") ], publicHeadersPath: "bindings/swift", cSettings: [.headerSearchPath("src")] ), .testTarget( name: "TreeSitterYAMLTests", dependencies: [ "SwiftTreeSitter", "TreeSitterYAML", ], path: "bindings/swift/TreeSitterYAMLTests" ) ], cLanguageStandard: .c11 ) tree-sitter-yaml-0.7.2/README.md000066400000000000000000000020731507122265000162100ustar00rootroot00000000000000# tree-sitter-yaml [![CI][ci]](https://github.com/tree-sitter-grammars/tree-sitter-yaml/actions) [![discord][discord]](https://discord.gg/w7nTvsVJhm) [![matrix][matrix]](https://matrix.to/#/#tree-sitter-chat:matrix.org) [![npm][npm]](https://www.npmjs.com/package/@tree-sitter-grammars/tree-sitter-yaml) [![crates][crates]](https://crates.io/crates/tree-sitter-yaml) [![pypi][pypi]](https://pypi.org/project/tree-sitter-yaml/) A tree-sitter parser for YAML files. ## References - [YAML version 1.2](https://yaml.org/spec/1.2.2/) [ci]: https://img.shields.io/github/actions/workflow/status/tree-sitter-grammars/tree-sitter-yaml/ci.yml?logo=github&label=CI [discord]: https://img.shields.io/discord/1063097320771698699?logo=discord&label=discord [matrix]: https://img.shields.io/matrix/tree-sitter-chat%3Amatrix.org?logo=matrix&label=matrix [npm]: https://img.shields.io/npm/v/%40tree-sitter-grammars%2Ftree-sitter-yaml?logo=npm [crates]: https://img.shields.io/crates/v/tree-sitter-yaml?logo=rust [pypi]: https://img.shields.io/pypi/v/tree-sitter-yaml?logo=pypi&logoColor=ffd242 tree-sitter-yaml-0.7.2/binding.gyp000066400000000000000000000013731507122265000170660ustar00rootroot00000000000000{ "targets": [ { "target_name": "tree_sitter_yaml_binding", "dependencies": [ " typedef struct TSLanguage TSLanguage; extern "C" TSLanguage *tree_sitter_yaml(); // "tree-sitter", "language" hashed with BLAKE2 const napi_type_tag LANGUAGE_TYPE_TAG = { 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 }; Napi::Object Init(Napi::Env env, Napi::Object exports) { auto language = Napi::External::New(env, tree_sitter_yaml()); language.TypeTag(&LANGUAGE_TYPE_TAG); exports["language"] = language; return exports; } NODE_API_MODULE(tree_sitter_yaml_binding, Init) tree-sitter-yaml-0.7.2/bindings/node/binding_test.js000066400000000000000000000003721507122265000224620ustar00rootroot00000000000000const assert = require("node:assert"); const { test } = require("node:test"); const Parser = require("tree-sitter"); test("can load grammar", () => { const parser = new Parser(); assert.doesNotThrow(() => parser.setLanguage(require("."))); }); tree-sitter-yaml-0.7.2/bindings/node/index.d.ts000066400000000000000000000006641507122265000213600ustar00rootroot00000000000000type BaseNode = { type: string; named: boolean; }; type ChildNode = { multiple: boolean; required: boolean; types: BaseNode[]; }; type NodeInfo = | (BaseNode & { subtypes: BaseNode[]; }) | (BaseNode & { fields: { [name: string]: ChildNode }; children: ChildNode[]; }); type Language = { language: unknown; nodeTypeInfo: NodeInfo[]; }; declare const language: Language; export = language; tree-sitter-yaml-0.7.2/bindings/node/index.js000066400000000000000000000010111507122265000211070ustar00rootroot00000000000000const root = require('path').join(__dirname, '..', '..'); module.exports = typeof process.versions.bun === 'string' ? // Support `bun build --compile` by being statically analyzable enough to find the .node file at build-time require(`../../prebuilds/${process.platform}-${process.arch}/@tree-sitter-grammars+tree-sitter-yaml.node`) : require('node-gyp-build')(root); try { module.exports.nodeTypeInfo = require('../../src/node-types.json'); // eslint-disable-next-line no-unused-vars } catch (_) { } tree-sitter-yaml-0.7.2/bindings/python/000077500000000000000000000000001507122265000200455ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/bindings/python/tests/000077500000000000000000000000001507122265000212075ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/bindings/python/tests/test_binding.py000066400000000000000000000004721507122265000242350ustar00rootroot00000000000000from unittest import TestCase from tree_sitter import Language, Parser import tree_sitter_yaml class TestLanguage(TestCase): def test_can_load_grammar(self): try: Parser(Language(tree_sitter_yaml.language())) except Exception: self.fail("Error loading YAML grammar") tree-sitter-yaml-0.7.2/bindings/python/tree_sitter_yaml/000077500000000000000000000000001507122265000234205ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/bindings/python/tree_sitter_yaml/__init__.py000066400000000000000000000013201507122265000255250ustar00rootroot00000000000000"""YAML grammar for tree-sitter""" from importlib.resources import files as _files from ._binding import language def _get_query(name, file): query = _files(f"{__package__}.queries") / file globals()[name] = query.read_text() return globals()[name] def __getattr__(name): if name == "HIGHLIGHTS_QUERY": return _get_query("HIGHLIGHTS_QUERY", "highlights.scm") raise AttributeError(f"module {__name__!r} has no attribute {name!r}") __all__ = [ "language", "HIGHLIGHTS_QUERY", ] def __dir__(): return sorted(__all__ + [ "__all__", "__builtins__", "__cached__", "__doc__", "__file__", "__loader__", "__name__", "__package__", "__path__", "__spec__", ]) tree-sitter-yaml-0.7.2/bindings/python/tree_sitter_yaml/__init__.pyi000066400000000000000000000001261507122265000257010ustar00rootroot00000000000000from typing import Final HIGHLIGHTS_QUERY: Final[str] def language() -> object: ... tree-sitter-yaml-0.7.2/bindings/python/tree_sitter_yaml/binding.c000066400000000000000000000015001507122265000251720ustar00rootroot00000000000000#include typedef struct TSLanguage TSLanguage; TSLanguage *tree_sitter_yaml(void); static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args)) { return PyCapsule_New(tree_sitter_yaml(), "tree_sitter.Language", NULL); } static struct PyModuleDef_Slot slots[] = { #ifdef Py_GIL_DISABLED {Py_mod_gil, Py_MOD_GIL_NOT_USED}, #endif {0, NULL} }; static PyMethodDef methods[] = { {"language", _binding_language, METH_NOARGS, "Get the tree-sitter language for this grammar."}, {NULL, NULL, 0, NULL} }; static struct PyModuleDef module = { .m_base = PyModuleDef_HEAD_INIT, .m_name = "_binding", .m_doc = NULL, .m_size = 0, .m_methods = methods, .m_slots = slots, }; PyMODINIT_FUNC PyInit__binding(void) { return PyModuleDef_Init(&module); } tree-sitter-yaml-0.7.2/bindings/python/tree_sitter_yaml/py.typed000066400000000000000000000000001507122265000251050ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/bindings/rust/000077500000000000000000000000001507122265000175215ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/bindings/rust/build.rs000066400000000000000000000014241507122265000211670ustar00rootroot00000000000000fn main() { let src_dir = std::path::Path::new("src"); let mut c_config = cc::Build::new(); c_config.std("c11").include(src_dir); c_config .flag_if_supported("-Wno-unused-but-set-variable") .flag_if_supported("-Wno-unused-value") .flag_if_supported("-Wno-implicit-fallthrough"); #[cfg(target_env = "msvc")] c_config.flag("-utf-8"); let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); let scanner_path = src_dir.join("scanner.c"); if scanner_path.exists() { c_config.file(&scanner_path); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); } c_config.compile("tree-sitter-yaml"); } tree-sitter-yaml-0.7.2/bindings/rust/lib.rs000066400000000000000000000031231507122265000206340ustar00rootroot00000000000000//! This crate provides YAML language support for the [tree-sitter] parsing library. //! //! Typically, you will use the [`LANGUAGE`] constant to add this language to a //! tree-sitter [`Parser`], and then use the parser to parse some code: //! //! ``` //! let code = r#" //! key: value //! list: //! - item1 //! - item2 //! "#; //! let mut parser = tree_sitter::Parser::new(); //! let language = tree_sitter_yaml::LANGUAGE; //! parser //! .set_language(&language.into()) //! .expect("Error loading YAML parser"); //! let tree = parser.parse(code, None).unwrap(); //! assert!(!tree.root_node().has_error()); //! ``` //! //! [`Parser`]: https://docs.rs/tree-sitter/0.25.4/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ use tree_sitter_language::LanguageFn; extern "C" { fn tree_sitter_yaml() -> *const (); } /// The tree-sitter [`LanguageFn`] for this grammar. pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_yaml) }; /// The content of the [`node-types.json`] file for this grammar. /// /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers/6-static-node-types pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); /// The highlight queries for this grammar. pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); #[cfg(test)] mod tests { #[test] fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser .set_language(&super::LANGUAGE.into()) .expect("Error loading YAML parser"); } } tree-sitter-yaml-0.7.2/bindings/swift/000077500000000000000000000000001507122265000176605ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/bindings/swift/TreeSitterYAML/000077500000000000000000000000001507122265000224355ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/bindings/swift/TreeSitterYAML/yaml.h000066400000000000000000000003561507122265000235540ustar00rootroot00000000000000#ifndef TREE_SITTER_YAML_H_ #define TREE_SITTER_YAML_H_ typedef struct TSLanguage TSLanguage; #ifdef __cplusplus extern "C" { #endif const TSLanguage *tree_sitter_yaml(void); #ifdef __cplusplus } #endif #endif // TREE_SITTER_YAML_H_ tree-sitter-yaml-0.7.2/bindings/swift/TreeSitterYAMLTests/000077500000000000000000000000001507122265000234605ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/bindings/swift/TreeSitterYAMLTests/TreeSitterYAMLTests.swift000066400000000000000000000005471507122265000303440ustar00rootroot00000000000000import XCTest import SwiftTreeSitter import TreeSitterYAML final class TreeSitterYAMLTests: XCTestCase { func testCanLoadGrammar() throws { let parser = Parser() let language = Language(language: tree_sitter_yaml()) XCTAssertNoThrow(try parser.setLanguage(language), "Error loading YAML grammar") } } tree-sitter-yaml-0.7.2/eslint.config.mjs000066400000000000000000000001311507122265000201770ustar00rootroot00000000000000import treesitter from 'eslint-config-treesitter'; export default [ ...treesitter, ]; tree-sitter-yaml-0.7.2/examples/000077500000000000000000000000001507122265000165455ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/examples/invoice.yaml000066400000000000000000000012041507122265000210620ustar00rootroot00000000000000--- ! invoice: 34843 date : 2001-01-23 bill-to: &id001 given : Chris family : Dumars address: lines: | 458 Walkman Dr. Suite #292 city : Royal Oak state : MI postal : 48046 ship-to: *id001 product: - sku : BL394D quantity : 4 description : Basketball price : 450.00 - sku : BL4438H quantity : 1 description : Super Hoop price : 2392.00 tax : 251.42 total: 4443.52 comments: Late afternoon is best. Backup contact is Nancy Billsmer @ 338-4338. tree-sitter-yaml-0.7.2/examples/log-file.yaml000066400000000000000000000006361507122265000211340ustar00rootroot00000000000000--- Time: 2001-11-23 15:01:42 -5 User: ed Warning: This is an error message for the log file --- Time: 2001-11-23 15:02:31 -5 User: ed Warning: A slightly different error message. --- Date: 2001-11-23 15:03:17 -5 User: ed Fatal: Unknown variable "bar" Stack: - file: TopClass.py line: 23 code: | x = MoreObject("345\n") - file: MoreClass.py line: 58 code: |- foo = bar tree-sitter-yaml-0.7.2/examples/yaml-test-suite/000077500000000000000000000000001507122265000216135ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/go.mod000066400000000000000000000002601507122265000160330ustar00rootroot00000000000000module github.com/tree-sitter-grammars/tree-sitter-yaml go 1.22 require github.com/tree-sitter/go-tree-sitter v0.24.0 require github.com/mattn/go-pointer v0.0.1 // indirect tree-sitter-yaml-0.7.2/go.sum000066400000000000000000000101201507122265000160540ustar00rootroot00000000000000github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/mattn/go-pointer v0.0.1 h1:n+XhsuGeVO6MEAp7xyEukFINEa+Quek5psIR/ylA6o0= github.com/mattn/go-pointer v0.0.1/go.mod h1:2zXcozF6qYGgmsG+SeTZz3oAbFLdD3OWqnUbNvJZAlc= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/tree-sitter/go-tree-sitter v0.24.0 h1:kRZb6aBNfcI/u0Qh8XEt3zjNVnmxTisDBN+kXK0xRYQ= github.com/tree-sitter/go-tree-sitter v0.24.0/go.mod h1:x681iFVoLMEwOSIHA1chaLkXlroXEN7WY+VHGFaoDbk= github.com/tree-sitter/tree-sitter-c v0.21.5-0.20240818205408-927da1f210eb h1:A8425heRM8mylnv4H58FPUiH+aYivyitre0PzxrfmWs= github.com/tree-sitter/tree-sitter-c v0.21.5-0.20240818205408-927da1f210eb/go.mod h1:dOF6gtQiF9UwNh995T5OphYmtIypkjsp3ap7r9AN/iA= github.com/tree-sitter/tree-sitter-cpp v0.22.4-0.20240818224355-b1a4e2b25148 h1:AfFPZwtwGN01BW1jDdqBVqscTwetvMpydqYZz57RSlc= github.com/tree-sitter/tree-sitter-cpp v0.22.4-0.20240818224355-b1a4e2b25148/go.mod h1:Bh6U3viD57rFXRYIQ+kmiYtr+1Bx0AceypDLJJSyi9s= github.com/tree-sitter/tree-sitter-embedded-template v0.21.1-0.20240819044651-ffbf64942c33 h1:TwqSV3qLp3tKSqirGLRHnjFk9Tc2oy57LIl+FQ4GjI4= github.com/tree-sitter/tree-sitter-embedded-template v0.21.1-0.20240819044651-ffbf64942c33/go.mod h1:CvCKCt3v04Ufos1zZnNCelBDeCGRpPucaN8QczoUsN4= github.com/tree-sitter/tree-sitter-go v0.21.3-0.20240818010209-8c0f0e7a6012 h1:Xvxck3tE5FW7F7bTS97iNM2ADMyCMJztVqn5HYKdJGo= github.com/tree-sitter/tree-sitter-go v0.21.3-0.20240818010209-8c0f0e7a6012/go.mod h1:T40D0O1cPvUU/+AmiXVXy1cncYQT6wem4Z0g4SfAYvY= github.com/tree-sitter/tree-sitter-html v0.20.5-0.20240818004741-d11201a263d0 h1:c46K6uh5Dz00zJeU9BfjXdb8I+E4RkUdfnWJpQADXFo= github.com/tree-sitter/tree-sitter-html v0.20.5-0.20240818004741-d11201a263d0/go.mod h1:hcNt/kOJHcIcuMvouE7LJcYdeFUFbVpBJ6d4wmOA+tU= github.com/tree-sitter/tree-sitter-java v0.21.1-0.20240824015150-576d8097e495 h1:jrt4qbJVEFs4H93/ITxygHc6u0TGqAkkate7TQ4wFSA= github.com/tree-sitter/tree-sitter-java v0.21.1-0.20240824015150-576d8097e495/go.mod h1:oyaR7fLnRV0hT9z6qwE9GkaeTom/hTDwK3H2idcOJFc= github.com/tree-sitter/tree-sitter-javascript v0.21.5-0.20240818005344-15887341e5b5 h1:om4X9AVg3asL8gxNJDcz4e/Wp+VpQj1PY3uJXKr6EOg= github.com/tree-sitter/tree-sitter-javascript v0.21.5-0.20240818005344-15887341e5b5/go.mod h1:nNqgPoV/h9uYWk6kYEFdEAhNVOacpfpRW5SFmdaP4tU= github.com/tree-sitter/tree-sitter-json v0.21.1-0.20240818005659-bdd69eb8c8a5 h1:pfV3G3k7NCKqKk8THBmyuh2zA33lgYHS3GVrzRR8ry4= github.com/tree-sitter/tree-sitter-json v0.21.1-0.20240818005659-bdd69eb8c8a5/go.mod h1:GbMKRjLfk0H+PI7nLi1Sx5lHf5wCpLz9al8tQYSxpEk= github.com/tree-sitter/tree-sitter-php v0.22.9-0.20240819002312-a552625b56c1 h1:ZXZMDwE+IhUtGug4Brv6NjJWUU3rfkZBKpemf6RY8/g= github.com/tree-sitter/tree-sitter-php v0.22.9-0.20240819002312-a552625b56c1/go.mod h1:UKCLuYnJ312Mei+3cyTmGOHzn0YAnaPRECgJmHtzrqs= github.com/tree-sitter/tree-sitter-python v0.21.1-0.20240818005537-55a9b8a4fbfb h1:EXEM82lFM7JjJb6qiKZXkpIDaCcbV2obNn82ghwj9lw= github.com/tree-sitter/tree-sitter-python v0.21.1-0.20240818005537-55a9b8a4fbfb/go.mod h1:lXCF1nGG5Dr4J3BTS0ObN4xJCCICiSu/b+Xe/VqMV7g= github.com/tree-sitter/tree-sitter-ruby v0.21.1-0.20240818211811-7dbc1e2d0e2d h1:fcYCvoXdcP1uRQYXqJHRy6Hec+uKScQdKVtMwK9JeCI= github.com/tree-sitter/tree-sitter-ruby v0.21.1-0.20240818211811-7dbc1e2d0e2d/go.mod h1:T1nShQ4v5AJtozZ8YyAS4uzUtDAJj/iv4YfwXSbUHzg= github.com/tree-sitter/tree-sitter-rust v0.21.3-0.20240818005432-2b43eafe6447 h1:o9alBu1J/WjrcTKEthYtXmdkDc5OVXD+PqlvnEZ0Lzc= github.com/tree-sitter/tree-sitter-rust v0.21.3-0.20240818005432-2b43eafe6447/go.mod h1:1Oh95COkkTn6Ezp0vcMbvfhRP5gLeqqljR0BYnBzWvc= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= tree-sitter-yaml-0.7.2/grammar.js000066400000000000000000001020561507122265000167170ustar00rootroot00000000000000/** * @file YAML grammar for tree-sitter * @author Ika * @license MIT */ /// module.exports = grammar({ name: 'yaml', /* eslint-disable no-multi-spaces */ /* eslint-disable indent */ externals: $ => [ $._eof, // s = starts at column 0 in the current or following row // r = starts with 0 or more s_white in the current row // br = starts with more than `current_indent` s_white in the following row // b = starts with `current_indent` s_white in the following row // bl = starts with `parent_indent` or less s_white in the following row $._s_dir_yml_bgn, $._r_dir_yml_ver, // %YAML 1.2 $._s_dir_tag_bgn, $._r_dir_tag_hdl, $._r_dir_tag_pfx, // %TAG !yaml! tag:yaml.org,2002: $._s_dir_rsv_bgn, $._r_dir_rsv_prm, // %FOO bar baz $._s_drs_end, // --- $._s_doc_end, // ... $._r_blk_seq_bgn, $._br_blk_seq_bgn, $._b_blk_seq_bgn, // - $._r_blk_key_bgn, $._br_blk_key_bgn, $._b_blk_key_bgn, // ? $._r_blk_val_bgn, $._br_blk_val_bgn, $._b_blk_val_bgn, // : $._r_blk_imp_bgn, // : (implicit) $._r_blk_lit_bgn, $._br_blk_lit_bgn, // | $._r_blk_fld_bgn, $._br_blk_fld_bgn, // > $._br_blk_str_ctn, // block scalar content $._r_flw_seq_bgn, $._br_flw_seq_bgn, $._b_flw_seq_bgn, // [ $._r_flw_seq_end, $._br_flw_seq_end, $._b_flw_seq_end, // ] $._r_flw_map_bgn, $._br_flw_map_bgn, $._b_flw_map_bgn, // { $._r_flw_map_end, $._br_flw_map_end, $._b_flw_map_end, // } $._r_flw_sep_bgn, $._br_flw_sep_bgn, // , $._r_flw_key_bgn, $._br_flw_key_bgn, // ? $._r_flw_jsv_bgn, $._br_flw_jsv_bgn, // : (json key) $._r_flw_njv_bgn, $._br_flw_njv_bgn, // : (non-json key) $._r_dqt_str_bgn, $._br_dqt_str_bgn, $._b_dqt_str_bgn, // " (start) $._r_dqt_str_ctn, $._br_dqt_str_ctn, // double quote scalar content $._r_dqt_esc_nwl, $._br_dqt_esc_nwl, // escape newline $._r_dqt_esc_seq, $._br_dqt_esc_seq, // escape sequence $._r_dqt_str_end, $._br_dqt_str_end, // " (end) $._r_sqt_str_bgn, $._br_sqt_str_bgn, $._b_sqt_str_bgn, // ' (start) $._r_sqt_str_ctn, $._br_sqt_str_ctn, // single quote scalar content $._r_sqt_esc_sqt, $._br_sqt_esc_sqt, // '' $._r_sqt_str_end, $._br_sqt_str_end, // ' (end) // plain scalar (singleline in block/flow) $._r_sgl_pln_nul_blk, $._br_sgl_pln_nul_blk, $._b_sgl_pln_nul_blk, $._r_sgl_pln_nul_flw, $._br_sgl_pln_nul_flw, $._r_sgl_pln_bol_blk, $._br_sgl_pln_bol_blk, $._b_sgl_pln_bol_blk, $._r_sgl_pln_bol_flw, $._br_sgl_pln_bol_flw, $._r_sgl_pln_int_blk, $._br_sgl_pln_int_blk, $._b_sgl_pln_int_blk, $._r_sgl_pln_int_flw, $._br_sgl_pln_int_flw, $._r_sgl_pln_flt_blk, $._br_sgl_pln_flt_blk, $._b_sgl_pln_flt_blk, $._r_sgl_pln_flt_flw, $._br_sgl_pln_flt_flw, $._r_sgl_pln_tms_blk, $._br_sgl_pln_tms_blk, $._b_sgl_pln_tms_blk, $._r_sgl_pln_tms_flw, $._br_sgl_pln_tms_flw, $._r_sgl_pln_str_blk, $._br_sgl_pln_str_blk, $._b_sgl_pln_str_blk, $._r_sgl_pln_str_flw, $._br_sgl_pln_str_flw, // plain scalar (multiline in block/flow) $._r_mtl_pln_str_blk, $._br_mtl_pln_str_blk, $._r_mtl_pln_str_flw, $._br_mtl_pln_str_flw, $._r_tag, $._br_tag, $._b_tag, // !tag $._r_acr_bgn, $._br_acr_bgn, $._b_acr_bgn, $._r_acr_ctn, // &id $._r_als_bgn, $._br_als_bgn, $._b_als_bgn, $._r_als_ctn, // *id $._bl, $.comment, $._err_rec, ], /* eslint-enable no-multi-spaces */ /* eslint-enable indent */ extras: $ => [$.comment], conflicts: $ => [ [$._r_prp, $._r_sgl_prp], [$._br_prp, $._br_sgl_prp], [$._flw_seq_tal, $._sgl_flw_seq_tal], [$._flw_map_tal, $._sgl_flw_map_tal], [$._flw_ann_par_tal, $._sgl_flw_ann_par_tal], [$._r_flw_seq_itm, $._r_sgl_flw_col_itm], [$._r_flw_map_itm, $._r_sgl_flw_col_itm], [$._r_flw_njl_ann_par, $._r_sgl_flw_njl_ann_par], [$._r_flw_exp_par, $._r_sgl_flw_exp_par], [$._r_dqt_str, $._r_sgl_dqt_str], [$._r_sqt_str, $._r_sgl_sqt_str], [$._r_pln_flw_val, $._r_sgl_pln_flw_val], /** * (_r_prp _r_acr • _br_tag) * * &str * !!str a * * (_r_prp _r_acr) • _br_tag * * &map * !!str a: 1 */ [$._r_prp], [$._br_prp], ], inline: $ => [ $._r_pln_blk, $._br_pln_blk, $._r_pln_flw, $._br_pln_flw, $._r_blk_seq_val, $._r_blk_map_val, $._r_flw_val_blk, $._br_flw_val_blk, $._r_sgl_flw_val_blk, $._br_sgl_flw_val_blk, $._b_sgl_flw_val_blk, $._r_flw_val_flw, $._br_flw_val_flw, $._r_sgl_flw_val_flw, $._r_flw_jsl_val, $._br_flw_jsl_val, $._r_sgl_flw_jsl_val, $._br_sgl_flw_jsl_val, $._b_sgl_flw_jsl_val, $._r_flw_njl_val_blk, $._br_flw_njl_val_blk, $._r_sgl_flw_njl_val_blk, $._br_sgl_flw_njl_val_blk, $._b_sgl_flw_njl_val_blk, $._r_flw_njl_val_flw, $._br_flw_njl_val_flw, $._r_sgl_flw_njl_val_flw, ], rules: { stream: $ => seq(optional(choice( seq( choice($._bgn_imp_doc, $._drs_doc, $._exp_doc), optional(choice($._doc_w_bgn_w_end_seq, $._doc_w_bgn_wo_end_seq))), seq( choice($._bgn_imp_doc_end, $._drs_doc_end, $._exp_doc_end, $._doc_end), optional(choice($._doc_w_bgn_w_end_seq, $._doc_w_bgn_wo_end_seq, $._doc_wo_bgn_w_end_seq, $._doc_wo_bgn_wo_end_seq))), )), $._eof), _doc_w_bgn_w_end_seq: $ => seq( $._doc_w_bgn_w_end, optional(choice( $._doc_w_bgn_w_end_seq, $._doc_w_bgn_wo_end_seq, $._doc_wo_bgn_w_end_seq, $._doc_wo_bgn_wo_end_seq, )), ), _doc_w_bgn_wo_end_seq: $ => seq( $._doc_w_bgn_wo_end, optional(choice( $._doc_w_bgn_w_end_seq, $._doc_w_bgn_wo_end_seq, )), ), _doc_wo_bgn_w_end_seq: $ => seq( $._doc_wo_bgn_w_end, optional(choice( $._doc_w_bgn_w_end_seq, $._doc_w_bgn_wo_end_seq, $._doc_wo_bgn_w_end_seq, $._doc_wo_bgn_wo_end_seq, )), ), _doc_wo_bgn_wo_end_seq: $ => seq( $._doc_wo_bgn_wo_end, optional(choice( $._doc_w_bgn_w_end_seq, $._doc_w_bgn_wo_end_seq, )), ), _doc_w_bgn_w_end: $ => choice($._exp_doc_end, $._doc_end), _doc_w_bgn_wo_end: $ => $._exp_doc, _doc_wo_bgn_w_end: $ => choice($._drs_doc_end, $._imp_doc_end), _doc_wo_bgn_wo_end: $ => choice($._drs_doc, $._imp_doc), // document _bgn_imp_doc: $ => choice($._exp_doc_tal, $._r_blk_seq_r_val, $._r_blk_map_r_val), _drs_doc: $ => seq(repeat1($._s_dir), $._exp_doc), _exp_doc: $ => seq($._s_drs_end, optional($._exp_doc_tal)), _imp_doc: $ => choice($._br_blk_seq_val, $._br_blk_map_val, $._br_blk_str_val, $._br_flw_val_blk), _drs_doc_end: $ => prec(1, seq($._drs_doc, $._s_doc_end)), _exp_doc_end: $ => prec(1, seq($._exp_doc, $._s_doc_end)), _imp_doc_end: $ => prec(1, seq($._imp_doc, $._s_doc_end)), _bgn_imp_doc_end: $ => prec(1, seq($._bgn_imp_doc, $._s_doc_end)), _doc_end: $ => $._s_doc_end, _exp_doc_tal: $ => choice( $._r_blk_seq_br_val, $._br_blk_seq_val, $._r_blk_map_br_val, $._br_blk_map_val, $._r_blk_str_val, $._br_blk_str_val, $._r_flw_val_blk, $._br_flw_val_blk, ), // directive _s_dir: $ => choice($._s_dir_yml, $._s_dir_tag, $._s_dir_rsv), _s_dir_yml: $ => seq($._s_dir_yml_bgn, $._r_dir_yml_ver), _s_dir_tag: $ => seq($._s_dir_tag_bgn, $._r_dir_tag_hdl, $._r_dir_tag_pfx), _s_dir_rsv: $ => seq($._s_dir_rsv_bgn, repeat($._r_dir_rsv_prm)), // property _r_prp_val: $ => $._r_prp, _br_prp_val: $ => $._br_prp, _r_sgl_prp_val: $ => $._r_sgl_prp, _br_sgl_prp_val: $ => $._br_sgl_prp, _b_sgl_prp_val: $ => $._b_sgl_prp, _r_prp: $ => choice(seq($._r_acr, optional(choice($._r_tag, $._br_tag))), seq($._r_tag, optional(choice($._r_acr, $._br_acr)))), _br_prp: $ => choice(seq($._br_acr, optional(choice($._r_tag, $._br_tag))), seq($._br_tag, optional(choice($._r_acr, $._br_acr)))), _r_sgl_prp: $ => choice(seq($._r_acr, optional($._r_tag)), seq($._r_tag, optional($._r_acr))), _br_sgl_prp: $ => choice(seq($._br_acr, optional($._r_tag)), seq($._br_tag, optional($._r_acr))), _b_sgl_prp: $ => choice(seq($._b_acr, optional($._r_tag)), seq($._b_tag, optional($._r_acr))), // block sequence _r_blk_seq_val: $ => choice($._r_blk_seq_r_val, $._r_blk_seq_br_val), _r_blk_seq_r_val: $ => $._r_blk_seq, _r_blk_seq_br_val: $ => seq($._r_prp, $._br_blk_seq), _br_blk_seq_val: $ => choice($._br_blk_seq, seq($._br_prp, $._br_blk_seq)), _r_blk_seq_spc_val: $ => seq($._r_prp, $._b_blk_seq_spc), _br_blk_seq_spc_val: $ => seq($._br_prp, $._b_blk_seq_spc), _b_blk_seq_spc_val: $ => $._b_blk_seq_spc, _r_blk_seq: $ => seq($._r_blk_seq_itm, repeat($._b_blk_seq_itm), $._bl), _br_blk_seq: $ => seq($._br_blk_seq_itm, repeat($._b_blk_seq_itm), $._bl), _b_blk_seq_spc: $ => seq(repeat1($._b_blk_seq_itm), $._bl), _r_blk_seq_itm: $ => seq($._r_blk_seq_bgn, optional($._blk_seq_itm_tal)), _br_blk_seq_itm: $ => seq($._br_blk_seq_bgn, optional($._blk_seq_itm_tal)), _b_blk_seq_itm: $ => seq($._b_blk_seq_bgn, optional($._blk_seq_itm_tal)), _blk_seq_itm_tal: $ => choice( $._r_blk_seq_val, $._br_blk_seq_val, $._r_blk_map_val, $._br_blk_map_val, $._r_blk_str_val, $._br_blk_str_val, $._r_flw_val_blk, $._br_flw_val_blk, ), // block mapping _r_blk_map_val: $ => choice($._r_blk_map_r_val, $._r_blk_map_br_val), _r_blk_map_r_val: $ => $._r_blk_map, _r_blk_map_br_val: $ => seq($._r_prp, $._br_blk_map), _br_blk_map_val: $ => choice($._br_blk_map, seq($._br_prp, $._br_blk_map)), _r_blk_map: $ => seq($._r_blk_map_itm, repeat($._b_blk_map_itm), $._bl), _br_blk_map: $ => seq($._br_blk_map_itm, repeat($._b_blk_map_itm), $._bl), _r_blk_map_itm: $ => choice($._r_blk_exp_itm, $._r_blk_imp_itm), _br_blk_map_itm: $ => choice($._br_blk_exp_itm, $._br_blk_imp_itm), _b_blk_map_itm: $ => choice($._b_blk_exp_itm, $._b_blk_imp_itm), _r_blk_exp_itm: $ => prec.right(choice(seq($._r_blk_key_itm, optional($._b_blk_val_itm)), $._r_blk_val_itm)), _br_blk_exp_itm: $ => prec.right(choice(seq($._br_blk_key_itm, optional($._b_blk_val_itm)), $._br_blk_val_itm)), _b_blk_exp_itm: $ => prec.right(choice(seq($._b_blk_key_itm, optional($._b_blk_val_itm)), $._b_blk_val_itm)), _r_blk_key_itm: $ => seq($._r_blk_key_bgn, optional(field('key', $._blk_exp_itm_tal))), _br_blk_key_itm: $ => seq($._br_blk_key_bgn, optional(field('key', $._blk_exp_itm_tal))), _b_blk_key_itm: $ => seq($._b_blk_key_bgn, optional(field('key', $._blk_exp_itm_tal))), _r_blk_val_itm: $ => seq($._r_blk_val_bgn, optional(field('value', $._blk_exp_itm_tal))), _br_blk_val_itm: $ => seq($._br_blk_val_bgn, optional(field('value', $._blk_exp_itm_tal))), _b_blk_val_itm: $ => seq($._b_blk_val_bgn, optional(field('value', $._blk_exp_itm_tal))), _r_blk_imp_itm: $ => seq(field('key', $._r_sgl_flw_val_blk), $._blk_imp_itm_tal), _br_blk_imp_itm: $ => seq(field('key', $._br_sgl_flw_val_blk), $._blk_imp_itm_tal), _b_blk_imp_itm: $ => seq(field('key', $._b_sgl_flw_val_blk), $._blk_imp_itm_tal), _blk_exp_itm_tal: $ => choice($._blk_seq_itm_tal, $._r_blk_seq_spc_val, $._br_blk_seq_spc_val, $._b_blk_seq_spc_val), _blk_imp_itm_tal: $ => seq( $._r_blk_imp_bgn, optional(field('value', choice( $._r_blk_seq_br_val, $._br_blk_seq_val, $._r_blk_seq_spc_val, $._br_blk_seq_spc_val, $._b_blk_seq_spc_val, $._r_blk_map_br_val, $._br_blk_map_val, $._r_blk_str_val, $._br_blk_str_val, $._r_flw_val_blk, $._br_flw_val_blk, ))), ), // block scalar _r_blk_str_val: $ => choice($._r_blk_str, seq($._r_prp, choice($._r_blk_str, $._br_blk_str))), _br_blk_str_val: $ => choice($._br_blk_str, seq($._br_prp, choice($._r_blk_str, $._br_blk_str))), _r_blk_str: $ => seq(choice($._r_blk_lit_bgn, $._r_blk_fld_bgn), repeat($._br_blk_str_ctn), $._bl), _br_blk_str: $ => seq(choice($._br_blk_lit_bgn, $._br_blk_fld_bgn), repeat($._br_blk_str_ctn), $._bl), // flow value in block _r_flw_val_blk: $ => choice($._r_flw_jsl_val, $._r_flw_njl_val_blk), _br_flw_val_blk: $ => choice($._br_flw_jsl_val, $._br_flw_njl_val_blk), _r_sgl_flw_val_blk: $ => choice($._r_sgl_flw_jsl_val, $._r_sgl_flw_njl_val_blk), _br_sgl_flw_val_blk: $ => choice($._br_sgl_flw_jsl_val, $._br_sgl_flw_njl_val_blk), _b_sgl_flw_val_blk: $ => choice($._b_sgl_flw_jsl_val, $._b_sgl_flw_njl_val_blk), // flow value in flow _r_flw_val_flw: $ => choice($._r_flw_jsl_val, $._r_flw_njl_val_flw), _br_flw_val_flw: $ => choice($._br_flw_jsl_val, $._br_flw_njl_val_flw), _r_sgl_flw_val_flw: $ => choice($._r_sgl_flw_jsl_val, $._r_sgl_flw_njl_val_flw), // json-like flow value _r_flw_jsl_val: $ => choice($._r_flw_seq_val, $._r_flw_map_val, $._r_dqt_str_val, $._r_sqt_str_val), _br_flw_jsl_val: $ => choice($._br_flw_seq_val, $._br_flw_map_val, $._br_dqt_str_val, $._br_sqt_str_val), _r_sgl_flw_jsl_val: $ => choice($._r_sgl_flw_seq_val, $._r_sgl_flw_map_val, $._r_sgl_dqt_str_val, $._r_sgl_sqt_str_val), _br_sgl_flw_jsl_val: $ => choice($._br_sgl_flw_seq_val, $._br_sgl_flw_map_val, $._br_sgl_dqt_str_val, $._br_sgl_sqt_str_val), _b_sgl_flw_jsl_val: $ => choice($._b_sgl_flw_seq_val, $._b_sgl_flw_map_val, $._b_sgl_dqt_str_val, $._b_sgl_sqt_str_val), // non-json-like flow value in block _r_flw_njl_val_blk: $ => choice($._r_als_val, $._r_prp_val, $._r_pln_blk_val), _br_flw_njl_val_blk: $ => choice($._br_als_val, $._br_prp_val, $._br_pln_blk_val), _r_sgl_flw_njl_val_blk: $ => choice($._r_als_val, $._r_sgl_prp_val, $._r_sgl_pln_blk_val), _br_sgl_flw_njl_val_blk: $ => choice($._br_als_val, $._br_sgl_prp_val, $._br_sgl_pln_blk_val), _b_sgl_flw_njl_val_blk: $ => choice($._b_als_val, $._b_sgl_prp_val, $._b_sgl_pln_blk_val), // non-json-like flow value in flow _r_flw_njl_val_flw: $ => choice($._r_als_val, $._r_prp_val, $._r_pln_flw_val), _br_flw_njl_val_flw: $ => choice($._br_als_val, $._br_prp_val, $._br_pln_flw_val), _r_sgl_flw_njl_val_flw: $ => choice($._r_als_val, $._r_sgl_prp_val, $._r_sgl_pln_flw_val), // flow sequence _r_flw_seq_val: $ => choice($._r_flw_seq, seq($._r_prp, choice($._r_flw_seq, $._br_flw_seq))), _br_flw_seq_val: $ => choice($._br_flw_seq, seq($._br_prp, choice($._r_flw_seq, $._br_flw_seq))), _r_sgl_flw_seq_val: $ => choice($._r_sgl_flw_seq, seq($._r_sgl_prp, $._r_sgl_flw_seq)), _br_sgl_flw_seq_val: $ => choice($._br_sgl_flw_seq, seq($._br_sgl_prp, $._r_sgl_flw_seq)), _b_sgl_flw_seq_val: $ => choice($._b_sgl_flw_seq, seq($._b_sgl_prp, $._r_sgl_flw_seq)), _r_flw_seq: $ => seq($._r_flw_seq_bgn, $._flw_seq_tal), _br_flw_seq: $ => seq($._br_flw_seq_bgn, $._flw_seq_tal), _r_sgl_flw_seq: $ => seq($._r_flw_seq_bgn, $._sgl_flw_seq_tal), _br_sgl_flw_seq: $ => seq($._br_flw_seq_bgn, $._sgl_flw_seq_tal), _b_sgl_flw_seq: $ => seq($._b_flw_seq_bgn, $._sgl_flw_seq_tal), _flw_seq_tal: $ => seq(optional(choice($._r_flw_seq_dat, $._br_flw_seq_dat)), choice($._r_flw_seq_end, $._br_flw_seq_end, $._b_flw_seq_end)), _sgl_flw_seq_tal: $ => seq(optional($._r_sgl_flw_col_dat), $._r_flw_seq_end), // flow mapping _r_flw_map_val: $ => choice($._r_flw_map, seq($._r_prp, choice($._r_flw_map, $._br_flw_map))), _br_flw_map_val: $ => choice($._br_flw_map, seq($._br_prp, choice($._r_flw_map, $._br_flw_map))), _r_sgl_flw_map_val: $ => choice($._r_sgl_flw_map, seq($._r_sgl_prp, $._r_sgl_flw_map)), _br_sgl_flw_map_val: $ => choice($._br_sgl_flw_map, seq($._br_sgl_prp, $._r_sgl_flw_map)), _b_sgl_flw_map_val: $ => choice($._b_sgl_flw_map, seq($._b_sgl_prp, $._r_sgl_flw_map)), _r_flw_map: $ => seq($._r_flw_map_bgn, $._flw_map_tal), _br_flw_map: $ => seq($._br_flw_map_bgn, $._flw_map_tal), _r_sgl_flw_map: $ => seq($._r_flw_map_bgn, $._sgl_flw_map_tal), _br_sgl_flw_map: $ => seq($._br_flw_map_bgn, $._sgl_flw_map_tal), _b_sgl_flw_map: $ => seq($._b_flw_map_bgn, $._sgl_flw_map_tal), _flw_map_tal: $ => seq(optional(choice($._r_flw_map_dat, $._br_flw_map_dat)), choice($._r_flw_map_end, $._br_flw_map_end, $._b_flw_map_end)), _sgl_flw_map_tal: $ => seq(optional($._r_sgl_flw_col_dat), $._r_flw_map_end), // flow collection data _r_flw_seq_dat: $ => seq($._r_flw_seq_itm, repeat($._flw_seq_dat_rpt), optional(choice($._r_flw_sep_bgn, $._br_flw_sep_bgn))), _br_flw_seq_dat: $ => seq($._br_flw_seq_itm, repeat($._flw_seq_dat_rpt), optional(choice($._r_flw_sep_bgn, $._br_flw_sep_bgn))), _r_flw_map_dat: $ => seq($._r_flw_map_itm, repeat($._flw_map_dat_rpt), optional(choice($._r_flw_sep_bgn, $._br_flw_sep_bgn))), _br_flw_map_dat: $ => seq($._br_flw_map_itm, repeat($._flw_map_dat_rpt), optional(choice($._r_flw_sep_bgn, $._br_flw_sep_bgn))), _r_sgl_flw_col_dat: $ => seq($._r_sgl_flw_col_itm, repeat($._sgl_flw_col_dat_rpt), optional($._r_flw_sep_bgn)), _flw_seq_dat_rpt: $ => seq(choice($._r_flw_sep_bgn, $._br_flw_sep_bgn), choice($._r_flw_seq_itm, $._br_flw_seq_itm)), _flw_map_dat_rpt: $ => seq(choice($._r_flw_sep_bgn, $._br_flw_sep_bgn), choice($._r_flw_map_itm, $._br_flw_map_itm)), _sgl_flw_col_dat_rpt: $ => seq($._r_flw_sep_bgn, $._r_sgl_flw_col_itm), // flow collection item _r_flw_seq_itm: $ => choice($._r_flw_val_flw, $._r_flw_exp_par, $._r_flw_imp_r_par, $._r_flw_njl_ann_par), _br_flw_seq_itm: $ => choice($._br_flw_val_flw, $._br_flw_exp_par, $._br_flw_imp_r_par, $._br_flw_njl_ann_par), _r_flw_map_itm: $ => choice($._r_flw_val_flw, $._r_flw_exp_par, $._r_flw_imp_r_par, $._r_flw_imp_br_par, $._r_flw_njl_ann_par), _br_flw_map_itm: $ => choice($._br_flw_val_flw, $._br_flw_exp_par, $._br_flw_imp_r_par, $._br_flw_imp_br_par, $._br_flw_njl_ann_par), _r_sgl_flw_col_itm: $ => choice($._r_sgl_flw_val_flw, $._r_sgl_flw_exp_par, $._r_sgl_flw_imp_par, $._r_sgl_flw_njl_ann_par), // explicit flow pair _r_flw_exp_par: $ => seq($._r_flw_key_bgn, optional(choice($._r_flw_imp_r_par, $._r_flw_imp_br_par, $._br_flw_imp_r_par, $._br_flw_imp_br_par))), _br_flw_exp_par: $ => seq($._br_flw_key_bgn, optional(choice($._r_flw_imp_r_par, $._r_flw_imp_br_par, $._br_flw_imp_r_par, $._br_flw_imp_br_par))), _r_sgl_flw_exp_par: $ => seq($._r_flw_key_bgn, optional($._r_sgl_flw_imp_par)), // implicit flow pair _r_flw_imp_r_par: $ => choice(seq(field('key', $._r_flw_jsl_val), $._r_flw_jsl_ann_par), seq(field('key', $._r_flw_njl_val_flw), $._r_flw_njl_ann_par)), _r_flw_imp_br_par: $ => choice(seq(field('key', $._r_flw_jsl_val), $._br_flw_jsl_ann_par), seq(field('key', $._r_flw_njl_val_flw), $._br_flw_njl_ann_par)), _br_flw_imp_r_par: $ => choice(seq(field('key', $._br_flw_jsl_val), $._r_flw_jsl_ann_par), seq(field('key', $._br_flw_njl_val_flw), $._r_flw_njl_ann_par)), _br_flw_imp_br_par: $ => choice(seq(field('key', $._br_flw_jsl_val), $._br_flw_jsl_ann_par), seq(field('key', $._br_flw_njl_val_flw), $._br_flw_njl_ann_par)), _r_sgl_flw_imp_par: $ => choice(seq(field('key', $._r_sgl_flw_jsl_val), $._r_sgl_flw_jsl_ann_par), seq(field('key', $._r_sgl_flw_njl_val_flw), $._r_sgl_flw_njl_ann_par)), // anonymous flow pair _r_flw_jsl_ann_par: $ => seq($._r_flw_jsv_bgn, optional(field('value', $._flw_ann_par_tal))), _br_flw_jsl_ann_par: $ => seq($._br_flw_jsv_bgn, optional(field('value', $._flw_ann_par_tal))), _r_sgl_flw_jsl_ann_par: $ => seq($._r_flw_jsv_bgn, optional(field('value', $._sgl_flw_ann_par_tal))), _r_flw_njl_ann_par: $ => seq($._r_flw_njv_bgn, optional(field('value', $._flw_ann_par_tal))), _br_flw_njl_ann_par: $ => seq($._br_flw_njv_bgn, optional(field('value', $._flw_ann_par_tal))), _r_sgl_flw_njl_ann_par: $ => seq($._r_flw_njv_bgn, optional(field('value', $._sgl_flw_ann_par_tal))), _flw_ann_par_tal: $ => choice($._r_flw_val_flw, $._br_flw_val_flw), _sgl_flw_ann_par_tal: $ => $._r_sgl_flw_val_flw, // double quote scalar _r_dqt_str_val: $ => choice($._r_dqt_str, seq($._r_prp, choice($._r_dqt_str, $._br_dqt_str))), _br_dqt_str_val: $ => choice($._br_dqt_str, seq($._br_prp, choice($._r_dqt_str, $._br_dqt_str))), _r_sgl_dqt_str_val: $ => choice($._r_sgl_dqt_str, seq($._r_sgl_prp, $._r_sgl_dqt_str)), _br_sgl_dqt_str_val: $ => choice($._br_sgl_dqt_str, seq($._br_sgl_prp, $._r_sgl_dqt_str)), _b_sgl_dqt_str_val: $ => choice($._b_sgl_dqt_str, seq($._b_sgl_prp, $._r_sgl_dqt_str)), _r_dqt_str: $ => seq( $._r_dqt_str_bgn, optional($._r_sgl_dqt_ctn), optional($._r_dqt_esc_nwl), repeat($._br_mtl_dqt_ctn), choice($._r_dqt_str_end, $._br_dqt_str_end), ), _br_dqt_str: $ => seq( $._br_dqt_str_bgn, optional($._r_sgl_dqt_ctn), optional($._r_dqt_esc_nwl), repeat($._br_mtl_dqt_ctn), choice($._r_dqt_str_end, $._br_dqt_str_end), ), _r_sgl_dqt_str: $ => seq($._r_dqt_str_bgn, optional($._r_sgl_dqt_ctn), $._r_dqt_str_end), _br_sgl_dqt_str: $ => seq($._br_dqt_str_bgn, optional($._r_sgl_dqt_ctn), $._r_dqt_str_end), _b_sgl_dqt_str: $ => seq($._b_dqt_str_bgn, optional($._r_sgl_dqt_ctn), $._r_dqt_str_end), _r_sgl_dqt_ctn: $ => repeat1(choice($._r_dqt_str_ctn, $._r_dqt_esc_seq)), _br_mtl_dqt_ctn: $ => choice( $._br_dqt_esc_nwl, seq( choice($._br_dqt_str_ctn, $._br_dqt_esc_seq), repeat(choice($._r_dqt_str_ctn, $._r_dqt_esc_seq)), optional($._r_dqt_esc_nwl), ), ), // single quote scalar _r_sqt_str_val: $ => choice($._r_sqt_str, seq($._r_prp, choice($._r_sqt_str, $._br_sqt_str))), _br_sqt_str_val: $ => choice($._br_sqt_str, seq($._br_prp, choice($._r_sqt_str, $._br_sqt_str))), _r_sgl_sqt_str_val: $ => choice($._r_sgl_sqt_str, seq($._r_sgl_prp, $._r_sgl_sqt_str)), _br_sgl_sqt_str_val: $ => choice($._br_sgl_sqt_str, seq($._br_sgl_prp, $._r_sgl_sqt_str)), _b_sgl_sqt_str_val: $ => choice($._b_sgl_sqt_str, seq($._b_sgl_prp, $._r_sgl_sqt_str)), _r_sqt_str: $ => seq($._r_sqt_str_bgn, optional($._r_sgl_sqt_ctn), repeat($._br_mtl_sqt_ctn), choice($._r_sqt_str_end, $._br_sqt_str_end)), _br_sqt_str: $ => seq($._br_sqt_str_bgn, optional($._r_sgl_sqt_ctn), repeat($._br_mtl_sqt_ctn), choice($._r_sqt_str_end, $._br_sqt_str_end)), _r_sgl_sqt_str: $ => seq($._r_sqt_str_bgn, optional($._r_sgl_sqt_ctn), $._r_sqt_str_end), _br_sgl_sqt_str: $ => seq($._br_sqt_str_bgn, optional($._r_sgl_sqt_ctn), $._r_sqt_str_end), _b_sgl_sqt_str: $ => seq($._b_sqt_str_bgn, optional($._r_sgl_sqt_ctn), $._r_sqt_str_end), _r_sgl_sqt_ctn: $ => repeat1(choice($._r_sqt_str_ctn, $._r_sqt_esc_sqt)), _br_mtl_sqt_ctn: $ => seq(choice($._br_sqt_str_ctn, $._br_sqt_esc_sqt), repeat(choice($._r_sqt_str_ctn, $._r_sqt_esc_sqt))), // plain scalar in block _r_pln_blk_val: $ => choice($._r_pln_blk, seq($._r_prp, choice($._r_pln_blk, $._br_pln_blk))), _br_pln_blk_val: $ => choice($._br_pln_blk, seq($._br_prp, choice($._r_pln_blk, $._br_pln_blk))), _r_sgl_pln_blk_val: $ => choice($._r_sgl_pln_blk, seq($._r_sgl_prp, $._r_sgl_pln_blk)), _br_sgl_pln_blk_val: $ => choice($._br_sgl_pln_blk, seq($._br_sgl_prp, $._r_sgl_pln_blk)), _b_sgl_pln_blk_val: $ => choice($._b_sgl_pln_blk, seq($._b_sgl_prp, $._r_sgl_pln_blk)), _r_pln_blk: $ => choice($._r_sgl_pln_blk, $._r_mtl_pln_blk), _br_pln_blk: $ => choice($._br_sgl_pln_blk, $._br_mtl_pln_blk), // plain scalar in flow _r_pln_flw_val: $ => choice($._r_pln_flw, seq($._r_prp, choice($._r_pln_flw, $._br_pln_flw))), _br_pln_flw_val: $ => choice($._br_pln_flw, seq($._br_prp, choice($._r_pln_flw, $._br_pln_flw))), _r_sgl_pln_flw_val: $ => choice($._r_sgl_pln_flw, seq($._r_sgl_prp, $._r_sgl_pln_flw)), _r_pln_flw: $ => choice($._r_sgl_pln_flw, $._r_mtl_pln_flw), _br_pln_flw: $ => choice($._br_sgl_pln_flw, $._br_mtl_pln_flw), // plain scalar schema _r_sgl_pln_blk: $ => scalar_types($, 'r', 'blk'), _br_sgl_pln_blk: $ => scalar_types($, 'br', 'blk'), _b_sgl_pln_blk: $ => scalar_types($, 'b', 'blk'), _r_sgl_pln_flw: $ => scalar_types($, 'r', 'flw'), _br_sgl_pln_flw: $ => scalar_types($, 'br', 'flw'), _r_mtl_pln_blk: $ => $._r_mtl_pln_str_blk, _br_mtl_pln_blk: $ => $._br_mtl_pln_str_blk, _r_mtl_pln_flw: $ => $._r_mtl_pln_str_flw, _br_mtl_pln_flw: $ => $._br_mtl_pln_str_flw, // alias _r_als_val: $ => $._r_als, _br_als_val: $ => $._br_als, _b_als_val: $ => $._b_als, _r_als: $ => seq($._r_als_bgn, $._r_als_ctn), _br_als: $ => seq($._br_als_bgn, $._r_als_ctn), _b_als: $ => seq($._b_als_bgn, $._r_als_ctn), // anchor _r_acr: $ => seq($._r_acr_bgn, $._r_acr_ctn), _br_acr: $ => seq($._br_acr_bgn, $._r_acr_ctn), _b_acr: $ => seq($._b_acr_bgn, $._r_acr_ctn), }, }); module.exports.grammar = global_alias(global_alias(module.exports.grammar, { ..._('yaml_directive', '_s_dir_yml'), ..._('yaml_version', '_r_dir_yml_ver'), ..._('tag_directive', '_s_dir_tag'), ..._('tag_handle', '_r_dir_tag_hdl'), ..._('tag_prefix', '_r_dir_tag_pfx'), ..._('reserved_directive', '_s_dir_rsv'), ..._('directive_name', '_s_dir_rsv_bgn'), ..._('directive_parameter', '_r_dir_rsv_prm'), ..._('flow_node', '_r_prp_val', '_br_prp_val', '_r_sgl_prp_val', '_br_sgl_prp_val', '_b_sgl_prp_val'), ..._('tag', '_r_tag', '_br_tag', '_b_tag'), ..._('anchor', '_r_acr', '_br_acr', '_b_acr'), ..._('anchor_name', '_r_acr_ctn'), ..._('flow_node', '_r_als_val', '_br_als_val', '_b_als_val'), ..._('alias', '_r_als', '_br_als', '_b_als'), ..._('alias_name', '_r_als_ctn'), ..._('document', '_bgn_imp_doc', '_imp_doc'), ..._(['document'], '_drs_doc', '_exp_doc', '_doc_end', '_bgn_imp_doc_end', '_drs_doc_end', '_exp_doc_end', '_imp_doc_end'), ..._('block_node', '_r_blk_seq_r_val', '_r_blk_seq_br_val', '_br_blk_seq_val', '_r_blk_seq_spc_val', '_br_blk_seq_spc_val', '_b_blk_seq_spc_val'), ..._('block_node', '_r_blk_map_r_val', '_r_blk_map_br_val', '_br_blk_map_val'), ..._('block_node', '_r_blk_str_val', '_br_blk_str_val'), ..._('block_sequence', '_r_blk_seq', '_br_blk_seq', '_b_blk_seq_spc'), ..._('block_mapping', '_r_blk_map', '_br_blk_map'), ..._('block_scalar', '_r_blk_str', '_br_blk_str'), ..._('block_sequence_item', '_r_blk_seq_itm', '_br_blk_seq_itm', '_b_blk_seq_itm'), ..._('block_mapping_pair', '_r_blk_exp_itm', '_br_blk_exp_itm', '_b_blk_exp_itm'), ..._('block_mapping_pair', '_r_blk_imp_itm', '_br_blk_imp_itm', '_b_blk_imp_itm'), ..._('flow_node', '_r_flw_seq_val', '_br_flw_seq_val', '_r_sgl_flw_seq_val', '_br_sgl_flw_seq_val', '_b_sgl_flw_seq_val'), ..._('flow_node', '_r_flw_map_val', '_br_flw_map_val', '_r_sgl_flw_map_val', '_br_sgl_flw_map_val', '_b_sgl_flw_map_val'), ..._('flow_sequence', '_r_flw_seq', '_br_flw_seq', '_r_sgl_flw_seq', '_br_sgl_flw_seq', '_b_sgl_flw_seq'), ..._('flow_mapping', '_r_flw_map', '_br_flw_map', '_r_sgl_flw_map', '_br_sgl_flw_map', '_b_sgl_flw_map'), ..._(['flow_pair'], '_r_flw_exp_par', '_br_flw_exp_par', '_r_sgl_flw_exp_par', '_r_flw_imp_r_par', '_r_flw_imp_br_par', '_br_flw_imp_r_par', '_br_flw_imp_br_par', '_r_sgl_flw_imp_par', '_r_flw_njl_ann_par', '_br_flw_njl_ann_par', '_r_sgl_flw_njl_ann_par'), ..._('flow_node', '_r_dqt_str_val', '_br_dqt_str_val', '_r_sgl_dqt_str_val', '_br_sgl_dqt_str_val', '_b_sgl_dqt_str_val'), ..._('flow_node', '_r_sqt_str_val', '_br_sqt_str_val', '_r_sgl_sqt_str_val', '_br_sgl_sqt_str_val', '_b_sgl_sqt_str_val'), ..._('flow_node', '_r_pln_blk_val', '_br_pln_blk_val', '_r_sgl_pln_blk_val', '_br_sgl_pln_blk_val', '_b_sgl_pln_blk_val', '_r_pln_flw_val', '_br_pln_flw_val', '_r_sgl_pln_flw_val'), ..._('double_quote_scalar', '_r_dqt_str', '_br_dqt_str', '_r_sgl_dqt_str', '_br_sgl_dqt_str', '_b_sgl_dqt_str'), ..._('single_quote_scalar', '_r_sqt_str', '_br_sqt_str', '_r_sgl_sqt_str', '_br_sgl_sqt_str', '_b_sgl_sqt_str'), ..._('plain_scalar', '_r_mtl_pln_blk', '_br_mtl_pln_blk', '_r_sgl_pln_blk', '_br_sgl_pln_blk', '_b_sgl_pln_blk', '_r_mtl_pln_flw', '_br_mtl_pln_flw', '_r_sgl_pln_flw', '_br_sgl_pln_flw'), ..._('escape_sequence', '_r_dqt_esc_nwl', '_br_dqt_esc_nwl', '_r_dqt_esc_seq', '_br_dqt_esc_seq', '_r_sqt_esc_sqt', '_br_sqt_esc_sqt'), ..._('null_scalar', '_r_sgl_pln_nul_blk', '_br_sgl_pln_nul_blk', '_b_sgl_pln_nul_blk', '_r_sgl_pln_nul_flw', '_br_sgl_pln_nul_flw'), ..._('boolean_scalar', '_r_sgl_pln_bol_blk', '_br_sgl_pln_bol_blk', '_b_sgl_pln_bol_blk', '_r_sgl_pln_bol_flw', '_br_sgl_pln_bol_flw'), ..._('integer_scalar', '_r_sgl_pln_int_blk', '_br_sgl_pln_int_blk', '_b_sgl_pln_int_blk', '_r_sgl_pln_int_flw', '_br_sgl_pln_int_flw'), ..._('float_scalar', '_r_sgl_pln_flt_blk', '_br_sgl_pln_flt_blk', '_b_sgl_pln_flt_blk', '_r_sgl_pln_flt_flw', '_br_sgl_pln_flt_flw'), ..._('timestamp_scalar', '_r_sgl_pln_tms_blk', '_br_sgl_pln_tms_blk', '_b_sgl_pln_tms_blk', '_r_sgl_pln_tms_flw', '_br_sgl_pln_tms_flw'), ..._('string_scalar', '_r_sgl_pln_str_blk', '_br_sgl_pln_str_blk', '_b_sgl_pln_str_blk', '_r_sgl_pln_str_flw', '_br_sgl_pln_str_flw', '_r_mtl_pln_str_blk', '_br_mtl_pln_str_blk', '_r_mtl_pln_str_flw', '_br_mtl_pln_str_flw'), }), { ..._('---', '_s_drs_end'), ..._('...', '_s_doc_end'), ..._('-', '_r_blk_seq_bgn', '_br_blk_seq_bgn', '_b_blk_seq_bgn'), ..._('?', '_r_blk_key_bgn', '_br_blk_key_bgn', '_b_blk_key_bgn'), ..._(':', '_r_blk_val_bgn', '_br_blk_val_bgn', '_b_blk_val_bgn'), ..._(':', '_r_blk_imp_bgn'), ..._('|', '_r_blk_lit_bgn', '_br_blk_lit_bgn'), ..._('>', '_r_blk_fld_bgn', '_br_blk_fld_bgn'), ..._('[', '_r_flw_seq_bgn', '_br_flw_seq_bgn', '_b_flw_seq_bgn'), ..._(']', '_r_flw_seq_end', '_br_flw_seq_end', '_b_flw_seq_end'), ..._('{', '_r_flw_map_bgn', '_br_flw_map_bgn', '_b_flw_map_bgn'), ..._('}', '_r_flw_map_end', '_br_flw_map_end', '_b_flw_map_end'), ..._(',', '_r_flw_sep_bgn', '_br_flw_sep_bgn'), ..._('?', '_r_flw_key_bgn', '_br_flw_key_bgn'), ..._(':', '_r_flw_jsv_bgn', '_br_flw_jsv_bgn'), ..._(':', '_r_flw_njv_bgn', '_br_flw_njv_bgn'), ..._('"', '_r_dqt_str_bgn', '_br_dqt_str_bgn', '_b_dqt_str_bgn'), ..._('"', '_r_dqt_str_end', '_br_dqt_str_end'), ..._('\'', '_r_sqt_str_bgn', '_br_sqt_str_bgn', '_b_sqt_str_bgn'), ..._('\'', '_r_sqt_str_end', '_br_sqt_str_end'), ..._('*', '_r_als_bgn', '_br_als_bgn', '_b_als_bgn'), ..._('&', '_r_acr_bgn', '_br_acr_bgn', '_b_acr_bgn'), }); /** * * @param {string | [string]} alias_value * @param {string[]} rule_names */ function _(alias_value, ...rule_names) { const alias_content = {}; if (typeof alias_value === 'string') { alias_content.name = alias_value; } else if (Array.isArray(alias_value)) { alias_content.name = alias_value[0]; alias_content.shallow = true; } else { throw new Error(`Unexpected value ${JSON.stringify(alias_value)}`); } const alias_map = {}; for (const rule_name of rule_names) { alias_map[rule_name] = alias_content; } return alias_map; } /** * * @param {GrammarSymbols} grammar_json * @param {{[key: string]: {name: string, shallow?: boolean}}} alias_map */ function global_alias(grammar_json, alias_map) { const new_rules = {}; const new_grammar = {...grammar_json, rules: new_rules}; const checklist = Object.fromEntries(Object.entries(alias_map).map(([k, _]) => [k, 0])); for (const [rule_name, rule] of Object.entries(grammar_json.rules)) { new_rules[rule_name] = rule_name in alias_map && alias_map[rule_name].shallow ? rule : recursive_alias(rule, alias_map, checklist); } for (const [rule_name, counter] of Object.entries(checklist)) { if (counter === 0) { console.warn(`warning: global_alias for ${JSON.stringify(rule_name)} is not used.`); } } return new_grammar; } /** * * @param {RuleOrLiteral} rule * @param {{[key: string]: {name: string, shallow?: boolean}}} alias_map * @param {{[key: string]: number}} checklist */ function recursive_alias(rule, alias_map, checklist) { switch (rule.type) { case 'CHOICE': case 'SEQ': return {...rule, members: rule.members.map(member => recursive_alias(member, alias_map, checklist))}; case 'REPEAT': case 'REPEAT1': case 'FIELD': case 'PREC': case 'PREC_RIGHT': return {...rule, content: recursive_alias(rule.content, alias_map, checklist)}; case 'SYMBOL': if (rule.name in alias_map) { checklist[rule.name]++; const alias = alias_map[rule.name].name; return {type: 'ALIAS', content: rule, named: /[a-z]/i.test(alias), value: alias}; } case 'BLANK': case 'ALIAS': return rule; default: throw new Error(`Unexpected rule type ${JSON.stringify(rule.type)}`); } } /** * @param {GrammarSymbols} symbols * @param {'r' | 'br' | 'b'} prefix * @param {'blk' | 'flw'} suffix */ function scalar_types(symbols, prefix, suffix) { const types = Array.from( ['nul', 'bol', 'int', 'flt', 'tms', 'str'], t => symbols[`_${prefix}_sgl_pln_${t}_${suffix}`], ); return choice(...types); } tree-sitter-yaml-0.7.2/package-lock.json000066400000000000000000001474251507122265000201600ustar00rootroot00000000000000{ "name": "@tree-sitter-grammars/tree-sitter-yaml", "version": "0.7.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@tree-sitter-grammars/tree-sitter-yaml", "version": "0.7.2", "hasInstallScript": true, "license": "MIT", "dependencies": { "node-addon-api": "^8.5.0", "node-gyp-build": "^4.8.4" }, "devDependencies": { "eslint": "^9.16.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", "tree-sitter-cli": "^0.25.4" }, "peerDependencies": { "tree-sitter": "^0.22.4" }, "peerDependenciesMeta": { "tree-sitter": { "optional": true } } }, "node_modules/@es-joy/jsdoccomment": { "version": "0.49.0", "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.49.0.tgz", "integrity": "sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==", "dev": true, "dependencies": { "comment-parser": "1.4.1", "esquery": "^1.6.0", "jsdoc-type-pratt-parser": "~4.1.0" }, "engines": { "node": ">=16" } }, "node_modules/@eslint-community/eslint-utils": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", "dev": true, "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/@eslint-community/regexpp": { "version": "4.12.1", "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/config-array": { "version": "0.19.0", "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.0.tgz", "integrity": "sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==", "dev": true, "dependencies": { "@eslint/object-schema": "^2.1.4", "debug": "^4.3.1", "minimatch": "^3.1.2" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/core": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.0.tgz", "integrity": "sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/eslintrc": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/@eslint/js": { "version": "9.16.0", "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.16.0.tgz", "integrity": "sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/object-schema": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/plugin-kit": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz", "integrity": "sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==", "dev": true, "dependencies": { "levn": "^0.4.1" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@humanfs/core": { "version": "0.19.1", "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", "dev": true, "engines": { "node": ">=18.18.0" } }, "node_modules/@humanfs/node": { "version": "0.16.6", "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", "dev": true, "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.3.0" }, "engines": { "node": ">=18.18.0" } }, "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", "dev": true, "engines": { "node": ">=18.18" }, "funding": { "type": "github", "url": "https://github.com/sponsors/nzakas" } }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, "engines": { "node": ">=12.22" }, "funding": { "type": "github", "url": "https://github.com/sponsors/nzakas" } }, "node_modules/@humanwhocodes/retry": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", "dev": true, "engines": { "node": ">=18.18" }, "funding": { "type": "github", "url": "https://github.com/sponsors/nzakas" } }, "node_modules/@pkgr/core": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true, "engines": { "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/unts" } }, "node_modules/@types/estree": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "dev": true }, "node_modules/@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true }, "node_modules/acorn": { "version": "8.14.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "dev": true, "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/are-docs-informative": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", "dev": true, "engines": { "node": ">=14" } }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, "node_modules/base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" } }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/buffer": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/chownr": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", "dev": true }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "node_modules/comment-parser": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", "dev": true, "engines": { "node": ">= 12.0.0" } }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, "node_modules/cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" }, "engines": { "node": ">= 8" } }, "node_modules/debug": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dev": true, "dependencies": { "ms": "^2.1.3" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "dependencies": { "once": "^1.4.0" } }, "node_modules/es-module-lexer": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", "dev": true }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint": { "version": "9.16.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.16.0.tgz", "integrity": "sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.19.0", "@eslint/core": "^0.9.0", "@eslint/eslintrc": "^3.2.0", "@eslint/js": "9.16.0", "@eslint/plugin-kit": "^0.2.3", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.1", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.5", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.2.0", "eslint-visitor-keys": "^4.2.0", "espree": "^10.3.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "bin": { "eslint": "bin/eslint.js" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://eslint.org/donate" }, "peerDependencies": { "jiti": "*" }, "peerDependenciesMeta": { "jiti": { "optional": true } } }, "node_modules/eslint-config-treesitter": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/eslint-config-treesitter/-/eslint-config-treesitter-1.0.2.tgz", "integrity": "sha512-OkzjA0oaNgYUFkGmo9T2cvRE7cxzh1dgSt0laO8Hdcypp9di8lebldoPivALXFusRb7s54J5exIw1w7l+g85Rg==", "dev": true, "dependencies": { "eslint-plugin-jsdoc": "^50.2.4" }, "peerDependencies": { "eslint": ">= 9" } }, "node_modules/eslint-plugin-jsdoc": { "version": "50.6.0", "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.0.tgz", "integrity": "sha512-tCNp4fR79Le3dYTPB0dKEv7yFyvGkUCa+Z3yuTrrNGGOxBlXo9Pn0PEgroOZikUQOGjxoGMVKNjrOHcYEdfszg==", "dev": true, "dependencies": { "@es-joy/jsdoccomment": "~0.49.0", "are-docs-informative": "^0.0.2", "comment-parser": "1.4.1", "debug": "^4.3.6", "escape-string-regexp": "^4.0.0", "espree": "^10.1.0", "esquery": "^1.6.0", "parse-imports": "^2.1.1", "semver": "^7.6.3", "spdx-expression-parse": "^4.0.0", "synckit": "^0.9.1" }, "engines": { "node": ">=18" }, "peerDependencies": { "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" } }, "node_modules/eslint-scope": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-visitor-keys": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/espree": { "version": "10.3.0", "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", "dev": true, "dependencies": { "acorn": "^8.14.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/esquery": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "dependencies": { "estraverse": "^5.1.0" }, "engines": { "node": ">=0.10" } }, "node_modules/esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "dependencies": { "estraverse": "^5.2.0" }, "engines": { "node": ">=4.0" } }, "node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, "node_modules/file-entry-cache": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, "dependencies": { "flat-cache": "^4.0.0" }, "engines": { "node": ">=16.0.0" } }, "node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/flat-cache": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" }, "engines": { "node": ">=16" } }, "node_modules/flatted": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", "dev": true }, "node_modules/fs-constants": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true }, "node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { "is-glob": "^4.0.3" }, "engines": { "node": ">=10.13.0" } }, "node_modules/globals": { "version": "14.0.0", "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "engines": { "node": ">= 4" } }, "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "engines": { "node": ">=0.8.19" } }, "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, "node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/jsdoc-type-pratt-parser": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz", "integrity": "sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==", "dev": true, "engines": { "node": ">=12.0.0" } }, "node_modules/json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, "node_modules/keyv": { "version": "4.5.4", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "dependencies": { "json-buffer": "3.0.1" } }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "dependencies": { "p-locate": "^5.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, "engines": { "node": "*" } }, "node_modules/minimist": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/mkdirp-classic": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", "dev": true }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, "node_modules/node-abi": { "version": "3.71.0", "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.71.0.tgz", "integrity": "sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==", "dev": true, "dependencies": { "semver": "^7.3.5" }, "engines": { "node": ">=10" } }, "node_modules/node-addon-api": { "version": "8.5.0", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.5.0.tgz", "integrity": "sha512-/bRZty2mXUIFY/xU5HLvveNHlswNJej+RnxBjOMkidWfwZzgTbPG1E3K5TOxRLOR+5hX7bSofy8yf1hZevMS8A==", "license": "MIT", "engines": { "node": "^18 || ^20 || >= 21" } }, "node_modules/node-gyp-build": { "version": "4.8.4", "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", "node-gyp-build-test": "build-test.js" } }, "node_modules/npm-run-path": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", "dev": true, "dependencies": { "path-key": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "dependencies": { "wrappy": "1" } }, "node_modules/optionator": { "version": "0.9.4", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { "yocto-queue": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "dependencies": { "p-limit": "^3.0.2" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "dependencies": { "callsites": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/parse-imports": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/parse-imports/-/parse-imports-2.2.1.tgz", "integrity": "sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==", "dev": true, "dependencies": { "es-module-lexer": "^1.5.3", "slashes": "^3.0.12" }, "engines": { "node": ">= 18" } }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/prebuildify": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", "dev": true, "dependencies": { "minimist": "^1.2.5", "mkdirp-classic": "^0.5.3", "node-abi": "^3.3.0", "npm-run-path": "^3.1.0", "pump": "^3.0.0", "tar-fs": "^2.1.0" }, "bin": { "prebuildify": "bin.js" } }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/pump": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", "dev": true, "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, "node_modules/punycode": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "dependencies": { "shebang-regex": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/slashes": { "version": "3.0.12", "resolved": "https://registry.npmjs.org/slashes/-/slashes-3.0.12.tgz", "integrity": "sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==", "dev": true }, "node_modules/spdx-exceptions": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "dev": true }, "node_modules/spdx-expression-parse": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", "dev": true, "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-license-ids": { "version": "3.0.20", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", "dev": true }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, "dependencies": { "safe-buffer": "~5.2.0" } }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/synckit": { "version": "0.9.2", "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", "dev": true, "dependencies": { "@pkgr/core": "^0.1.0", "tslib": "^2.6.2" }, "engines": { "node": "^14.18.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/unts" } }, "node_modules/tar-fs": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.2.tgz", "integrity": "sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==", "dev": true, "license": "MIT", "dependencies": { "chownr": "^1.1.1", "mkdirp-classic": "^0.5.2", "pump": "^3.0.0", "tar-stream": "^2.1.4" } }, "node_modules/tar-stream": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, "dependencies": { "bl": "^4.0.3", "end-of-stream": "^1.4.1", "fs-constants": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^3.1.1" }, "engines": { "node": ">=6" } }, "node_modules/tree-sitter-cli": { "version": "0.25.4", "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.25.4.tgz", "integrity": "sha512-tSOgiUuNH1xgSopWHMb+2EPuzIawj7/7/k0cNTNInBde21R0e53ElygJ+76PLjai2BOjnCzy9n8W0o7Eo9GVgA==", "dev": true, "hasInstallScript": true, "license": "MIT", "bin": { "tree-sitter": "cli.js" }, "engines": { "node": ">=12.0.0" } }, "node_modules/tslib": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "dependencies": { "prelude-ls": "^1.2.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "dependencies": { "punycode": "^2.1.0" } }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" }, "engines": { "node": ">= 8" } }, "node_modules/word-wrap": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } } } } tree-sitter-yaml-0.7.2/package.json000066400000000000000000000025671507122265000172270ustar00rootroot00000000000000{ "name": "@tree-sitter-grammars/tree-sitter-yaml", "version": "0.7.2", "description": "YAML grammar for tree-sitter", "repository": "https://github.com/tree-sitter-grammars/tree-sitter-yaml", "license": "MIT", "author": { "name": "Ika", "email": "ikatyang@gmail.com", "url": "https://github.com/ikatyang" }, "maintainers": [ { "name": "Amaan Qureshi", "email": "amaanq12@gmail.com" } ], "main": "bindings/node", "types": "bindings/node", "keywords": [ "incremental", "parsing", "tree-sitter", "yaml" ], "files": [ "grammar.js", "tree-sitter.json", "binding.gyp", "prebuilds/**", "bindings/node/*", "queries/*", "src/**", "*.wasm" ], "dependencies": { "node-addon-api": "^8.5.0", "node-gyp-build": "^4.8.4" }, "devDependencies": { "eslint": "^9.16.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", "tree-sitter-cli": "^0.25.4" }, "peerDependencies": { "tree-sitter": "^0.22.4" }, "peerDependenciesMeta": { "tree-sitter": { "optional": true } }, "scripts": { "install": "node-gyp-build", "lint": "eslint grammar.js", "prestart": "tree-sitter build --wasm", "start": "tree-sitter playground", "test": "node --test bindings/node/*_test.js" }, "publishConfig": { "access": "public" } } tree-sitter-yaml-0.7.2/pyproject.toml000066400000000000000000000014741507122265000176510ustar00rootroot00000000000000[build-system] requires = ["setuptools>=42", "wheel"] build-backend = "setuptools.build_meta" [project] name = "tree-sitter-yaml" description = "YAML grammar for tree-sitter" version = "0.7.2" keywords = ["incremental", "parsing", "tree-sitter", "yaml"] classifiers = [ "Intended Audience :: Developers", "Topic :: Software Development :: Compilers", "Topic :: Text Processing :: Linguistic", "Typing :: Typed", ] authors = [ { name = "Ika", email = "ikatyang@gmail.com" }, { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, ] requires-python = ">=3.10" license.text = "MIT" readme = "README.md" [project.urls] Homepage = "https://github.com/tree-sitter-grammars/tree-sitter-yaml" [project.optional-dependencies] core = ["tree-sitter~=0.24"] [tool.cibuildwheel] build = "cp310-*" build-frontend = "build" tree-sitter-yaml-0.7.2/queries/000077500000000000000000000000001507122265000164045ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/queries/highlights.scm000066400000000000000000000017021507122265000212420ustar00rootroot00000000000000(boolean_scalar) @boolean (null_scalar) @constant.builtin [ (double_quote_scalar) (single_quote_scalar) (block_scalar) (string_scalar) ] @string [ (integer_scalar) (float_scalar) ] @number (comment) @comment [ (anchor_name) (alias_name) ] @label (tag) @type [ (yaml_directive) (tag_directive) (reserved_directive) ] @attribute (block_mapping_pair key: (flow_node [ (double_quote_scalar) (single_quote_scalar) ] @property)) (block_mapping_pair key: (flow_node (plain_scalar (string_scalar) @property))) (flow_mapping (_ key: (flow_node [ (double_quote_scalar) (single_quote_scalar) ] @property))) (flow_mapping (_ key: (flow_node (plain_scalar (string_scalar) @property)))) [ "," "-" ":" ">" "?" "|" ] @punctuation.delimiter [ "[" "]" "{" "}" ] @punctuation.bracket [ "*" "&" "---" "..." ] @punctuation.special tree-sitter-yaml-0.7.2/schema/000077500000000000000000000000001507122265000161675ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/core/000077500000000000000000000000001507122265000171175ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/core/grammar.js000066400000000000000000000014511507122265000211040ustar00rootroot00000000000000/** @see {@link Core Schema|https://yaml.org/spec/1.2.2/#103-core-schema} */ /// module.exports = grammar({ name: "core_schema", extras: _ => [], rules: { scalar: $ => choice($.null, $.bool, $.int, $.float), null: _ => token(choice("~", "null", "Null", "NULL")), bool: _ => token(choice("true", "True", "TRUE", "false", "False", "FALSE")), int: _ => token(choice( /[-+]?[0-9]+/, // base 10 /0o[0-7]+/, // base 8 /0x[0-9a-fA-F]+/, // base 12 )), float: _ => token(choice( /[-+]?(\.\d+|\d+(\.\d*)?)([eE][-+]?\d+)?/, // number seq( optional(choice("-", "+")), choice(".inf", ".Inf", ".INF") ), // infinity choice(".nan", ".NaN", ".NAN"), // not a number )), }, }); tree-sitter-yaml-0.7.2/schema/core/package.json000066400000000000000000000002111507122265000213770ustar00rootroot00000000000000{ "private": true, "scripts": { "build": "tree-sitter generate --abi=14", "postbuild": "node ../update-schema.js core" } } tree-sitter-yaml-0.7.2/schema/core/src/000077500000000000000000000000001507122265000177065ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/core/src/grammar.json000066400000000000000000000074601507122265000222360ustar00rootroot00000000000000{ "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "core_schema", "rules": { "scalar": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "null" }, { "type": "SYMBOL", "name": "bool" }, { "type": "SYMBOL", "name": "int" }, { "type": "SYMBOL", "name": "float" } ] }, "null": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "STRING", "value": "~" }, { "type": "STRING", "value": "null" }, { "type": "STRING", "value": "Null" }, { "type": "STRING", "value": "NULL" } ] } }, "bool": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "STRING", "value": "true" }, { "type": "STRING", "value": "True" }, { "type": "STRING", "value": "TRUE" }, { "type": "STRING", "value": "false" }, { "type": "STRING", "value": "False" }, { "type": "STRING", "value": "FALSE" } ] } }, "int": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "PATTERN", "value": "[-+]?[0-9]+" }, { "type": "PATTERN", "value": "0o[0-7]+" }, { "type": "PATTERN", "value": "0x[0-9a-fA-F]+" } ] } }, "float": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "PATTERN", "value": "[-+]?(\\.\\d+|\\d+(\\.\\d*)?)([eE][-+]?\\d+)?" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "+" } ] }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "STRING", "value": ".inf" }, { "type": "STRING", "value": ".Inf" }, { "type": "STRING", "value": ".INF" } ] } ] }, { "type": "CHOICE", "members": [ { "type": "STRING", "value": ".nan" }, { "type": "STRING", "value": ".NaN" }, { "type": "STRING", "value": ".NAN" } ] } ] } } }, "extras": [], "conflicts": [], "precedences": [], "externals": [], "inline": [], "supertypes": [], "reserved": {} }tree-sitter-yaml-0.7.2/schema/core/src/node-types.json000066400000000000000000000012211507122265000226640ustar00rootroot00000000000000[ { "type": "scalar", "named": true, "root": true, "fields": {}, "children": { "multiple": false, "required": true, "types": [ { "type": "bool", "named": true }, { "type": "float", "named": true }, { "type": "int", "named": true }, { "type": "null", "named": true } ] } }, { "type": "bool", "named": true }, { "type": "float", "named": true }, { "type": "int", "named": true }, { "type": "null", "named": true } ]tree-sitter-yaml-0.7.2/schema/core/src/parser.c000066400000000000000000000226161507122265000213550ustar00rootroot00000000000000/* Automatically @generated by tree-sitter v0.25.4 (726dcd1e872149d95de581589fc408fb8ea9cb0b) */ #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 #define STATE_COUNT 4 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 6 #define ALIAS_COUNT 0 #define TOKEN_COUNT 5 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 1 #define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 1 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym_null = 1, sym_bool = 2, sym_int = 3, sym_float = 4, sym_scalar = 5, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_null] = "null", [sym_bool] = "bool", [sym_int] = "int", [sym_float] = "float", [sym_scalar] = "scalar", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_null] = sym_null, [sym_bool] = sym_bool, [sym_int] = sym_int, [sym_float] = sym_float, [sym_scalar] = sym_scalar, }; static const TSSymbolMetadata ts_symbol_metadata[] = { [ts_builtin_sym_end] = { .visible = false, .named = true, }, [sym_null] = { .visible = true, .named = true, }, [sym_bool] = { .visible = true, .named = true, }, [sym_int] = { .visible = true, .named = true, }, [sym_float] = { .visible = true, .named = true, }, [sym_scalar] = { .visible = true, .named = true, }, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, }; static const uint16_t ts_non_terminal_alias_map[] = { 0, }; static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, [3] = 3, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: if (eof) ADVANCE(34); ADVANCE_MAP( '.', 6, '0', 37, 'F', 2, 'N', 16, 'T', 13, 'f', 17, 'n', 29, 't', 26, '~', 35, '+', 1, '-', 1, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(38); END_STATE(); case 1: if (lookahead == '.') ADVANCE(7); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); END_STATE(); case 2: if (lookahead == 'A') ADVANCE(9); if (lookahead == 'a') ADVANCE(22); END_STATE(); case 3: if (lookahead == 'A') ADVANCE(12); if (lookahead == 'a') ADVANCE(12); END_STATE(); case 4: if (lookahead == 'E') ADVANCE(36); END_STATE(); case 5: if (lookahead == 'F') ADVANCE(41); END_STATE(); case 6: if (lookahead == 'I') ADVANCE(11); if (lookahead == 'N') ADVANCE(3); if (lookahead == 'i') ADVANCE(24); if (lookahead == 'n') ADVANCE(18); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42); END_STATE(); case 7: if (lookahead == 'I') ADVANCE(11); if (lookahead == 'i') ADVANCE(24); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42); END_STATE(); case 8: if (lookahead == 'L') ADVANCE(35); END_STATE(); case 9: if (lookahead == 'L') ADVANCE(14); END_STATE(); case 10: if (lookahead == 'L') ADVANCE(8); END_STATE(); case 11: if (lookahead == 'N') ADVANCE(5); if (lookahead == 'n') ADVANCE(20); END_STATE(); case 12: if (lookahead == 'N') ADVANCE(41); END_STATE(); case 13: if (lookahead == 'R') ADVANCE(15); if (lookahead == 'r') ADVANCE(28); END_STATE(); case 14: if (lookahead == 'S') ADVANCE(4); END_STATE(); case 15: if (lookahead == 'U') ADVANCE(4); END_STATE(); case 16: if (lookahead == 'U') ADVANCE(10); if (lookahead == 'u') ADVANCE(23); END_STATE(); case 17: if (lookahead == 'a') ADVANCE(22); END_STATE(); case 18: if (lookahead == 'a') ADVANCE(25); END_STATE(); case 19: if (lookahead == 'e') ADVANCE(36); END_STATE(); case 20: if (lookahead == 'f') ADVANCE(41); END_STATE(); case 21: if (lookahead == 'l') ADVANCE(35); END_STATE(); case 22: if (lookahead == 'l') ADVANCE(27); END_STATE(); case 23: if (lookahead == 'l') ADVANCE(21); END_STATE(); case 24: if (lookahead == 'n') ADVANCE(20); END_STATE(); case 25: if (lookahead == 'n') ADVANCE(41); END_STATE(); case 26: if (lookahead == 'r') ADVANCE(28); END_STATE(); case 27: if (lookahead == 's') ADVANCE(19); END_STATE(); case 28: if (lookahead == 'u') ADVANCE(19); END_STATE(); case 29: if (lookahead == 'u') ADVANCE(23); END_STATE(); case 30: if (lookahead == '+' || lookahead == '-') ADVANCE(32); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); END_STATE(); case 31: if (('0' <= lookahead && lookahead <= '7')) ADVANCE(39); END_STATE(); case 32: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); END_STATE(); case 33: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); END_STATE(); case 34: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 35: ACCEPT_TOKEN(sym_null); END_STATE(); case 36: ACCEPT_TOKEN(sym_bool); END_STATE(); case 37: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(42); if (lookahead == 'o') ADVANCE(31); if (lookahead == 'x') ADVANCE(33); if (lookahead == 'E' || lookahead == 'e') ADVANCE(30); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); END_STATE(); case 38: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(42); if (lookahead == 'E' || lookahead == 'e') ADVANCE(30); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); END_STATE(); case 39: ACCEPT_TOKEN(sym_int); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(39); END_STATE(); case 40: ACCEPT_TOKEN(sym_int); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); END_STATE(); case 41: ACCEPT_TOKEN(sym_float); END_STATE(); case 42: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || lookahead == 'e') ADVANCE(30); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42); END_STATE(); case 43: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); END_STATE(); default: return false; } } static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 0}, [2] = {.lex_state = 0}, [3] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_null] = ACTIONS(1), [sym_bool] = ACTIONS(1), [sym_int] = ACTIONS(1), [sym_float] = ACTIONS(1), }, [STATE(1)] = { [sym_scalar] = STATE(3), [sym_null] = ACTIONS(3), [sym_bool] = ACTIONS(3), [sym_int] = ACTIONS(5), [sym_float] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 1, ACTIONS(7), 1, ts_builtin_sym_end, [4] = 1, ACTIONS(9), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, [SMALL_STATE(3)] = 4, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar, 1, 0, 0), [9] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; #ifdef __cplusplus extern "C" { #endif #ifdef TREE_SITTER_HIDE_SYMBOLS #define TS_PUBLIC #elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif TS_PUBLIC const TSLanguage *tree_sitter_core_schema(void) { static const TSLanguage language = { .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, .external_token_count = EXTERNAL_TOKEN_COUNT, .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], .small_parse_table = ts_small_parse_table, .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .primary_state_ids = ts_primary_state_ids, }; return &language; } #ifdef __cplusplus } #endif tree-sitter-yaml-0.7.2/schema/core/src/tree_sitter/000077500000000000000000000000001507122265000222375ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/core/src/tree_sitter/alloc.h000066400000000000000000000017311507122265000235040ustar00rootroot00000000000000#ifndef TREE_SITTER_ALLOC_H_ #define TREE_SITTER_ALLOC_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR extern void *(*ts_current_malloc)(size_t size); extern void *(*ts_current_calloc)(size_t count, size_t size); extern void *(*ts_current_realloc)(void *ptr, size_t size); extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc #endif #ifndef ts_calloc #define ts_calloc ts_current_calloc #endif #ifndef ts_realloc #define ts_realloc ts_current_realloc #endif #ifndef ts_free #define ts_free ts_current_free #endif #else #ifndef ts_malloc #define ts_malloc malloc #endif #ifndef ts_calloc #define ts_calloc calloc #endif #ifndef ts_realloc #define ts_realloc realloc #endif #ifndef ts_free #define ts_free free #endif #endif #ifdef __cplusplus } #endif #endif // TREE_SITTER_ALLOC_H_ tree-sitter-yaml-0.7.2/schema/core/src/tree_sitter/array.h000066400000000000000000000242771507122265000235420ustar00rootroot00000000000000#ifndef TREE_SITTER_ARRAY_H_ #define TREE_SITTER_ARRAY_H_ #ifdef __cplusplus extern "C" { #endif #include "./alloc.h" #include #include #include #include #include #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-variable" #endif #define Array(T) \ struct { \ T *contents; \ uint32_t size; \ uint32_t capacity; \ } /// Initialize an array. #define array_init(self) \ ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) /// Create an empty array. #define array_new() \ { NULL, 0, 0 } /// Get a pointer to the element at a given `index` in the array. #define array_get(self, _index) \ (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) /// Get a pointer to the first element in the array. #define array_front(self) array_get(self, 0) /// Get a pointer to the last element in the array. #define array_back(self) array_get(self, (self)->size - 1) /// Clear the array, setting its size to zero. Note that this does not free any /// memory allocated for the array's contents. #define array_clear(self) ((self)->size = 0) /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. #define array_reserve(self, new_capacity) \ _array__reserve((Array *)(self), array_elem_size(self), new_capacity) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. #define array_delete(self) _array__delete((Array *)(self)) /// Push a new `element` onto the end of the array. #define array_push(self, element) \ (_array__grow((Array *)(self), 1, array_elem_size(self)), \ (self)->contents[(self)->size++] = (element)) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ do { \ if ((count) == 0) break; \ _array__grow((Array *)(self), count, array_elem_size(self)); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. #define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. #define array_extend(self, count, contents) \ _array__splice( \ (Array *)(self), array_elem_size(self), (self)->size, \ 0, count, contents \ ) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. #define array_splice(self, _index, old_count, new_count, new_contents) \ _array__splice( \ (Array *)(self), array_elem_size(self), _index, \ old_count, new_count, new_contents \ ) /// Insert one `element` into the array at the given `index`. #define array_insert(self, _index, element) \ _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ _array__erase((Array *)(self), array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. #define array_assign(self, other) \ _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) /// Swap one array with another #define array_swap(self, other) \ _array__swap((Array *)(self), (Array *)(other)) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) /// Search a sorted array for a given `needle` value, using the given `compare` /// callback to determine the order. /// /// If an existing element is found to be equal to `needle`, then the `index` /// out-parameter is set to the existing value's index, and the `exists` /// out-parameter is set to true. Otherwise, `index` is set to an index where /// `needle` should be inserted in order to preserve the sorting, and `exists` /// is set to false. #define array_search_sorted_with(self, compare, needle, _index, _exists) \ _array__search_sorted(self, 0, compare, , needle, _index, _exists) /// Search a sorted array for a given `needle` value, using integer comparisons /// of a given struct field (specified with a leading dot) to determine the order. /// /// See also `array_search_sorted_with`. #define array_search_sorted_by(self, field, needle, _index, _exists) \ _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) /// Insert a given `value` into a sorted array, using the given `compare` /// callback to determine the order. #define array_insert_sorted_with(self, compare, value) \ do { \ unsigned _index, _exists; \ array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ if (!_exists) array_insert(self, _index, value); \ } while (0) /// Insert a given `value` into a sorted array, using integer comparisons of /// a given struct field (specified with a leading dot) to determine the order. /// /// See also `array_search_sorted_by`. #define array_insert_sorted_by(self, field, value) \ do { \ unsigned _index, _exists; \ array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ if (!_exists) array_insert(self, _index, value); \ } while (0) // Private typedef Array(void) Array; /// This is not what you're looking for, see `array_delete`. static inline void _array__delete(Array *self) { if (self->contents) { ts_free(self->contents); self->contents = NULL; self->size = 0; self->capacity = 0; } } /// This is not what you're looking for, see `array_erase`. static inline void _array__erase(Array *self, size_t element_size, uint32_t index) { assert(index < self->size); char *contents = (char *)self->contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, (self->size - index - 1) * element_size); self->size--; } /// This is not what you're looking for, see `array_reserve`. static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { if (new_capacity > self->capacity) { if (self->contents) { self->contents = ts_realloc(self->contents, new_capacity * element_size); } else { self->contents = ts_malloc(new_capacity * element_size); } self->capacity = new_capacity; } } /// This is not what you're looking for, see `array_assign`. static inline void _array__assign(Array *self, const Array *other, size_t element_size) { _array__reserve(self, element_size, other->size); self->size = other->size; memcpy(self->contents, other->contents, self->size * element_size); } /// This is not what you're looking for, see `array_swap`. static inline void _array__swap(Array *self, Array *other) { Array swap = *other; *other = *self; *self = swap; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { uint32_t new_size = self->size + count; if (new_size > self->capacity) { uint32_t new_capacity = self->capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; _array__reserve(self, element_size, new_capacity); } } /// This is not what you're looking for, see `array_splice`. static inline void _array__splice(Array *self, size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { uint32_t new_size = self->size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; assert(old_end <= self->size); _array__reserve(self, element_size, new_size); char *contents = (char *)self->contents; if (self->size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, (self->size - old_end) * element_size ); } if (new_count > 0) { if (elements) { memcpy( (contents + index * element_size), elements, new_count * element_size ); } else { memset( (contents + index * element_size), 0, new_count * element_size ); } } self->size += new_count - old_count; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. /// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. #define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ do { \ *(_index) = start; \ *(_exists) = false; \ uint32_t size = (self)->size - *(_index); \ if (size == 0) break; \ int comparison; \ while (size > 1) { \ uint32_t half_size = size / 2; \ uint32_t mid_index = *(_index) + half_size; \ comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ if (comparison <= 0) *(_index) = mid_index; \ size -= half_size; \ } \ comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ if (comparison == 0) *(_exists) = true; \ else if (comparison < 0) *(_index) += 1; \ } while (0) /// Helper macro for the `_sorted_by` routines below. This takes the left (existing) /// parameter by reference in order to work with the generic sorting function above. #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER #pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif #ifdef __cplusplus } #endif #endif // TREE_SITTER_ARRAY_H_ tree-sitter-yaml-0.7.2/schema/core/src/tree_sitter/parser.h000066400000000000000000000167101507122265000237110ustar00rootroot00000000000000#ifndef TREE_SITTER_PARSER_H_ #define TREE_SITTER_PARSER_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include #define ts_builtin_sym_error ((TSSymbol)-1) #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 #ifndef TREE_SITTER_API_H_ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; typedef struct TSLanguageMetadata { uint8_t major_version; uint8_t minor_version; uint8_t patch_version; } TSLanguageMetadata; #endif typedef struct { TSFieldId field_id; uint8_t child_index; bool inherited; } TSFieldMapEntry; // Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; } TSMapSlice; typedef struct { bool visible; bool named; bool supertype; } TSSymbolMetadata; typedef struct TSLexer TSLexer; struct TSLexer { int32_t lookahead; TSSymbol result_symbol; void (*advance)(TSLexer *, bool); void (*mark_end)(TSLexer *); uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); void (*log)(const TSLexer *, const char *, ...); }; typedef enum { TSParseActionTypeShift, TSParseActionTypeReduce, TSParseActionTypeAccept, TSParseActionTypeRecover, } TSParseActionType; typedef union { struct { uint8_t type; TSStateId state; bool extra; bool repetition; } shift; struct { uint8_t type; uint8_t child_count; TSSymbol symbol; int16_t dynamic_precedence; uint16_t production_id; } reduce; uint8_t type; } TSParseAction; typedef struct { uint16_t lex_state; uint16_t external_lex_state; } TSLexMode; typedef struct { uint16_t lex_state; uint16_t external_lex_state; uint16_t reserved_word_set_id; } TSLexerMode; typedef union { TSParseAction action; struct { uint8_t count; bool reusable; } entry; } TSParseActionEntry; typedef struct { int32_t start; int32_t end; } TSCharacterRange; struct TSLanguage { uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; uint32_t external_token_count; uint32_t state_count; uint32_t large_state_count; uint32_t production_id_count; uint32_t field_count; uint16_t max_alias_sequence_length; const uint16_t *parse_table; const uint16_t *small_parse_table; const uint32_t *small_parse_table_map; const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; struct { const bool *states; const TSSymbol *symbol_map; void *(*create)(void); void (*destroy)(void *); bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; const char *name; const TSSymbol *reserved_words; uint16_t max_reserved_word_set_size; uint32_t supertype_count; const TSSymbol *supertype_symbols; const TSMapSlice *supertype_map_slices; const TSSymbol *supertype_map_entries; TSLanguageMetadata metadata; }; static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { index = mid_index; } size -= half_size; } const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } /* * Lexer Macros */ #ifdef _MSC_VER #define UNUSED __pragma(warning(suppress : 4101)) #else #define UNUSED __attribute__((unused)) #endif #define START_LEXER() \ bool result = false; \ bool skip = false; \ UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ next_state: \ lexer->advance(lexer, skip); \ start: \ skip = false; \ lookahead = lexer->lookahead; #define ADVANCE(state_value) \ { \ state = state_value; \ goto next_state; \ } #define ADVANCE_MAP(...) \ { \ static const uint16_t map[] = { __VA_ARGS__ }; \ for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ if (map[i] == lookahead) { \ state = map[i + 1]; \ goto next_state; \ } \ } \ } #define SKIP(state_value) \ { \ skip = true; \ state = state_value; \ goto next_state; \ } #define ACCEPT_TOKEN(symbol_value) \ result = true; \ lexer->result_symbol = symbol_value; \ lexer->mark_end(lexer); #define END_STATE() return result; /* * Parse Table Macros */ #define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id #define ACTIONS(id) id #define SHIFT(state_value) \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .state = (state_value) \ } \ }} #define SHIFT_REPEAT(state_value) \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .state = (state_value), \ .repetition = true \ } \ }} #define SHIFT_EXTRA() \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .extra = true \ } \ }} #define REDUCE(symbol_name, children, precedence, prod_id) \ {{ \ .reduce = { \ .type = TSParseActionTypeReduce, \ .symbol = symbol_name, \ .child_count = children, \ .dynamic_precedence = precedence, \ .production_id = prod_id \ }, \ }} #define RECOVER() \ {{ \ .type = TSParseActionTypeRecover \ }} #define ACCEPT_INPUT() \ {{ \ .type = TSParseActionTypeAccept \ }} #ifdef __cplusplus } #endif #endif // TREE_SITTER_PARSER_H_ tree-sitter-yaml-0.7.2/schema/json/000077500000000000000000000000001507122265000171405ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/json/grammar.js000066400000000000000000000007251507122265000211300ustar00rootroot00000000000000/** @see {@link JSON Schema|https://yaml.org/spec/1.2.2/#102-json-schema} */ /// module.exports = grammar({ name: "json_schema", extras: _ => [], rules: { scalar: $ => choice($.null, $.bool, $.int, $.float), null: _ => token("null"), bool: _ => token(choice("true", "false")), int: _ => token(/-?(0|[1-9][0-9]*)/), float: _ => token(/-?(0|[1-9][0-9]*)(\.[0-9]*)?([eE][-+]?[0-9]+)?/), }, }); tree-sitter-yaml-0.7.2/schema/json/package.json000066400000000000000000000002111507122265000214200ustar00rootroot00000000000000{ "private": true, "scripts": { "build": "tree-sitter generate --abi=14", "postbuild": "node ../update-schema.js json" } } tree-sitter-yaml-0.7.2/schema/json/src/000077500000000000000000000000001507122265000177275ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/json/src/grammar.json000066400000000000000000000025061507122265000222530ustar00rootroot00000000000000{ "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "json_schema", "rules": { "scalar": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "null" }, { "type": "SYMBOL", "name": "bool" }, { "type": "SYMBOL", "name": "int" }, { "type": "SYMBOL", "name": "float" } ] }, "null": { "type": "TOKEN", "content": { "type": "STRING", "value": "null" } }, "bool": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "STRING", "value": "true" }, { "type": "STRING", "value": "false" } ] } }, "int": { "type": "TOKEN", "content": { "type": "PATTERN", "value": "-?(0|[1-9][0-9]*)" } }, "float": { "type": "TOKEN", "content": { "type": "PATTERN", "value": "-?(0|[1-9][0-9]*)(\\.[0-9]*)?([eE][-+]?[0-9]+)?" } } }, "extras": [], "conflicts": [], "precedences": [], "externals": [], "inline": [], "supertypes": [], "reserved": {} }tree-sitter-yaml-0.7.2/schema/json/src/node-types.json000066400000000000000000000012211507122265000227050ustar00rootroot00000000000000[ { "type": "scalar", "named": true, "root": true, "fields": {}, "children": { "multiple": false, "required": true, "types": [ { "type": "bool", "named": true }, { "type": "float", "named": true }, { "type": "int", "named": true }, { "type": "null", "named": true } ] } }, { "type": "bool", "named": true }, { "type": "float", "named": true }, { "type": "int", "named": true }, { "type": "null", "named": true } ]tree-sitter-yaml-0.7.2/schema/json/src/parser.c000066400000000000000000000153251507122265000213750ustar00rootroot00000000000000/* Automatically @generated by tree-sitter v0.25.4 (726dcd1e872149d95de581589fc408fb8ea9cb0b) */ #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 #define STATE_COUNT 4 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 6 #define ALIAS_COUNT 0 #define TOKEN_COUNT 5 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 1 #define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 1 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym_null = 1, sym_bool = 2, sym_int = 3, sym_float = 4, sym_scalar = 5, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_null] = "null", [sym_bool] = "bool", [sym_int] = "int", [sym_float] = "float", [sym_scalar] = "scalar", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_null] = sym_null, [sym_bool] = sym_bool, [sym_int] = sym_int, [sym_float] = sym_float, [sym_scalar] = sym_scalar, }; static const TSSymbolMetadata ts_symbol_metadata[] = { [ts_builtin_sym_end] = { .visible = false, .named = true, }, [sym_null] = { .visible = true, .named = true, }, [sym_bool] = { .visible = true, .named = true, }, [sym_int] = { .visible = true, .named = true, }, [sym_float] = { .visible = true, .named = true, }, [sym_scalar] = { .visible = true, .named = true, }, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, }; static const uint16_t ts_non_terminal_alias_map[] = { 0, }; static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, [3] = 3, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: if (eof) ADVANCE(13); if (lookahead == '-') ADVANCE(1); if (lookahead == '0') ADVANCE(16); if (lookahead == 'f') ADVANCE(2); if (lookahead == 'n') ADVANCE(10); if (lookahead == 't') ADVANCE(7); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(17); END_STATE(); case 1: if (lookahead == '0') ADVANCE(16); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(17); END_STATE(); case 2: if (lookahead == 'a') ADVANCE(4); END_STATE(); case 3: if (lookahead == 'e') ADVANCE(15); END_STATE(); case 4: if (lookahead == 'l') ADVANCE(8); END_STATE(); case 5: if (lookahead == 'l') ADVANCE(14); END_STATE(); case 6: if (lookahead == 'l') ADVANCE(5); END_STATE(); case 7: if (lookahead == 'r') ADVANCE(9); END_STATE(); case 8: if (lookahead == 's') ADVANCE(3); END_STATE(); case 9: if (lookahead == 'u') ADVANCE(3); END_STATE(); case 10: if (lookahead == 'u') ADVANCE(6); END_STATE(); case 11: if (lookahead == '+' || lookahead == '-') ADVANCE(12); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(19); END_STATE(); case 12: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(19); END_STATE(); case 13: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 14: ACCEPT_TOKEN(sym_null); END_STATE(); case 15: ACCEPT_TOKEN(sym_bool); END_STATE(); case 16: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(18); if (lookahead == 'E' || lookahead == 'e') ADVANCE(11); END_STATE(); case 17: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(18); if (lookahead == 'E' || lookahead == 'e') ADVANCE(11); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(17); END_STATE(); case 18: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || lookahead == 'e') ADVANCE(11); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(18); END_STATE(); case 19: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(19); END_STATE(); default: return false; } } static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 0}, [2] = {.lex_state = 0}, [3] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_null] = ACTIONS(1), [sym_bool] = ACTIONS(1), [sym_int] = ACTIONS(1), [sym_float] = ACTIONS(1), }, [STATE(1)] = { [sym_scalar] = STATE(3), [sym_null] = ACTIONS(3), [sym_bool] = ACTIONS(3), [sym_int] = ACTIONS(5), [sym_float] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 1, ACTIONS(7), 1, ts_builtin_sym_end, [4] = 1, ACTIONS(9), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, [SMALL_STATE(3)] = 4, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar, 1, 0, 0), [9] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; #ifdef __cplusplus extern "C" { #endif #ifdef TREE_SITTER_HIDE_SYMBOLS #define TS_PUBLIC #elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif TS_PUBLIC const TSLanguage *tree_sitter_json_schema(void) { static const TSLanguage language = { .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, .external_token_count = EXTERNAL_TOKEN_COUNT, .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], .small_parse_table = ts_small_parse_table, .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .primary_state_ids = ts_primary_state_ids, }; return &language; } #ifdef __cplusplus } #endif tree-sitter-yaml-0.7.2/schema/json/src/tree_sitter/000077500000000000000000000000001507122265000222605ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/json/src/tree_sitter/alloc.h000066400000000000000000000017311507122265000235250ustar00rootroot00000000000000#ifndef TREE_SITTER_ALLOC_H_ #define TREE_SITTER_ALLOC_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR extern void *(*ts_current_malloc)(size_t size); extern void *(*ts_current_calloc)(size_t count, size_t size); extern void *(*ts_current_realloc)(void *ptr, size_t size); extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc #endif #ifndef ts_calloc #define ts_calloc ts_current_calloc #endif #ifndef ts_realloc #define ts_realloc ts_current_realloc #endif #ifndef ts_free #define ts_free ts_current_free #endif #else #ifndef ts_malloc #define ts_malloc malloc #endif #ifndef ts_calloc #define ts_calloc calloc #endif #ifndef ts_realloc #define ts_realloc realloc #endif #ifndef ts_free #define ts_free free #endif #endif #ifdef __cplusplus } #endif #endif // TREE_SITTER_ALLOC_H_ tree-sitter-yaml-0.7.2/schema/json/src/tree_sitter/array.h000066400000000000000000000242771507122265000235630ustar00rootroot00000000000000#ifndef TREE_SITTER_ARRAY_H_ #define TREE_SITTER_ARRAY_H_ #ifdef __cplusplus extern "C" { #endif #include "./alloc.h" #include #include #include #include #include #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-variable" #endif #define Array(T) \ struct { \ T *contents; \ uint32_t size; \ uint32_t capacity; \ } /// Initialize an array. #define array_init(self) \ ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) /// Create an empty array. #define array_new() \ { NULL, 0, 0 } /// Get a pointer to the element at a given `index` in the array. #define array_get(self, _index) \ (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) /// Get a pointer to the first element in the array. #define array_front(self) array_get(self, 0) /// Get a pointer to the last element in the array. #define array_back(self) array_get(self, (self)->size - 1) /// Clear the array, setting its size to zero. Note that this does not free any /// memory allocated for the array's contents. #define array_clear(self) ((self)->size = 0) /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. #define array_reserve(self, new_capacity) \ _array__reserve((Array *)(self), array_elem_size(self), new_capacity) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. #define array_delete(self) _array__delete((Array *)(self)) /// Push a new `element` onto the end of the array. #define array_push(self, element) \ (_array__grow((Array *)(self), 1, array_elem_size(self)), \ (self)->contents[(self)->size++] = (element)) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ do { \ if ((count) == 0) break; \ _array__grow((Array *)(self), count, array_elem_size(self)); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. #define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. #define array_extend(self, count, contents) \ _array__splice( \ (Array *)(self), array_elem_size(self), (self)->size, \ 0, count, contents \ ) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. #define array_splice(self, _index, old_count, new_count, new_contents) \ _array__splice( \ (Array *)(self), array_elem_size(self), _index, \ old_count, new_count, new_contents \ ) /// Insert one `element` into the array at the given `index`. #define array_insert(self, _index, element) \ _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ _array__erase((Array *)(self), array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. #define array_assign(self, other) \ _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) /// Swap one array with another #define array_swap(self, other) \ _array__swap((Array *)(self), (Array *)(other)) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) /// Search a sorted array for a given `needle` value, using the given `compare` /// callback to determine the order. /// /// If an existing element is found to be equal to `needle`, then the `index` /// out-parameter is set to the existing value's index, and the `exists` /// out-parameter is set to true. Otherwise, `index` is set to an index where /// `needle` should be inserted in order to preserve the sorting, and `exists` /// is set to false. #define array_search_sorted_with(self, compare, needle, _index, _exists) \ _array__search_sorted(self, 0, compare, , needle, _index, _exists) /// Search a sorted array for a given `needle` value, using integer comparisons /// of a given struct field (specified with a leading dot) to determine the order. /// /// See also `array_search_sorted_with`. #define array_search_sorted_by(self, field, needle, _index, _exists) \ _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) /// Insert a given `value` into a sorted array, using the given `compare` /// callback to determine the order. #define array_insert_sorted_with(self, compare, value) \ do { \ unsigned _index, _exists; \ array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ if (!_exists) array_insert(self, _index, value); \ } while (0) /// Insert a given `value` into a sorted array, using integer comparisons of /// a given struct field (specified with a leading dot) to determine the order. /// /// See also `array_search_sorted_by`. #define array_insert_sorted_by(self, field, value) \ do { \ unsigned _index, _exists; \ array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ if (!_exists) array_insert(self, _index, value); \ } while (0) // Private typedef Array(void) Array; /// This is not what you're looking for, see `array_delete`. static inline void _array__delete(Array *self) { if (self->contents) { ts_free(self->contents); self->contents = NULL; self->size = 0; self->capacity = 0; } } /// This is not what you're looking for, see `array_erase`. static inline void _array__erase(Array *self, size_t element_size, uint32_t index) { assert(index < self->size); char *contents = (char *)self->contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, (self->size - index - 1) * element_size); self->size--; } /// This is not what you're looking for, see `array_reserve`. static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { if (new_capacity > self->capacity) { if (self->contents) { self->contents = ts_realloc(self->contents, new_capacity * element_size); } else { self->contents = ts_malloc(new_capacity * element_size); } self->capacity = new_capacity; } } /// This is not what you're looking for, see `array_assign`. static inline void _array__assign(Array *self, const Array *other, size_t element_size) { _array__reserve(self, element_size, other->size); self->size = other->size; memcpy(self->contents, other->contents, self->size * element_size); } /// This is not what you're looking for, see `array_swap`. static inline void _array__swap(Array *self, Array *other) { Array swap = *other; *other = *self; *self = swap; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { uint32_t new_size = self->size + count; if (new_size > self->capacity) { uint32_t new_capacity = self->capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; _array__reserve(self, element_size, new_capacity); } } /// This is not what you're looking for, see `array_splice`. static inline void _array__splice(Array *self, size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { uint32_t new_size = self->size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; assert(old_end <= self->size); _array__reserve(self, element_size, new_size); char *contents = (char *)self->contents; if (self->size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, (self->size - old_end) * element_size ); } if (new_count > 0) { if (elements) { memcpy( (contents + index * element_size), elements, new_count * element_size ); } else { memset( (contents + index * element_size), 0, new_count * element_size ); } } self->size += new_count - old_count; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. /// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. #define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ do { \ *(_index) = start; \ *(_exists) = false; \ uint32_t size = (self)->size - *(_index); \ if (size == 0) break; \ int comparison; \ while (size > 1) { \ uint32_t half_size = size / 2; \ uint32_t mid_index = *(_index) + half_size; \ comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ if (comparison <= 0) *(_index) = mid_index; \ size -= half_size; \ } \ comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ if (comparison == 0) *(_exists) = true; \ else if (comparison < 0) *(_index) += 1; \ } while (0) /// Helper macro for the `_sorted_by` routines below. This takes the left (existing) /// parameter by reference in order to work with the generic sorting function above. #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER #pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif #ifdef __cplusplus } #endif #endif // TREE_SITTER_ARRAY_H_ tree-sitter-yaml-0.7.2/schema/json/src/tree_sitter/parser.h000066400000000000000000000167101507122265000237320ustar00rootroot00000000000000#ifndef TREE_SITTER_PARSER_H_ #define TREE_SITTER_PARSER_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include #define ts_builtin_sym_error ((TSSymbol)-1) #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 #ifndef TREE_SITTER_API_H_ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; typedef struct TSLanguageMetadata { uint8_t major_version; uint8_t minor_version; uint8_t patch_version; } TSLanguageMetadata; #endif typedef struct { TSFieldId field_id; uint8_t child_index; bool inherited; } TSFieldMapEntry; // Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; } TSMapSlice; typedef struct { bool visible; bool named; bool supertype; } TSSymbolMetadata; typedef struct TSLexer TSLexer; struct TSLexer { int32_t lookahead; TSSymbol result_symbol; void (*advance)(TSLexer *, bool); void (*mark_end)(TSLexer *); uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); void (*log)(const TSLexer *, const char *, ...); }; typedef enum { TSParseActionTypeShift, TSParseActionTypeReduce, TSParseActionTypeAccept, TSParseActionTypeRecover, } TSParseActionType; typedef union { struct { uint8_t type; TSStateId state; bool extra; bool repetition; } shift; struct { uint8_t type; uint8_t child_count; TSSymbol symbol; int16_t dynamic_precedence; uint16_t production_id; } reduce; uint8_t type; } TSParseAction; typedef struct { uint16_t lex_state; uint16_t external_lex_state; } TSLexMode; typedef struct { uint16_t lex_state; uint16_t external_lex_state; uint16_t reserved_word_set_id; } TSLexerMode; typedef union { TSParseAction action; struct { uint8_t count; bool reusable; } entry; } TSParseActionEntry; typedef struct { int32_t start; int32_t end; } TSCharacterRange; struct TSLanguage { uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; uint32_t external_token_count; uint32_t state_count; uint32_t large_state_count; uint32_t production_id_count; uint32_t field_count; uint16_t max_alias_sequence_length; const uint16_t *parse_table; const uint16_t *small_parse_table; const uint32_t *small_parse_table_map; const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; struct { const bool *states; const TSSymbol *symbol_map; void *(*create)(void); void (*destroy)(void *); bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; const char *name; const TSSymbol *reserved_words; uint16_t max_reserved_word_set_size; uint32_t supertype_count; const TSSymbol *supertype_symbols; const TSMapSlice *supertype_map_slices; const TSSymbol *supertype_map_entries; TSLanguageMetadata metadata; }; static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { index = mid_index; } size -= half_size; } const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } /* * Lexer Macros */ #ifdef _MSC_VER #define UNUSED __pragma(warning(suppress : 4101)) #else #define UNUSED __attribute__((unused)) #endif #define START_LEXER() \ bool result = false; \ bool skip = false; \ UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ next_state: \ lexer->advance(lexer, skip); \ start: \ skip = false; \ lookahead = lexer->lookahead; #define ADVANCE(state_value) \ { \ state = state_value; \ goto next_state; \ } #define ADVANCE_MAP(...) \ { \ static const uint16_t map[] = { __VA_ARGS__ }; \ for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ if (map[i] == lookahead) { \ state = map[i + 1]; \ goto next_state; \ } \ } \ } #define SKIP(state_value) \ { \ skip = true; \ state = state_value; \ goto next_state; \ } #define ACCEPT_TOKEN(symbol_value) \ result = true; \ lexer->result_symbol = symbol_value; \ lexer->mark_end(lexer); #define END_STATE() return result; /* * Parse Table Macros */ #define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id #define ACTIONS(id) id #define SHIFT(state_value) \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .state = (state_value) \ } \ }} #define SHIFT_REPEAT(state_value) \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .state = (state_value), \ .repetition = true \ } \ }} #define SHIFT_EXTRA() \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .extra = true \ } \ }} #define REDUCE(symbol_name, children, precedence, prod_id) \ {{ \ .reduce = { \ .type = TSParseActionTypeReduce, \ .symbol = symbol_name, \ .child_count = children, \ .dynamic_precedence = precedence, \ .production_id = prod_id \ }, \ }} #define RECOVER() \ {{ \ .type = TSParseActionTypeRecover \ }} #define ACCEPT_INPUT() \ {{ \ .type = TSParseActionTypeAccept \ }} #ifdef __cplusplus } #endif #endif // TREE_SITTER_PARSER_H_ tree-sitter-yaml-0.7.2/schema/legacy/000077500000000000000000000000001507122265000174335ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/legacy/grammar.js000066400000000000000000000026751507122265000214310ustar00rootroot00000000000000/** @see {@link YAML 1.1|https://yaml.org/type/} */ /// module.exports = grammar({ name: "legacy_schema", extras: _ => [], rules: { scalar: $ => choice($.null, $.bool, $.int, $.float, $.timestamp), null: _ => token(choice("~", "null", "Null", "NULL")), bool: _ => token(choice( "y", "Y", "yes", "Yes", "YES", "n", "N", "no", "No", "NO", "true", "True", "TRUE", "false", "False", "FALSE", "on", "On", "ON", "off", "Off", "OFF", )), int: _ => token(choice( /[-+]?0b[0-1_]+/, // base 2 /[-+]?0[0-7_]+/, // base 8 /[-+]?(0|[1-9][0-9_]*)/, // base 10 /[-+]?0x[0-9a-fA-F_]+/, // base 16 /[-+]?[1-9][0-9_]*(:[0-5]?[0-9])+/, // base 60 )), float: _ => token(choice( /[-+]?([0-9][0-9_]*)?\.[0-9.]*([eE][-+][0-9]+)?/, // base 10 /[-+]?[0-9][0-9_]*(:[0-5]?[0-9])+\.[0-9_]*/, // base 60 seq( optional(choice("-", "+")), choice(".inf", ".Inf", ".INF") ), // infinity choice(".nan", ".NaN", ".NAN"), // not a number )), timestamp: _ => token(choice( /\d\d\d\d-\d\d-\d\d/, // ymd seq( /\d\d\d\d-\d\d?-\d\d?/, // year-month-day choice("T", "t", /[ \t]+/), /\d\d?:\d\d:\d\d/, // hour:minute:second optional(/\.\d+/), // fraction optional(choice( /[ \t]*Z/, /[-+]\d\d?(:\d\d)?/ )) // time zone ) )) }, }); tree-sitter-yaml-0.7.2/schema/legacy/package.json000066400000000000000000000002131507122265000217150ustar00rootroot00000000000000{ "private": true, "scripts": { "build": "tree-sitter generate --abi=14", "postbuild": "node ../update-schema.js legacy" } } tree-sitter-yaml-0.7.2/schema/legacy/src/000077500000000000000000000000001507122265000202225ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/legacy/src/grammar.json000066400000000000000000000166101507122265000225470ustar00rootroot00000000000000{ "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "legacy_schema", "rules": { "scalar": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "null" }, { "type": "SYMBOL", "name": "bool" }, { "type": "SYMBOL", "name": "int" }, { "type": "SYMBOL", "name": "float" }, { "type": "SYMBOL", "name": "timestamp" } ] }, "null": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "STRING", "value": "~" }, { "type": "STRING", "value": "null" }, { "type": "STRING", "value": "Null" }, { "type": "STRING", "value": "NULL" } ] } }, "bool": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "STRING", "value": "y" }, { "type": "STRING", "value": "Y" }, { "type": "STRING", "value": "yes" }, { "type": "STRING", "value": "Yes" }, { "type": "STRING", "value": "YES" }, { "type": "STRING", "value": "n" }, { "type": "STRING", "value": "N" }, { "type": "STRING", "value": "no" }, { "type": "STRING", "value": "No" }, { "type": "STRING", "value": "NO" }, { "type": "STRING", "value": "true" }, { "type": "STRING", "value": "True" }, { "type": "STRING", "value": "TRUE" }, { "type": "STRING", "value": "false" }, { "type": "STRING", "value": "False" }, { "type": "STRING", "value": "FALSE" }, { "type": "STRING", "value": "on" }, { "type": "STRING", "value": "On" }, { "type": "STRING", "value": "ON" }, { "type": "STRING", "value": "off" }, { "type": "STRING", "value": "Off" }, { "type": "STRING", "value": "OFF" } ] } }, "int": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "PATTERN", "value": "[-+]?0b[0-1_]+" }, { "type": "PATTERN", "value": "[-+]?0[0-7_]+" }, { "type": "PATTERN", "value": "[-+]?(0|[1-9][0-9_]*)" }, { "type": "PATTERN", "value": "[-+]?0x[0-9a-fA-F_]+" }, { "type": "PATTERN", "value": "[-+]?[1-9][0-9_]*(:[0-5]?[0-9])+" } ] } }, "float": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "PATTERN", "value": "[-+]?([0-9][0-9_]*)?\\.[0-9.]*([eE][-+][0-9]+)?" }, { "type": "PATTERN", "value": "[-+]?[0-9][0-9_]*(:[0-5]?[0-9])+\\.[0-9_]*" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "STRING", "value": "-" }, { "type": "STRING", "value": "+" } ] }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "STRING", "value": ".inf" }, { "type": "STRING", "value": ".Inf" }, { "type": "STRING", "value": ".INF" } ] } ] }, { "type": "CHOICE", "members": [ { "type": "STRING", "value": ".nan" }, { "type": "STRING", "value": ".NaN" }, { "type": "STRING", "value": ".NAN" } ] } ] } }, "timestamp": { "type": "TOKEN", "content": { "type": "CHOICE", "members": [ { "type": "PATTERN", "value": "\\d\\d\\d\\d-\\d\\d-\\d\\d" }, { "type": "SEQ", "members": [ { "type": "PATTERN", "value": "\\d\\d\\d\\d-\\d\\d?-\\d\\d?" }, { "type": "CHOICE", "members": [ { "type": "STRING", "value": "T" }, { "type": "STRING", "value": "t" }, { "type": "PATTERN", "value": "[ \\t]+" } ] }, { "type": "PATTERN", "value": "\\d\\d?:\\d\\d:\\d\\d" }, { "type": "CHOICE", "members": [ { "type": "PATTERN", "value": "\\.\\d+" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "PATTERN", "value": "[ \\t]*Z" }, { "type": "PATTERN", "value": "[-+]\\d\\d?(:\\d\\d)?" } ] }, { "type": "BLANK" } ] } ] } ] } } }, "extras": [], "conflicts": [], "precedences": [], "externals": [], "inline": [], "supertypes": [], "reserved": {} }tree-sitter-yaml-0.7.2/schema/legacy/src/node-types.json000066400000000000000000000014211507122265000232020ustar00rootroot00000000000000[ { "type": "scalar", "named": true, "root": true, "fields": {}, "children": { "multiple": false, "required": true, "types": [ { "type": "bool", "named": true }, { "type": "float", "named": true }, { "type": "int", "named": true }, { "type": "null", "named": true }, { "type": "timestamp", "named": true } ] } }, { "type": "bool", "named": true }, { "type": "float", "named": true }, { "type": "int", "named": true }, { "type": "null", "named": true }, { "type": "timestamp", "named": true } ]tree-sitter-yaml-0.7.2/schema/legacy/src/parser.c000066400000000000000000000466211507122265000216730ustar00rootroot00000000000000/* Automatically @generated by tree-sitter v0.25.4 (726dcd1e872149d95de581589fc408fb8ea9cb0b) */ #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 #define STATE_COUNT 4 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 7 #define ALIAS_COUNT 0 #define TOKEN_COUNT 6 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 1 #define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 1 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym_null = 1, sym_bool = 2, sym_int = 3, sym_float = 4, sym_timestamp = 5, sym_scalar = 6, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_null] = "null", [sym_bool] = "bool", [sym_int] = "int", [sym_float] = "float", [sym_timestamp] = "timestamp", [sym_scalar] = "scalar", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_null] = sym_null, [sym_bool] = sym_bool, [sym_int] = sym_int, [sym_float] = sym_float, [sym_timestamp] = sym_timestamp, [sym_scalar] = sym_scalar, }; static const TSSymbolMetadata ts_symbol_metadata[] = { [ts_builtin_sym_end] = { .visible = false, .named = true, }, [sym_null] = { .visible = true, .named = true, }, [sym_bool] = { .visible = true, .named = true, }, [sym_int] = { .visible = true, .named = true, }, [sym_float] = { .visible = true, .named = true, }, [sym_timestamp] = { .visible = true, .named = true, }, [sym_scalar] = { .visible = true, .named = true, }, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, }; static const uint16_t ts_non_terminal_alias_map[] = { 0, }; static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, [3] = 3, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: if (eof) ADVANCE(66); ADVANCE_MAP( '.', 89, '0', 75, 'F', 13, 'N', 70, 'O', 17, 'T', 24, 'Y', 69, 'f', 29, 'n', 72, 'o', 33, 't', 40, 'y', 71, '~', 67, '+', 7, '-', 7, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); case 1: if (lookahead == '-') ADVANCE(53); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); case 2: if (lookahead == '-') ADVANCE(54); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3); END_STATE(); case 3: if (lookahead == '-') ADVANCE(60); END_STATE(); case 4: if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (lookahead == '_') ADVANCE(6); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1); END_STATE(); case 5: if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (lookahead == '_') ADVANCE(6); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4); END_STATE(); case 6: if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); case 7: if (lookahead == '.') ADVANCE(90); if (lookahead == '0') ADVANCE(78); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 8: if (lookahead == '.') ADVANCE(93); if (lookahead == ':') ADVANCE(50); END_STATE(); case 9: if (lookahead == '.') ADVANCE(93); if (lookahead == ':') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(8); END_STATE(); case 10: if (lookahead == ':') ADVANCE(61); END_STATE(); case 11: if (lookahead == ':') ADVANCE(61); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(10); END_STATE(); case 12: if (lookahead == ':') ADVANCE(62); END_STATE(); case 13: if (lookahead == 'A') ADVANCE(20); if (lookahead == 'a') ADVANCE(36); END_STATE(); case 14: if (lookahead == 'A') ADVANCE(22); if (lookahead == 'a') ADVANCE(22); END_STATE(); case 15: if (lookahead == 'E') ADVANCE(68); END_STATE(); case 16: if (lookahead == 'F') ADVANCE(68); END_STATE(); case 17: if (lookahead == 'F') ADVANCE(16); if (lookahead == 'f') ADVANCE(32); if (lookahead == 'N' || lookahead == 'n') ADVANCE(68); END_STATE(); case 18: if (lookahead == 'F') ADVANCE(88); END_STATE(); case 19: if (lookahead == 'L') ADVANCE(67); END_STATE(); case 20: if (lookahead == 'L') ADVANCE(26); END_STATE(); case 21: if (lookahead == 'L') ADVANCE(19); END_STATE(); case 22: if (lookahead == 'N') ADVANCE(88); END_STATE(); case 23: if (lookahead == 'N') ADVANCE(18); if (lookahead == 'n') ADVANCE(34); END_STATE(); case 24: if (lookahead == 'R') ADVANCE(27); if (lookahead == 'r') ADVANCE(43); END_STATE(); case 25: if (lookahead == 'S') ADVANCE(68); END_STATE(); case 26: if (lookahead == 'S') ADVANCE(15); END_STATE(); case 27: if (lookahead == 'U') ADVANCE(15); END_STATE(); case 28: if (lookahead == 'Z') ADVANCE(94); if (lookahead == '\t' || lookahead == ' ') ADVANCE(28); END_STATE(); case 29: if (lookahead == 'a') ADVANCE(36); END_STATE(); case 30: if (lookahead == 'a') ADVANCE(38); END_STATE(); case 31: if (lookahead == 'e') ADVANCE(68); END_STATE(); case 32: if (lookahead == 'f') ADVANCE(68); END_STATE(); case 33: if (lookahead == 'f') ADVANCE(32); if (lookahead == 'n') ADVANCE(68); END_STATE(); case 34: if (lookahead == 'f') ADVANCE(88); END_STATE(); case 35: if (lookahead == 'l') ADVANCE(67); END_STATE(); case 36: if (lookahead == 'l') ADVANCE(42); END_STATE(); case 37: if (lookahead == 'l') ADVANCE(35); END_STATE(); case 38: if (lookahead == 'n') ADVANCE(88); END_STATE(); case 39: if (lookahead == 'n') ADVANCE(34); END_STATE(); case 40: if (lookahead == 'r') ADVANCE(43); END_STATE(); case 41: if (lookahead == 's') ADVANCE(68); END_STATE(); case 42: if (lookahead == 's') ADVANCE(31); END_STATE(); case 43: if (lookahead == 'u') ADVANCE(31); END_STATE(); case 44: if (lookahead == '\t' || lookahead == ' ') ADVANCE(47); if (lookahead == 'T' || lookahead == 't') ADVANCE(55); END_STATE(); case 45: if (lookahead == '\t' || lookahead == ' ') ADVANCE(47); if (lookahead == 'T' || lookahead == 't') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); END_STATE(); case 46: if (lookahead == '\t' || lookahead == ' ') ADVANCE(47); if (lookahead == 'T' || lookahead == 't') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); END_STATE(); case 47: if (lookahead == '\t' || lookahead == ' ') ADVANCE(47); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(11); END_STATE(); case 48: if (lookahead == '+' || lookahead == '-') ADVANCE(52); END_STATE(); case 49: if (lookahead == '0' || lookahead == '1' || lookahead == '_') ADVANCE(86); END_STATE(); case 50: if (('6' <= lookahead && lookahead <= '9')) ADVANCE(8); if (('0' <= lookahead && lookahead <= '5')) ADVANCE(9); END_STATE(); case 51: if (('6' <= lookahead && lookahead <= '9')) ADVANCE(84); if (('0' <= lookahead && lookahead <= '5')) ADVANCE(85); END_STATE(); case 52: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); END_STATE(); case 53: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2); END_STATE(); case 54: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); END_STATE(); case 55: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(11); END_STATE(); case 56: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); END_STATE(); case 57: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(94); END_STATE(); case 58: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); END_STATE(); case 59: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); END_STATE(); case 60: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); END_STATE(); case 61: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(64); END_STATE(); case 62: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); END_STATE(); case 63: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(57); END_STATE(); case 64: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(12); END_STATE(); case 65: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); END_STATE(); case 66: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 67: ACCEPT_TOKEN(sym_null); END_STATE(); case 68: ACCEPT_TOKEN(sym_bool); END_STATE(); case 69: ACCEPT_TOKEN(sym_bool); if (lookahead == 'E') ADVANCE(25); if (lookahead == 'e') ADVANCE(41); END_STATE(); case 70: ACCEPT_TOKEN(sym_bool); if (lookahead == 'U') ADVANCE(21); if (lookahead == 'u') ADVANCE(37); if (lookahead == 'O' || lookahead == 'o') ADVANCE(68); END_STATE(); case 71: ACCEPT_TOKEN(sym_bool); if (lookahead == 'e') ADVANCE(41); END_STATE(); case 72: ACCEPT_TOKEN(sym_bool); if (lookahead == 'o') ADVANCE(68); if (lookahead == 'u') ADVANCE(37); END_STATE(); case 73: ACCEPT_TOKEN(sym_int); if (lookahead == '-') ADVANCE(53); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (lookahead == '8' || lookahead == '9') ADVANCE(6); if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(79); END_STATE(); case 74: ACCEPT_TOKEN(sym_int); if (lookahead == '-') ADVANCE(53); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(83); END_STATE(); case 75: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (lookahead == '_') ADVANCE(79); if (lookahead == 'b') ADVANCE(49); if (lookahead == 'x') ADVANCE(65); if (lookahead == '8' || lookahead == '9') ADVANCE(5); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(77); END_STATE(); case 76: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (lookahead == '_') ADVANCE(79); if (lookahead == '8' || lookahead == '9') ADVANCE(1); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(73); END_STATE(); case 77: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (lookahead == '_') ADVANCE(79); if (lookahead == '8' || lookahead == '9') ADVANCE(4); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(76); END_STATE(); case 78: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (lookahead == 'b') ADVANCE(49); if (lookahead == 'x') ADVANCE(65); if (lookahead == '8' || lookahead == '9') ADVANCE(6); if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(79); END_STATE(); case 79: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(50); if (lookahead == '8' || lookahead == '9') ADVANCE(6); if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(79); END_STATE(); case 80: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(51); if (lookahead == '_') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); END_STATE(); case 81: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(51); if (lookahead == '_') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); END_STATE(); case 82: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(51); if (lookahead == '_') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(81); END_STATE(); case 83: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(91); if (lookahead == ':') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(83); END_STATE(); case 84: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(93); if (lookahead == ':') ADVANCE(51); END_STATE(); case 85: ACCEPT_TOKEN(sym_int); if (lookahead == '.') ADVANCE(93); if (lookahead == ':') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(84); END_STATE(); case 86: ACCEPT_TOKEN(sym_int); if (lookahead == '0' || lookahead == '1' || lookahead == '_') ADVANCE(86); END_STATE(); case 87: ACCEPT_TOKEN(sym_int); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); END_STATE(); case 88: ACCEPT_TOKEN(sym_float); END_STATE(); case 89: ACCEPT_TOKEN(sym_float); if (lookahead == 'I') ADVANCE(23); if (lookahead == 'N') ADVANCE(14); if (lookahead == 'i') ADVANCE(39); if (lookahead == 'n') ADVANCE(30); if (lookahead == 'E' || lookahead == 'e') ADVANCE(48); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(91); END_STATE(); case 90: ACCEPT_TOKEN(sym_float); if (lookahead == 'I') ADVANCE(23); if (lookahead == 'i') ADVANCE(39); if (lookahead == 'E' || lookahead == 'e') ADVANCE(48); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(91); END_STATE(); case 91: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || lookahead == 'e') ADVANCE(48); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9')) ADVANCE(91); END_STATE(); case 92: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); END_STATE(); case 93: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(93); END_STATE(); case 94: ACCEPT_TOKEN(sym_timestamp); END_STATE(); case 95: ACCEPT_TOKEN(sym_timestamp); if (lookahead == '.') ADVANCE(58); if (lookahead == 'Z') ADVANCE(94); if (lookahead == '\t' || lookahead == ' ') ADVANCE(28); if (lookahead == '+' || lookahead == '-') ADVANCE(59); END_STATE(); case 96: ACCEPT_TOKEN(sym_timestamp); if (lookahead == ':') ADVANCE(63); END_STATE(); case 97: ACCEPT_TOKEN(sym_timestamp); if (lookahead == ':') ADVANCE(63); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); END_STATE(); case 98: ACCEPT_TOKEN(sym_timestamp); if (lookahead == 'Z') ADVANCE(94); if (lookahead == '\t' || lookahead == ' ') ADVANCE(28); if (lookahead == '+' || lookahead == '-') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); END_STATE(); case 99: ACCEPT_TOKEN(sym_timestamp); if (lookahead == '\t' || lookahead == ' ') ADVANCE(47); if (lookahead == 'T' || lookahead == 't') ADVANCE(55); END_STATE(); default: return false; } } static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 0}, [2] = {.lex_state = 0}, [3] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_null] = ACTIONS(1), [sym_bool] = ACTIONS(1), [sym_int] = ACTIONS(1), [sym_float] = ACTIONS(1), [sym_timestamp] = ACTIONS(1), }, [STATE(1)] = { [sym_scalar] = STATE(3), [sym_null] = ACTIONS(3), [sym_bool] = ACTIONS(5), [sym_int] = ACTIONS(5), [sym_float] = ACTIONS(3), [sym_timestamp] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 1, ACTIONS(7), 1, ts_builtin_sym_end, [4] = 1, ACTIONS(9), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, [SMALL_STATE(3)] = 4, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scalar, 1, 0, 0), [9] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; #ifdef __cplusplus extern "C" { #endif #ifdef TREE_SITTER_HIDE_SYMBOLS #define TS_PUBLIC #elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif TS_PUBLIC const TSLanguage *tree_sitter_legacy_schema(void) { static const TSLanguage language = { .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, .external_token_count = EXTERNAL_TOKEN_COUNT, .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], .small_parse_table = ts_small_parse_table, .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .primary_state_ids = ts_primary_state_ids, }; return &language; } #ifdef __cplusplus } #endif tree-sitter-yaml-0.7.2/schema/legacy/src/tree_sitter/000077500000000000000000000000001507122265000225535ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/schema/legacy/src/tree_sitter/alloc.h000066400000000000000000000017311507122265000240200ustar00rootroot00000000000000#ifndef TREE_SITTER_ALLOC_H_ #define TREE_SITTER_ALLOC_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR extern void *(*ts_current_malloc)(size_t size); extern void *(*ts_current_calloc)(size_t count, size_t size); extern void *(*ts_current_realloc)(void *ptr, size_t size); extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc #endif #ifndef ts_calloc #define ts_calloc ts_current_calloc #endif #ifndef ts_realloc #define ts_realloc ts_current_realloc #endif #ifndef ts_free #define ts_free ts_current_free #endif #else #ifndef ts_malloc #define ts_malloc malloc #endif #ifndef ts_calloc #define ts_calloc calloc #endif #ifndef ts_realloc #define ts_realloc realloc #endif #ifndef ts_free #define ts_free free #endif #endif #ifdef __cplusplus } #endif #endif // TREE_SITTER_ALLOC_H_ tree-sitter-yaml-0.7.2/schema/legacy/src/tree_sitter/array.h000066400000000000000000000242771507122265000240560ustar00rootroot00000000000000#ifndef TREE_SITTER_ARRAY_H_ #define TREE_SITTER_ARRAY_H_ #ifdef __cplusplus extern "C" { #endif #include "./alloc.h" #include #include #include #include #include #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-variable" #endif #define Array(T) \ struct { \ T *contents; \ uint32_t size; \ uint32_t capacity; \ } /// Initialize an array. #define array_init(self) \ ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) /// Create an empty array. #define array_new() \ { NULL, 0, 0 } /// Get a pointer to the element at a given `index` in the array. #define array_get(self, _index) \ (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) /// Get a pointer to the first element in the array. #define array_front(self) array_get(self, 0) /// Get a pointer to the last element in the array. #define array_back(self) array_get(self, (self)->size - 1) /// Clear the array, setting its size to zero. Note that this does not free any /// memory allocated for the array's contents. #define array_clear(self) ((self)->size = 0) /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. #define array_reserve(self, new_capacity) \ _array__reserve((Array *)(self), array_elem_size(self), new_capacity) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. #define array_delete(self) _array__delete((Array *)(self)) /// Push a new `element` onto the end of the array. #define array_push(self, element) \ (_array__grow((Array *)(self), 1, array_elem_size(self)), \ (self)->contents[(self)->size++] = (element)) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ do { \ if ((count) == 0) break; \ _array__grow((Array *)(self), count, array_elem_size(self)); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. #define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. #define array_extend(self, count, contents) \ _array__splice( \ (Array *)(self), array_elem_size(self), (self)->size, \ 0, count, contents \ ) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. #define array_splice(self, _index, old_count, new_count, new_contents) \ _array__splice( \ (Array *)(self), array_elem_size(self), _index, \ old_count, new_count, new_contents \ ) /// Insert one `element` into the array at the given `index`. #define array_insert(self, _index, element) \ _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ _array__erase((Array *)(self), array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. #define array_assign(self, other) \ _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) /// Swap one array with another #define array_swap(self, other) \ _array__swap((Array *)(self), (Array *)(other)) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) /// Search a sorted array for a given `needle` value, using the given `compare` /// callback to determine the order. /// /// If an existing element is found to be equal to `needle`, then the `index` /// out-parameter is set to the existing value's index, and the `exists` /// out-parameter is set to true. Otherwise, `index` is set to an index where /// `needle` should be inserted in order to preserve the sorting, and `exists` /// is set to false. #define array_search_sorted_with(self, compare, needle, _index, _exists) \ _array__search_sorted(self, 0, compare, , needle, _index, _exists) /// Search a sorted array for a given `needle` value, using integer comparisons /// of a given struct field (specified with a leading dot) to determine the order. /// /// See also `array_search_sorted_with`. #define array_search_sorted_by(self, field, needle, _index, _exists) \ _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) /// Insert a given `value` into a sorted array, using the given `compare` /// callback to determine the order. #define array_insert_sorted_with(self, compare, value) \ do { \ unsigned _index, _exists; \ array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ if (!_exists) array_insert(self, _index, value); \ } while (0) /// Insert a given `value` into a sorted array, using integer comparisons of /// a given struct field (specified with a leading dot) to determine the order. /// /// See also `array_search_sorted_by`. #define array_insert_sorted_by(self, field, value) \ do { \ unsigned _index, _exists; \ array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ if (!_exists) array_insert(self, _index, value); \ } while (0) // Private typedef Array(void) Array; /// This is not what you're looking for, see `array_delete`. static inline void _array__delete(Array *self) { if (self->contents) { ts_free(self->contents); self->contents = NULL; self->size = 0; self->capacity = 0; } } /// This is not what you're looking for, see `array_erase`. static inline void _array__erase(Array *self, size_t element_size, uint32_t index) { assert(index < self->size); char *contents = (char *)self->contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, (self->size - index - 1) * element_size); self->size--; } /// This is not what you're looking for, see `array_reserve`. static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { if (new_capacity > self->capacity) { if (self->contents) { self->contents = ts_realloc(self->contents, new_capacity * element_size); } else { self->contents = ts_malloc(new_capacity * element_size); } self->capacity = new_capacity; } } /// This is not what you're looking for, see `array_assign`. static inline void _array__assign(Array *self, const Array *other, size_t element_size) { _array__reserve(self, element_size, other->size); self->size = other->size; memcpy(self->contents, other->contents, self->size * element_size); } /// This is not what you're looking for, see `array_swap`. static inline void _array__swap(Array *self, Array *other) { Array swap = *other; *other = *self; *self = swap; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { uint32_t new_size = self->size + count; if (new_size > self->capacity) { uint32_t new_capacity = self->capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; _array__reserve(self, element_size, new_capacity); } } /// This is not what you're looking for, see `array_splice`. static inline void _array__splice(Array *self, size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { uint32_t new_size = self->size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; assert(old_end <= self->size); _array__reserve(self, element_size, new_size); char *contents = (char *)self->contents; if (self->size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, (self->size - old_end) * element_size ); } if (new_count > 0) { if (elements) { memcpy( (contents + index * element_size), elements, new_count * element_size ); } else { memset( (contents + index * element_size), 0, new_count * element_size ); } } self->size += new_count - old_count; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. /// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. #define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ do { \ *(_index) = start; \ *(_exists) = false; \ uint32_t size = (self)->size - *(_index); \ if (size == 0) break; \ int comparison; \ while (size > 1) { \ uint32_t half_size = size / 2; \ uint32_t mid_index = *(_index) + half_size; \ comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ if (comparison <= 0) *(_index) = mid_index; \ size -= half_size; \ } \ comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ if (comparison == 0) *(_exists) = true; \ else if (comparison < 0) *(_index) += 1; \ } while (0) /// Helper macro for the `_sorted_by` routines below. This takes the left (existing) /// parameter by reference in order to work with the generic sorting function above. #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER #pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif #ifdef __cplusplus } #endif #endif // TREE_SITTER_ARRAY_H_ tree-sitter-yaml-0.7.2/schema/legacy/src/tree_sitter/parser.h000066400000000000000000000167101507122265000242250ustar00rootroot00000000000000#ifndef TREE_SITTER_PARSER_H_ #define TREE_SITTER_PARSER_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include #define ts_builtin_sym_error ((TSSymbol)-1) #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 #ifndef TREE_SITTER_API_H_ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; typedef struct TSLanguageMetadata { uint8_t major_version; uint8_t minor_version; uint8_t patch_version; } TSLanguageMetadata; #endif typedef struct { TSFieldId field_id; uint8_t child_index; bool inherited; } TSFieldMapEntry; // Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; } TSMapSlice; typedef struct { bool visible; bool named; bool supertype; } TSSymbolMetadata; typedef struct TSLexer TSLexer; struct TSLexer { int32_t lookahead; TSSymbol result_symbol; void (*advance)(TSLexer *, bool); void (*mark_end)(TSLexer *); uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); void (*log)(const TSLexer *, const char *, ...); }; typedef enum { TSParseActionTypeShift, TSParseActionTypeReduce, TSParseActionTypeAccept, TSParseActionTypeRecover, } TSParseActionType; typedef union { struct { uint8_t type; TSStateId state; bool extra; bool repetition; } shift; struct { uint8_t type; uint8_t child_count; TSSymbol symbol; int16_t dynamic_precedence; uint16_t production_id; } reduce; uint8_t type; } TSParseAction; typedef struct { uint16_t lex_state; uint16_t external_lex_state; } TSLexMode; typedef struct { uint16_t lex_state; uint16_t external_lex_state; uint16_t reserved_word_set_id; } TSLexerMode; typedef union { TSParseAction action; struct { uint8_t count; bool reusable; } entry; } TSParseActionEntry; typedef struct { int32_t start; int32_t end; } TSCharacterRange; struct TSLanguage { uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; uint32_t external_token_count; uint32_t state_count; uint32_t large_state_count; uint32_t production_id_count; uint32_t field_count; uint16_t max_alias_sequence_length; const uint16_t *parse_table; const uint16_t *small_parse_table; const uint32_t *small_parse_table_map; const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; struct { const bool *states; const TSSymbol *symbol_map; void *(*create)(void); void (*destroy)(void *); bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; const char *name; const TSSymbol *reserved_words; uint16_t max_reserved_word_set_size; uint32_t supertype_count; const TSSymbol *supertype_symbols; const TSMapSlice *supertype_map_slices; const TSSymbol *supertype_map_entries; TSLanguageMetadata metadata; }; static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { index = mid_index; } size -= half_size; } const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } /* * Lexer Macros */ #ifdef _MSC_VER #define UNUSED __pragma(warning(suppress : 4101)) #else #define UNUSED __attribute__((unused)) #endif #define START_LEXER() \ bool result = false; \ bool skip = false; \ UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ next_state: \ lexer->advance(lexer, skip); \ start: \ skip = false; \ lookahead = lexer->lookahead; #define ADVANCE(state_value) \ { \ state = state_value; \ goto next_state; \ } #define ADVANCE_MAP(...) \ { \ static const uint16_t map[] = { __VA_ARGS__ }; \ for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ if (map[i] == lookahead) { \ state = map[i + 1]; \ goto next_state; \ } \ } \ } #define SKIP(state_value) \ { \ skip = true; \ state = state_value; \ goto next_state; \ } #define ACCEPT_TOKEN(symbol_value) \ result = true; \ lexer->result_symbol = symbol_value; \ lexer->mark_end(lexer); #define END_STATE() return result; /* * Parse Table Macros */ #define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id #define ACTIONS(id) id #define SHIFT(state_value) \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .state = (state_value) \ } \ }} #define SHIFT_REPEAT(state_value) \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .state = (state_value), \ .repetition = true \ } \ }} #define SHIFT_EXTRA() \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .extra = true \ } \ }} #define REDUCE(symbol_name, children, precedence, prod_id) \ {{ \ .reduce = { \ .type = TSParseActionTypeReduce, \ .symbol = symbol_name, \ .child_count = children, \ .dynamic_precedence = precedence, \ .production_id = prod_id \ }, \ }} #define RECOVER() \ {{ \ .type = TSParseActionTypeRecover \ }} #define ACCEPT_INPUT() \ {{ \ .type = TSParseActionTypeAccept \ }} #ifdef __cplusplus } #endif #endif // TREE_SITTER_PARSER_H_ tree-sitter-yaml-0.7.2/schema/update-schema.js000077500000000000000000000070051507122265000212520ustar00rootroot00000000000000#!/usr/bin/env node // @ts-nocheck const { writeFileSync } = require("fs"); const { readFile } = require("fs/promises"); const { join } = require("path"); const schema = process.argv[2] ?? "core"; readFile(join(__dirname, schema, "src", "parser.c"), "utf8").then(input => { const cases = extractCases(input); const enums = ["RS_STR"]; const content = "switch (sch_stt) " + block([ "case SCH_STT_FRZ:\n break;", cases .map(([key, { content }]) => `${(key === "default" ? "default:" : `case ${key}:`)}\n${indent(content)}`) .join("\n END_STATE();\n") .replace(/\s+ADVANCE_MAP\(([^]+?)\);\n/, (_, map) => { return map.replace(/'(.)', (\d+),/g, "if (lookahead == '$1') ADVANCE($2);"); }) .replace(/ADVANCE\((\d+)\);/g, (_, state) => { const stateCase = cases.find(([key]) => key === state); if (stateCase) { const [, { acceptToken }] = stateCase; if (acceptToken) { return `{${acceptToken} return ${state};}`; } } return `{*rlt_sch = RS_STR; return ${state};}`; }) .replace("ACCEPT_TOKEN(ts_builtin_sym_end);", "abort();") .replace(/ACCEPT_TOKEN\((\w+)\);/g, (_, name) => { const newName = "RS_" + convertName(name); if (!enums.includes(newName)) { enums.push(newName); } return `*rlt_sch = ${newName};`; }) .replace(/END_STATE\(\);/g, `break;`) .replace("return false;", '*rlt_sch = RS_STR;\n return SCH_STT_FRZ;') .replace(/lookahead/g, "cur_chr"), ]); const has_timestamp = enums.includes("RS_TIMESTAMP") ? 1 : 0; writeFileSync( join(__dirname, "..", "src", `schema.${schema}.c`), [ "#include ", "#include ", "#define SCH_STT_FRZ -1", `#define HAS_TIMESTAMP ${has_timestamp}`, `typedef enum ${block(enums.map((k) => `${k},`))} ResultSchema;`, `static int8_t adv_sch_stt(int8_t sch_stt, int32_t cur_chr, ResultSchema *rlt_sch) ${block([ content, `if (cur_chr != '\\r' && cur_chr != '\\n' && cur_chr != ' ' && cur_chr != 0) *rlt_sch = RS_STR;`, "return SCH_STT_FRZ;", ])}`, ].join("\n\n") + "\n", ); }); function extractCases(input) { const MAIN_SIGNATURE = "static bool ts_lex(TSLexer *lexer, TSStateId state) {"; const SWITCH_CASE = "switch (state) {\n"; const startIndex = input.indexOf(SWITCH_CASE, input.indexOf(MAIN_SIGNATURE)) + SWITCH_CASE.length; const endIndex = input.indexOf("}\n}", startIndex); const content = input.slice(startIndex, endIndex).replace(/^\s*if \(eof\).+\n/mg, "").trimEnd(); return dedent(dedent(content)).split("END_STATE();").map(text => { const index = text.indexOf(":\n"); const key = text.slice(0, index).trim().replace(/^case /, ""); const content = dedent(text.slice(index + 2)).trim(); const matchAcceptToken = content.match(/^ACCEPT_TOKEN\(\w+\);/); const acceptToken = matchAcceptToken && matchAcceptToken[0]; const hasAcceptTokenOnly = acceptToken && acceptToken.length === content.length; return [key, { content, acceptToken, hasAcceptTokenOnly }]; }); } function convertName(name) { return name.replace("sym_", "").toUpperCase(); } function block(contents) { return `{\n${indent(contents)}\n}`; } function lines(contents) { return [].concat(contents).join("\n").split("\n"); } function indent(contents) { return lines(contents).map(x => " ".repeat(2) + x).join("\n"); } function dedent(contents) { return lines(contents).map(x => x.replace(/^ /mg, "")).join("\n"); } tree-sitter-yaml-0.7.2/setup.py000066400000000000000000000044041507122265000164430ustar00rootroot00000000000000from os import path from sysconfig import get_config_var from setuptools import Extension, find_packages, setup from setuptools.command.build import build from setuptools.command.build_ext import build_ext from setuptools.command.egg_info import egg_info from wheel.bdist_wheel import bdist_wheel class Build(build): def run(self): if path.isdir("queries"): dest = path.join(self.build_lib, "tree_sitter_yaml", "queries") self.copy_tree("queries", dest) super().run() class BuildExt(build_ext): def build_extension(self, ext: Extension): if self.compiler.compiler_type != "msvc": ext.extra_compile_args = ["-std=c11", "-fvisibility=hidden"] else: ext.extra_compile_args = ["/std:c11", "/utf-8"] if path.exists("src/scanner.c"): ext.sources.append("src/scanner.c") if ext.py_limited_api: ext.define_macros.append(("Py_LIMITED_API", "0x030A0000")) super().build_extension(ext) class BdistWheel(bdist_wheel): def get_tag(self): python, abi, platform = super().get_tag() if python.startswith("cp"): python, abi = "cp310", "abi3" return python, abi, platform class EggInfo(egg_info): def find_sources(self): super().find_sources() self.filelist.recursive_include("queries", "*.scm") self.filelist.include("src/tree_sitter/*.h") setup( packages=find_packages("bindings/python"), package_dir={"": "bindings/python"}, package_data={ "tree_sitter_yaml": ["*.pyi", "py.typed"], "tree_sitter_yaml.queries": ["*.scm"], }, ext_package="tree_sitter_yaml", ext_modules=[ Extension( name="_binding", sources=[ "bindings/python/tree_sitter_yaml/binding.c", "src/parser.c", ], define_macros=[ ("PY_SSIZE_T_CLEAN", None), ("TREE_SITTER_HIDE_SYMBOLS", None), ], include_dirs=["src"], py_limited_api=not get_config_var("Py_GIL_DISABLED"), ) ], cmdclass={ "build": Build, "build_ext": BuildExt, "bdist_wheel": BdistWheel, "egg_info": EggInfo, }, zip_safe=False ) tree-sitter-yaml-0.7.2/src/000077500000000000000000000000001507122265000155165ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/src/grammar.json000066400000000000000000004626651507122265000200620ustar00rootroot00000000000000{ "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "yaml", "rules": { "stream": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_bgn_imp_doc" }, "named": true, "value": "document" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_drs_doc" }, "named": true, "value": "document" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_exp_doc" }, "named": true, "value": "document" } ] }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_doc_w_bgn_w_end_seq" }, { "type": "SYMBOL", "name": "_doc_w_bgn_wo_end_seq" } ] }, { "type": "BLANK" } ] } ] }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_bgn_imp_doc_end" }, "named": true, "value": "document" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_drs_doc_end" }, "named": true, "value": "document" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_exp_doc_end" }, "named": true, "value": "document" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_doc_end" }, "named": true, "value": "document" } ] }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_doc_w_bgn_w_end_seq" }, { "type": "SYMBOL", "name": "_doc_w_bgn_wo_end_seq" }, { "type": "SYMBOL", "name": "_doc_wo_bgn_w_end_seq" }, { "type": "SYMBOL", "name": "_doc_wo_bgn_wo_end_seq" } ] }, { "type": "BLANK" } ] } ] } ] }, { "type": "BLANK" } ] }, { "type": "SYMBOL", "name": "_eof" } ] }, "_doc_w_bgn_w_end_seq": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_doc_w_bgn_w_end" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_doc_w_bgn_w_end_seq" }, { "type": "SYMBOL", "name": "_doc_w_bgn_wo_end_seq" }, { "type": "SYMBOL", "name": "_doc_wo_bgn_w_end_seq" }, { "type": "SYMBOL", "name": "_doc_wo_bgn_wo_end_seq" } ] }, { "type": "BLANK" } ] } ] }, "_doc_w_bgn_wo_end_seq": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_doc_w_bgn_wo_end" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_doc_w_bgn_w_end_seq" }, { "type": "SYMBOL", "name": "_doc_w_bgn_wo_end_seq" } ] }, { "type": "BLANK" } ] } ] }, "_doc_wo_bgn_w_end_seq": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_doc_wo_bgn_w_end" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_doc_w_bgn_w_end_seq" }, { "type": "SYMBOL", "name": "_doc_w_bgn_wo_end_seq" }, { "type": "SYMBOL", "name": "_doc_wo_bgn_w_end_seq" }, { "type": "SYMBOL", "name": "_doc_wo_bgn_wo_end_seq" } ] }, { "type": "BLANK" } ] } ] }, "_doc_wo_bgn_wo_end_seq": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_doc_wo_bgn_wo_end" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_doc_w_bgn_w_end_seq" }, { "type": "SYMBOL", "name": "_doc_w_bgn_wo_end_seq" } ] }, { "type": "BLANK" } ] } ] }, "_doc_w_bgn_w_end": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_exp_doc_end" }, "named": true, "value": "document" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_doc_end" }, "named": true, "value": "document" } ] }, "_doc_w_bgn_wo_end": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_exp_doc" }, "named": true, "value": "document" }, "_doc_wo_bgn_w_end": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_drs_doc_end" }, "named": true, "value": "document" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_imp_doc_end" }, "named": true, "value": "document" } ] }, "_doc_wo_bgn_wo_end": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_drs_doc" }, "named": true, "value": "document" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_imp_doc" }, "named": true, "value": "document" } ] }, "_bgn_imp_doc": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_exp_doc_tal" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq_r_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_map_r_val" }, "named": true, "value": "block_node" } ] }, "_drs_doc": { "type": "SEQ", "members": [ { "type": "REPEAT1", "content": { "type": "SYMBOL", "name": "_s_dir" } }, { "type": "SYMBOL", "name": "_exp_doc" } ] }, "_exp_doc": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_drs_end" }, "named": false, "value": "---" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_exp_doc_tal" }, { "type": "BLANK" } ] } ] }, "_imp_doc": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_map_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_str_val" }, "named": true, "value": "block_node" }, { "type": "SYMBOL", "name": "_br_flw_val_blk" } ] }, "_drs_doc_end": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_drs_doc" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_doc_end" }, "named": false, "value": "..." } ] } }, "_exp_doc_end": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_exp_doc" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_doc_end" }, "named": false, "value": "..." } ] } }, "_imp_doc_end": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_imp_doc" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_doc_end" }, "named": false, "value": "..." } ] } }, "_bgn_imp_doc_end": { "type": "PREC", "value": 1, "content": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_bgn_imp_doc" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_doc_end" }, "named": false, "value": "..." } ] } }, "_doc_end": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_doc_end" }, "named": false, "value": "..." }, "_exp_doc_tal": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq_br_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_map_br_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_map_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_str_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_str_val" }, "named": true, "value": "block_node" }, { "type": "SYMBOL", "name": "_r_flw_val_blk" }, { "type": "SYMBOL", "name": "_br_flw_val_blk" } ] }, "_s_dir": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_dir_yml" }, "named": true, "value": "yaml_directive" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_dir_tag" }, "named": true, "value": "tag_directive" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_dir_rsv" }, "named": true, "value": "reserved_directive" } ] }, "_s_dir_yml": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_s_dir_yml_bgn" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dir_yml_ver" }, "named": true, "value": "yaml_version" } ] }, "_s_dir_tag": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_s_dir_tag_bgn" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dir_tag_hdl" }, "named": true, "value": "tag_handle" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dir_tag_pfx" }, "named": true, "value": "tag_prefix" } ] }, "_s_dir_rsv": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_s_dir_rsv_bgn" }, "named": true, "value": "directive_name" }, { "type": "REPEAT", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dir_rsv_prm" }, "named": true, "value": "directive_parameter" } } ] }, "_r_prp_val": { "type": "SYMBOL", "name": "_r_prp" }, "_br_prp_val": { "type": "SYMBOL", "name": "_br_prp" }, "_r_sgl_prp_val": { "type": "SYMBOL", "name": "_r_sgl_prp" }, "_br_sgl_prp_val": { "type": "SYMBOL", "name": "_br_sgl_prp" }, "_b_sgl_prp_val": { "type": "SYMBOL", "name": "_b_sgl_prp" }, "_r_prp": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr" }, "named": true, "value": "anchor" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_tag" }, "named": true, "value": "tag" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_tag" }, "named": true, "value": "tag" } ] }, { "type": "BLANK" } ] } ] }, { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_tag" }, "named": true, "value": "tag" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr" }, "named": true, "value": "anchor" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_acr" }, "named": true, "value": "anchor" } ] }, { "type": "BLANK" } ] } ] } ] }, "_br_prp": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_acr" }, "named": true, "value": "anchor" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_tag" }, "named": true, "value": "tag" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_tag" }, "named": true, "value": "tag" } ] }, { "type": "BLANK" } ] } ] }, { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_tag" }, "named": true, "value": "tag" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr" }, "named": true, "value": "anchor" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_acr" }, "named": true, "value": "anchor" } ] }, { "type": "BLANK" } ] } ] } ] }, "_r_sgl_prp": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr" }, "named": true, "value": "anchor" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_tag" }, "named": true, "value": "tag" }, { "type": "BLANK" } ] } ] }, { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_tag" }, "named": true, "value": "tag" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr" }, "named": true, "value": "anchor" }, { "type": "BLANK" } ] } ] } ] }, "_br_sgl_prp": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_acr" }, "named": true, "value": "anchor" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_tag" }, "named": true, "value": "tag" }, { "type": "BLANK" } ] } ] }, { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_tag" }, "named": true, "value": "tag" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr" }, "named": true, "value": "anchor" }, { "type": "BLANK" } ] } ] } ] }, "_b_sgl_prp": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_acr" }, "named": true, "value": "anchor" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_tag" }, "named": true, "value": "tag" }, { "type": "BLANK" } ] } ] }, { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_tag" }, "named": true, "value": "tag" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr" }, "named": true, "value": "anchor" }, { "type": "BLANK" } ] } ] } ] }, "_r_blk_seq_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq_r_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq_br_val" }, "named": true, "value": "block_node" } ] }, "_r_blk_seq_r_val": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq" }, "named": true, "value": "block_sequence" }, "_r_blk_seq_br_val": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq" }, "named": true, "value": "block_sequence" } ] }, "_br_blk_seq_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq" }, "named": true, "value": "block_sequence" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq" }, "named": true, "value": "block_sequence" } ] } ] }, "_r_blk_seq_spc_val": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_seq_spc" }, "named": true, "value": "block_sequence" } ] }, "_br_blk_seq_spc_val": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_seq_spc" }, "named": true, "value": "block_sequence" } ] }, "_b_blk_seq_spc_val": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_seq_spc" }, "named": true, "value": "block_sequence" }, "_r_blk_seq": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq_itm" }, "named": true, "value": "block_sequence_item" }, { "type": "REPEAT", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_seq_itm" }, "named": true, "value": "block_sequence_item" } }, { "type": "SYMBOL", "name": "_bl" } ] }, "_br_blk_seq": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq_itm" }, "named": true, "value": "block_sequence_item" }, { "type": "REPEAT", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_seq_itm" }, "named": true, "value": "block_sequence_item" } }, { "type": "SYMBOL", "name": "_bl" } ] }, "_b_blk_seq_spc": { "type": "SEQ", "members": [ { "type": "REPEAT1", "content": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_seq_itm" }, "named": true, "value": "block_sequence_item" } }, { "type": "SYMBOL", "name": "_bl" } ] }, "_r_blk_seq_itm": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq_bgn" }, "named": false, "value": "-" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_blk_seq_itm_tal" }, { "type": "BLANK" } ] } ] }, "_br_blk_seq_itm": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq_bgn" }, "named": false, "value": "-" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_blk_seq_itm_tal" }, { "type": "BLANK" } ] } ] }, "_b_blk_seq_itm": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_seq_bgn" }, "named": false, "value": "-" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_blk_seq_itm_tal" }, { "type": "BLANK" } ] } ] }, "_blk_seq_itm_tal": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_blk_seq_val" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq_val" }, "named": true, "value": "block_node" }, { "type": "SYMBOL", "name": "_r_blk_map_val" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_map_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_str_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_str_val" }, "named": true, "value": "block_node" }, { "type": "SYMBOL", "name": "_r_flw_val_blk" }, { "type": "SYMBOL", "name": "_br_flw_val_blk" } ] }, "_r_blk_map_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_map_r_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_map_br_val" }, "named": true, "value": "block_node" } ] }, "_r_blk_map_r_val": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_map" }, "named": true, "value": "block_mapping" }, "_r_blk_map_br_val": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_map" }, "named": true, "value": "block_mapping" } ] }, "_br_blk_map_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_map" }, "named": true, "value": "block_mapping" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_map" }, "named": true, "value": "block_mapping" } ] } ] }, "_r_blk_map": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_blk_map_itm" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_b_blk_map_itm" } }, { "type": "SYMBOL", "name": "_bl" } ] }, "_br_blk_map": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_blk_map_itm" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_b_blk_map_itm" } }, { "type": "SYMBOL", "name": "_bl" } ] }, "_r_blk_map_itm": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_exp_itm" }, "named": true, "value": "block_mapping_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_imp_itm" }, "named": true, "value": "block_mapping_pair" } ] }, "_br_blk_map_itm": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_exp_itm" }, "named": true, "value": "block_mapping_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_imp_itm" }, "named": true, "value": "block_mapping_pair" } ] }, "_b_blk_map_itm": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_exp_itm" }, "named": true, "value": "block_mapping_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_imp_itm" }, "named": true, "value": "block_mapping_pair" } ] }, "_r_blk_exp_itm": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_blk_key_itm" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_b_blk_val_itm" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "_r_blk_val_itm" } ] } }, "_br_blk_exp_itm": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_blk_key_itm" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_b_blk_val_itm" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "_br_blk_val_itm" } ] } }, "_b_blk_exp_itm": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_b_blk_key_itm" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_b_blk_val_itm" }, { "type": "BLANK" } ] } ] }, { "type": "SYMBOL", "name": "_b_blk_val_itm" } ] } }, "_r_blk_key_itm": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_key_bgn" }, "named": false, "value": "?" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_blk_exp_itm_tal" } }, { "type": "BLANK" } ] } ] }, "_br_blk_key_itm": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_key_bgn" }, "named": false, "value": "?" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_blk_exp_itm_tal" } }, { "type": "BLANK" } ] } ] }, "_b_blk_key_itm": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_key_bgn" }, "named": false, "value": "?" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_blk_exp_itm_tal" } }, { "type": "BLANK" } ] } ] }, "_r_blk_val_itm": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_val_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "SYMBOL", "name": "_blk_exp_itm_tal" } }, { "type": "BLANK" } ] } ] }, "_br_blk_val_itm": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_val_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "SYMBOL", "name": "_blk_exp_itm_tal" } }, { "type": "BLANK" } ] } ] }, "_b_blk_val_itm": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_val_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "SYMBOL", "name": "_blk_exp_itm_tal" } }, { "type": "BLANK" } ] } ] }, "_r_blk_imp_itm": { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_val_blk" } }, { "type": "SYMBOL", "name": "_blk_imp_itm_tal" } ] }, "_br_blk_imp_itm": { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_br_sgl_flw_val_blk" } }, { "type": "SYMBOL", "name": "_blk_imp_itm_tal" } ] }, "_b_blk_imp_itm": { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_b_sgl_flw_val_blk" } }, { "type": "SYMBOL", "name": "_blk_imp_itm_tal" } ] }, "_blk_exp_itm_tal": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_blk_seq_itm_tal" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq_spc_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq_spc_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_seq_spc_val" }, "named": true, "value": "block_node" } ] }, "_blk_imp_itm_tal": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_imp_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq_br_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_seq_spc_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_seq_spc_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_blk_seq_spc_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_map_br_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_map_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_str_val" }, "named": true, "value": "block_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_str_val" }, "named": true, "value": "block_node" }, { "type": "SYMBOL", "name": "_r_flw_val_blk" }, { "type": "SYMBOL", "name": "_br_flw_val_blk" } ] } }, { "type": "BLANK" } ] } ] }, "_r_blk_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_str" }, "named": true, "value": "block_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_str" }, "named": true, "value": "block_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_str" }, "named": true, "value": "block_scalar" } ] } ] } ] }, "_br_blk_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_str" }, "named": true, "value": "block_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_str" }, "named": true, "value": "block_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_str" }, "named": true, "value": "block_scalar" } ] } ] } ] }, "_r_blk_str": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_lit_bgn" }, "named": false, "value": "|" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_blk_fld_bgn" }, "named": false, "value": ">" } ] }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_br_blk_str_ctn" } }, { "type": "SYMBOL", "name": "_bl" } ] }, "_br_blk_str": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_lit_bgn" }, "named": false, "value": "|" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_blk_fld_bgn" }, "named": false, "value": ">" } ] }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_br_blk_str_ctn" } }, { "type": "SYMBOL", "name": "_bl" } ] }, "_r_flw_val_blk": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_jsl_val" }, { "type": "SYMBOL", "name": "_r_flw_njl_val_blk" } ] }, "_br_flw_val_blk": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_br_flw_jsl_val" }, { "type": "SYMBOL", "name": "_br_flw_njl_val_blk" } ] }, "_r_sgl_flw_val_blk": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_flw_jsl_val" }, { "type": "SYMBOL", "name": "_r_sgl_flw_njl_val_blk" } ] }, "_br_sgl_flw_val_blk": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_br_sgl_flw_jsl_val" }, { "type": "SYMBOL", "name": "_br_sgl_flw_njl_val_blk" } ] }, "_b_sgl_flw_val_blk": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_b_sgl_flw_jsl_val" }, { "type": "SYMBOL", "name": "_b_sgl_flw_njl_val_blk" } ] }, "_r_flw_val_flw": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_jsl_val" }, { "type": "SYMBOL", "name": "_r_flw_njl_val_flw" } ] }, "_br_flw_val_flw": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_br_flw_jsl_val" }, { "type": "SYMBOL", "name": "_br_flw_njl_val_flw" } ] }, "_r_sgl_flw_val_flw": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_flw_jsl_val" }, { "type": "SYMBOL", "name": "_r_sgl_flw_njl_val_flw" } ] }, "_r_flw_jsl_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_seq_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_map_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str_val" }, "named": true, "value": "flow_node" } ] }, "_br_flw_jsl_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_seq_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_map_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_str_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sqt_str_val" }, "named": true, "value": "flow_node" } ] }, "_r_sgl_flw_jsl_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_seq_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_map_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_dqt_str_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_sqt_str_val" }, "named": true, "value": "flow_node" } ] }, "_br_sgl_flw_jsl_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_flw_seq_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_flw_map_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_dqt_str_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_sqt_str_val" }, "named": true, "value": "flow_node" } ] }, "_b_sgl_flw_jsl_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_flw_seq_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_flw_map_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_dqt_str_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_sqt_str_val" }, "named": true, "value": "flow_node" } ] }, "_r_flw_njl_val_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_als_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_prp_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_pln_blk_val" }, "named": true, "value": "flow_node" } ] }, "_br_flw_njl_val_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_als_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_prp_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_pln_blk_val" }, "named": true, "value": "flow_node" } ] }, "_r_sgl_flw_njl_val_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_als_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_prp_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_blk_val" }, "named": true, "value": "flow_node" } ] }, "_br_sgl_flw_njl_val_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_als_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_prp_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_blk_val" }, "named": true, "value": "flow_node" } ] }, "_b_sgl_flw_njl_val_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_als_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_prp_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_pln_blk_val" }, "named": true, "value": "flow_node" } ] }, "_r_flw_njl_val_flw": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_als_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_prp_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_pln_flw_val" }, "named": true, "value": "flow_node" } ] }, "_br_flw_njl_val_flw": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_als_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_prp_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_pln_flw_val" }, "named": true, "value": "flow_node" } ] }, "_r_sgl_flw_njl_val_flw": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_als_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_prp_val" }, "named": true, "value": "flow_node" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_flw_val" }, "named": true, "value": "flow_node" } ] }, "_r_flw_seq_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_seq" }, "named": true, "value": "flow_sequence" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_seq" }, "named": true, "value": "flow_sequence" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_seq" }, "named": true, "value": "flow_sequence" } ] } ] } ] }, "_br_flw_seq_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_seq" }, "named": true, "value": "flow_sequence" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_seq" }, "named": true, "value": "flow_sequence" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_seq" }, "named": true, "value": "flow_sequence" } ] } ] } ] }, "_r_sgl_flw_seq_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_seq" }, "named": true, "value": "flow_sequence" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_seq" }, "named": true, "value": "flow_sequence" } ] } ] }, "_br_sgl_flw_seq_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_flw_seq" }, "named": true, "value": "flow_sequence" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_seq" }, "named": true, "value": "flow_sequence" } ] } ] }, "_b_sgl_flw_seq_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_flw_seq" }, "named": true, "value": "flow_sequence" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_b_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_seq" }, "named": true, "value": "flow_sequence" } ] } ] }, "_r_flw_seq": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_seq_bgn" }, "named": false, "value": "[" }, { "type": "SYMBOL", "name": "_flw_seq_tal" } ] }, "_br_flw_seq": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_seq_bgn" }, "named": false, "value": "[" }, { "type": "SYMBOL", "name": "_flw_seq_tal" } ] }, "_r_sgl_flw_seq": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_seq_bgn" }, "named": false, "value": "[" }, { "type": "SYMBOL", "name": "_sgl_flw_seq_tal" } ] }, "_br_sgl_flw_seq": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_seq_bgn" }, "named": false, "value": "[" }, { "type": "SYMBOL", "name": "_sgl_flw_seq_tal" } ] }, "_b_sgl_flw_seq": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_flw_seq_bgn" }, "named": false, "value": "[" }, { "type": "SYMBOL", "name": "_sgl_flw_seq_tal" } ] }, "_flw_seq_tal": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_seq_dat" }, { "type": "SYMBOL", "name": "_br_flw_seq_dat" } ] }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_seq_end" }, "named": false, "value": "]" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_seq_end" }, "named": false, "value": "]" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_flw_seq_end" }, "named": false, "value": "]" } ] } ] }, "_sgl_flw_seq_tal": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_flw_col_dat" }, { "type": "BLANK" } ] }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_seq_end" }, "named": false, "value": "]" } ] }, "_r_flw_map_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_map" }, "named": true, "value": "flow_mapping" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_map" }, "named": true, "value": "flow_mapping" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_map" }, "named": true, "value": "flow_mapping" } ] } ] } ] }, "_br_flw_map_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_map" }, "named": true, "value": "flow_mapping" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_map" }, "named": true, "value": "flow_mapping" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_map" }, "named": true, "value": "flow_mapping" } ] } ] } ] }, "_r_sgl_flw_map_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_map" }, "named": true, "value": "flow_mapping" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_map" }, "named": true, "value": "flow_mapping" } ] } ] }, "_br_sgl_flw_map_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_flw_map" }, "named": true, "value": "flow_mapping" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_map" }, "named": true, "value": "flow_mapping" } ] } ] }, "_b_sgl_flw_map_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_flw_map" }, "named": true, "value": "flow_mapping" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_b_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_map" }, "named": true, "value": "flow_mapping" } ] } ] }, "_r_flw_map": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_map_bgn" }, "named": false, "value": "{" }, { "type": "SYMBOL", "name": "_flw_map_tal" } ] }, "_br_flw_map": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_map_bgn" }, "named": false, "value": "{" }, { "type": "SYMBOL", "name": "_flw_map_tal" } ] }, "_r_sgl_flw_map": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_map_bgn" }, "named": false, "value": "{" }, { "type": "SYMBOL", "name": "_sgl_flw_map_tal" } ] }, "_br_sgl_flw_map": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_map_bgn" }, "named": false, "value": "{" }, { "type": "SYMBOL", "name": "_sgl_flw_map_tal" } ] }, "_b_sgl_flw_map": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_flw_map_bgn" }, "named": false, "value": "{" }, { "type": "SYMBOL", "name": "_sgl_flw_map_tal" } ] }, "_flw_map_tal": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_map_dat" }, { "type": "SYMBOL", "name": "_br_flw_map_dat" } ] }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_map_end" }, "named": false, "value": "}" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_map_end" }, "named": false, "value": "}" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_flw_map_end" }, "named": false, "value": "}" } ] } ] }, "_sgl_flw_map_tal": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_flw_col_dat" }, { "type": "BLANK" } ] }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_map_end" }, "named": false, "value": "}" } ] }, "_r_flw_seq_dat": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_flw_seq_itm" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_flw_seq_dat_rpt" } }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_sep_bgn" }, "named": false, "value": "," }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_sep_bgn" }, "named": false, "value": "," } ] }, { "type": "BLANK" } ] } ] }, "_br_flw_seq_dat": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_flw_seq_itm" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_flw_seq_dat_rpt" } }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_sep_bgn" }, "named": false, "value": "," }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_sep_bgn" }, "named": false, "value": "," } ] }, { "type": "BLANK" } ] } ] }, "_r_flw_map_dat": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_flw_map_itm" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_flw_map_dat_rpt" } }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_sep_bgn" }, "named": false, "value": "," }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_sep_bgn" }, "named": false, "value": "," } ] }, { "type": "BLANK" } ] } ] }, "_br_flw_map_dat": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_flw_map_itm" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_flw_map_dat_rpt" } }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_sep_bgn" }, "named": false, "value": "," }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_sep_bgn" }, "named": false, "value": "," } ] }, { "type": "BLANK" } ] } ] }, "_r_sgl_flw_col_dat": { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_sgl_flw_col_itm" }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_sgl_flw_col_dat_rpt" } }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_sep_bgn" }, "named": false, "value": "," }, { "type": "BLANK" } ] } ] }, "_flw_seq_dat_rpt": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_sep_bgn" }, "named": false, "value": "," }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_sep_bgn" }, "named": false, "value": "," } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_seq_itm" }, { "type": "SYMBOL", "name": "_br_flw_seq_itm" } ] } ] }, "_flw_map_dat_rpt": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_sep_bgn" }, "named": false, "value": "," }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_sep_bgn" }, "named": false, "value": "," } ] }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_map_itm" }, { "type": "SYMBOL", "name": "_br_flw_map_itm" } ] } ] }, "_sgl_flw_col_dat_rpt": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_sep_bgn" }, "named": false, "value": "," }, { "type": "SYMBOL", "name": "_r_sgl_flw_col_itm" } ] }, "_r_flw_seq_itm": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_val_flw" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_exp_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_imp_r_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_njl_ann_par" }, "named": true, "value": "flow_pair" } ] }, "_br_flw_seq_itm": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_br_flw_val_flw" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_exp_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_imp_r_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_njl_ann_par" }, "named": true, "value": "flow_pair" } ] }, "_r_flw_map_itm": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_val_flw" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_exp_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_imp_r_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_imp_br_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_njl_ann_par" }, "named": true, "value": "flow_pair" } ] }, "_br_flw_map_itm": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_br_flw_val_flw" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_exp_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_imp_r_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_imp_br_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_njl_ann_par" }, "named": true, "value": "flow_pair" } ] }, "_r_sgl_flw_col_itm": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_flw_val_flw" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_exp_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_imp_par" }, "named": true, "value": "flow_pair" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_njl_ann_par" }, "named": true, "value": "flow_pair" } ] }, "_r_flw_exp_par": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_key_bgn" }, "named": false, "value": "?" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_imp_r_par" }, { "type": "SYMBOL", "name": "_r_flw_imp_br_par" }, { "type": "SYMBOL", "name": "_br_flw_imp_r_par" }, { "type": "SYMBOL", "name": "_br_flw_imp_br_par" } ] }, { "type": "BLANK" } ] } ] }, "_br_flw_exp_par": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_key_bgn" }, "named": false, "value": "?" }, { "type": "CHOICE", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_imp_r_par" }, { "type": "SYMBOL", "name": "_r_flw_imp_br_par" }, { "type": "SYMBOL", "name": "_br_flw_imp_r_par" }, { "type": "SYMBOL", "name": "_br_flw_imp_br_par" } ] }, { "type": "BLANK" } ] } ] }, "_r_sgl_flw_exp_par": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_key_bgn" }, "named": false, "value": "?" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_flw_imp_par" }, { "type": "BLANK" } ] } ] }, "_r_flw_imp_r_par": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_r_flw_jsl_val" } }, { "type": "SYMBOL", "name": "_r_flw_jsl_ann_par" } ] }, { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_r_flw_njl_val_flw" } }, { "type": "SYMBOL", "name": "_r_flw_njl_ann_par" } ] } ] }, "_r_flw_imp_br_par": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_r_flw_jsl_val" } }, { "type": "SYMBOL", "name": "_br_flw_jsl_ann_par" } ] }, { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_r_flw_njl_val_flw" } }, { "type": "SYMBOL", "name": "_br_flw_njl_ann_par" } ] } ] }, "_br_flw_imp_r_par": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_br_flw_jsl_val" } }, { "type": "SYMBOL", "name": "_r_flw_jsl_ann_par" } ] }, { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_br_flw_njl_val_flw" } }, { "type": "SYMBOL", "name": "_r_flw_njl_ann_par" } ] } ] }, "_br_flw_imp_br_par": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_br_flw_jsl_val" } }, { "type": "SYMBOL", "name": "_br_flw_jsl_ann_par" } ] }, { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_br_flw_njl_val_flw" } }, { "type": "SYMBOL", "name": "_br_flw_njl_ann_par" } ] } ] }, "_r_sgl_flw_imp_par": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_jsl_val" } }, { "type": "SYMBOL", "name": "_r_sgl_flw_jsl_ann_par" } ] }, { "type": "SEQ", "members": [ { "type": "FIELD", "name": "key", "content": { "type": "SYMBOL", "name": "_r_sgl_flw_njl_val_flw" } }, { "type": "SYMBOL", "name": "_r_sgl_flw_njl_ann_par" } ] } ] }, "_r_flw_jsl_ann_par": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_jsv_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "SYMBOL", "name": "_flw_ann_par_tal" } }, { "type": "BLANK" } ] } ] }, "_br_flw_jsl_ann_par": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_jsv_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "SYMBOL", "name": "_flw_ann_par_tal" } }, { "type": "BLANK" } ] } ] }, "_r_sgl_flw_jsl_ann_par": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_jsv_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "SYMBOL", "name": "_sgl_flw_ann_par_tal" } }, { "type": "BLANK" } ] } ] }, "_r_flw_njl_ann_par": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_njv_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "SYMBOL", "name": "_flw_ann_par_tal" } }, { "type": "BLANK" } ] } ] }, "_br_flw_njl_ann_par": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_flw_njv_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "SYMBOL", "name": "_flw_ann_par_tal" } }, { "type": "BLANK" } ] } ] }, "_r_sgl_flw_njl_ann_par": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_flw_njv_bgn" }, "named": false, "value": ":" }, { "type": "CHOICE", "members": [ { "type": "FIELD", "name": "value", "content": { "type": "SYMBOL", "name": "_sgl_flw_ann_par_tal" } }, { "type": "BLANK" } ] } ] }, "_flw_ann_par_tal": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_flw_val_flw" }, { "type": "SYMBOL", "name": "_br_flw_val_flw" } ] }, "_sgl_flw_ann_par_tal": { "type": "SYMBOL", "name": "_r_sgl_flw_val_flw" }, "_r_dqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str" }, "named": true, "value": "double_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str" }, "named": true, "value": "double_quote_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_str" }, "named": true, "value": "double_quote_scalar" } ] } ] } ] }, "_br_dqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_str" }, "named": true, "value": "double_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str" }, "named": true, "value": "double_quote_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_str" }, "named": true, "value": "double_quote_scalar" } ] } ] } ] }, "_r_sgl_dqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_dqt_str" }, "named": true, "value": "double_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_dqt_str" }, "named": true, "value": "double_quote_scalar" } ] } ] }, "_br_sgl_dqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_dqt_str" }, "named": true, "value": "double_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_dqt_str" }, "named": true, "value": "double_quote_scalar" } ] } ] }, "_b_sgl_dqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_dqt_str" }, "named": true, "value": "double_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_b_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_dqt_str" }, "named": true, "value": "double_quote_scalar" } ] } ] }, "_r_dqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str_bgn" }, "named": false, "value": "\"" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_dqt_ctn" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_esc_nwl" }, "named": true, "value": "escape_sequence" }, { "type": "BLANK" } ] }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_br_mtl_dqt_ctn" } }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str_end" }, "named": false, "value": "\"" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_str_end" }, "named": false, "value": "\"" } ] } ] }, "_br_dqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_str_bgn" }, "named": false, "value": "\"" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_dqt_ctn" }, { "type": "BLANK" } ] }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_esc_nwl" }, "named": true, "value": "escape_sequence" }, { "type": "BLANK" } ] }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_br_mtl_dqt_ctn" } }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str_end" }, "named": false, "value": "\"" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_str_end" }, "named": false, "value": "\"" } ] } ] }, "_r_sgl_dqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str_bgn" }, "named": false, "value": "\"" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_dqt_ctn" }, { "type": "BLANK" } ] }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str_end" }, "named": false, "value": "\"" } ] }, "_br_sgl_dqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_str_bgn" }, "named": false, "value": "\"" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_dqt_ctn" }, { "type": "BLANK" } ] }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str_end" }, "named": false, "value": "\"" } ] }, "_b_sgl_dqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_dqt_str_bgn" }, "named": false, "value": "\"" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_dqt_ctn" }, { "type": "BLANK" } ] }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_str_end" }, "named": false, "value": "\"" } ] }, "_r_sgl_dqt_ctn": { "type": "REPEAT1", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_dqt_str_ctn" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_esc_seq" }, "named": true, "value": "escape_sequence" } ] } }, "_br_mtl_dqt_ctn": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_esc_nwl" }, "named": true, "value": "escape_sequence" }, { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_br_dqt_str_ctn" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_dqt_esc_seq" }, "named": true, "value": "escape_sequence" } ] }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_dqt_str_ctn" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_esc_seq" }, "named": true, "value": "escape_sequence" } ] } }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_dqt_esc_nwl" }, "named": true, "value": "escape_sequence" }, { "type": "BLANK" } ] } ] } ] }, "_r_sqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str" }, "named": true, "value": "single_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str" }, "named": true, "value": "single_quote_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sqt_str" }, "named": true, "value": "single_quote_scalar" } ] } ] } ] }, "_br_sqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sqt_str" }, "named": true, "value": "single_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str" }, "named": true, "value": "single_quote_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sqt_str" }, "named": true, "value": "single_quote_scalar" } ] } ] } ] }, "_r_sgl_sqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_sqt_str" }, "named": true, "value": "single_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_sqt_str" }, "named": true, "value": "single_quote_scalar" } ] } ] }, "_br_sgl_sqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_sqt_str" }, "named": true, "value": "single_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_sqt_str" }, "named": true, "value": "single_quote_scalar" } ] } ] }, "_b_sgl_sqt_str_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_sqt_str" }, "named": true, "value": "single_quote_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_b_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_sqt_str" }, "named": true, "value": "single_quote_scalar" } ] } ] }, "_r_sqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str_bgn" }, "named": false, "value": "'" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_sqt_ctn" }, { "type": "BLANK" } ] }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_br_mtl_sqt_ctn" } }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str_end" }, "named": false, "value": "'" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sqt_str_end" }, "named": false, "value": "'" } ] } ] }, "_br_sqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sqt_str_bgn" }, "named": false, "value": "'" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_sqt_ctn" }, { "type": "BLANK" } ] }, { "type": "REPEAT", "content": { "type": "SYMBOL", "name": "_br_mtl_sqt_ctn" } }, { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str_end" }, "named": false, "value": "'" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sqt_str_end" }, "named": false, "value": "'" } ] } ] }, "_r_sgl_sqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str_bgn" }, "named": false, "value": "'" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_sqt_ctn" }, { "type": "BLANK" } ] }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str_end" }, "named": false, "value": "'" } ] }, "_br_sgl_sqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sqt_str_bgn" }, "named": false, "value": "'" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_sqt_ctn" }, { "type": "BLANK" } ] }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str_end" }, "named": false, "value": "'" } ] }, "_b_sgl_sqt_str": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sqt_str_bgn" }, "named": false, "value": "'" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sgl_sqt_ctn" }, { "type": "BLANK" } ] }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_str_end" }, "named": false, "value": "'" } ] }, "_r_sgl_sqt_ctn": { "type": "REPEAT1", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sqt_str_ctn" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_esc_sqt" }, "named": true, "value": "escape_sequence" } ] } }, "_br_mtl_sqt_ctn": { "type": "SEQ", "members": [ { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_br_sqt_str_ctn" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sqt_esc_sqt" }, "named": true, "value": "escape_sequence" } ] }, { "type": "REPEAT", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_sqt_str_ctn" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sqt_esc_sqt" }, "named": true, "value": "escape_sequence" } ] } } ] }, "_r_pln_blk_val": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_pln_blk" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_pln_blk" }, { "type": "SYMBOL", "name": "_br_pln_blk" } ] } ] } ] }, "_br_pln_blk_val": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_br_pln_blk" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_pln_blk" }, { "type": "SYMBOL", "name": "_br_pln_blk" } ] } ] } ] }, "_r_sgl_pln_blk_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_blk" }, "named": true, "value": "plain_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_blk" }, "named": true, "value": "plain_scalar" } ] } ] }, "_br_sgl_pln_blk_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_blk" }, "named": true, "value": "plain_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_blk" }, "named": true, "value": "plain_scalar" } ] } ] }, "_b_sgl_pln_blk_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_pln_blk" }, "named": true, "value": "plain_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_b_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_blk" }, "named": true, "value": "plain_scalar" } ] } ] }, "_r_pln_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_blk" }, "named": true, "value": "plain_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_mtl_pln_blk" }, "named": true, "value": "plain_scalar" } ] }, "_br_pln_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_blk" }, "named": true, "value": "plain_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_mtl_pln_blk" }, "named": true, "value": "plain_scalar" } ] }, "_r_pln_flw_val": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_pln_flw" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_prp" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_pln_flw" }, { "type": "SYMBOL", "name": "_br_pln_flw" } ] } ] } ] }, "_br_pln_flw_val": { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_br_pln_flw" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_br_prp" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "_r_pln_flw" }, { "type": "SYMBOL", "name": "_br_pln_flw" } ] } ] } ] }, "_r_sgl_pln_flw_val": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_flw" }, "named": true, "value": "plain_scalar" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", "name": "_r_sgl_prp" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_flw" }, "named": true, "value": "plain_scalar" } ] } ] }, "_r_pln_flw": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_flw" }, "named": true, "value": "plain_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_mtl_pln_flw" }, "named": true, "value": "plain_scalar" } ] }, "_br_pln_flw": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_flw" }, "named": true, "value": "plain_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_mtl_pln_flw" }, "named": true, "value": "plain_scalar" } ] }, "_r_sgl_pln_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_nul_blk" }, "named": true, "value": "null_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_bol_blk" }, "named": true, "value": "boolean_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_int_blk" }, "named": true, "value": "integer_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_flt_blk" }, "named": true, "value": "float_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_tms_blk" }, "named": true, "value": "timestamp_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_str_blk" }, "named": true, "value": "string_scalar" } ] }, "_br_sgl_pln_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_nul_blk" }, "named": true, "value": "null_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_bol_blk" }, "named": true, "value": "boolean_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_int_blk" }, "named": true, "value": "integer_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_flt_blk" }, "named": true, "value": "float_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_tms_blk" }, "named": true, "value": "timestamp_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_str_blk" }, "named": true, "value": "string_scalar" } ] }, "_b_sgl_pln_blk": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_pln_nul_blk" }, "named": true, "value": "null_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_pln_bol_blk" }, "named": true, "value": "boolean_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_pln_int_blk" }, "named": true, "value": "integer_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_pln_flt_blk" }, "named": true, "value": "float_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_pln_tms_blk" }, "named": true, "value": "timestamp_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_sgl_pln_str_blk" }, "named": true, "value": "string_scalar" } ] }, "_r_sgl_pln_flw": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_nul_flw" }, "named": true, "value": "null_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_bol_flw" }, "named": true, "value": "boolean_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_int_flw" }, "named": true, "value": "integer_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_flt_flw" }, "named": true, "value": "float_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_tms_flw" }, "named": true, "value": "timestamp_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_sgl_pln_str_flw" }, "named": true, "value": "string_scalar" } ] }, "_br_sgl_pln_flw": { "type": "CHOICE", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_nul_flw" }, "named": true, "value": "null_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_bol_flw" }, "named": true, "value": "boolean_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_int_flw" }, "named": true, "value": "integer_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_flt_flw" }, "named": true, "value": "float_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_tms_flw" }, "named": true, "value": "timestamp_scalar" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_sgl_pln_str_flw" }, "named": true, "value": "string_scalar" } ] }, "_r_mtl_pln_blk": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_mtl_pln_str_blk" }, "named": true, "value": "string_scalar" }, "_br_mtl_pln_blk": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_mtl_pln_str_blk" }, "named": true, "value": "string_scalar" }, "_r_mtl_pln_flw": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_mtl_pln_str_flw" }, "named": true, "value": "string_scalar" }, "_br_mtl_pln_flw": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_mtl_pln_str_flw" }, "named": true, "value": "string_scalar" }, "_r_als_val": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_als" }, "named": true, "value": "alias" }, "_br_als_val": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_als" }, "named": true, "value": "alias" }, "_b_als_val": { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_als" }, "named": true, "value": "alias" }, "_r_als": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_als_bgn" }, "named": false, "value": "*" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_als_ctn" }, "named": true, "value": "alias_name" } ] }, "_br_als": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_als_bgn" }, "named": false, "value": "*" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_als_ctn" }, "named": true, "value": "alias_name" } ] }, "_b_als": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_als_bgn" }, "named": false, "value": "*" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_als_ctn" }, "named": true, "value": "alias_name" } ] }, "_r_acr": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr_bgn" }, "named": false, "value": "&" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr_ctn" }, "named": true, "value": "anchor_name" } ] }, "_br_acr": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_br_acr_bgn" }, "named": false, "value": "&" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr_ctn" }, "named": true, "value": "anchor_name" } ] }, "_b_acr": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_b_acr_bgn" }, "named": false, "value": "&" }, { "type": "ALIAS", "content": { "type": "SYMBOL", "name": "_r_acr_ctn" }, "named": true, "value": "anchor_name" } ] } }, "extras": [ { "type": "SYMBOL", "name": "comment" } ], "conflicts": [ [ "_r_prp", "_r_sgl_prp" ], [ "_br_prp", "_br_sgl_prp" ], [ "_flw_seq_tal", "_sgl_flw_seq_tal" ], [ "_flw_map_tal", "_sgl_flw_map_tal" ], [ "_flw_ann_par_tal", "_sgl_flw_ann_par_tal" ], [ "_r_flw_seq_itm", "_r_sgl_flw_col_itm" ], [ "_r_flw_map_itm", "_r_sgl_flw_col_itm" ], [ "_r_flw_njl_ann_par", "_r_sgl_flw_njl_ann_par" ], [ "_r_flw_exp_par", "_r_sgl_flw_exp_par" ], [ "_r_dqt_str", "_r_sgl_dqt_str" ], [ "_r_sqt_str", "_r_sgl_sqt_str" ], [ "_r_pln_flw_val", "_r_sgl_pln_flw_val" ], [ "_r_prp" ], [ "_br_prp" ] ], "precedences": [], "externals": [ { "type": "SYMBOL", "name": "_eof" }, { "type": "SYMBOL", "name": "_s_dir_yml_bgn" }, { "type": "SYMBOL", "name": "_r_dir_yml_ver" }, { "type": "SYMBOL", "name": "_s_dir_tag_bgn" }, { "type": "SYMBOL", "name": "_r_dir_tag_hdl" }, { "type": "SYMBOL", "name": "_r_dir_tag_pfx" }, { "type": "SYMBOL", "name": "_s_dir_rsv_bgn" }, { "type": "SYMBOL", "name": "_r_dir_rsv_prm" }, { "type": "SYMBOL", "name": "_s_drs_end" }, { "type": "SYMBOL", "name": "_s_doc_end" }, { "type": "SYMBOL", "name": "_r_blk_seq_bgn" }, { "type": "SYMBOL", "name": "_br_blk_seq_bgn" }, { "type": "SYMBOL", "name": "_b_blk_seq_bgn" }, { "type": "SYMBOL", "name": "_r_blk_key_bgn" }, { "type": "SYMBOL", "name": "_br_blk_key_bgn" }, { "type": "SYMBOL", "name": "_b_blk_key_bgn" }, { "type": "SYMBOL", "name": "_r_blk_val_bgn" }, { "type": "SYMBOL", "name": "_br_blk_val_bgn" }, { "type": "SYMBOL", "name": "_b_blk_val_bgn" }, { "type": "SYMBOL", "name": "_r_blk_imp_bgn" }, { "type": "SYMBOL", "name": "_r_blk_lit_bgn" }, { "type": "SYMBOL", "name": "_br_blk_lit_bgn" }, { "type": "SYMBOL", "name": "_r_blk_fld_bgn" }, { "type": "SYMBOL", "name": "_br_blk_fld_bgn" }, { "type": "SYMBOL", "name": "_br_blk_str_ctn" }, { "type": "SYMBOL", "name": "_r_flw_seq_bgn" }, { "type": "SYMBOL", "name": "_br_flw_seq_bgn" }, { "type": "SYMBOL", "name": "_b_flw_seq_bgn" }, { "type": "SYMBOL", "name": "_r_flw_seq_end" }, { "type": "SYMBOL", "name": "_br_flw_seq_end" }, { "type": "SYMBOL", "name": "_b_flw_seq_end" }, { "type": "SYMBOL", "name": "_r_flw_map_bgn" }, { "type": "SYMBOL", "name": "_br_flw_map_bgn" }, { "type": "SYMBOL", "name": "_b_flw_map_bgn" }, { "type": "SYMBOL", "name": "_r_flw_map_end" }, { "type": "SYMBOL", "name": "_br_flw_map_end" }, { "type": "SYMBOL", "name": "_b_flw_map_end" }, { "type": "SYMBOL", "name": "_r_flw_sep_bgn" }, { "type": "SYMBOL", "name": "_br_flw_sep_bgn" }, { "type": "SYMBOL", "name": "_r_flw_key_bgn" }, { "type": "SYMBOL", "name": "_br_flw_key_bgn" }, { "type": "SYMBOL", "name": "_r_flw_jsv_bgn" }, { "type": "SYMBOL", "name": "_br_flw_jsv_bgn" }, { "type": "SYMBOL", "name": "_r_flw_njv_bgn" }, { "type": "SYMBOL", "name": "_br_flw_njv_bgn" }, { "type": "SYMBOL", "name": "_r_dqt_str_bgn" }, { "type": "SYMBOL", "name": "_br_dqt_str_bgn" }, { "type": "SYMBOL", "name": "_b_dqt_str_bgn" }, { "type": "SYMBOL", "name": "_r_dqt_str_ctn" }, { "type": "SYMBOL", "name": "_br_dqt_str_ctn" }, { "type": "SYMBOL", "name": "_r_dqt_esc_nwl" }, { "type": "SYMBOL", "name": "_br_dqt_esc_nwl" }, { "type": "SYMBOL", "name": "_r_dqt_esc_seq" }, { "type": "SYMBOL", "name": "_br_dqt_esc_seq" }, { "type": "SYMBOL", "name": "_r_dqt_str_end" }, { "type": "SYMBOL", "name": "_br_dqt_str_end" }, { "type": "SYMBOL", "name": "_r_sqt_str_bgn" }, { "type": "SYMBOL", "name": "_br_sqt_str_bgn" }, { "type": "SYMBOL", "name": "_b_sqt_str_bgn" }, { "type": "SYMBOL", "name": "_r_sqt_str_ctn" }, { "type": "SYMBOL", "name": "_br_sqt_str_ctn" }, { "type": "SYMBOL", "name": "_r_sqt_esc_sqt" }, { "type": "SYMBOL", "name": "_br_sqt_esc_sqt" }, { "type": "SYMBOL", "name": "_r_sqt_str_end" }, { "type": "SYMBOL", "name": "_br_sqt_str_end" }, { "type": "SYMBOL", "name": "_r_sgl_pln_nul_blk" }, { "type": "SYMBOL", "name": "_br_sgl_pln_nul_blk" }, { "type": "SYMBOL", "name": "_b_sgl_pln_nul_blk" }, { "type": "SYMBOL", "name": "_r_sgl_pln_nul_flw" }, { "type": "SYMBOL", "name": "_br_sgl_pln_nul_flw" }, { "type": "SYMBOL", "name": "_r_sgl_pln_bol_blk" }, { "type": "SYMBOL", "name": "_br_sgl_pln_bol_blk" }, { "type": "SYMBOL", "name": "_b_sgl_pln_bol_blk" }, { "type": "SYMBOL", "name": "_r_sgl_pln_bol_flw" }, { "type": "SYMBOL", "name": "_br_sgl_pln_bol_flw" }, { "type": "SYMBOL", "name": "_r_sgl_pln_int_blk" }, { "type": "SYMBOL", "name": "_br_sgl_pln_int_blk" }, { "type": "SYMBOL", "name": "_b_sgl_pln_int_blk" }, { "type": "SYMBOL", "name": "_r_sgl_pln_int_flw" }, { "type": "SYMBOL", "name": "_br_sgl_pln_int_flw" }, { "type": "SYMBOL", "name": "_r_sgl_pln_flt_blk" }, { "type": "SYMBOL", "name": "_br_sgl_pln_flt_blk" }, { "type": "SYMBOL", "name": "_b_sgl_pln_flt_blk" }, { "type": "SYMBOL", "name": "_r_sgl_pln_flt_flw" }, { "type": "SYMBOL", "name": "_br_sgl_pln_flt_flw" }, { "type": "SYMBOL", "name": "_r_sgl_pln_tms_blk" }, { "type": "SYMBOL", "name": "_br_sgl_pln_tms_blk" }, { "type": "SYMBOL", "name": "_b_sgl_pln_tms_blk" }, { "type": "SYMBOL", "name": "_r_sgl_pln_tms_flw" }, { "type": "SYMBOL", "name": "_br_sgl_pln_tms_flw" }, { "type": "SYMBOL", "name": "_r_sgl_pln_str_blk" }, { "type": "SYMBOL", "name": "_br_sgl_pln_str_blk" }, { "type": "SYMBOL", "name": "_b_sgl_pln_str_blk" }, { "type": "SYMBOL", "name": "_r_sgl_pln_str_flw" }, { "type": "SYMBOL", "name": "_br_sgl_pln_str_flw" }, { "type": "SYMBOL", "name": "_r_mtl_pln_str_blk" }, { "type": "SYMBOL", "name": "_br_mtl_pln_str_blk" }, { "type": "SYMBOL", "name": "_r_mtl_pln_str_flw" }, { "type": "SYMBOL", "name": "_br_mtl_pln_str_flw" }, { "type": "SYMBOL", "name": "_r_tag" }, { "type": "SYMBOL", "name": "_br_tag" }, { "type": "SYMBOL", "name": "_b_tag" }, { "type": "SYMBOL", "name": "_r_acr_bgn" }, { "type": "SYMBOL", "name": "_br_acr_bgn" }, { "type": "SYMBOL", "name": "_b_acr_bgn" }, { "type": "SYMBOL", "name": "_r_acr_ctn" }, { "type": "SYMBOL", "name": "_r_als_bgn" }, { "type": "SYMBOL", "name": "_br_als_bgn" }, { "type": "SYMBOL", "name": "_b_als_bgn" }, { "type": "SYMBOL", "name": "_r_als_ctn" }, { "type": "SYMBOL", "name": "_bl" }, { "type": "SYMBOL", "name": "comment" }, { "type": "SYMBOL", "name": "_err_rec" } ], "inline": [ "_r_pln_blk", "_br_pln_blk", "_r_pln_flw", "_br_pln_flw", "_r_blk_seq_val", "_r_blk_map_val", "_r_flw_val_blk", "_br_flw_val_blk", "_r_sgl_flw_val_blk", "_br_sgl_flw_val_blk", "_b_sgl_flw_val_blk", "_r_flw_val_flw", "_br_flw_val_flw", "_r_sgl_flw_val_flw", "_r_flw_jsl_val", "_br_flw_jsl_val", "_r_sgl_flw_jsl_val", "_br_sgl_flw_jsl_val", "_b_sgl_flw_jsl_val", "_r_flw_njl_val_blk", "_br_flw_njl_val_blk", "_r_sgl_flw_njl_val_blk", "_br_sgl_flw_njl_val_blk", "_b_sgl_flw_njl_val_blk", "_r_flw_njl_val_flw", "_br_flw_njl_val_flw", "_r_sgl_flw_njl_val_flw" ], "supertypes": [], "reserved": {} }tree-sitter-yaml-0.7.2/src/node-types.json000066400000000000000000000215021507122265000205000ustar00rootroot00000000000000[ { "type": "alias", "named": true, "fields": {}, "children": { "multiple": false, "required": true, "types": [ { "type": "alias_name", "named": true } ] } }, { "type": "anchor", "named": true, "fields": {}, "children": { "multiple": false, "required": true, "types": [ { "type": "anchor_name", "named": true } ] } }, { "type": "block_mapping", "named": true, "fields": {}, "children": { "multiple": true, "required": true, "types": [ { "type": "block_mapping_pair", "named": true } ] } }, { "type": "block_mapping_pair", "named": true, "fields": { "key": { "multiple": false, "required": false, "types": [ { "type": "block_node", "named": true }, { "type": "flow_node", "named": true } ] }, "value": { "multiple": false, "required": false, "types": [ { "type": "block_node", "named": true }, { "type": "flow_node", "named": true } ] } } }, { "type": "block_node", "named": true, "fields": {}, "children": { "multiple": true, "required": true, "types": [ { "type": "anchor", "named": true }, { "type": "block_mapping", "named": true }, { "type": "block_scalar", "named": true }, { "type": "block_sequence", "named": true }, { "type": "tag", "named": true } ] } }, { "type": "block_scalar", "named": true, "fields": {} }, { "type": "block_sequence", "named": true, "fields": {}, "children": { "multiple": true, "required": true, "types": [ { "type": "block_sequence_item", "named": true } ] } }, { "type": "block_sequence_item", "named": true, "fields": {}, "children": { "multiple": false, "required": false, "types": [ { "type": "block_node", "named": true }, { "type": "flow_node", "named": true } ] } }, { "type": "document", "named": true, "fields": {}, "children": { "multiple": true, "required": false, "types": [ { "type": "block_node", "named": true }, { "type": "flow_node", "named": true }, { "type": "reserved_directive", "named": true }, { "type": "tag_directive", "named": true }, { "type": "yaml_directive", "named": true } ] } }, { "type": "double_quote_scalar", "named": true, "fields": {}, "children": { "multiple": true, "required": false, "types": [ { "type": "escape_sequence", "named": true } ] } }, { "type": "flow_mapping", "named": true, "fields": {}, "children": { "multiple": true, "required": false, "types": [ { "type": "flow_node", "named": true }, { "type": "flow_pair", "named": true } ] } }, { "type": "flow_node", "named": true, "fields": {}, "children": { "multiple": true, "required": true, "types": [ { "type": "alias", "named": true }, { "type": "anchor", "named": true }, { "type": "double_quote_scalar", "named": true }, { "type": "flow_mapping", "named": true }, { "type": "flow_sequence", "named": true }, { "type": "plain_scalar", "named": true }, { "type": "single_quote_scalar", "named": true }, { "type": "tag", "named": true } ] } }, { "type": "flow_pair", "named": true, "fields": { "key": { "multiple": false, "required": false, "types": [ { "type": "flow_node", "named": true } ] }, "value": { "multiple": false, "required": false, "types": [ { "type": "flow_node", "named": true } ] } } }, { "type": "flow_sequence", "named": true, "fields": {}, "children": { "multiple": true, "required": false, "types": [ { "type": "flow_node", "named": true }, { "type": "flow_pair", "named": true } ] } }, { "type": "plain_scalar", "named": true, "fields": {}, "children": { "multiple": false, "required": true, "types": [ { "type": "boolean_scalar", "named": true }, { "type": "float_scalar", "named": true }, { "type": "integer_scalar", "named": true }, { "type": "null_scalar", "named": true }, { "type": "string_scalar", "named": true }, { "type": "timestamp_scalar", "named": true } ] } }, { "type": "reserved_directive", "named": true, "fields": {}, "children": { "multiple": true, "required": true, "types": [ { "type": "directive_name", "named": true }, { "type": "directive_parameter", "named": true } ] } }, { "type": "single_quote_scalar", "named": true, "fields": {}, "children": { "multiple": true, "required": false, "types": [ { "type": "escape_sequence", "named": true } ] } }, { "type": "stream", "named": true, "root": true, "fields": {}, "children": { "multiple": true, "required": false, "types": [ { "type": "document", "named": true } ] } }, { "type": "tag_directive", "named": true, "fields": {}, "children": { "multiple": true, "required": true, "types": [ { "type": "tag_handle", "named": true }, { "type": "tag_prefix", "named": true } ] } }, { "type": "yaml_directive", "named": true, "fields": {}, "children": { "multiple": false, "required": true, "types": [ { "type": "yaml_version", "named": true } ] } }, { "type": "\"", "named": false }, { "type": "&", "named": false }, { "type": "'", "named": false }, { "type": "*", "named": false }, { "type": ",", "named": false }, { "type": "-", "named": false }, { "type": "---", "named": false }, { "type": "...", "named": false }, { "type": ":", "named": false }, { "type": ">", "named": false }, { "type": "?", "named": false }, { "type": "[", "named": false }, { "type": "]", "named": false }, { "type": "alias_name", "named": true }, { "type": "anchor_name", "named": true }, { "type": "boolean_scalar", "named": true }, { "type": "comment", "named": true, "extra": true }, { "type": "directive_name", "named": true }, { "type": "directive_parameter", "named": true }, { "type": "escape_sequence", "named": true }, { "type": "float_scalar", "named": true }, { "type": "integer_scalar", "named": true }, { "type": "null_scalar", "named": true }, { "type": "string_scalar", "named": true }, { "type": "tag", "named": true }, { "type": "tag_handle", "named": true }, { "type": "tag_prefix", "named": true }, { "type": "timestamp_scalar", "named": true }, { "type": "yaml_version", "named": true }, { "type": "{", "named": false }, { "type": "|", "named": false }, { "type": "}", "named": false } ]tree-sitter-yaml-0.7.2/src/parser.c000066400000000000000000047252151507122265000171760ustar00rootroot00000000000000/* Automatically @generated by tree-sitter v0.25.10 */ #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 #define STATE_COUNT 1579 #define LARGE_STATE_COUNT 96 #define SYMBOL_COUNT 301 #define ALIAS_COUNT 0 #define TOKEN_COUNT 114 #define EXTERNAL_TOKEN_COUNT 113 #define FIELD_COUNT 2 #define MAX_ALIAS_SEQUENCE_LENGTH 5 #define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 12 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym__eof = 1, sym__s_dir_yml_bgn = 2, sym__r_dir_yml_ver = 3, sym__s_dir_tag_bgn = 4, sym__r_dir_tag_hdl = 5, sym__r_dir_tag_pfx = 6, sym__s_dir_rsv_bgn = 7, sym__r_dir_rsv_prm = 8, sym__s_drs_end = 9, sym__s_doc_end = 10, sym__r_blk_seq_bgn = 11, sym__br_blk_seq_bgn = 12, sym__b_blk_seq_bgn = 13, sym__r_blk_key_bgn = 14, sym__br_blk_key_bgn = 15, sym__b_blk_key_bgn = 16, sym__r_blk_val_bgn = 17, sym__br_blk_val_bgn = 18, sym__b_blk_val_bgn = 19, sym__r_blk_imp_bgn = 20, sym__r_blk_lit_bgn = 21, sym__br_blk_lit_bgn = 22, sym__r_blk_fld_bgn = 23, sym__br_blk_fld_bgn = 24, sym__br_blk_str_ctn = 25, sym__r_flw_seq_bgn = 26, sym__br_flw_seq_bgn = 27, sym__b_flw_seq_bgn = 28, sym__r_flw_seq_end = 29, sym__br_flw_seq_end = 30, sym__b_flw_seq_end = 31, sym__r_flw_map_bgn = 32, sym__br_flw_map_bgn = 33, sym__b_flw_map_bgn = 34, sym__r_flw_map_end = 35, sym__br_flw_map_end = 36, sym__b_flw_map_end = 37, sym__r_flw_sep_bgn = 38, sym__br_flw_sep_bgn = 39, sym__r_flw_key_bgn = 40, sym__br_flw_key_bgn = 41, sym__r_flw_jsv_bgn = 42, sym__br_flw_jsv_bgn = 43, sym__r_flw_njv_bgn = 44, sym__br_flw_njv_bgn = 45, sym__r_dqt_str_bgn = 46, sym__br_dqt_str_bgn = 47, sym__b_dqt_str_bgn = 48, sym__r_dqt_str_ctn = 49, sym__br_dqt_str_ctn = 50, sym__r_dqt_esc_nwl = 51, sym__br_dqt_esc_nwl = 52, sym__r_dqt_esc_seq = 53, sym__br_dqt_esc_seq = 54, sym__r_dqt_str_end = 55, sym__br_dqt_str_end = 56, sym__r_sqt_str_bgn = 57, sym__br_sqt_str_bgn = 58, sym__b_sqt_str_bgn = 59, sym__r_sqt_str_ctn = 60, sym__br_sqt_str_ctn = 61, sym__r_sqt_esc_sqt = 62, sym__br_sqt_esc_sqt = 63, sym__r_sqt_str_end = 64, sym__br_sqt_str_end = 65, sym__r_sgl_pln_nul_blk = 66, sym__br_sgl_pln_nul_blk = 67, sym__b_sgl_pln_nul_blk = 68, sym__r_sgl_pln_nul_flw = 69, sym__br_sgl_pln_nul_flw = 70, sym__r_sgl_pln_bol_blk = 71, sym__br_sgl_pln_bol_blk = 72, sym__b_sgl_pln_bol_blk = 73, sym__r_sgl_pln_bol_flw = 74, sym__br_sgl_pln_bol_flw = 75, sym__r_sgl_pln_int_blk = 76, sym__br_sgl_pln_int_blk = 77, sym__b_sgl_pln_int_blk = 78, sym__r_sgl_pln_int_flw = 79, sym__br_sgl_pln_int_flw = 80, sym__r_sgl_pln_flt_blk = 81, sym__br_sgl_pln_flt_blk = 82, sym__b_sgl_pln_flt_blk = 83, sym__r_sgl_pln_flt_flw = 84, sym__br_sgl_pln_flt_flw = 85, sym__r_sgl_pln_tms_blk = 86, sym__br_sgl_pln_tms_blk = 87, sym__b_sgl_pln_tms_blk = 88, sym__r_sgl_pln_tms_flw = 89, sym__br_sgl_pln_tms_flw = 90, sym__r_sgl_pln_str_blk = 91, sym__br_sgl_pln_str_blk = 92, sym__b_sgl_pln_str_blk = 93, sym__r_sgl_pln_str_flw = 94, sym__br_sgl_pln_str_flw = 95, sym__r_mtl_pln_str_blk = 96, sym__br_mtl_pln_str_blk = 97, sym__r_mtl_pln_str_flw = 98, sym__br_mtl_pln_str_flw = 99, sym__r_tag = 100, sym__br_tag = 101, sym__b_tag = 102, sym__r_acr_bgn = 103, sym__br_acr_bgn = 104, sym__b_acr_bgn = 105, sym__r_acr_ctn = 106, sym__r_als_bgn = 107, sym__br_als_bgn = 108, sym__b_als_bgn = 109, sym__r_als_ctn = 110, sym__bl = 111, sym_comment = 112, sym__err_rec = 113, sym_stream = 114, sym__doc_w_bgn_w_end_seq = 115, sym__doc_w_bgn_wo_end_seq = 116, sym__doc_wo_bgn_w_end_seq = 117, sym__doc_wo_bgn_wo_end_seq = 118, sym__doc_w_bgn_w_end = 119, sym__doc_w_bgn_wo_end = 120, sym__doc_wo_bgn_w_end = 121, sym__doc_wo_bgn_wo_end = 122, sym__bgn_imp_doc = 123, sym__drs_doc = 124, sym__exp_doc = 125, sym__imp_doc = 126, sym__drs_doc_end = 127, sym__exp_doc_end = 128, sym__imp_doc_end = 129, sym__bgn_imp_doc_end = 130, sym__doc_end = 131, sym__exp_doc_tal = 132, sym__s_dir = 133, sym__s_dir_yml = 134, sym__s_dir_tag = 135, sym__s_dir_rsv = 136, sym__r_prp_val = 137, sym__br_prp_val = 138, sym__r_sgl_prp_val = 139, sym__br_sgl_prp_val = 140, sym__b_sgl_prp_val = 141, sym__r_prp = 142, sym__br_prp = 143, sym__r_sgl_prp = 144, sym__br_sgl_prp = 145, sym__b_sgl_prp = 146, sym__r_blk_seq_r_val = 147, sym__r_blk_seq_br_val = 148, sym__br_blk_seq_val = 149, sym__r_blk_seq_spc_val = 150, sym__br_blk_seq_spc_val = 151, sym__b_blk_seq_spc_val = 152, sym__r_blk_seq = 153, sym__br_blk_seq = 154, sym__b_blk_seq_spc = 155, sym__r_blk_seq_itm = 156, sym__br_blk_seq_itm = 157, sym__b_blk_seq_itm = 158, sym__blk_seq_itm_tal = 159, sym__r_blk_map_r_val = 160, sym__r_blk_map_br_val = 161, sym__br_blk_map_val = 162, sym__r_blk_map = 163, sym__br_blk_map = 164, sym__r_blk_map_itm = 165, sym__br_blk_map_itm = 166, sym__b_blk_map_itm = 167, sym__r_blk_exp_itm = 168, sym__br_blk_exp_itm = 169, sym__b_blk_exp_itm = 170, sym__r_blk_key_itm = 171, sym__br_blk_key_itm = 172, sym__b_blk_key_itm = 173, sym__r_blk_val_itm = 174, sym__br_blk_val_itm = 175, sym__b_blk_val_itm = 176, sym__r_blk_imp_itm = 177, sym__br_blk_imp_itm = 178, sym__b_blk_imp_itm = 179, sym__blk_exp_itm_tal = 180, sym__blk_imp_itm_tal = 181, sym__r_blk_str_val = 182, sym__br_blk_str_val = 183, sym__r_blk_str = 184, sym__br_blk_str = 185, sym__r_flw_seq_val = 186, sym__br_flw_seq_val = 187, sym__r_sgl_flw_seq_val = 188, sym__br_sgl_flw_seq_val = 189, sym__b_sgl_flw_seq_val = 190, sym__r_flw_seq = 191, sym__br_flw_seq = 192, sym__r_sgl_flw_seq = 193, sym__br_sgl_flw_seq = 194, sym__b_sgl_flw_seq = 195, sym__flw_seq_tal = 196, sym__sgl_flw_seq_tal = 197, sym__r_flw_map_val = 198, sym__br_flw_map_val = 199, sym__r_sgl_flw_map_val = 200, sym__br_sgl_flw_map_val = 201, sym__b_sgl_flw_map_val = 202, sym__r_flw_map = 203, sym__br_flw_map = 204, sym__r_sgl_flw_map = 205, sym__br_sgl_flw_map = 206, sym__b_sgl_flw_map = 207, sym__flw_map_tal = 208, sym__sgl_flw_map_tal = 209, sym__r_flw_seq_dat = 210, sym__br_flw_seq_dat = 211, sym__r_flw_map_dat = 212, sym__br_flw_map_dat = 213, sym__r_sgl_flw_col_dat = 214, sym__flw_seq_dat_rpt = 215, sym__flw_map_dat_rpt = 216, sym__sgl_flw_col_dat_rpt = 217, sym__r_flw_seq_itm = 218, sym__br_flw_seq_itm = 219, sym__r_flw_map_itm = 220, sym__br_flw_map_itm = 221, sym__r_sgl_flw_col_itm = 222, sym__r_flw_exp_par = 223, sym__br_flw_exp_par = 224, sym__r_sgl_flw_exp_par = 225, sym__r_flw_imp_r_par = 226, sym__r_flw_imp_br_par = 227, sym__br_flw_imp_r_par = 228, sym__br_flw_imp_br_par = 229, sym__r_sgl_flw_imp_par = 230, sym__r_flw_jsl_ann_par = 231, sym__br_flw_jsl_ann_par = 232, sym__r_sgl_flw_jsl_ann_par = 233, sym__r_flw_njl_ann_par = 234, sym__br_flw_njl_ann_par = 235, sym__r_sgl_flw_njl_ann_par = 236, sym__flw_ann_par_tal = 237, sym__sgl_flw_ann_par_tal = 238, sym__r_dqt_str_val = 239, sym__br_dqt_str_val = 240, sym__r_sgl_dqt_str_val = 241, sym__br_sgl_dqt_str_val = 242, sym__b_sgl_dqt_str_val = 243, sym__r_dqt_str = 244, sym__br_dqt_str = 245, sym__r_sgl_dqt_str = 246, sym__br_sgl_dqt_str = 247, sym__b_sgl_dqt_str = 248, aux_sym__r_sgl_dqt_ctn = 249, sym__br_mtl_dqt_ctn = 250, sym__r_sqt_str_val = 251, sym__br_sqt_str_val = 252, sym__r_sgl_sqt_str_val = 253, sym__br_sgl_sqt_str_val = 254, sym__b_sgl_sqt_str_val = 255, sym__r_sqt_str = 256, sym__br_sqt_str = 257, sym__r_sgl_sqt_str = 258, sym__br_sgl_sqt_str = 259, sym__b_sgl_sqt_str = 260, aux_sym__r_sgl_sqt_ctn = 261, sym__br_mtl_sqt_ctn = 262, sym__r_pln_blk_val = 263, sym__br_pln_blk_val = 264, sym__r_sgl_pln_blk_val = 265, sym__br_sgl_pln_blk_val = 266, sym__b_sgl_pln_blk_val = 267, sym__r_pln_flw_val = 268, sym__br_pln_flw_val = 269, sym__r_sgl_pln_flw_val = 270, sym__r_sgl_pln_blk = 271, sym__br_sgl_pln_blk = 272, sym__b_sgl_pln_blk = 273, sym__r_sgl_pln_flw = 274, sym__br_sgl_pln_flw = 275, sym__r_mtl_pln_blk = 276, sym__br_mtl_pln_blk = 277, sym__r_mtl_pln_flw = 278, sym__br_mtl_pln_flw = 279, sym__r_als_val = 280, sym__br_als_val = 281, sym__b_als_val = 282, sym__r_als = 283, sym__br_als = 284, sym__b_als = 285, sym__r_acr = 286, sym__br_acr = 287, sym__b_acr = 288, aux_sym__drs_doc_repeat1 = 289, aux_sym__s_dir_rsv_repeat1 = 290, aux_sym__r_blk_seq_repeat1 = 291, aux_sym__r_blk_map_repeat1 = 292, aux_sym__r_blk_str_repeat1 = 293, aux_sym__r_flw_seq_dat_repeat1 = 294, aux_sym__r_flw_map_dat_repeat1 = 295, aux_sym__r_sgl_flw_col_dat_repeat1 = 296, aux_sym__r_dqt_str_repeat1 = 297, aux_sym__br_mtl_dqt_ctn_repeat1 = 298, aux_sym__r_sqt_str_repeat1 = 299, aux_sym__br_mtl_sqt_ctn_repeat1 = 300, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym__eof] = "_eof", [sym__s_dir_yml_bgn] = "_s_dir_yml_bgn", [sym__r_dir_yml_ver] = "yaml_version", [sym__s_dir_tag_bgn] = "_s_dir_tag_bgn", [sym__r_dir_tag_hdl] = "tag_handle", [sym__r_dir_tag_pfx] = "tag_prefix", [sym__s_dir_rsv_bgn] = "directive_name", [sym__r_dir_rsv_prm] = "directive_parameter", [sym__s_drs_end] = "---", [sym__s_doc_end] = "...", [sym__r_blk_seq_bgn] = "-", [sym__br_blk_seq_bgn] = "-", [sym__b_blk_seq_bgn] = "-", [sym__r_blk_key_bgn] = "\?", [sym__br_blk_key_bgn] = "\?", [sym__b_blk_key_bgn] = "\?", [sym__r_blk_val_bgn] = ":", [sym__br_blk_val_bgn] = ":", [sym__b_blk_val_bgn] = ":", [sym__r_blk_imp_bgn] = ":", [sym__r_blk_lit_bgn] = "|", [sym__br_blk_lit_bgn] = "|", [sym__r_blk_fld_bgn] = ">", [sym__br_blk_fld_bgn] = ">", [sym__br_blk_str_ctn] = "_br_blk_str_ctn", [sym__r_flw_seq_bgn] = "[", [sym__br_flw_seq_bgn] = "[", [sym__b_flw_seq_bgn] = "[", [sym__r_flw_seq_end] = "]", [sym__br_flw_seq_end] = "]", [sym__b_flw_seq_end] = "]", [sym__r_flw_map_bgn] = "{", [sym__br_flw_map_bgn] = "{", [sym__b_flw_map_bgn] = "{", [sym__r_flw_map_end] = "}", [sym__br_flw_map_end] = "}", [sym__b_flw_map_end] = "}", [sym__r_flw_sep_bgn] = ",", [sym__br_flw_sep_bgn] = ",", [sym__r_flw_key_bgn] = "\?", [sym__br_flw_key_bgn] = "\?", [sym__r_flw_jsv_bgn] = ":", [sym__br_flw_jsv_bgn] = ":", [sym__r_flw_njv_bgn] = ":", [sym__br_flw_njv_bgn] = ":", [sym__r_dqt_str_bgn] = "\"", [sym__br_dqt_str_bgn] = "\"", [sym__b_dqt_str_bgn] = "\"", [sym__r_dqt_str_ctn] = "_r_dqt_str_ctn", [sym__br_dqt_str_ctn] = "_br_dqt_str_ctn", [sym__r_dqt_esc_nwl] = "escape_sequence", [sym__br_dqt_esc_nwl] = "escape_sequence", [sym__r_dqt_esc_seq] = "escape_sequence", [sym__br_dqt_esc_seq] = "escape_sequence", [sym__r_dqt_str_end] = "\"", [sym__br_dqt_str_end] = "\"", [sym__r_sqt_str_bgn] = "'", [sym__br_sqt_str_bgn] = "'", [sym__b_sqt_str_bgn] = "'", [sym__r_sqt_str_ctn] = "_r_sqt_str_ctn", [sym__br_sqt_str_ctn] = "_br_sqt_str_ctn", [sym__r_sqt_esc_sqt] = "escape_sequence", [sym__br_sqt_esc_sqt] = "escape_sequence", [sym__r_sqt_str_end] = "'", [sym__br_sqt_str_end] = "'", [sym__r_sgl_pln_nul_blk] = "null_scalar", [sym__br_sgl_pln_nul_blk] = "null_scalar", [sym__b_sgl_pln_nul_blk] = "null_scalar", [sym__r_sgl_pln_nul_flw] = "null_scalar", [sym__br_sgl_pln_nul_flw] = "null_scalar", [sym__r_sgl_pln_bol_blk] = "boolean_scalar", [sym__br_sgl_pln_bol_blk] = "boolean_scalar", [sym__b_sgl_pln_bol_blk] = "boolean_scalar", [sym__r_sgl_pln_bol_flw] = "boolean_scalar", [sym__br_sgl_pln_bol_flw] = "boolean_scalar", [sym__r_sgl_pln_int_blk] = "integer_scalar", [sym__br_sgl_pln_int_blk] = "integer_scalar", [sym__b_sgl_pln_int_blk] = "integer_scalar", [sym__r_sgl_pln_int_flw] = "integer_scalar", [sym__br_sgl_pln_int_flw] = "integer_scalar", [sym__r_sgl_pln_flt_blk] = "float_scalar", [sym__br_sgl_pln_flt_blk] = "float_scalar", [sym__b_sgl_pln_flt_blk] = "float_scalar", [sym__r_sgl_pln_flt_flw] = "float_scalar", [sym__br_sgl_pln_flt_flw] = "float_scalar", [sym__r_sgl_pln_tms_blk] = "timestamp_scalar", [sym__br_sgl_pln_tms_blk] = "timestamp_scalar", [sym__b_sgl_pln_tms_blk] = "timestamp_scalar", [sym__r_sgl_pln_tms_flw] = "timestamp_scalar", [sym__br_sgl_pln_tms_flw] = "timestamp_scalar", [sym__r_sgl_pln_str_blk] = "string_scalar", [sym__br_sgl_pln_str_blk] = "string_scalar", [sym__b_sgl_pln_str_blk] = "string_scalar", [sym__r_sgl_pln_str_flw] = "string_scalar", [sym__br_sgl_pln_str_flw] = "string_scalar", [sym__r_mtl_pln_str_blk] = "string_scalar", [sym__br_mtl_pln_str_blk] = "string_scalar", [sym__r_mtl_pln_str_flw] = "string_scalar", [sym__br_mtl_pln_str_flw] = "string_scalar", [sym__r_tag] = "tag", [sym__br_tag] = "tag", [sym__b_tag] = "tag", [sym__r_acr_bgn] = "&", [sym__br_acr_bgn] = "&", [sym__b_acr_bgn] = "&", [sym__r_acr_ctn] = "anchor_name", [sym__r_als_bgn] = "*", [sym__br_als_bgn] = "*", [sym__b_als_bgn] = "*", [sym__r_als_ctn] = "alias_name", [sym__bl] = "_bl", [sym_comment] = "comment", [sym__err_rec] = "_err_rec", [sym_stream] = "stream", [sym__doc_w_bgn_w_end_seq] = "_doc_w_bgn_w_end_seq", [sym__doc_w_bgn_wo_end_seq] = "_doc_w_bgn_wo_end_seq", [sym__doc_wo_bgn_w_end_seq] = "_doc_wo_bgn_w_end_seq", [sym__doc_wo_bgn_wo_end_seq] = "_doc_wo_bgn_wo_end_seq", [sym__doc_w_bgn_w_end] = "_doc_w_bgn_w_end", [sym__doc_w_bgn_wo_end] = "_doc_w_bgn_wo_end", [sym__doc_wo_bgn_w_end] = "_doc_wo_bgn_w_end", [sym__doc_wo_bgn_wo_end] = "_doc_wo_bgn_wo_end", [sym__bgn_imp_doc] = "_bgn_imp_doc", [sym__drs_doc] = "_drs_doc", [sym__exp_doc] = "_exp_doc", [sym__imp_doc] = "_imp_doc", [sym__drs_doc_end] = "document", [sym__exp_doc_end] = "document", [sym__imp_doc_end] = "document", [sym__bgn_imp_doc_end] = "document", [sym__doc_end] = "document", [sym__exp_doc_tal] = "_exp_doc_tal", [sym__s_dir] = "_s_dir", [sym__s_dir_yml] = "yaml_directive", [sym__s_dir_tag] = "tag_directive", [sym__s_dir_rsv] = "reserved_directive", [sym__r_prp_val] = "flow_node", [sym__br_prp_val] = "flow_node", [sym__r_sgl_prp_val] = "flow_node", [sym__br_sgl_prp_val] = "flow_node", [sym__b_sgl_prp_val] = "flow_node", [sym__r_prp] = "_r_prp", [sym__br_prp] = "_br_prp", [sym__r_sgl_prp] = "_r_sgl_prp", [sym__br_sgl_prp] = "_br_sgl_prp", [sym__b_sgl_prp] = "_b_sgl_prp", [sym__r_blk_seq_r_val] = "block_node", [sym__r_blk_seq_br_val] = "block_node", [sym__br_blk_seq_val] = "block_node", [sym__r_blk_seq_spc_val] = "block_node", [sym__br_blk_seq_spc_val] = "block_node", [sym__b_blk_seq_spc_val] = "block_node", [sym__r_blk_seq] = "block_sequence", [sym__br_blk_seq] = "block_sequence", [sym__b_blk_seq_spc] = "block_sequence", [sym__r_blk_seq_itm] = "block_sequence_item", [sym__br_blk_seq_itm] = "block_sequence_item", [sym__b_blk_seq_itm] = "block_sequence_item", [sym__blk_seq_itm_tal] = "_blk_seq_itm_tal", [sym__r_blk_map_r_val] = "block_node", [sym__r_blk_map_br_val] = "block_node", [sym__br_blk_map_val] = "block_node", [sym__r_blk_map] = "block_mapping", [sym__br_blk_map] = "block_mapping", [sym__r_blk_map_itm] = "_r_blk_map_itm", [sym__br_blk_map_itm] = "_br_blk_map_itm", [sym__b_blk_map_itm] = "_b_blk_map_itm", [sym__r_blk_exp_itm] = "block_mapping_pair", [sym__br_blk_exp_itm] = "block_mapping_pair", [sym__b_blk_exp_itm] = "block_mapping_pair", [sym__r_blk_key_itm] = "_r_blk_key_itm", [sym__br_blk_key_itm] = "_br_blk_key_itm", [sym__b_blk_key_itm] = "_b_blk_key_itm", [sym__r_blk_val_itm] = "_r_blk_val_itm", [sym__br_blk_val_itm] = "_br_blk_val_itm", [sym__b_blk_val_itm] = "_b_blk_val_itm", [sym__r_blk_imp_itm] = "block_mapping_pair", [sym__br_blk_imp_itm] = "block_mapping_pair", [sym__b_blk_imp_itm] = "block_mapping_pair", [sym__blk_exp_itm_tal] = "_blk_exp_itm_tal", [sym__blk_imp_itm_tal] = "_blk_imp_itm_tal", [sym__r_blk_str_val] = "block_node", [sym__br_blk_str_val] = "block_node", [sym__r_blk_str] = "block_scalar", [sym__br_blk_str] = "block_scalar", [sym__r_flw_seq_val] = "flow_node", [sym__br_flw_seq_val] = "flow_node", [sym__r_sgl_flw_seq_val] = "flow_node", [sym__br_sgl_flw_seq_val] = "flow_node", [sym__b_sgl_flw_seq_val] = "flow_node", [sym__r_flw_seq] = "flow_sequence", [sym__br_flw_seq] = "flow_sequence", [sym__r_sgl_flw_seq] = "flow_sequence", [sym__br_sgl_flw_seq] = "flow_sequence", [sym__b_sgl_flw_seq] = "flow_sequence", [sym__flw_seq_tal] = "_flw_seq_tal", [sym__sgl_flw_seq_tal] = "_sgl_flw_seq_tal", [sym__r_flw_map_val] = "flow_node", [sym__br_flw_map_val] = "flow_node", [sym__r_sgl_flw_map_val] = "flow_node", [sym__br_sgl_flw_map_val] = "flow_node", [sym__b_sgl_flw_map_val] = "flow_node", [sym__r_flw_map] = "flow_mapping", [sym__br_flw_map] = "flow_mapping", [sym__r_sgl_flw_map] = "flow_mapping", [sym__br_sgl_flw_map] = "flow_mapping", [sym__b_sgl_flw_map] = "flow_mapping", [sym__flw_map_tal] = "_flw_map_tal", [sym__sgl_flw_map_tal] = "_sgl_flw_map_tal", [sym__r_flw_seq_dat] = "_r_flw_seq_dat", [sym__br_flw_seq_dat] = "_br_flw_seq_dat", [sym__r_flw_map_dat] = "_r_flw_map_dat", [sym__br_flw_map_dat] = "_br_flw_map_dat", [sym__r_sgl_flw_col_dat] = "_r_sgl_flw_col_dat", [sym__flw_seq_dat_rpt] = "_flw_seq_dat_rpt", [sym__flw_map_dat_rpt] = "_flw_map_dat_rpt", [sym__sgl_flw_col_dat_rpt] = "_sgl_flw_col_dat_rpt", [sym__r_flw_seq_itm] = "_r_flw_seq_itm", [sym__br_flw_seq_itm] = "_br_flw_seq_itm", [sym__r_flw_map_itm] = "_r_flw_map_itm", [sym__br_flw_map_itm] = "_br_flw_map_itm", [sym__r_sgl_flw_col_itm] = "_r_sgl_flw_col_itm", [sym__r_flw_exp_par] = "flow_pair", [sym__br_flw_exp_par] = "flow_pair", [sym__r_sgl_flw_exp_par] = "flow_pair", [sym__r_flw_imp_r_par] = "_r_flw_imp_r_par", [sym__r_flw_imp_br_par] = "_r_flw_imp_br_par", [sym__br_flw_imp_r_par] = "_br_flw_imp_r_par", [sym__br_flw_imp_br_par] = "_br_flw_imp_br_par", [sym__r_sgl_flw_imp_par] = "_r_sgl_flw_imp_par", [sym__r_flw_jsl_ann_par] = "_r_flw_jsl_ann_par", [sym__br_flw_jsl_ann_par] = "_br_flw_jsl_ann_par", [sym__r_sgl_flw_jsl_ann_par] = "_r_sgl_flw_jsl_ann_par", [sym__r_flw_njl_ann_par] = "_r_flw_njl_ann_par", [sym__br_flw_njl_ann_par] = "_br_flw_njl_ann_par", [sym__r_sgl_flw_njl_ann_par] = "_r_sgl_flw_njl_ann_par", [sym__flw_ann_par_tal] = "_flw_ann_par_tal", [sym__sgl_flw_ann_par_tal] = "_sgl_flw_ann_par_tal", [sym__r_dqt_str_val] = "flow_node", [sym__br_dqt_str_val] = "flow_node", [sym__r_sgl_dqt_str_val] = "flow_node", [sym__br_sgl_dqt_str_val] = "flow_node", [sym__b_sgl_dqt_str_val] = "flow_node", [sym__r_dqt_str] = "double_quote_scalar", [sym__br_dqt_str] = "double_quote_scalar", [sym__r_sgl_dqt_str] = "double_quote_scalar", [sym__br_sgl_dqt_str] = "double_quote_scalar", [sym__b_sgl_dqt_str] = "double_quote_scalar", [aux_sym__r_sgl_dqt_ctn] = "_r_sgl_dqt_ctn", [sym__br_mtl_dqt_ctn] = "_br_mtl_dqt_ctn", [sym__r_sqt_str_val] = "flow_node", [sym__br_sqt_str_val] = "flow_node", [sym__r_sgl_sqt_str_val] = "flow_node", [sym__br_sgl_sqt_str_val] = "flow_node", [sym__b_sgl_sqt_str_val] = "flow_node", [sym__r_sqt_str] = "single_quote_scalar", [sym__br_sqt_str] = "single_quote_scalar", [sym__r_sgl_sqt_str] = "single_quote_scalar", [sym__br_sgl_sqt_str] = "single_quote_scalar", [sym__b_sgl_sqt_str] = "single_quote_scalar", [aux_sym__r_sgl_sqt_ctn] = "_r_sgl_sqt_ctn", [sym__br_mtl_sqt_ctn] = "_br_mtl_sqt_ctn", [sym__r_pln_blk_val] = "flow_node", [sym__br_pln_blk_val] = "flow_node", [sym__r_sgl_pln_blk_val] = "flow_node", [sym__br_sgl_pln_blk_val] = "flow_node", [sym__b_sgl_pln_blk_val] = "flow_node", [sym__r_pln_flw_val] = "flow_node", [sym__br_pln_flw_val] = "flow_node", [sym__r_sgl_pln_flw_val] = "flow_node", [sym__r_sgl_pln_blk] = "plain_scalar", [sym__br_sgl_pln_blk] = "plain_scalar", [sym__b_sgl_pln_blk] = "plain_scalar", [sym__r_sgl_pln_flw] = "plain_scalar", [sym__br_sgl_pln_flw] = "plain_scalar", [sym__r_mtl_pln_blk] = "plain_scalar", [sym__br_mtl_pln_blk] = "plain_scalar", [sym__r_mtl_pln_flw] = "plain_scalar", [sym__br_mtl_pln_flw] = "plain_scalar", [sym__r_als_val] = "flow_node", [sym__br_als_val] = "flow_node", [sym__b_als_val] = "flow_node", [sym__r_als] = "alias", [sym__br_als] = "alias", [sym__b_als] = "alias", [sym__r_acr] = "anchor", [sym__br_acr] = "anchor", [sym__b_acr] = "anchor", [aux_sym__drs_doc_repeat1] = "_drs_doc_repeat1", [aux_sym__s_dir_rsv_repeat1] = "_s_dir_rsv_repeat1", [aux_sym__r_blk_seq_repeat1] = "_r_blk_seq_repeat1", [aux_sym__r_blk_map_repeat1] = "_r_blk_map_repeat1", [aux_sym__r_blk_str_repeat1] = "_r_blk_str_repeat1", [aux_sym__r_flw_seq_dat_repeat1] = "_r_flw_seq_dat_repeat1", [aux_sym__r_flw_map_dat_repeat1] = "_r_flw_map_dat_repeat1", [aux_sym__r_sgl_flw_col_dat_repeat1] = "_r_sgl_flw_col_dat_repeat1", [aux_sym__r_dqt_str_repeat1] = "_r_dqt_str_repeat1", [aux_sym__br_mtl_dqt_ctn_repeat1] = "_br_mtl_dqt_ctn_repeat1", [aux_sym__r_sqt_str_repeat1] = "_r_sqt_str_repeat1", [aux_sym__br_mtl_sqt_ctn_repeat1] = "_br_mtl_sqt_ctn_repeat1", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym__eof] = sym__eof, [sym__s_dir_yml_bgn] = sym__s_dir_yml_bgn, [sym__r_dir_yml_ver] = sym__r_dir_yml_ver, [sym__s_dir_tag_bgn] = sym__s_dir_tag_bgn, [sym__r_dir_tag_hdl] = sym__r_dir_tag_hdl, [sym__r_dir_tag_pfx] = sym__r_dir_tag_pfx, [sym__s_dir_rsv_bgn] = sym__s_dir_rsv_bgn, [sym__r_dir_rsv_prm] = sym__r_dir_rsv_prm, [sym__s_drs_end] = sym__s_drs_end, [sym__s_doc_end] = sym__s_doc_end, [sym__r_blk_seq_bgn] = sym__r_blk_seq_bgn, [sym__br_blk_seq_bgn] = sym__r_blk_seq_bgn, [sym__b_blk_seq_bgn] = sym__r_blk_seq_bgn, [sym__r_blk_key_bgn] = sym__r_blk_key_bgn, [sym__br_blk_key_bgn] = sym__r_blk_key_bgn, [sym__b_blk_key_bgn] = sym__r_blk_key_bgn, [sym__r_blk_val_bgn] = sym__r_blk_val_bgn, [sym__br_blk_val_bgn] = sym__r_blk_val_bgn, [sym__b_blk_val_bgn] = sym__r_blk_val_bgn, [sym__r_blk_imp_bgn] = sym__r_blk_val_bgn, [sym__r_blk_lit_bgn] = sym__r_blk_lit_bgn, [sym__br_blk_lit_bgn] = sym__r_blk_lit_bgn, [sym__r_blk_fld_bgn] = sym__r_blk_fld_bgn, [sym__br_blk_fld_bgn] = sym__r_blk_fld_bgn, [sym__br_blk_str_ctn] = sym__br_blk_str_ctn, [sym__r_flw_seq_bgn] = sym__r_flw_seq_bgn, [sym__br_flw_seq_bgn] = sym__r_flw_seq_bgn, [sym__b_flw_seq_bgn] = sym__r_flw_seq_bgn, [sym__r_flw_seq_end] = sym__r_flw_seq_end, [sym__br_flw_seq_end] = sym__r_flw_seq_end, [sym__b_flw_seq_end] = sym__r_flw_seq_end, [sym__r_flw_map_bgn] = sym__r_flw_map_bgn, [sym__br_flw_map_bgn] = sym__r_flw_map_bgn, [sym__b_flw_map_bgn] = sym__r_flw_map_bgn, [sym__r_flw_map_end] = sym__r_flw_map_end, [sym__br_flw_map_end] = sym__r_flw_map_end, [sym__b_flw_map_end] = sym__r_flw_map_end, [sym__r_flw_sep_bgn] = sym__r_flw_sep_bgn, [sym__br_flw_sep_bgn] = sym__r_flw_sep_bgn, [sym__r_flw_key_bgn] = sym__r_blk_key_bgn, [sym__br_flw_key_bgn] = sym__r_blk_key_bgn, [sym__r_flw_jsv_bgn] = sym__r_blk_val_bgn, [sym__br_flw_jsv_bgn] = sym__r_blk_val_bgn, [sym__r_flw_njv_bgn] = sym__r_blk_val_bgn, [sym__br_flw_njv_bgn] = sym__r_blk_val_bgn, [sym__r_dqt_str_bgn] = sym__r_dqt_str_bgn, [sym__br_dqt_str_bgn] = sym__r_dqt_str_bgn, [sym__b_dqt_str_bgn] = sym__r_dqt_str_bgn, [sym__r_dqt_str_ctn] = sym__r_dqt_str_ctn, [sym__br_dqt_str_ctn] = sym__br_dqt_str_ctn, [sym__r_dqt_esc_nwl] = sym__r_dqt_esc_nwl, [sym__br_dqt_esc_nwl] = sym__r_dqt_esc_nwl, [sym__r_dqt_esc_seq] = sym__r_dqt_esc_nwl, [sym__br_dqt_esc_seq] = sym__r_dqt_esc_nwl, [sym__r_dqt_str_end] = sym__r_dqt_str_bgn, [sym__br_dqt_str_end] = sym__r_dqt_str_bgn, [sym__r_sqt_str_bgn] = sym__r_sqt_str_bgn, [sym__br_sqt_str_bgn] = sym__r_sqt_str_bgn, [sym__b_sqt_str_bgn] = sym__r_sqt_str_bgn, [sym__r_sqt_str_ctn] = sym__r_sqt_str_ctn, [sym__br_sqt_str_ctn] = sym__br_sqt_str_ctn, [sym__r_sqt_esc_sqt] = sym__r_dqt_esc_nwl, [sym__br_sqt_esc_sqt] = sym__r_dqt_esc_nwl, [sym__r_sqt_str_end] = sym__r_sqt_str_bgn, [sym__br_sqt_str_end] = sym__r_sqt_str_bgn, [sym__r_sgl_pln_nul_blk] = sym__r_sgl_pln_nul_blk, [sym__br_sgl_pln_nul_blk] = sym__r_sgl_pln_nul_blk, [sym__b_sgl_pln_nul_blk] = sym__r_sgl_pln_nul_blk, [sym__r_sgl_pln_nul_flw] = sym__r_sgl_pln_nul_blk, [sym__br_sgl_pln_nul_flw] = sym__r_sgl_pln_nul_blk, [sym__r_sgl_pln_bol_blk] = sym__r_sgl_pln_bol_blk, [sym__br_sgl_pln_bol_blk] = sym__r_sgl_pln_bol_blk, [sym__b_sgl_pln_bol_blk] = sym__r_sgl_pln_bol_blk, [sym__r_sgl_pln_bol_flw] = sym__r_sgl_pln_bol_blk, [sym__br_sgl_pln_bol_flw] = sym__r_sgl_pln_bol_blk, [sym__r_sgl_pln_int_blk] = sym__r_sgl_pln_int_blk, [sym__br_sgl_pln_int_blk] = sym__r_sgl_pln_int_blk, [sym__b_sgl_pln_int_blk] = sym__r_sgl_pln_int_blk, [sym__r_sgl_pln_int_flw] = sym__r_sgl_pln_int_blk, [sym__br_sgl_pln_int_flw] = sym__r_sgl_pln_int_blk, [sym__r_sgl_pln_flt_blk] = sym__r_sgl_pln_flt_blk, [sym__br_sgl_pln_flt_blk] = sym__r_sgl_pln_flt_blk, [sym__b_sgl_pln_flt_blk] = sym__r_sgl_pln_flt_blk, [sym__r_sgl_pln_flt_flw] = sym__r_sgl_pln_flt_blk, [sym__br_sgl_pln_flt_flw] = sym__r_sgl_pln_flt_blk, [sym__r_sgl_pln_tms_blk] = sym__r_sgl_pln_tms_blk, [sym__br_sgl_pln_tms_blk] = sym__r_sgl_pln_tms_blk, [sym__b_sgl_pln_tms_blk] = sym__r_sgl_pln_tms_blk, [sym__r_sgl_pln_tms_flw] = sym__r_sgl_pln_tms_blk, [sym__br_sgl_pln_tms_flw] = sym__r_sgl_pln_tms_blk, [sym__r_sgl_pln_str_blk] = sym__r_sgl_pln_str_blk, [sym__br_sgl_pln_str_blk] = sym__r_sgl_pln_str_blk, [sym__b_sgl_pln_str_blk] = sym__r_sgl_pln_str_blk, [sym__r_sgl_pln_str_flw] = sym__r_sgl_pln_str_blk, [sym__br_sgl_pln_str_flw] = sym__r_sgl_pln_str_blk, [sym__r_mtl_pln_str_blk] = sym__r_sgl_pln_str_blk, [sym__br_mtl_pln_str_blk] = sym__r_sgl_pln_str_blk, [sym__r_mtl_pln_str_flw] = sym__r_sgl_pln_str_blk, [sym__br_mtl_pln_str_flw] = sym__r_sgl_pln_str_blk, [sym__r_tag] = sym__r_tag, [sym__br_tag] = sym__r_tag, [sym__b_tag] = sym__r_tag, [sym__r_acr_bgn] = sym__r_acr_bgn, [sym__br_acr_bgn] = sym__r_acr_bgn, [sym__b_acr_bgn] = sym__r_acr_bgn, [sym__r_acr_ctn] = sym__r_acr_ctn, [sym__r_als_bgn] = sym__r_als_bgn, [sym__br_als_bgn] = sym__r_als_bgn, [sym__b_als_bgn] = sym__r_als_bgn, [sym__r_als_ctn] = sym__r_als_ctn, [sym__bl] = sym__bl, [sym_comment] = sym_comment, [sym__err_rec] = sym__err_rec, [sym_stream] = sym_stream, [sym__doc_w_bgn_w_end_seq] = sym__doc_w_bgn_w_end_seq, [sym__doc_w_bgn_wo_end_seq] = sym__doc_w_bgn_wo_end_seq, [sym__doc_wo_bgn_w_end_seq] = sym__doc_wo_bgn_w_end_seq, [sym__doc_wo_bgn_wo_end_seq] = sym__doc_wo_bgn_wo_end_seq, [sym__doc_w_bgn_w_end] = sym__doc_w_bgn_w_end, [sym__doc_w_bgn_wo_end] = sym__doc_w_bgn_wo_end, [sym__doc_wo_bgn_w_end] = sym__doc_wo_bgn_w_end, [sym__doc_wo_bgn_wo_end] = sym__doc_wo_bgn_wo_end, [sym__bgn_imp_doc] = sym__bgn_imp_doc, [sym__drs_doc] = sym__drs_doc, [sym__exp_doc] = sym__exp_doc, [sym__imp_doc] = sym__imp_doc, [sym__drs_doc_end] = sym__drs_doc_end, [sym__exp_doc_end] = sym__drs_doc_end, [sym__imp_doc_end] = sym__drs_doc_end, [sym__bgn_imp_doc_end] = sym__drs_doc_end, [sym__doc_end] = sym__drs_doc_end, [sym__exp_doc_tal] = sym__exp_doc_tal, [sym__s_dir] = sym__s_dir, [sym__s_dir_yml] = sym__s_dir_yml, [sym__s_dir_tag] = sym__s_dir_tag, [sym__s_dir_rsv] = sym__s_dir_rsv, [sym__r_prp_val] = sym__r_prp_val, [sym__br_prp_val] = sym__r_prp_val, [sym__r_sgl_prp_val] = sym__r_prp_val, [sym__br_sgl_prp_val] = sym__r_prp_val, [sym__b_sgl_prp_val] = sym__r_prp_val, [sym__r_prp] = sym__r_prp, [sym__br_prp] = sym__br_prp, [sym__r_sgl_prp] = sym__r_sgl_prp, [sym__br_sgl_prp] = sym__br_sgl_prp, [sym__b_sgl_prp] = sym__b_sgl_prp, [sym__r_blk_seq_r_val] = sym__r_blk_seq_r_val, [sym__r_blk_seq_br_val] = sym__r_blk_seq_r_val, [sym__br_blk_seq_val] = sym__r_blk_seq_r_val, [sym__r_blk_seq_spc_val] = sym__r_blk_seq_r_val, [sym__br_blk_seq_spc_val] = sym__r_blk_seq_r_val, [sym__b_blk_seq_spc_val] = sym__r_blk_seq_r_val, [sym__r_blk_seq] = sym__r_blk_seq, [sym__br_blk_seq] = sym__r_blk_seq, [sym__b_blk_seq_spc] = sym__r_blk_seq, [sym__r_blk_seq_itm] = sym__r_blk_seq_itm, [sym__br_blk_seq_itm] = sym__r_blk_seq_itm, [sym__b_blk_seq_itm] = sym__r_blk_seq_itm, [sym__blk_seq_itm_tal] = sym__blk_seq_itm_tal, [sym__r_blk_map_r_val] = sym__r_blk_seq_r_val, [sym__r_blk_map_br_val] = sym__r_blk_seq_r_val, [sym__br_blk_map_val] = sym__r_blk_seq_r_val, [sym__r_blk_map] = sym__r_blk_map, [sym__br_blk_map] = sym__r_blk_map, [sym__r_blk_map_itm] = sym__r_blk_map_itm, [sym__br_blk_map_itm] = sym__br_blk_map_itm, [sym__b_blk_map_itm] = sym__b_blk_map_itm, [sym__r_blk_exp_itm] = sym__r_blk_exp_itm, [sym__br_blk_exp_itm] = sym__r_blk_exp_itm, [sym__b_blk_exp_itm] = sym__r_blk_exp_itm, [sym__r_blk_key_itm] = sym__r_blk_key_itm, [sym__br_blk_key_itm] = sym__br_blk_key_itm, [sym__b_blk_key_itm] = sym__b_blk_key_itm, [sym__r_blk_val_itm] = sym__r_blk_val_itm, [sym__br_blk_val_itm] = sym__br_blk_val_itm, [sym__b_blk_val_itm] = sym__b_blk_val_itm, [sym__r_blk_imp_itm] = sym__r_blk_exp_itm, [sym__br_blk_imp_itm] = sym__r_blk_exp_itm, [sym__b_blk_imp_itm] = sym__r_blk_exp_itm, [sym__blk_exp_itm_tal] = sym__blk_exp_itm_tal, [sym__blk_imp_itm_tal] = sym__blk_imp_itm_tal, [sym__r_blk_str_val] = sym__r_blk_seq_r_val, [sym__br_blk_str_val] = sym__r_blk_seq_r_val, [sym__r_blk_str] = sym__r_blk_str, [sym__br_blk_str] = sym__r_blk_str, [sym__r_flw_seq_val] = sym__r_prp_val, [sym__br_flw_seq_val] = sym__r_prp_val, [sym__r_sgl_flw_seq_val] = sym__r_prp_val, [sym__br_sgl_flw_seq_val] = sym__r_prp_val, [sym__b_sgl_flw_seq_val] = sym__r_prp_val, [sym__r_flw_seq] = sym__r_flw_seq, [sym__br_flw_seq] = sym__r_flw_seq, [sym__r_sgl_flw_seq] = sym__r_flw_seq, [sym__br_sgl_flw_seq] = sym__r_flw_seq, [sym__b_sgl_flw_seq] = sym__r_flw_seq, [sym__flw_seq_tal] = sym__flw_seq_tal, [sym__sgl_flw_seq_tal] = sym__sgl_flw_seq_tal, [sym__r_flw_map_val] = sym__r_prp_val, [sym__br_flw_map_val] = sym__r_prp_val, [sym__r_sgl_flw_map_val] = sym__r_prp_val, [sym__br_sgl_flw_map_val] = sym__r_prp_val, [sym__b_sgl_flw_map_val] = sym__r_prp_val, [sym__r_flw_map] = sym__r_flw_map, [sym__br_flw_map] = sym__r_flw_map, [sym__r_sgl_flw_map] = sym__r_flw_map, [sym__br_sgl_flw_map] = sym__r_flw_map, [sym__b_sgl_flw_map] = sym__r_flw_map, [sym__flw_map_tal] = sym__flw_map_tal, [sym__sgl_flw_map_tal] = sym__sgl_flw_map_tal, [sym__r_flw_seq_dat] = sym__r_flw_seq_dat, [sym__br_flw_seq_dat] = sym__br_flw_seq_dat, [sym__r_flw_map_dat] = sym__r_flw_map_dat, [sym__br_flw_map_dat] = sym__br_flw_map_dat, [sym__r_sgl_flw_col_dat] = sym__r_sgl_flw_col_dat, [sym__flw_seq_dat_rpt] = sym__flw_seq_dat_rpt, [sym__flw_map_dat_rpt] = sym__flw_map_dat_rpt, [sym__sgl_flw_col_dat_rpt] = sym__sgl_flw_col_dat_rpt, [sym__r_flw_seq_itm] = sym__r_flw_seq_itm, [sym__br_flw_seq_itm] = sym__br_flw_seq_itm, [sym__r_flw_map_itm] = sym__r_flw_map_itm, [sym__br_flw_map_itm] = sym__br_flw_map_itm, [sym__r_sgl_flw_col_itm] = sym__r_sgl_flw_col_itm, [sym__r_flw_exp_par] = sym__r_flw_exp_par, [sym__br_flw_exp_par] = sym__r_flw_exp_par, [sym__r_sgl_flw_exp_par] = sym__r_flw_exp_par, [sym__r_flw_imp_r_par] = sym__r_flw_imp_r_par, [sym__r_flw_imp_br_par] = sym__r_flw_imp_br_par, [sym__br_flw_imp_r_par] = sym__br_flw_imp_r_par, [sym__br_flw_imp_br_par] = sym__br_flw_imp_br_par, [sym__r_sgl_flw_imp_par] = sym__r_sgl_flw_imp_par, [sym__r_flw_jsl_ann_par] = sym__r_flw_jsl_ann_par, [sym__br_flw_jsl_ann_par] = sym__br_flw_jsl_ann_par, [sym__r_sgl_flw_jsl_ann_par] = sym__r_sgl_flw_jsl_ann_par, [sym__r_flw_njl_ann_par] = sym__r_flw_njl_ann_par, [sym__br_flw_njl_ann_par] = sym__br_flw_njl_ann_par, [sym__r_sgl_flw_njl_ann_par] = sym__r_sgl_flw_njl_ann_par, [sym__flw_ann_par_tal] = sym__flw_ann_par_tal, [sym__sgl_flw_ann_par_tal] = sym__sgl_flw_ann_par_tal, [sym__r_dqt_str_val] = sym__r_prp_val, [sym__br_dqt_str_val] = sym__r_prp_val, [sym__r_sgl_dqt_str_val] = sym__r_prp_val, [sym__br_sgl_dqt_str_val] = sym__r_prp_val, [sym__b_sgl_dqt_str_val] = sym__r_prp_val, [sym__r_dqt_str] = sym__r_dqt_str, [sym__br_dqt_str] = sym__r_dqt_str, [sym__r_sgl_dqt_str] = sym__r_dqt_str, [sym__br_sgl_dqt_str] = sym__r_dqt_str, [sym__b_sgl_dqt_str] = sym__r_dqt_str, [aux_sym__r_sgl_dqt_ctn] = aux_sym__r_sgl_dqt_ctn, [sym__br_mtl_dqt_ctn] = sym__br_mtl_dqt_ctn, [sym__r_sqt_str_val] = sym__r_prp_val, [sym__br_sqt_str_val] = sym__r_prp_val, [sym__r_sgl_sqt_str_val] = sym__r_prp_val, [sym__br_sgl_sqt_str_val] = sym__r_prp_val, [sym__b_sgl_sqt_str_val] = sym__r_prp_val, [sym__r_sqt_str] = sym__r_sqt_str, [sym__br_sqt_str] = sym__r_sqt_str, [sym__r_sgl_sqt_str] = sym__r_sqt_str, [sym__br_sgl_sqt_str] = sym__r_sqt_str, [sym__b_sgl_sqt_str] = sym__r_sqt_str, [aux_sym__r_sgl_sqt_ctn] = aux_sym__r_sgl_sqt_ctn, [sym__br_mtl_sqt_ctn] = sym__br_mtl_sqt_ctn, [sym__r_pln_blk_val] = sym__r_prp_val, [sym__br_pln_blk_val] = sym__r_prp_val, [sym__r_sgl_pln_blk_val] = sym__r_prp_val, [sym__br_sgl_pln_blk_val] = sym__r_prp_val, [sym__b_sgl_pln_blk_val] = sym__r_prp_val, [sym__r_pln_flw_val] = sym__r_prp_val, [sym__br_pln_flw_val] = sym__r_prp_val, [sym__r_sgl_pln_flw_val] = sym__r_prp_val, [sym__r_sgl_pln_blk] = sym__r_sgl_pln_blk, [sym__br_sgl_pln_blk] = sym__r_sgl_pln_blk, [sym__b_sgl_pln_blk] = sym__r_sgl_pln_blk, [sym__r_sgl_pln_flw] = sym__r_sgl_pln_blk, [sym__br_sgl_pln_flw] = sym__r_sgl_pln_blk, [sym__r_mtl_pln_blk] = sym__r_sgl_pln_blk, [sym__br_mtl_pln_blk] = sym__r_sgl_pln_blk, [sym__r_mtl_pln_flw] = sym__r_sgl_pln_blk, [sym__br_mtl_pln_flw] = sym__r_sgl_pln_blk, [sym__r_als_val] = sym__r_prp_val, [sym__br_als_val] = sym__r_prp_val, [sym__b_als_val] = sym__r_prp_val, [sym__r_als] = sym__r_als, [sym__br_als] = sym__r_als, [sym__b_als] = sym__r_als, [sym__r_acr] = sym__r_acr, [sym__br_acr] = sym__r_acr, [sym__b_acr] = sym__r_acr, [aux_sym__drs_doc_repeat1] = aux_sym__drs_doc_repeat1, [aux_sym__s_dir_rsv_repeat1] = aux_sym__s_dir_rsv_repeat1, [aux_sym__r_blk_seq_repeat1] = aux_sym__r_blk_seq_repeat1, [aux_sym__r_blk_map_repeat1] = aux_sym__r_blk_map_repeat1, [aux_sym__r_blk_str_repeat1] = aux_sym__r_blk_str_repeat1, [aux_sym__r_flw_seq_dat_repeat1] = aux_sym__r_flw_seq_dat_repeat1, [aux_sym__r_flw_map_dat_repeat1] = aux_sym__r_flw_map_dat_repeat1, [aux_sym__r_sgl_flw_col_dat_repeat1] = aux_sym__r_sgl_flw_col_dat_repeat1, [aux_sym__r_dqt_str_repeat1] = aux_sym__r_dqt_str_repeat1, [aux_sym__br_mtl_dqt_ctn_repeat1] = aux_sym__br_mtl_dqt_ctn_repeat1, [aux_sym__r_sqt_str_repeat1] = aux_sym__r_sqt_str_repeat1, [aux_sym__br_mtl_sqt_ctn_repeat1] = aux_sym__br_mtl_sqt_ctn_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { [ts_builtin_sym_end] = { .visible = false, .named = true, }, [sym__eof] = { .visible = false, .named = true, }, [sym__s_dir_yml_bgn] = { .visible = false, .named = true, }, [sym__r_dir_yml_ver] = { .visible = true, .named = true, }, [sym__s_dir_tag_bgn] = { .visible = false, .named = true, }, [sym__r_dir_tag_hdl] = { .visible = true, .named = true, }, [sym__r_dir_tag_pfx] = { .visible = true, .named = true, }, [sym__s_dir_rsv_bgn] = { .visible = true, .named = true, }, [sym__r_dir_rsv_prm] = { .visible = true, .named = true, }, [sym__s_drs_end] = { .visible = true, .named = false, }, [sym__s_doc_end] = { .visible = true, .named = false, }, [sym__r_blk_seq_bgn] = { .visible = true, .named = false, }, [sym__br_blk_seq_bgn] = { .visible = true, .named = false, }, [sym__b_blk_seq_bgn] = { .visible = true, .named = false, }, [sym__r_blk_key_bgn] = { .visible = true, .named = false, }, [sym__br_blk_key_bgn] = { .visible = true, .named = false, }, [sym__b_blk_key_bgn] = { .visible = true, .named = false, }, [sym__r_blk_val_bgn] = { .visible = true, .named = false, }, [sym__br_blk_val_bgn] = { .visible = true, .named = false, }, [sym__b_blk_val_bgn] = { .visible = true, .named = false, }, [sym__r_blk_imp_bgn] = { .visible = true, .named = false, }, [sym__r_blk_lit_bgn] = { .visible = true, .named = false, }, [sym__br_blk_lit_bgn] = { .visible = true, .named = false, }, [sym__r_blk_fld_bgn] = { .visible = true, .named = false, }, [sym__br_blk_fld_bgn] = { .visible = true, .named = false, }, [sym__br_blk_str_ctn] = { .visible = false, .named = true, }, [sym__r_flw_seq_bgn] = { .visible = true, .named = false, }, [sym__br_flw_seq_bgn] = { .visible = true, .named = false, }, [sym__b_flw_seq_bgn] = { .visible = true, .named = false, }, [sym__r_flw_seq_end] = { .visible = true, .named = false, }, [sym__br_flw_seq_end] = { .visible = true, .named = false, }, [sym__b_flw_seq_end] = { .visible = true, .named = false, }, [sym__r_flw_map_bgn] = { .visible = true, .named = false, }, [sym__br_flw_map_bgn] = { .visible = true, .named = false, }, [sym__b_flw_map_bgn] = { .visible = true, .named = false, }, [sym__r_flw_map_end] = { .visible = true, .named = false, }, [sym__br_flw_map_end] = { .visible = true, .named = false, }, [sym__b_flw_map_end] = { .visible = true, .named = false, }, [sym__r_flw_sep_bgn] = { .visible = true, .named = false, }, [sym__br_flw_sep_bgn] = { .visible = true, .named = false, }, [sym__r_flw_key_bgn] = { .visible = true, .named = false, }, [sym__br_flw_key_bgn] = { .visible = true, .named = false, }, [sym__r_flw_jsv_bgn] = { .visible = true, .named = false, }, [sym__br_flw_jsv_bgn] = { .visible = true, .named = false, }, [sym__r_flw_njv_bgn] = { .visible = true, .named = false, }, [sym__br_flw_njv_bgn] = { .visible = true, .named = false, }, [sym__r_dqt_str_bgn] = { .visible = true, .named = false, }, [sym__br_dqt_str_bgn] = { .visible = true, .named = false, }, [sym__b_dqt_str_bgn] = { .visible = true, .named = false, }, [sym__r_dqt_str_ctn] = { .visible = false, .named = true, }, [sym__br_dqt_str_ctn] = { .visible = false, .named = true, }, [sym__r_dqt_esc_nwl] = { .visible = true, .named = true, }, [sym__br_dqt_esc_nwl] = { .visible = true, .named = true, }, [sym__r_dqt_esc_seq] = { .visible = true, .named = true, }, [sym__br_dqt_esc_seq] = { .visible = true, .named = true, }, [sym__r_dqt_str_end] = { .visible = true, .named = false, }, [sym__br_dqt_str_end] = { .visible = true, .named = false, }, [sym__r_sqt_str_bgn] = { .visible = true, .named = false, }, [sym__br_sqt_str_bgn] = { .visible = true, .named = false, }, [sym__b_sqt_str_bgn] = { .visible = true, .named = false, }, [sym__r_sqt_str_ctn] = { .visible = false, .named = true, }, [sym__br_sqt_str_ctn] = { .visible = false, .named = true, }, [sym__r_sqt_esc_sqt] = { .visible = true, .named = true, }, [sym__br_sqt_esc_sqt] = { .visible = true, .named = true, }, [sym__r_sqt_str_end] = { .visible = true, .named = false, }, [sym__br_sqt_str_end] = { .visible = true, .named = false, }, [sym__r_sgl_pln_nul_blk] = { .visible = true, .named = true, }, [sym__br_sgl_pln_nul_blk] = { .visible = true, .named = true, }, [sym__b_sgl_pln_nul_blk] = { .visible = true, .named = true, }, [sym__r_sgl_pln_nul_flw] = { .visible = true, .named = true, }, [sym__br_sgl_pln_nul_flw] = { .visible = true, .named = true, }, [sym__r_sgl_pln_bol_blk] = { .visible = true, .named = true, }, [sym__br_sgl_pln_bol_blk] = { .visible = true, .named = true, }, [sym__b_sgl_pln_bol_blk] = { .visible = true, .named = true, }, [sym__r_sgl_pln_bol_flw] = { .visible = true, .named = true, }, [sym__br_sgl_pln_bol_flw] = { .visible = true, .named = true, }, [sym__r_sgl_pln_int_blk] = { .visible = true, .named = true, }, [sym__br_sgl_pln_int_blk] = { .visible = true, .named = true, }, [sym__b_sgl_pln_int_blk] = { .visible = true, .named = true, }, [sym__r_sgl_pln_int_flw] = { .visible = true, .named = true, }, [sym__br_sgl_pln_int_flw] = { .visible = true, .named = true, }, [sym__r_sgl_pln_flt_blk] = { .visible = true, .named = true, }, [sym__br_sgl_pln_flt_blk] = { .visible = true, .named = true, }, [sym__b_sgl_pln_flt_blk] = { .visible = true, .named = true, }, [sym__r_sgl_pln_flt_flw] = { .visible = true, .named = true, }, [sym__br_sgl_pln_flt_flw] = { .visible = true, .named = true, }, [sym__r_sgl_pln_tms_blk] = { .visible = true, .named = true, }, [sym__br_sgl_pln_tms_blk] = { .visible = true, .named = true, }, [sym__b_sgl_pln_tms_blk] = { .visible = true, .named = true, }, [sym__r_sgl_pln_tms_flw] = { .visible = true, .named = true, }, [sym__br_sgl_pln_tms_flw] = { .visible = true, .named = true, }, [sym__r_sgl_pln_str_blk] = { .visible = true, .named = true, }, [sym__br_sgl_pln_str_blk] = { .visible = true, .named = true, }, [sym__b_sgl_pln_str_blk] = { .visible = true, .named = true, }, [sym__r_sgl_pln_str_flw] = { .visible = true, .named = true, }, [sym__br_sgl_pln_str_flw] = { .visible = true, .named = true, }, [sym__r_mtl_pln_str_blk] = { .visible = true, .named = true, }, [sym__br_mtl_pln_str_blk] = { .visible = true, .named = true, }, [sym__r_mtl_pln_str_flw] = { .visible = true, .named = true, }, [sym__br_mtl_pln_str_flw] = { .visible = true, .named = true, }, [sym__r_tag] = { .visible = true, .named = true, }, [sym__br_tag] = { .visible = true, .named = true, }, [sym__b_tag] = { .visible = true, .named = true, }, [sym__r_acr_bgn] = { .visible = true, .named = false, }, [sym__br_acr_bgn] = { .visible = true, .named = false, }, [sym__b_acr_bgn] = { .visible = true, .named = false, }, [sym__r_acr_ctn] = { .visible = true, .named = true, }, [sym__r_als_bgn] = { .visible = true, .named = false, }, [sym__br_als_bgn] = { .visible = true, .named = false, }, [sym__b_als_bgn] = { .visible = true, .named = false, }, [sym__r_als_ctn] = { .visible = true, .named = true, }, [sym__bl] = { .visible = false, .named = true, }, [sym_comment] = { .visible = true, .named = true, }, [sym__err_rec] = { .visible = false, .named = true, }, [sym_stream] = { .visible = true, .named = true, }, [sym__doc_w_bgn_w_end_seq] = { .visible = false, .named = true, }, [sym__doc_w_bgn_wo_end_seq] = { .visible = false, .named = true, }, [sym__doc_wo_bgn_w_end_seq] = { .visible = false, .named = true, }, [sym__doc_wo_bgn_wo_end_seq] = { .visible = false, .named = true, }, [sym__doc_w_bgn_w_end] = { .visible = false, .named = true, }, [sym__doc_w_bgn_wo_end] = { .visible = false, .named = true, }, [sym__doc_wo_bgn_w_end] = { .visible = false, .named = true, }, [sym__doc_wo_bgn_wo_end] = { .visible = false, .named = true, }, [sym__bgn_imp_doc] = { .visible = false, .named = true, }, [sym__drs_doc] = { .visible = false, .named = true, }, [sym__exp_doc] = { .visible = false, .named = true, }, [sym__imp_doc] = { .visible = false, .named = true, }, [sym__drs_doc_end] = { .visible = true, .named = true, }, [sym__exp_doc_end] = { .visible = true, .named = true, }, [sym__imp_doc_end] = { .visible = true, .named = true, }, [sym__bgn_imp_doc_end] = { .visible = true, .named = true, }, [sym__doc_end] = { .visible = true, .named = true, }, [sym__exp_doc_tal] = { .visible = false, .named = true, }, [sym__s_dir] = { .visible = false, .named = true, }, [sym__s_dir_yml] = { .visible = true, .named = true, }, [sym__s_dir_tag] = { .visible = true, .named = true, }, [sym__s_dir_rsv] = { .visible = true, .named = true, }, [sym__r_prp_val] = { .visible = true, .named = true, }, [sym__br_prp_val] = { .visible = true, .named = true, }, [sym__r_sgl_prp_val] = { .visible = true, .named = true, }, [sym__br_sgl_prp_val] = { .visible = true, .named = true, }, [sym__b_sgl_prp_val] = { .visible = true, .named = true, }, [sym__r_prp] = { .visible = false, .named = true, }, [sym__br_prp] = { .visible = false, .named = true, }, [sym__r_sgl_prp] = { .visible = false, .named = true, }, [sym__br_sgl_prp] = { .visible = false, .named = true, }, [sym__b_sgl_prp] = { .visible = false, .named = true, }, [sym__r_blk_seq_r_val] = { .visible = true, .named = true, }, [sym__r_blk_seq_br_val] = { .visible = true, .named = true, }, [sym__br_blk_seq_val] = { .visible = true, .named = true, }, [sym__r_blk_seq_spc_val] = { .visible = true, .named = true, }, [sym__br_blk_seq_spc_val] = { .visible = true, .named = true, }, [sym__b_blk_seq_spc_val] = { .visible = true, .named = true, }, [sym__r_blk_seq] = { .visible = true, .named = true, }, [sym__br_blk_seq] = { .visible = true, .named = true, }, [sym__b_blk_seq_spc] = { .visible = true, .named = true, }, [sym__r_blk_seq_itm] = { .visible = true, .named = true, }, [sym__br_blk_seq_itm] = { .visible = true, .named = true, }, [sym__b_blk_seq_itm] = { .visible = true, .named = true, }, [sym__blk_seq_itm_tal] = { .visible = false, .named = true, }, [sym__r_blk_map_r_val] = { .visible = true, .named = true, }, [sym__r_blk_map_br_val] = { .visible = true, .named = true, }, [sym__br_blk_map_val] = { .visible = true, .named = true, }, [sym__r_blk_map] = { .visible = true, .named = true, }, [sym__br_blk_map] = { .visible = true, .named = true, }, [sym__r_blk_map_itm] = { .visible = false, .named = true, }, [sym__br_blk_map_itm] = { .visible = false, .named = true, }, [sym__b_blk_map_itm] = { .visible = false, .named = true, }, [sym__r_blk_exp_itm] = { .visible = true, .named = true, }, [sym__br_blk_exp_itm] = { .visible = true, .named = true, }, [sym__b_blk_exp_itm] = { .visible = true, .named = true, }, [sym__r_blk_key_itm] = { .visible = false, .named = true, }, [sym__br_blk_key_itm] = { .visible = false, .named = true, }, [sym__b_blk_key_itm] = { .visible = false, .named = true, }, [sym__r_blk_val_itm] = { .visible = false, .named = true, }, [sym__br_blk_val_itm] = { .visible = false, .named = true, }, [sym__b_blk_val_itm] = { .visible = false, .named = true, }, [sym__r_blk_imp_itm] = { .visible = true, .named = true, }, [sym__br_blk_imp_itm] = { .visible = true, .named = true, }, [sym__b_blk_imp_itm] = { .visible = true, .named = true, }, [sym__blk_exp_itm_tal] = { .visible = false, .named = true, }, [sym__blk_imp_itm_tal] = { .visible = false, .named = true, }, [sym__r_blk_str_val] = { .visible = true, .named = true, }, [sym__br_blk_str_val] = { .visible = true, .named = true, }, [sym__r_blk_str] = { .visible = true, .named = true, }, [sym__br_blk_str] = { .visible = true, .named = true, }, [sym__r_flw_seq_val] = { .visible = true, .named = true, }, [sym__br_flw_seq_val] = { .visible = true, .named = true, }, [sym__r_sgl_flw_seq_val] = { .visible = true, .named = true, }, [sym__br_sgl_flw_seq_val] = { .visible = true, .named = true, }, [sym__b_sgl_flw_seq_val] = { .visible = true, .named = true, }, [sym__r_flw_seq] = { .visible = true, .named = true, }, [sym__br_flw_seq] = { .visible = true, .named = true, }, [sym__r_sgl_flw_seq] = { .visible = true, .named = true, }, [sym__br_sgl_flw_seq] = { .visible = true, .named = true, }, [sym__b_sgl_flw_seq] = { .visible = true, .named = true, }, [sym__flw_seq_tal] = { .visible = false, .named = true, }, [sym__sgl_flw_seq_tal] = { .visible = false, .named = true, }, [sym__r_flw_map_val] = { .visible = true, .named = true, }, [sym__br_flw_map_val] = { .visible = true, .named = true, }, [sym__r_sgl_flw_map_val] = { .visible = true, .named = true, }, [sym__br_sgl_flw_map_val] = { .visible = true, .named = true, }, [sym__b_sgl_flw_map_val] = { .visible = true, .named = true, }, [sym__r_flw_map] = { .visible = true, .named = true, }, [sym__br_flw_map] = { .visible = true, .named = true, }, [sym__r_sgl_flw_map] = { .visible = true, .named = true, }, [sym__br_sgl_flw_map] = { .visible = true, .named = true, }, [sym__b_sgl_flw_map] = { .visible = true, .named = true, }, [sym__flw_map_tal] = { .visible = false, .named = true, }, [sym__sgl_flw_map_tal] = { .visible = false, .named = true, }, [sym__r_flw_seq_dat] = { .visible = false, .named = true, }, [sym__br_flw_seq_dat] = { .visible = false, .named = true, }, [sym__r_flw_map_dat] = { .visible = false, .named = true, }, [sym__br_flw_map_dat] = { .visible = false, .named = true, }, [sym__r_sgl_flw_col_dat] = { .visible = false, .named = true, }, [sym__flw_seq_dat_rpt] = { .visible = false, .named = true, }, [sym__flw_map_dat_rpt] = { .visible = false, .named = true, }, [sym__sgl_flw_col_dat_rpt] = { .visible = false, .named = true, }, [sym__r_flw_seq_itm] = { .visible = false, .named = true, }, [sym__br_flw_seq_itm] = { .visible = false, .named = true, }, [sym__r_flw_map_itm] = { .visible = false, .named = true, }, [sym__br_flw_map_itm] = { .visible = false, .named = true, }, [sym__r_sgl_flw_col_itm] = { .visible = false, .named = true, }, [sym__r_flw_exp_par] = { .visible = true, .named = true, }, [sym__br_flw_exp_par] = { .visible = true, .named = true, }, [sym__r_sgl_flw_exp_par] = { .visible = true, .named = true, }, [sym__r_flw_imp_r_par] = { .visible = false, .named = true, }, [sym__r_flw_imp_br_par] = { .visible = false, .named = true, }, [sym__br_flw_imp_r_par] = { .visible = false, .named = true, }, [sym__br_flw_imp_br_par] = { .visible = false, .named = true, }, [sym__r_sgl_flw_imp_par] = { .visible = false, .named = true, }, [sym__r_flw_jsl_ann_par] = { .visible = false, .named = true, }, [sym__br_flw_jsl_ann_par] = { .visible = false, .named = true, }, [sym__r_sgl_flw_jsl_ann_par] = { .visible = false, .named = true, }, [sym__r_flw_njl_ann_par] = { .visible = false, .named = true, }, [sym__br_flw_njl_ann_par] = { .visible = false, .named = true, }, [sym__r_sgl_flw_njl_ann_par] = { .visible = false, .named = true, }, [sym__flw_ann_par_tal] = { .visible = false, .named = true, }, [sym__sgl_flw_ann_par_tal] = { .visible = false, .named = true, }, [sym__r_dqt_str_val] = { .visible = true, .named = true, }, [sym__br_dqt_str_val] = { .visible = true, .named = true, }, [sym__r_sgl_dqt_str_val] = { .visible = true, .named = true, }, [sym__br_sgl_dqt_str_val] = { .visible = true, .named = true, }, [sym__b_sgl_dqt_str_val] = { .visible = true, .named = true, }, [sym__r_dqt_str] = { .visible = true, .named = true, }, [sym__br_dqt_str] = { .visible = true, .named = true, }, [sym__r_sgl_dqt_str] = { .visible = true, .named = true, }, [sym__br_sgl_dqt_str] = { .visible = true, .named = true, }, [sym__b_sgl_dqt_str] = { .visible = true, .named = true, }, [aux_sym__r_sgl_dqt_ctn] = { .visible = false, .named = false, }, [sym__br_mtl_dqt_ctn] = { .visible = false, .named = true, }, [sym__r_sqt_str_val] = { .visible = true, .named = true, }, [sym__br_sqt_str_val] = { .visible = true, .named = true, }, [sym__r_sgl_sqt_str_val] = { .visible = true, .named = true, }, [sym__br_sgl_sqt_str_val] = { .visible = true, .named = true, }, [sym__b_sgl_sqt_str_val] = { .visible = true, .named = true, }, [sym__r_sqt_str] = { .visible = true, .named = true, }, [sym__br_sqt_str] = { .visible = true, .named = true, }, [sym__r_sgl_sqt_str] = { .visible = true, .named = true, }, [sym__br_sgl_sqt_str] = { .visible = true, .named = true, }, [sym__b_sgl_sqt_str] = { .visible = true, .named = true, }, [aux_sym__r_sgl_sqt_ctn] = { .visible = false, .named = false, }, [sym__br_mtl_sqt_ctn] = { .visible = false, .named = true, }, [sym__r_pln_blk_val] = { .visible = true, .named = true, }, [sym__br_pln_blk_val] = { .visible = true, .named = true, }, [sym__r_sgl_pln_blk_val] = { .visible = true, .named = true, }, [sym__br_sgl_pln_blk_val] = { .visible = true, .named = true, }, [sym__b_sgl_pln_blk_val] = { .visible = true, .named = true, }, [sym__r_pln_flw_val] = { .visible = true, .named = true, }, [sym__br_pln_flw_val] = { .visible = true, .named = true, }, [sym__r_sgl_pln_flw_val] = { .visible = true, .named = true, }, [sym__r_sgl_pln_blk] = { .visible = true, .named = true, }, [sym__br_sgl_pln_blk] = { .visible = true, .named = true, }, [sym__b_sgl_pln_blk] = { .visible = true, .named = true, }, [sym__r_sgl_pln_flw] = { .visible = true, .named = true, }, [sym__br_sgl_pln_flw] = { .visible = true, .named = true, }, [sym__r_mtl_pln_blk] = { .visible = true, .named = true, }, [sym__br_mtl_pln_blk] = { .visible = true, .named = true, }, [sym__r_mtl_pln_flw] = { .visible = true, .named = true, }, [sym__br_mtl_pln_flw] = { .visible = true, .named = true, }, [sym__r_als_val] = { .visible = true, .named = true, }, [sym__br_als_val] = { .visible = true, .named = true, }, [sym__b_als_val] = { .visible = true, .named = true, }, [sym__r_als] = { .visible = true, .named = true, }, [sym__br_als] = { .visible = true, .named = true, }, [sym__b_als] = { .visible = true, .named = true, }, [sym__r_acr] = { .visible = true, .named = true, }, [sym__br_acr] = { .visible = true, .named = true, }, [sym__b_acr] = { .visible = true, .named = true, }, [aux_sym__drs_doc_repeat1] = { .visible = false, .named = false, }, [aux_sym__s_dir_rsv_repeat1] = { .visible = false, .named = false, }, [aux_sym__r_blk_seq_repeat1] = { .visible = false, .named = false, }, [aux_sym__r_blk_map_repeat1] = { .visible = false, .named = false, }, [aux_sym__r_blk_str_repeat1] = { .visible = false, .named = false, }, [aux_sym__r_flw_seq_dat_repeat1] = { .visible = false, .named = false, }, [aux_sym__r_flw_map_dat_repeat1] = { .visible = false, .named = false, }, [aux_sym__r_sgl_flw_col_dat_repeat1] = { .visible = false, .named = false, }, [aux_sym__r_dqt_str_repeat1] = { .visible = false, .named = false, }, [aux_sym__br_mtl_dqt_ctn_repeat1] = { .visible = false, .named = false, }, [aux_sym__r_sqt_str_repeat1] = { .visible = false, .named = false, }, [aux_sym__br_mtl_sqt_ctn_repeat1] = { .visible = false, .named = false, }, }; enum ts_field_identifiers { field_key = 1, field_value = 2, }; static const char * const ts_field_names[] = { [0] = NULL, [field_key] = "key", [field_value] = "value", }; static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 2}, [2] = {.index = 2, .length = 1}, [3] = {.index = 3, .length = 1}, [4] = {.index = 4, .length = 1}, [5] = {.index = 5, .length = 1}, [6] = {.index = 0, .length = 2}, [7] = {.index = 3, .length = 1}, [9] = {.index = 6, .length = 2}, [10] = {.index = 8, .length = 2}, [11] = {.index = 10, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_key, 0, .inherited = true}, {field_value, 0, .inherited = true}, [2] = {field_key, 0, .inherited = true}, [3] = {field_value, 0, .inherited = true}, [4] = {field_key, 1}, [5] = {field_value, 1}, [6] = {field_key, 0}, {field_value, 1, .inherited = true}, [8] = {field_key, 0, .inherited = true}, {field_value, 1, .inherited = true}, [10] = {field_key, 1, .inherited = true}, {field_value, 1, .inherited = true}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [6] = { [0] = sym__r_flw_exp_par, }, [7] = { [0] = sym__r_flw_exp_par, }, [8] = { [0] = sym__drs_doc_end, }, }; static const uint16_t ts_non_terminal_alias_map[] = { sym__bgn_imp_doc, 2, sym__bgn_imp_doc, sym__drs_doc_end, sym__drs_doc, 2, sym__drs_doc, sym__drs_doc_end, sym__exp_doc, 2, sym__exp_doc, sym__drs_doc_end, sym__imp_doc, 2, sym__imp_doc, sym__drs_doc_end, sym__r_flw_imp_r_par, 2, sym__r_flw_imp_r_par, sym__r_flw_exp_par, sym__r_flw_imp_br_par, 2, sym__r_flw_imp_br_par, sym__r_flw_exp_par, sym__br_flw_imp_r_par, 2, sym__br_flw_imp_r_par, sym__r_flw_exp_par, sym__br_flw_imp_br_par, 2, sym__br_flw_imp_br_par, sym__r_flw_exp_par, sym__r_sgl_flw_imp_par, 2, sym__r_sgl_flw_imp_par, sym__r_flw_exp_par, sym__r_flw_njl_ann_par, 2, sym__r_flw_njl_ann_par, sym__r_flw_exp_par, sym__br_flw_njl_ann_par, 2, sym__br_flw_njl_ann_par, sym__r_flw_exp_par, sym__r_sgl_flw_njl_ann_par, 2, sym__r_sgl_flw_njl_ann_par, sym__r_flw_exp_par, 0, }; static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, [3] = 3, [4] = 4, [5] = 5, [6] = 6, [7] = 7, [8] = 8, [9] = 9, [10] = 10, [11] = 11, [12] = 12, [13] = 13, [14] = 14, [15] = 13, [16] = 14, [17] = 14, [18] = 13, [19] = 13, [20] = 13, [21] = 13, [22] = 13, [23] = 13, [24] = 24, [25] = 25, [26] = 24, [27] = 25, [28] = 24, [29] = 25, [30] = 24, [31] = 24, [32] = 24, [33] = 24, [34] = 24, [35] = 35, [36] = 36, [37] = 37, [38] = 38, [39] = 39, [40] = 40, [41] = 40, [42] = 42, [43] = 43, [44] = 43, [45] = 43, [46] = 43, [47] = 42, [48] = 42, [49] = 43, [50] = 42, [51] = 43, [52] = 43, [53] = 42, [54] = 43, [55] = 55, [56] = 56, [57] = 56, [58] = 58, [59] = 56, [60] = 58, [61] = 56, [62] = 56, [63] = 58, [64] = 58, [65] = 56, [66] = 58, [67] = 56, [68] = 56, [69] = 55, [70] = 70, [71] = 71, [72] = 72, [73] = 73, [74] = 74, [75] = 75, [76] = 76, [77] = 77, [78] = 78, [79] = 79, [80] = 80, [81] = 81, [82] = 81, [83] = 80, [84] = 84, [85] = 85, [86] = 84, [87] = 85, [88] = 88, [89] = 89, [90] = 90, [91] = 88, [92] = 89, [93] = 90, [94] = 94, [95] = 94, [96] = 96, [97] = 97, [98] = 98, [99] = 99, [100] = 100, [101] = 101, [102] = 102, [103] = 103, [104] = 104, [105] = 105, [106] = 101, [107] = 101, [108] = 108, [109] = 109, [110] = 102, [111] = 101, [112] = 112, [113] = 113, [114] = 112, [115] = 113, [116] = 97, [117] = 112, [118] = 96, [119] = 113, [120] = 112, [121] = 113, [122] = 96, [123] = 97, [124] = 98, [125] = 125, [126] = 126, [127] = 101, [128] = 128, [129] = 102, [130] = 130, [131] = 100, [132] = 132, [133] = 126, [134] = 125, [135] = 130, [136] = 132, [137] = 126, [138] = 138, [139] = 139, [140] = 140, [141] = 141, [142] = 125, [143] = 130, [144] = 138, [145] = 139, [146] = 99, [147] = 132, [148] = 126, [149] = 138, [150] = 139, [151] = 132, [152] = 126, [153] = 132, [154] = 126, [155] = 132, [156] = 102, [157] = 100, [158] = 99, [159] = 101, [160] = 105, [161] = 101, [162] = 113, [163] = 101, [164] = 112, [165] = 103, [166] = 104, [167] = 167, [168] = 103, [169] = 109, [170] = 101, [171] = 102, [172] = 104, [173] = 101, [174] = 167, [175] = 175, [176] = 108, [177] = 175, [178] = 108, [179] = 109, [180] = 102, [181] = 181, [182] = 181, [183] = 96, [184] = 184, [185] = 98, [186] = 184, [187] = 98, [188] = 96, [189] = 189, [190] = 105, [191] = 100, [192] = 98, [193] = 184, [194] = 102, [195] = 98, [196] = 101, [197] = 197, [198] = 96, [199] = 199, [200] = 199, [201] = 96, [202] = 202, [203] = 202, [204] = 184, [205] = 189, [206] = 101, [207] = 100, [208] = 102, [209] = 105, [210] = 197, [211] = 101, [212] = 102, [213] = 105, [214] = 105, [215] = 100, [216] = 102, [217] = 101, [218] = 197, [219] = 103, [220] = 100, [221] = 108, [222] = 109, [223] = 101, [224] = 197, [225] = 102, [226] = 96, [227] = 101, [228] = 102, [229] = 98, [230] = 103, [231] = 108, [232] = 109, [233] = 184, [234] = 109, [235] = 102, [236] = 108, [237] = 102, [238] = 103, [239] = 101, [240] = 108, [241] = 101, [242] = 103, [243] = 109, [244] = 100, [245] = 105, [246] = 101, [247] = 102, [248] = 197, [249] = 249, [250] = 250, [251] = 251, [252] = 252, [253] = 253, [254] = 254, [255] = 255, [256] = 101, [257] = 103, [258] = 108, [259] = 102, [260] = 109, [261] = 261, [262] = 262, [263] = 263, [264] = 264, [265] = 261, [266] = 266, [267] = 267, [268] = 268, [269] = 269, [270] = 270, [271] = 271, [272] = 272, [273] = 273, [274] = 261, [275] = 275, [276] = 261, [277] = 277, [278] = 278, [279] = 279, [280] = 280, [281] = 281, [282] = 282, [283] = 283, [284] = 284, [285] = 285, [286] = 286, [287] = 287, [288] = 288, [289] = 289, [290] = 290, [291] = 291, [292] = 292, [293] = 293, [294] = 294, [295] = 295, [296] = 296, [297] = 297, [298] = 298, [299] = 299, [300] = 300, [301] = 301, [302] = 302, [303] = 303, [304] = 304, [305] = 305, [306] = 306, [307] = 307, [308] = 308, [309] = 309, [310] = 310, [311] = 311, [312] = 312, [313] = 313, [314] = 314, [315] = 273, [316] = 316, [317] = 317, [318] = 318, [319] = 319, [320] = 320, [321] = 321, [322] = 322, [323] = 323, [324] = 324, [325] = 325, [326] = 326, [327] = 327, [328] = 328, [329] = 329, [330] = 266, [331] = 331, [332] = 332, [333] = 275, [334] = 334, [335] = 335, [336] = 336, [337] = 337, [338] = 338, [339] = 339, [340] = 340, [341] = 341, [342] = 342, [343] = 343, [344] = 344, [345] = 345, [346] = 346, [347] = 347, [348] = 348, [349] = 349, [350] = 350, [351] = 351, [352] = 352, [353] = 353, [354] = 354, [355] = 355, [356] = 356, [357] = 357, [358] = 358, [359] = 359, [360] = 360, [361] = 361, [362] = 362, [363] = 363, [364] = 364, [365] = 261, [366] = 366, [367] = 367, [368] = 368, [369] = 369, [370] = 370, [371] = 371, [372] = 372, [373] = 373, [374] = 374, [375] = 375, [376] = 376, [377] = 377, [378] = 378, [379] = 379, [380] = 380, [381] = 381, [382] = 382, [383] = 383, [384] = 384, [385] = 385, [386] = 386, [387] = 387, [388] = 388, [389] = 389, [390] = 390, [391] = 391, [392] = 392, [393] = 392, [394] = 392, [395] = 395, [396] = 392, [397] = 101, [398] = 395, [399] = 101, [400] = 101, [401] = 395, [402] = 101, [403] = 392, [404] = 395, [405] = 405, [406] = 406, [407] = 101, [408] = 406, [409] = 409, [410] = 101, [411] = 101, [412] = 101, [413] = 395, [414] = 101, [415] = 415, [416] = 416, [417] = 406, [418] = 102, [419] = 406, [420] = 420, [421] = 421, [422] = 422, [423] = 423, [424] = 101, [425] = 425, [426] = 423, [427] = 427, [428] = 428, [429] = 421, [430] = 421, [431] = 431, [432] = 432, [433] = 433, [434] = 433, [435] = 422, [436] = 423, [437] = 427, [438] = 101, [439] = 421, [440] = 431, [441] = 431, [442] = 432, [443] = 427, [444] = 422, [445] = 406, [446] = 427, [447] = 428, [448] = 427, [449] = 421, [450] = 431, [451] = 432, [452] = 422, [453] = 423, [454] = 427, [455] = 422, [456] = 432, [457] = 421, [458] = 422, [459] = 428, [460] = 432, [461] = 427, [462] = 431, [463] = 421, [464] = 432, [465] = 432, [466] = 422, [467] = 433, [468] = 427, [469] = 469, [470] = 421, [471] = 432, [472] = 422, [473] = 423, [474] = 474, [475] = 475, [476] = 476, [477] = 477, [478] = 478, [479] = 479, [480] = 480, [481] = 481, [482] = 482, [483] = 483, [484] = 484, [485] = 485, [486] = 486, [487] = 482, [488] = 488, [489] = 489, [490] = 485, [491] = 488, [492] = 492, [493] = 493, [494] = 483, [495] = 495, [496] = 484, [497] = 484, [498] = 498, [499] = 499, [500] = 495, [501] = 482, [502] = 502, [503] = 503, [504] = 504, [505] = 485, [506] = 484, [507] = 488, [508] = 495, [509] = 489, [510] = 495, [511] = 485, [512] = 503, [513] = 482, [514] = 482, [515] = 482, [516] = 482, [517] = 489, [518] = 488, [519] = 485, [520] = 485, [521] = 488, [522] = 522, [523] = 485, [524] = 495, [525] = 483, [526] = 488, [527] = 489, [528] = 482, [529] = 503, [530] = 484, [531] = 488, [532] = 485, [533] = 489, [534] = 488, [535] = 495, [536] = 495, [537] = 495, [538] = 538, [539] = 539, [540] = 347, [541] = 541, [542] = 348, [543] = 543, [544] = 544, [545] = 349, [546] = 546, [547] = 350, [548] = 351, [549] = 352, [550] = 353, [551] = 283, [552] = 552, [553] = 553, [554] = 554, [555] = 284, [556] = 556, [557] = 557, [558] = 553, [559] = 559, [560] = 560, [561] = 539, [562] = 562, [563] = 563, [564] = 564, [565] = 565, [566] = 366, [567] = 567, [568] = 367, [569] = 285, [570] = 369, [571] = 370, [572] = 286, [573] = 372, [574] = 373, [575] = 541, [576] = 288, [577] = 543, [578] = 544, [579] = 546, [580] = 374, [581] = 376, [582] = 559, [583] = 560, [584] = 539, [585] = 562, [586] = 586, [587] = 557, [588] = 553, [589] = 559, [590] = 560, [591] = 539, [592] = 562, [593] = 290, [594] = 382, [595] = 383, [596] = 384, [597] = 385, [598] = 378, [599] = 327, [600] = 298, [601] = 355, [602] = 320, [603] = 321, [604] = 324, [605] = 541, [606] = 269, [607] = 543, [608] = 544, [609] = 546, [610] = 354, [611] = 271, [612] = 363, [613] = 371, [614] = 614, [615] = 615, [616] = 293, [617] = 557, [618] = 553, [619] = 559, [620] = 560, [621] = 539, [622] = 562, [623] = 346, [624] = 295, [625] = 541, [626] = 296, [627] = 543, [628] = 544, [629] = 543, [630] = 546, [631] = 541, [632] = 297, [633] = 543, [634] = 544, [635] = 546, [636] = 391, [637] = 637, [638] = 266, [639] = 639, [640] = 544, [641] = 557, [642] = 553, [643] = 559, [644] = 560, [645] = 645, [646] = 562, [647] = 546, [648] = 648, [649] = 649, [650] = 557, [651] = 553, [652] = 559, [653] = 560, [654] = 539, [655] = 541, [656] = 562, [657] = 543, [658] = 544, [659] = 546, [660] = 660, [661] = 661, [662] = 275, [663] = 663, [664] = 557, [665] = 553, [666] = 559, [667] = 560, [668] = 539, [669] = 562, [670] = 670, [671] = 671, [672] = 672, [673] = 673, [674] = 674, [675] = 675, [676] = 541, [677] = 677, [678] = 541, [679] = 679, [680] = 543, [681] = 544, [682] = 546, [683] = 683, [684] = 684, [685] = 557, [686] = 557, [687] = 553, [688] = 559, [689] = 560, [690] = 539, [691] = 562, [692] = 294, [693] = 693, [694] = 694, [695] = 677, [696] = 679, [697] = 683, [698] = 698, [699] = 684, [700] = 637, [701] = 639, [702] = 346, [703] = 347, [704] = 348, [705] = 349, [706] = 350, [707] = 351, [708] = 352, [709] = 353, [710] = 283, [711] = 284, [712] = 366, [713] = 367, [714] = 285, [715] = 369, [716] = 370, [717] = 286, [718] = 372, [719] = 373, [720] = 288, [721] = 374, [722] = 376, [723] = 290, [724] = 382, [725] = 383, [726] = 384, [727] = 385, [728] = 378, [729] = 327, [730] = 298, [731] = 355, [732] = 320, [733] = 321, [734] = 324, [735] = 269, [736] = 354, [737] = 271, [738] = 363, [739] = 371, [740] = 293, [741] = 741, [742] = 295, [743] = 296, [744] = 297, [745] = 391, [746] = 266, [747] = 556, [748] = 563, [749] = 564, [750] = 750, [751] = 751, [752] = 741, [753] = 275, [754] = 754, [755] = 754, [756] = 693, [757] = 693, [758] = 758, [759] = 750, [760] = 741, [761] = 754, [762] = 693, [763] = 750, [764] = 741, [765] = 754, [766] = 693, [767] = 750, [768] = 741, [769] = 754, [770] = 693, [771] = 750, [772] = 741, [773] = 754, [774] = 693, [775] = 750, [776] = 741, [777] = 754, [778] = 750, [779] = 741, [780] = 754, [781] = 693, [782] = 750, [783] = 294, [784] = 366, [785] = 556, [786] = 563, [787] = 787, [788] = 788, [789] = 789, [790] = 790, [791] = 791, [792] = 564, [793] = 793, [794] = 794, [795] = 795, [796] = 679, [797] = 683, [798] = 684, [799] = 799, [800] = 800, [801] = 556, [802] = 563, [803] = 564, [804] = 804, [805] = 805, [806] = 806, [807] = 807, [808] = 808, [809] = 809, [810] = 810, [811] = 637, [812] = 639, [813] = 677, [814] = 814, [815] = 815, [816] = 816, [817] = 346, [818] = 347, [819] = 348, [820] = 349, [821] = 350, [822] = 351, [823] = 352, [824] = 353, [825] = 825, [826] = 826, [827] = 284, [828] = 366, [829] = 367, [830] = 285, [831] = 369, [832] = 370, [833] = 286, [834] = 372, [835] = 373, [836] = 288, [837] = 374, [838] = 376, [839] = 839, [840] = 840, [841] = 841, [842] = 382, [843] = 383, [844] = 384, [845] = 385, [846] = 378, [847] = 327, [848] = 298, [849] = 355, [850] = 320, [851] = 321, [852] = 324, [853] = 269, [854] = 354, [855] = 271, [856] = 363, [857] = 371, [858] = 293, [859] = 294, [860] = 295, [861] = 296, [862] = 297, [863] = 391, [864] = 864, [865] = 346, [866] = 347, [867] = 348, [868] = 349, [869] = 350, [870] = 351, [871] = 352, [872] = 353, [873] = 266, [874] = 283, [875] = 875, [876] = 284, [877] = 367, [878] = 285, [879] = 369, [880] = 370, [881] = 286, [882] = 372, [883] = 373, [884] = 288, [885] = 374, [886] = 376, [887] = 887, [888] = 888, [889] = 889, [890] = 275, [891] = 290, [892] = 382, [893] = 383, [894] = 384, [895] = 385, [896] = 378, [897] = 327, [898] = 298, [899] = 355, [900] = 320, [901] = 321, [902] = 269, [903] = 354, [904] = 271, [905] = 363, [906] = 371, [907] = 293, [908] = 294, [909] = 295, [910] = 296, [911] = 297, [912] = 391, [913] = 266, [914] = 283, [915] = 275, [916] = 290, [917] = 917, [918] = 918, [919] = 919, [920] = 920, [921] = 921, [922] = 922, [923] = 923, [924] = 924, [925] = 925, [926] = 926, [927] = 804, [928] = 805, [929] = 806, [930] = 637, [931] = 807, [932] = 808, [933] = 809, [934] = 810, [935] = 919, [936] = 920, [937] = 921, [938] = 923, [939] = 939, [940] = 940, [941] = 941, [942] = 639, [943] = 922, [944] = 944, [945] = 945, [946] = 787, [947] = 788, [948] = 924, [949] = 793, [950] = 940, [951] = 816, [952] = 941, [953] = 925, [954] = 864, [955] = 677, [956] = 944, [957] = 679, [958] = 683, [959] = 684, [960] = 926, [961] = 945, [962] = 324, [963] = 963, [964] = 964, [965] = 965, [966] = 966, [967] = 262, [968] = 968, [969] = 264, [970] = 970, [971] = 971, [972] = 972, [973] = 973, [974] = 974, [975] = 975, [976] = 976, [977] = 977, [978] = 978, [979] = 979, [980] = 980, [981] = 980, [982] = 971, [983] = 972, [984] = 984, [985] = 272, [986] = 964, [987] = 271, [988] = 285, [989] = 269, [990] = 270, [991] = 984, [992] = 977, [993] = 977, [994] = 978, [995] = 974, [996] = 286, [997] = 282, [998] = 973, [999] = 266, [1000] = 287, [1001] = 283, [1002] = 965, [1003] = 966, [1004] = 965, [1005] = 288, [1006] = 977, [1007] = 978, [1008] = 289, [1009] = 1009, [1010] = 971, [1011] = 972, [1012] = 1012, [1013] = 978, [1014] = 1014, [1015] = 1015, [1016] = 1012, [1017] = 971, [1018] = 1018, [1019] = 972, [1020] = 977, [1021] = 978, [1022] = 973, [1023] = 502, [1024] = 615, [1025] = 1025, [1026] = 974, [1027] = 971, [1028] = 972, [1029] = 1029, [1030] = 273, [1031] = 1009, [1032] = 977, [1033] = 978, [1034] = 963, [1035] = 1018, [1036] = 280, [1037] = 267, [1038] = 976, [1039] = 275, [1040] = 268, [1041] = 1041, [1042] = 971, [1043] = 972, [1044] = 290, [1045] = 1025, [1046] = 281, [1047] = 284, [1048] = 966, [1049] = 266, [1050] = 1050, [1051] = 1051, [1052] = 1052, [1053] = 1053, [1054] = 1054, [1055] = 305, [1056] = 1056, [1057] = 307, [1058] = 1058, [1059] = 677, [1060] = 350, [1061] = 1061, [1062] = 1062, [1063] = 362, [1064] = 1064, [1065] = 299, [1066] = 1066, [1067] = 1067, [1068] = 1068, [1069] = 292, [1070] = 348, [1071] = 349, [1072] = 1072, [1073] = 321, [1074] = 1074, [1075] = 324, [1076] = 370, [1077] = 677, [1078] = 1078, [1079] = 275, [1080] = 301, [1081] = 1081, [1082] = 354, [1083] = 344, [1084] = 1084, [1085] = 1085, [1086] = 363, [1087] = 351, [1088] = 361, [1089] = 1089, [1090] = 371, [1091] = 368, [1092] = 293, [1093] = 294, [1094] = 356, [1095] = 357, [1096] = 295, [1097] = 266, [1098] = 296, [1099] = 275, [1100] = 266, [1101] = 275, [1102] = 372, [1103] = 345, [1104] = 297, [1105] = 391, [1106] = 273, [1107] = 280, [1108] = 373, [1109] = 367, [1110] = 1110, [1111] = 1078, [1112] = 1081, [1113] = 1113, [1114] = 1114, [1115] = 346, [1116] = 1116, [1117] = 281, [1118] = 282, [1119] = 358, [1120] = 1089, [1121] = 1066, [1122] = 283, [1123] = 1123, [1124] = 1058, [1125] = 1125, [1126] = 374, [1127] = 352, [1128] = 284, [1129] = 353, [1130] = 376, [1131] = 366, [1132] = 1132, [1133] = 369, [1134] = 320, [1135] = 336, [1136] = 375, [1137] = 266, [1138] = 1125, [1139] = 1050, [1140] = 1078, [1141] = 1081, [1142] = 337, [1143] = 1143, [1144] = 285, [1145] = 1064, [1146] = 286, [1147] = 1089, [1148] = 1066, [1149] = 287, [1150] = 288, [1151] = 1058, [1152] = 1125, [1153] = 289, [1154] = 340, [1155] = 1155, [1156] = 347, [1157] = 275, [1158] = 290, [1159] = 267, [1160] = 268, [1161] = 1051, [1162] = 1052, [1163] = 1053, [1164] = 1054, [1165] = 1058, [1166] = 1125, [1167] = 1167, [1168] = 1168, [1169] = 1169, [1170] = 341, [1171] = 1084, [1172] = 1058, [1173] = 1125, [1174] = 1061, [1175] = 342, [1176] = 387, [1177] = 379, [1178] = 1062, [1179] = 269, [1180] = 270, [1181] = 271, [1182] = 1058, [1183] = 1125, [1184] = 272, [1185] = 380, [1186] = 381, [1187] = 1132, [1188] = 382, [1189] = 1067, [1190] = 1068, [1191] = 383, [1192] = 384, [1193] = 1058, [1194] = 1125, [1195] = 1072, [1196] = 1074, [1197] = 385, [1198] = 273, [1199] = 386, [1200] = 343, [1201] = 388, [1202] = 389, [1203] = 390, [1204] = 378, [1205] = 327, [1206] = 298, [1207] = 355, [1208] = 335, [1209] = 1110, [1210] = 1113, [1211] = 1058, [1212] = 1125, [1213] = 1114, [1214] = 1116, [1215] = 377, [1216] = 679, [1217] = 352, [1218] = 353, [1219] = 1110, [1220] = 356, [1221] = 357, [1222] = 564, [1223] = 1113, [1224] = 1114, [1225] = 1225, [1226] = 1226, [1227] = 1227, [1228] = 1116, [1229] = 361, [1230] = 362, [1231] = 1051, [1232] = 1052, [1233] = 1053, [1234] = 1054, [1235] = 1235, [1236] = 1084, [1237] = 1237, [1238] = 1061, [1239] = 1239, [1240] = 1240, [1241] = 1062, [1242] = 1242, [1243] = 556, [1244] = 1242, [1245] = 1245, [1246] = 266, [1247] = 366, [1248] = 275, [1249] = 1067, [1250] = 1225, [1251] = 1240, [1252] = 1252, [1253] = 1252, [1254] = 290, [1255] = 1068, [1256] = 367, [1257] = 1050, [1258] = 369, [1259] = 370, [1260] = 372, [1261] = 373, [1262] = 683, [1263] = 684, [1264] = 1064, [1265] = 374, [1266] = 376, [1267] = 1267, [1268] = 1268, [1269] = 1084, [1270] = 1072, [1271] = 1074, [1272] = 283, [1273] = 379, [1274] = 380, [1275] = 381, [1276] = 382, [1277] = 383, [1278] = 384, [1279] = 385, [1280] = 386, [1281] = 273, [1282] = 346, [1283] = 347, [1284] = 388, [1285] = 389, [1286] = 390, [1287] = 378, [1288] = 327, [1289] = 298, [1290] = 355, [1291] = 335, [1292] = 1292, [1293] = 677, [1294] = 358, [1295] = 368, [1296] = 299, [1297] = 301, [1298] = 677, [1299] = 1299, [1300] = 305, [1301] = 1110, [1302] = 348, [1303] = 307, [1304] = 349, [1305] = 1113, [1306] = 350, [1307] = 351, [1308] = 1114, [1309] = 352, [1310] = 353, [1311] = 1116, [1312] = 1292, [1313] = 1313, [1314] = 284, [1315] = 677, [1316] = 366, [1317] = 1050, [1318] = 367, [1319] = 1319, [1320] = 285, [1321] = 369, [1322] = 1064, [1323] = 370, [1324] = 391, [1325] = 286, [1326] = 1132, [1327] = 1327, [1328] = 372, [1329] = 373, [1330] = 288, [1331] = 374, [1332] = 1235, [1333] = 320, [1334] = 376, [1335] = 1335, [1336] = 1132, [1337] = 1335, [1338] = 382, [1339] = 383, [1340] = 384, [1341] = 385, [1342] = 378, [1343] = 327, [1344] = 321, [1345] = 563, [1346] = 298, [1347] = 324, [1348] = 266, [1349] = 355, [1350] = 354, [1351] = 363, [1352] = 275, [1353] = 266, [1354] = 1051, [1355] = 371, [1356] = 275, [1357] = 1052, [1358] = 1053, [1359] = 1239, [1360] = 1054, [1361] = 320, [1362] = 375, [1363] = 377, [1364] = 387, [1365] = 292, [1366] = 1061, [1367] = 321, [1368] = 1062, [1369] = 324, [1370] = 269, [1371] = 1327, [1372] = 1245, [1373] = 354, [1374] = 271, [1375] = 293, [1376] = 294, [1377] = 295, [1378] = 296, [1379] = 1319, [1380] = 336, [1381] = 337, [1382] = 297, [1383] = 391, [1384] = 363, [1385] = 371, [1386] = 340, [1387] = 341, [1388] = 342, [1389] = 343, [1390] = 344, [1391] = 1067, [1392] = 1068, [1393] = 345, [1394] = 346, [1395] = 347, [1396] = 293, [1397] = 294, [1398] = 637, [1399] = 295, [1400] = 639, [1401] = 348, [1402] = 349, [1403] = 296, [1404] = 350, [1405] = 1072, [1406] = 1074, [1407] = 351, [1408] = 297, [1409] = 1226, [1410] = 1410, [1411] = 1116, [1412] = 1412, [1413] = 1062, [1414] = 1061, [1415] = 1415, [1416] = 1416, [1417] = 1417, [1418] = 1418, [1419] = 1419, [1420] = 1110, [1421] = 1072, [1422] = 1064, [1423] = 1050, [1424] = 290, [1425] = 1074, [1426] = 1426, [1427] = 1427, [1428] = 1428, [1429] = 1429, [1430] = 1410, [1431] = 1431, [1432] = 1432, [1433] = 1410, [1434] = 1431, [1435] = 1432, [1436] = 1436, [1437] = 1436, [1438] = 1410, [1439] = 1431, [1440] = 1432, [1441] = 1436, [1442] = 1113, [1443] = 1443, [1444] = 1444, [1445] = 1445, [1446] = 1446, [1447] = 1447, [1448] = 1062, [1449] = 1449, [1450] = 1450, [1451] = 1067, [1452] = 1452, [1453] = 1114, [1454] = 1454, [1455] = 266, [1456] = 1456, [1457] = 1447, [1458] = 1068, [1459] = 1447, [1460] = 1449, [1461] = 1461, [1462] = 275, [1463] = 1114, [1464] = 1464, [1465] = 1465, [1466] = 1052, [1467] = 1116, [1468] = 1447, [1469] = 1053, [1470] = 1084, [1471] = 1449, [1472] = 1410, [1473] = 1447, [1474] = 1432, [1475] = 677, [1476] = 1449, [1477] = 1067, [1478] = 1410, [1479] = 1431, [1480] = 1432, [1481] = 1436, [1482] = 1054, [1483] = 1431, [1484] = 1484, [1485] = 1485, [1486] = 1436, [1487] = 283, [1488] = 1488, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, [1494] = 1432, [1495] = 1072, [1496] = 1496, [1497] = 1497, [1498] = 1410, [1499] = 1499, [1500] = 1068, [1501] = 1061, [1502] = 1502, [1503] = 1431, [1504] = 1432, [1505] = 1436, [1506] = 1110, [1507] = 1074, [1508] = 1436, [1509] = 1050, [1510] = 1410, [1511] = 1431, [1512] = 1432, [1513] = 1436, [1514] = 1514, [1515] = 1515, [1516] = 1449, [1517] = 1064, [1518] = 1132, [1519] = 1431, [1520] = 1520, [1521] = 1051, [1522] = 273, [1523] = 1052, [1524] = 1053, [1525] = 1447, [1526] = 1526, [1527] = 1449, [1528] = 1054, [1529] = 1529, [1530] = 1530, [1531] = 1531, [1532] = 1532, [1533] = 1533, [1534] = 1113, [1535] = 1051, [1536] = 1536, [1537] = 1537, [1538] = 1410, [1539] = 1431, [1540] = 1432, [1541] = 1436, [1542] = 1410, [1543] = 1431, [1544] = 1432, [1545] = 1410, [1546] = 1431, [1547] = 1432, [1548] = 1410, [1549] = 1431, [1550] = 1432, [1551] = 1551, [1552] = 1431, [1553] = 1432, [1554] = 1410, [1555] = 1431, [1556] = 1432, [1557] = 1410, [1558] = 1431, [1559] = 1432, [1560] = 1410, [1561] = 1431, [1562] = 1410, [1563] = 1431, [1564] = 1410, [1565] = 1410, [1566] = 1410, [1567] = 1410, [1568] = 1410, [1569] = 1410, [1570] = 1410, [1571] = 1410, [1572] = 1410, [1573] = 1410, [1574] = 1410, [1575] = 1410, [1576] = 1410, [1577] = 1410, [1578] = 1410, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: ACCEPT_TOKEN(ts_builtin_sym_end); if (eof) ADVANCE(1); END_STATE(); case 1: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); default: return false; } } static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 0, .external_lex_state = 2}, [2] = {.lex_state = 0, .external_lex_state = 3}, [3] = {.lex_state = 0, .external_lex_state = 3}, [4] = {.lex_state = 0, .external_lex_state = 3}, [5] = {.lex_state = 0, .external_lex_state = 3}, [6] = {.lex_state = 0, .external_lex_state = 3}, [7] = {.lex_state = 0, .external_lex_state = 3}, [8] = {.lex_state = 0, .external_lex_state = 4}, [9] = {.lex_state = 0, .external_lex_state = 4}, [10] = {.lex_state = 0, .external_lex_state = 4}, [11] = {.lex_state = 0, .external_lex_state = 5}, [12] = {.lex_state = 0, .external_lex_state = 6}, [13] = {.lex_state = 0, .external_lex_state = 7}, [14] = {.lex_state = 0, .external_lex_state = 7}, [15] = {.lex_state = 0, .external_lex_state = 7}, [16] = {.lex_state = 0, .external_lex_state = 7}, [17] = {.lex_state = 0, .external_lex_state = 7}, [18] = {.lex_state = 0, .external_lex_state = 7}, [19] = {.lex_state = 0, .external_lex_state = 7}, [20] = {.lex_state = 0, .external_lex_state = 7}, [21] = {.lex_state = 0, .external_lex_state = 7}, [22] = {.lex_state = 0, .external_lex_state = 7}, [23] = {.lex_state = 0, .external_lex_state = 7}, [24] = {.lex_state = 0, .external_lex_state = 8}, [25] = {.lex_state = 0, .external_lex_state = 8}, [26] = {.lex_state = 0, .external_lex_state = 8}, [27] = {.lex_state = 0, .external_lex_state = 8}, [28] = {.lex_state = 0, .external_lex_state = 8}, [29] = {.lex_state = 0, .external_lex_state = 8}, [30] = {.lex_state = 0, .external_lex_state = 8}, [31] = {.lex_state = 0, .external_lex_state = 8}, [32] = {.lex_state = 0, .external_lex_state = 8}, [33] = {.lex_state = 0, .external_lex_state = 8}, [34] = {.lex_state = 0, .external_lex_state = 8}, [35] = {.lex_state = 0, .external_lex_state = 9}, [36] = {.lex_state = 0, .external_lex_state = 9}, [37] = {.lex_state = 0, .external_lex_state = 10}, [38] = {.lex_state = 0, .external_lex_state = 10}, [39] = {.lex_state = 0, .external_lex_state = 10}, [40] = {.lex_state = 0, .external_lex_state = 11}, [41] = {.lex_state = 0, .external_lex_state = 12}, [42] = {.lex_state = 0, .external_lex_state = 7}, [43] = {.lex_state = 0, .external_lex_state = 7}, [44] = {.lex_state = 0, .external_lex_state = 7}, [45] = {.lex_state = 0, .external_lex_state = 7}, [46] = {.lex_state = 0, .external_lex_state = 7}, [47] = {.lex_state = 0, .external_lex_state = 7}, [48] = {.lex_state = 0, .external_lex_state = 7}, [49] = {.lex_state = 0, .external_lex_state = 7}, [50] = {.lex_state = 0, .external_lex_state = 7}, [51] = {.lex_state = 0, .external_lex_state = 7}, [52] = {.lex_state = 0, .external_lex_state = 7}, [53] = {.lex_state = 0, .external_lex_state = 7}, [54] = {.lex_state = 0, .external_lex_state = 7}, [55] = {.lex_state = 0, .external_lex_state = 12}, [56] = {.lex_state = 0, .external_lex_state = 8}, [57] = {.lex_state = 0, .external_lex_state = 8}, [58] = {.lex_state = 0, .external_lex_state = 8}, [59] = {.lex_state = 0, .external_lex_state = 8}, [60] = {.lex_state = 0, .external_lex_state = 8}, [61] = {.lex_state = 0, .external_lex_state = 8}, [62] = {.lex_state = 0, .external_lex_state = 8}, [63] = {.lex_state = 0, .external_lex_state = 8}, [64] = {.lex_state = 0, .external_lex_state = 8}, [65] = {.lex_state = 0, .external_lex_state = 8}, [66] = {.lex_state = 0, .external_lex_state = 8}, [67] = {.lex_state = 0, .external_lex_state = 8}, [68] = {.lex_state = 0, .external_lex_state = 8}, [69] = {.lex_state = 0, .external_lex_state = 11}, [70] = {.lex_state = 0, .external_lex_state = 7}, [71] = {.lex_state = 0, .external_lex_state = 7}, [72] = {.lex_state = 0, .external_lex_state = 7}, [73] = {.lex_state = 0, .external_lex_state = 7}, [74] = {.lex_state = 0, .external_lex_state = 8}, [75] = {.lex_state = 0, .external_lex_state = 8}, [76] = {.lex_state = 0, .external_lex_state = 8}, [77] = {.lex_state = 0, .external_lex_state = 8}, [78] = {.lex_state = 0, .external_lex_state = 13}, [79] = {.lex_state = 0, .external_lex_state = 13}, [80] = {.lex_state = 0, .external_lex_state = 14}, [81] = {.lex_state = 0, .external_lex_state = 14}, [82] = {.lex_state = 0, .external_lex_state = 15}, [83] = {.lex_state = 0, .external_lex_state = 15}, [84] = {.lex_state = 0, .external_lex_state = 11}, [85] = {.lex_state = 0, .external_lex_state = 12}, [86] = {.lex_state = 0, .external_lex_state = 12}, [87] = {.lex_state = 0, .external_lex_state = 11}, [88] = {.lex_state = 0, .external_lex_state = 11}, [89] = {.lex_state = 0, .external_lex_state = 11}, [90] = {.lex_state = 0, .external_lex_state = 12}, [91] = {.lex_state = 0, .external_lex_state = 12}, [92] = {.lex_state = 0, .external_lex_state = 12}, [93] = {.lex_state = 0, .external_lex_state = 11}, [94] = {.lex_state = 0, .external_lex_state = 11}, [95] = {.lex_state = 0, .external_lex_state = 12}, [96] = {.lex_state = 0, .external_lex_state = 16}, [97] = {.lex_state = 0, .external_lex_state = 16}, [98] = {.lex_state = 0, .external_lex_state = 17}, [99] = {.lex_state = 0, .external_lex_state = 18}, [100] = {.lex_state = 0, .external_lex_state = 18}, [101] = {.lex_state = 0, .external_lex_state = 18}, [102] = {.lex_state = 0, .external_lex_state = 18}, [103] = {.lex_state = 0, .external_lex_state = 19}, [104] = {.lex_state = 0, .external_lex_state = 19}, [105] = {.lex_state = 0, .external_lex_state = 20}, [106] = {.lex_state = 0, .external_lex_state = 20}, [107] = {.lex_state = 0, .external_lex_state = 19}, [108] = {.lex_state = 0, .external_lex_state = 9}, [109] = {.lex_state = 0, .external_lex_state = 9}, [110] = {.lex_state = 0, .external_lex_state = 9}, [111] = {.lex_state = 0, .external_lex_state = 9}, [112] = {.lex_state = 0, .external_lex_state = 21}, [113] = {.lex_state = 0, .external_lex_state = 21}, [114] = {.lex_state = 0, .external_lex_state = 22}, [115] = {.lex_state = 0, .external_lex_state = 22}, [116] = {.lex_state = 0, .external_lex_state = 23}, [117] = {.lex_state = 0, .external_lex_state = 24}, [118] = {.lex_state = 0, .external_lex_state = 23}, [119] = {.lex_state = 0, .external_lex_state = 25}, [120] = {.lex_state = 0, .external_lex_state = 25}, [121] = {.lex_state = 0, .external_lex_state = 24}, [122] = {.lex_state = 0, .external_lex_state = 26}, [123] = {.lex_state = 0, .external_lex_state = 26}, [124] = {.lex_state = 0, .external_lex_state = 27}, [125] = {.lex_state = 0, .external_lex_state = 28}, [126] = {.lex_state = 0, .external_lex_state = 29}, [127] = {.lex_state = 0, .external_lex_state = 30}, [128] = {.lex_state = 0, .external_lex_state = 28}, [129] = {.lex_state = 0, .external_lex_state = 30}, [130] = {.lex_state = 0, .external_lex_state = 28}, [131] = {.lex_state = 0, .external_lex_state = 30}, [132] = {.lex_state = 0, .external_lex_state = 31}, [133] = {.lex_state = 0, .external_lex_state = 29}, [134] = {.lex_state = 0, .external_lex_state = 28}, [135] = {.lex_state = 0, .external_lex_state = 28}, [136] = {.lex_state = 0, .external_lex_state = 31}, [137] = {.lex_state = 0, .external_lex_state = 29}, [138] = {.lex_state = 0, .external_lex_state = 28}, [139] = {.lex_state = 0, .external_lex_state = 28}, [140] = {.lex_state = 0, .external_lex_state = 31}, [141] = {.lex_state = 0, .external_lex_state = 29}, [142] = {.lex_state = 0, .external_lex_state = 28}, [143] = {.lex_state = 0, .external_lex_state = 28}, [144] = {.lex_state = 0, .external_lex_state = 28}, [145] = {.lex_state = 0, .external_lex_state = 28}, [146] = {.lex_state = 0, .external_lex_state = 30}, [147] = {.lex_state = 0, .external_lex_state = 31}, [148] = {.lex_state = 0, .external_lex_state = 29}, [149] = {.lex_state = 0, .external_lex_state = 28}, [150] = {.lex_state = 0, .external_lex_state = 28}, [151] = {.lex_state = 0, .external_lex_state = 31}, [152] = {.lex_state = 0, .external_lex_state = 29}, [153] = {.lex_state = 0, .external_lex_state = 31}, [154] = {.lex_state = 0, .external_lex_state = 29}, [155] = {.lex_state = 0, .external_lex_state = 31}, [156] = {.lex_state = 0, .external_lex_state = 32}, [157] = {.lex_state = 0, .external_lex_state = 32}, [158] = {.lex_state = 0, .external_lex_state = 32}, [159] = {.lex_state = 0, .external_lex_state = 33}, [160] = {.lex_state = 0, .external_lex_state = 34}, [161] = {.lex_state = 0, .external_lex_state = 34}, [162] = {.lex_state = 0, .external_lex_state = 35}, [163] = {.lex_state = 0, .external_lex_state = 32}, [164] = {.lex_state = 0, .external_lex_state = 35}, [165] = {.lex_state = 0, .external_lex_state = 33}, [166] = {.lex_state = 0, .external_lex_state = 33}, [167] = {.lex_state = 0, .external_lex_state = 31}, [168] = {.lex_state = 0, .external_lex_state = 36}, [169] = {.lex_state = 0, .external_lex_state = 14}, [170] = {.lex_state = 0, .external_lex_state = 14}, [171] = {.lex_state = 0, .external_lex_state = 14}, [172] = {.lex_state = 0, .external_lex_state = 36}, [173] = {.lex_state = 0, .external_lex_state = 36}, [174] = {.lex_state = 0, .external_lex_state = 29}, [175] = {.lex_state = 0, .external_lex_state = 29}, [176] = {.lex_state = 0, .external_lex_state = 14}, [177] = {.lex_state = 0, .external_lex_state = 31}, [178] = {.lex_state = 0, .external_lex_state = 15}, [179] = {.lex_state = 0, .external_lex_state = 15}, [180] = {.lex_state = 0, .external_lex_state = 15}, [181] = {.lex_state = 0, .external_lex_state = 37}, [182] = {.lex_state = 0, .external_lex_state = 37}, [183] = {.lex_state = 0, .external_lex_state = 38}, [184] = {.lex_state = 0, .external_lex_state = 38}, [185] = {.lex_state = 0, .external_lex_state = 38}, [186] = {.lex_state = 0, .external_lex_state = 39}, [187] = {.lex_state = 0, .external_lex_state = 39}, [188] = {.lex_state = 0, .external_lex_state = 39}, [189] = {.lex_state = 0, .external_lex_state = 40}, [190] = {.lex_state = 0, .external_lex_state = 41}, [191] = {.lex_state = 0, .external_lex_state = 41}, [192] = {.lex_state = 0, .external_lex_state = 42}, [193] = {.lex_state = 0, .external_lex_state = 43}, [194] = {.lex_state = 0, .external_lex_state = 41}, [195] = {.lex_state = 0, .external_lex_state = 43}, [196] = {.lex_state = 0, .external_lex_state = 41}, [197] = {.lex_state = 0, .external_lex_state = 41}, [198] = {.lex_state = 0, .external_lex_state = 42}, [199] = {.lex_state = 0, .external_lex_state = 44}, [200] = {.lex_state = 0, .external_lex_state = 40}, [201] = {.lex_state = 0, .external_lex_state = 43}, [202] = {.lex_state = 0, .external_lex_state = 40}, [203] = {.lex_state = 0, .external_lex_state = 44}, [204] = {.lex_state = 0, .external_lex_state = 42}, [205] = {.lex_state = 0, .external_lex_state = 44}, [206] = {.lex_state = 0, .external_lex_state = 45}, [207] = {.lex_state = 0, .external_lex_state = 45}, [208] = {.lex_state = 0, .external_lex_state = 45}, [209] = {.lex_state = 0, .external_lex_state = 45}, [210] = {.lex_state = 0, .external_lex_state = 45}, [211] = {.lex_state = 0, .external_lex_state = 46}, [212] = {.lex_state = 0, .external_lex_state = 46}, [213] = {.lex_state = 0, .external_lex_state = 46}, [214] = {.lex_state = 0, .external_lex_state = 47}, [215] = {.lex_state = 0, .external_lex_state = 47}, [216] = {.lex_state = 0, .external_lex_state = 21}, [217] = {.lex_state = 0, .external_lex_state = 21}, [218] = {.lex_state = 0, .external_lex_state = 46}, [219] = {.lex_state = 0, .external_lex_state = 21}, [220] = {.lex_state = 0, .external_lex_state = 46}, [221] = {.lex_state = 0, .external_lex_state = 21}, [222] = {.lex_state = 0, .external_lex_state = 21}, [223] = {.lex_state = 0, .external_lex_state = 47}, [224] = {.lex_state = 0, .external_lex_state = 47}, [225] = {.lex_state = 0, .external_lex_state = 47}, [226] = {.lex_state = 0, .external_lex_state = 48}, [227] = {.lex_state = 0, .external_lex_state = 22}, [228] = {.lex_state = 0, .external_lex_state = 22}, [229] = {.lex_state = 0, .external_lex_state = 48}, [230] = {.lex_state = 0, .external_lex_state = 22}, [231] = {.lex_state = 0, .external_lex_state = 22}, [232] = {.lex_state = 0, .external_lex_state = 22}, [233] = {.lex_state = 0, .external_lex_state = 48}, [234] = {.lex_state = 0, .external_lex_state = 24}, [235] = {.lex_state = 0, .external_lex_state = 24}, [236] = {.lex_state = 0, .external_lex_state = 24}, [237] = {.lex_state = 0, .external_lex_state = 25}, [238] = {.lex_state = 0, .external_lex_state = 24}, [239] = {.lex_state = 0, .external_lex_state = 24}, [240] = {.lex_state = 0, .external_lex_state = 25}, [241] = {.lex_state = 0, .external_lex_state = 25}, [242] = {.lex_state = 0, .external_lex_state = 25}, [243] = {.lex_state = 0, .external_lex_state = 25}, [244] = {.lex_state = 0, .external_lex_state = 49}, [245] = {.lex_state = 0, .external_lex_state = 49}, [246] = {.lex_state = 0, .external_lex_state = 49}, [247] = {.lex_state = 0, .external_lex_state = 49}, [248] = {.lex_state = 0, .external_lex_state = 49}, [249] = {.lex_state = 0, .external_lex_state = 10}, [250] = {.lex_state = 0, .external_lex_state = 10}, [251] = {.lex_state = 0, .external_lex_state = 10}, [252] = {.lex_state = 0, .external_lex_state = 10}, [253] = {.lex_state = 0, .external_lex_state = 10}, [254] = {.lex_state = 0, .external_lex_state = 10}, [255] = {.lex_state = 0, .external_lex_state = 10}, [256] = {.lex_state = 0, .external_lex_state = 35}, [257] = {.lex_state = 0, .external_lex_state = 35}, [258] = {.lex_state = 0, .external_lex_state = 35}, [259] = {.lex_state = 0, .external_lex_state = 35}, [260] = {.lex_state = 0, .external_lex_state = 35}, [261] = {.lex_state = 0, .external_lex_state = 50}, [262] = {.lex_state = 0, .external_lex_state = 51}, [263] = {.lex_state = 0, .external_lex_state = 51}, [264] = {.lex_state = 0, .external_lex_state = 51}, [265] = {.lex_state = 0, .external_lex_state = 52}, [266] = {.lex_state = 0, .external_lex_state = 51}, [267] = {.lex_state = 0, .external_lex_state = 51}, [268] = {.lex_state = 0, .external_lex_state = 51}, [269] = {.lex_state = 0, .external_lex_state = 51}, [270] = {.lex_state = 0, .external_lex_state = 51}, [271] = {.lex_state = 0, .external_lex_state = 51}, [272] = {.lex_state = 0, .external_lex_state = 51}, [273] = {.lex_state = 0, .external_lex_state = 51}, [274] = {.lex_state = 0, .external_lex_state = 53}, [275] = {.lex_state = 0, .external_lex_state = 51}, [276] = {.lex_state = 0, .external_lex_state = 54}, [277] = {.lex_state = 0, .external_lex_state = 28}, [278] = {.lex_state = 0, .external_lex_state = 28}, [279] = {.lex_state = 0, .external_lex_state = 28}, [280] = {.lex_state = 0, .external_lex_state = 51}, [281] = {.lex_state = 0, .external_lex_state = 51}, [282] = {.lex_state = 0, .external_lex_state = 51}, [283] = {.lex_state = 0, .external_lex_state = 51}, [284] = {.lex_state = 0, .external_lex_state = 51}, [285] = {.lex_state = 0, .external_lex_state = 51}, [286] = {.lex_state = 0, .external_lex_state = 51}, [287] = {.lex_state = 0, .external_lex_state = 51}, [288] = {.lex_state = 0, .external_lex_state = 51}, [289] = {.lex_state = 0, .external_lex_state = 51}, [290] = {.lex_state = 0, .external_lex_state = 51}, [291] = {.lex_state = 0, .external_lex_state = 28}, [292] = {.lex_state = 0, .external_lex_state = 28}, [293] = {.lex_state = 0, .external_lex_state = 28}, [294] = {.lex_state = 0, .external_lex_state = 28}, [295] = {.lex_state = 0, .external_lex_state = 28}, [296] = {.lex_state = 0, .external_lex_state = 28}, [297] = {.lex_state = 0, .external_lex_state = 28}, [298] = {.lex_state = 0, .external_lex_state = 28}, [299] = {.lex_state = 0, .external_lex_state = 28}, [300] = {.lex_state = 0, .external_lex_state = 28}, [301] = {.lex_state = 0, .external_lex_state = 28}, [302] = {.lex_state = 0, .external_lex_state = 28}, [303] = {.lex_state = 0, .external_lex_state = 28}, [304] = {.lex_state = 0, .external_lex_state = 28}, [305] = {.lex_state = 0, .external_lex_state = 28}, [306] = {.lex_state = 0, .external_lex_state = 28}, [307] = {.lex_state = 0, .external_lex_state = 28}, [308] = {.lex_state = 0, .external_lex_state = 55}, [309] = {.lex_state = 0, .external_lex_state = 55}, [310] = {.lex_state = 0, .external_lex_state = 28}, [311] = {.lex_state = 0, .external_lex_state = 28}, [312] = {.lex_state = 0, .external_lex_state = 28}, [313] = {.lex_state = 0, .external_lex_state = 28}, [314] = {.lex_state = 0, .external_lex_state = 28}, [315] = {.lex_state = 0, .external_lex_state = 28}, [316] = {.lex_state = 0, .external_lex_state = 28}, [317] = {.lex_state = 0, .external_lex_state = 28}, [318] = {.lex_state = 0, .external_lex_state = 28}, [319] = {.lex_state = 0, .external_lex_state = 28}, [320] = {.lex_state = 0, .external_lex_state = 28}, [321] = {.lex_state = 0, .external_lex_state = 28}, [322] = {.lex_state = 0, .external_lex_state = 55}, [323] = {.lex_state = 0, .external_lex_state = 28}, [324] = {.lex_state = 0, .external_lex_state = 28}, [325] = {.lex_state = 0, .external_lex_state = 28}, [326] = {.lex_state = 0, .external_lex_state = 28}, [327] = {.lex_state = 0, .external_lex_state = 28}, [328] = {.lex_state = 0, .external_lex_state = 28}, [329] = {.lex_state = 0, .external_lex_state = 28}, [330] = {.lex_state = 0, .external_lex_state = 28}, [331] = {.lex_state = 0, .external_lex_state = 28}, [332] = {.lex_state = 0, .external_lex_state = 28}, [333] = {.lex_state = 0, .external_lex_state = 28}, [334] = {.lex_state = 0, .external_lex_state = 28}, [335] = {.lex_state = 0, .external_lex_state = 28}, [336] = {.lex_state = 0, .external_lex_state = 28}, [337] = {.lex_state = 0, .external_lex_state = 28}, [338] = {.lex_state = 0, .external_lex_state = 28}, [339] = {.lex_state = 0, .external_lex_state = 28}, [340] = {.lex_state = 0, .external_lex_state = 28}, [341] = {.lex_state = 0, .external_lex_state = 28}, [342] = {.lex_state = 0, .external_lex_state = 28}, [343] = {.lex_state = 0, .external_lex_state = 28}, [344] = {.lex_state = 0, .external_lex_state = 28}, [345] = {.lex_state = 0, .external_lex_state = 28}, [346] = {.lex_state = 0, .external_lex_state = 28}, [347] = {.lex_state = 0, .external_lex_state = 28}, [348] = {.lex_state = 0, .external_lex_state = 28}, [349] = {.lex_state = 0, .external_lex_state = 28}, [350] = {.lex_state = 0, .external_lex_state = 28}, [351] = {.lex_state = 0, .external_lex_state = 28}, [352] = {.lex_state = 0, .external_lex_state = 28}, [353] = {.lex_state = 0, .external_lex_state = 28}, [354] = {.lex_state = 0, .external_lex_state = 28}, [355] = {.lex_state = 0, .external_lex_state = 28}, [356] = {.lex_state = 0, .external_lex_state = 28}, [357] = {.lex_state = 0, .external_lex_state = 28}, [358] = {.lex_state = 0, .external_lex_state = 28}, [359] = {.lex_state = 0, .external_lex_state = 28}, [360] = {.lex_state = 0, .external_lex_state = 28}, [361] = {.lex_state = 0, .external_lex_state = 28}, [362] = {.lex_state = 0, .external_lex_state = 28}, [363] = {.lex_state = 0, .external_lex_state = 28}, [364] = {.lex_state = 0, .external_lex_state = 28}, [365] = {.lex_state = 0, .external_lex_state = 56}, [366] = {.lex_state = 0, .external_lex_state = 28}, [367] = {.lex_state = 0, .external_lex_state = 28}, [368] = {.lex_state = 0, .external_lex_state = 28}, [369] = {.lex_state = 0, .external_lex_state = 28}, [370] = {.lex_state = 0, .external_lex_state = 28}, [371] = {.lex_state = 0, .external_lex_state = 28}, [372] = {.lex_state = 0, .external_lex_state = 28}, [373] = {.lex_state = 0, .external_lex_state = 28}, [374] = {.lex_state = 0, .external_lex_state = 28}, [375] = {.lex_state = 0, .external_lex_state = 28}, [376] = {.lex_state = 0, .external_lex_state = 28}, [377] = {.lex_state = 0, .external_lex_state = 28}, [378] = {.lex_state = 0, .external_lex_state = 28}, [379] = {.lex_state = 0, .external_lex_state = 28}, [380] = {.lex_state = 0, .external_lex_state = 28}, [381] = {.lex_state = 0, .external_lex_state = 28}, [382] = {.lex_state = 0, .external_lex_state = 28}, [383] = {.lex_state = 0, .external_lex_state = 28}, [384] = {.lex_state = 0, .external_lex_state = 28}, [385] = {.lex_state = 0, .external_lex_state = 28}, [386] = {.lex_state = 0, .external_lex_state = 28}, [387] = {.lex_state = 0, .external_lex_state = 28}, [388] = {.lex_state = 0, .external_lex_state = 28}, [389] = {.lex_state = 0, .external_lex_state = 28}, [390] = {.lex_state = 0, .external_lex_state = 28}, [391] = {.lex_state = 0, .external_lex_state = 28}, [392] = {.lex_state = 0, .external_lex_state = 57}, [393] = {.lex_state = 0, .external_lex_state = 58}, [394] = {.lex_state = 0, .external_lex_state = 59}, [395] = {.lex_state = 0, .external_lex_state = 60}, [396] = {.lex_state = 0, .external_lex_state = 61}, [397] = {.lex_state = 0, .external_lex_state = 60}, [398] = {.lex_state = 0, .external_lex_state = 62}, [399] = {.lex_state = 0, .external_lex_state = 62}, [400] = {.lex_state = 0, .external_lex_state = 52}, [401] = {.lex_state = 0, .external_lex_state = 63}, [402] = {.lex_state = 0, .external_lex_state = 50}, [403] = {.lex_state = 0, .external_lex_state = 64}, [404] = {.lex_state = 0, .external_lex_state = 65}, [405] = {.lex_state = 0, .external_lex_state = 66}, [406] = {.lex_state = 0, .external_lex_state = 50}, [407] = {.lex_state = 0, .external_lex_state = 63}, [408] = {.lex_state = 0, .external_lex_state = 52}, [409] = {.lex_state = 0, .external_lex_state = 66}, [410] = {.lex_state = 0, .external_lex_state = 65}, [411] = {.lex_state = 0, .external_lex_state = 53}, [412] = {.lex_state = 0, .external_lex_state = 67}, [413] = {.lex_state = 0, .external_lex_state = 67}, [414] = {.lex_state = 0, .external_lex_state = 54}, [415] = {.lex_state = 0, .external_lex_state = 68}, [416] = {.lex_state = 0, .external_lex_state = 68}, [417] = {.lex_state = 0, .external_lex_state = 53}, [418] = {.lex_state = 0, .external_lex_state = 68}, [419] = {.lex_state = 0, .external_lex_state = 54}, [420] = {.lex_state = 0, .external_lex_state = 68}, [421] = {.lex_state = 0, .external_lex_state = 69}, [422] = {.lex_state = 0, .external_lex_state = 69}, [423] = {.lex_state = 0, .external_lex_state = 69}, [424] = {.lex_state = 0, .external_lex_state = 55}, [425] = {.lex_state = 0, .external_lex_state = 55}, [426] = {.lex_state = 0, .external_lex_state = 69}, [427] = {.lex_state = 0, .external_lex_state = 69}, [428] = {.lex_state = 0, .external_lex_state = 69}, [429] = {.lex_state = 0, .external_lex_state = 69}, [430] = {.lex_state = 0, .external_lex_state = 69}, [431] = {.lex_state = 0, .external_lex_state = 69}, [432] = {.lex_state = 0, .external_lex_state = 69}, [433] = {.lex_state = 0, .external_lex_state = 69}, [434] = {.lex_state = 0, .external_lex_state = 69}, [435] = {.lex_state = 0, .external_lex_state = 69}, [436] = {.lex_state = 0, .external_lex_state = 69}, [437] = {.lex_state = 0, .external_lex_state = 69}, [438] = {.lex_state = 0, .external_lex_state = 56}, [439] = {.lex_state = 0, .external_lex_state = 69}, [440] = {.lex_state = 0, .external_lex_state = 69}, [441] = {.lex_state = 0, .external_lex_state = 69}, [442] = {.lex_state = 0, .external_lex_state = 69}, [443] = {.lex_state = 0, .external_lex_state = 69}, [444] = {.lex_state = 0, .external_lex_state = 69}, [445] = {.lex_state = 0, .external_lex_state = 56}, [446] = {.lex_state = 0, .external_lex_state = 69}, [447] = {.lex_state = 0, .external_lex_state = 69}, [448] = {.lex_state = 0, .external_lex_state = 69}, [449] = {.lex_state = 0, .external_lex_state = 69}, [450] = {.lex_state = 0, .external_lex_state = 69}, [451] = {.lex_state = 0, .external_lex_state = 69}, [452] = {.lex_state = 0, .external_lex_state = 69}, [453] = {.lex_state = 0, .external_lex_state = 69}, [454] = {.lex_state = 0, .external_lex_state = 69}, [455] = {.lex_state = 0, .external_lex_state = 69}, [456] = {.lex_state = 0, .external_lex_state = 69}, [457] = {.lex_state = 0, .external_lex_state = 69}, [458] = {.lex_state = 0, .external_lex_state = 69}, [459] = {.lex_state = 0, .external_lex_state = 69}, [460] = {.lex_state = 0, .external_lex_state = 69}, [461] = {.lex_state = 0, .external_lex_state = 69}, [462] = {.lex_state = 0, .external_lex_state = 69}, [463] = {.lex_state = 0, .external_lex_state = 69}, [464] = {.lex_state = 0, .external_lex_state = 69}, [465] = {.lex_state = 0, .external_lex_state = 69}, [466] = {.lex_state = 0, .external_lex_state = 69}, [467] = {.lex_state = 0, .external_lex_state = 69}, [468] = {.lex_state = 0, .external_lex_state = 69}, [469] = {.lex_state = 0, .external_lex_state = 55}, [470] = {.lex_state = 0, .external_lex_state = 69}, [471] = {.lex_state = 0, .external_lex_state = 69}, [472] = {.lex_state = 0, .external_lex_state = 69}, [473] = {.lex_state = 0, .external_lex_state = 69}, [474] = {.lex_state = 0, .external_lex_state = 70}, [475] = {.lex_state = 0, .external_lex_state = 71}, [476] = {.lex_state = 0, .external_lex_state = 70}, [477] = {.lex_state = 0, .external_lex_state = 70}, [478] = {.lex_state = 0, .external_lex_state = 72}, [479] = {.lex_state = 0, .external_lex_state = 70}, [480] = {.lex_state = 0, .external_lex_state = 70}, [481] = {.lex_state = 0, .external_lex_state = 69}, [482] = {.lex_state = 0, .external_lex_state = 73}, [483] = {.lex_state = 0, .external_lex_state = 73}, [484] = {.lex_state = 0, .external_lex_state = 73}, [485] = {.lex_state = 0, .external_lex_state = 73}, [486] = {.lex_state = 0, .external_lex_state = 69}, [487] = {.lex_state = 0, .external_lex_state = 73}, [488] = {.lex_state = 0, .external_lex_state = 73}, [489] = {.lex_state = 0, .external_lex_state = 73}, [490] = {.lex_state = 0, .external_lex_state = 73}, [491] = {.lex_state = 0, .external_lex_state = 73}, [492] = {.lex_state = 0, .external_lex_state = 71}, [493] = {.lex_state = 0, .external_lex_state = 71}, [494] = {.lex_state = 0, .external_lex_state = 73}, [495] = {.lex_state = 0, .external_lex_state = 73}, [496] = {.lex_state = 0, .external_lex_state = 73}, [497] = {.lex_state = 0, .external_lex_state = 73}, [498] = {.lex_state = 0, .external_lex_state = 74}, [499] = {.lex_state = 0, .external_lex_state = 69}, [500] = {.lex_state = 0, .external_lex_state = 73}, [501] = {.lex_state = 0, .external_lex_state = 73}, [502] = {.lex_state = 0, .external_lex_state = 69}, [503] = {.lex_state = 0, .external_lex_state = 73}, [504] = {.lex_state = 0, .external_lex_state = 74}, [505] = {.lex_state = 0, .external_lex_state = 73}, [506] = {.lex_state = 0, .external_lex_state = 73}, [507] = {.lex_state = 0, .external_lex_state = 73}, [508] = {.lex_state = 0, .external_lex_state = 73}, [509] = {.lex_state = 0, .external_lex_state = 73}, [510] = {.lex_state = 0, .external_lex_state = 73}, [511] = {.lex_state = 0, .external_lex_state = 73}, [512] = {.lex_state = 0, .external_lex_state = 73}, [513] = {.lex_state = 0, .external_lex_state = 73}, [514] = {.lex_state = 0, .external_lex_state = 73}, [515] = {.lex_state = 0, .external_lex_state = 73}, [516] = {.lex_state = 0, .external_lex_state = 73}, [517] = {.lex_state = 0, .external_lex_state = 73}, [518] = {.lex_state = 0, .external_lex_state = 73}, [519] = {.lex_state = 0, .external_lex_state = 73}, [520] = {.lex_state = 0, .external_lex_state = 73}, [521] = {.lex_state = 0, .external_lex_state = 73}, [522] = {.lex_state = 0, .external_lex_state = 72}, [523] = {.lex_state = 0, .external_lex_state = 73}, [524] = {.lex_state = 0, .external_lex_state = 73}, [525] = {.lex_state = 0, .external_lex_state = 73}, [526] = {.lex_state = 0, .external_lex_state = 73}, [527] = {.lex_state = 0, .external_lex_state = 73}, [528] = {.lex_state = 0, .external_lex_state = 73}, [529] = {.lex_state = 0, .external_lex_state = 73}, [530] = {.lex_state = 0, .external_lex_state = 73}, [531] = {.lex_state = 0, .external_lex_state = 73}, [532] = {.lex_state = 0, .external_lex_state = 73}, [533] = {.lex_state = 0, .external_lex_state = 73}, [534] = {.lex_state = 0, .external_lex_state = 73}, [535] = {.lex_state = 0, .external_lex_state = 73}, [536] = {.lex_state = 0, .external_lex_state = 73}, [537] = {.lex_state = 0, .external_lex_state = 73}, [538] = {.lex_state = 0, .external_lex_state = 75}, [539] = {.lex_state = 0, .external_lex_state = 76}, [540] = {.lex_state = 0, .external_lex_state = 74}, [541] = {.lex_state = 0, .external_lex_state = 76}, [542] = {.lex_state = 0, .external_lex_state = 74}, [543] = {.lex_state = 0, .external_lex_state = 76}, [544] = {.lex_state = 0, .external_lex_state = 76}, [545] = {.lex_state = 0, .external_lex_state = 74}, [546] = {.lex_state = 0, .external_lex_state = 76}, [547] = {.lex_state = 0, .external_lex_state = 74}, [548] = {.lex_state = 0, .external_lex_state = 74}, [549] = {.lex_state = 0, .external_lex_state = 74}, [550] = {.lex_state = 0, .external_lex_state = 74}, [551] = {.lex_state = 0, .external_lex_state = 71}, [552] = {.lex_state = 0, .external_lex_state = 77}, [553] = {.lex_state = 0, .external_lex_state = 76}, [554] = {.lex_state = 0, .external_lex_state = 78}, [555] = {.lex_state = 0, .external_lex_state = 74}, [556] = {.lex_state = 0, .external_lex_state = 71}, [557] = {.lex_state = 0, .external_lex_state = 76}, [558] = {.lex_state = 0, .external_lex_state = 76}, [559] = {.lex_state = 0, .external_lex_state = 76}, [560] = {.lex_state = 0, .external_lex_state = 76}, [561] = {.lex_state = 0, .external_lex_state = 76}, [562] = {.lex_state = 0, .external_lex_state = 76}, [563] = {.lex_state = 0, .external_lex_state = 71}, [564] = {.lex_state = 0, .external_lex_state = 71}, [565] = {.lex_state = 0, .external_lex_state = 76}, [566] = {.lex_state = 0, .external_lex_state = 74}, [567] = {.lex_state = 0, .external_lex_state = 79}, [568] = {.lex_state = 0, .external_lex_state = 74}, [569] = {.lex_state = 0, .external_lex_state = 74}, [570] = {.lex_state = 0, .external_lex_state = 74}, [571] = {.lex_state = 0, .external_lex_state = 74}, [572] = {.lex_state = 0, .external_lex_state = 74}, [573] = {.lex_state = 0, .external_lex_state = 74}, [574] = {.lex_state = 0, .external_lex_state = 74}, [575] = {.lex_state = 0, .external_lex_state = 76}, [576] = {.lex_state = 0, .external_lex_state = 74}, [577] = {.lex_state = 0, .external_lex_state = 76}, [578] = {.lex_state = 0, .external_lex_state = 76}, [579] = {.lex_state = 0, .external_lex_state = 76}, [580] = {.lex_state = 0, .external_lex_state = 74}, [581] = {.lex_state = 0, .external_lex_state = 74}, [582] = {.lex_state = 0, .external_lex_state = 76}, [583] = {.lex_state = 0, .external_lex_state = 76}, [584] = {.lex_state = 0, .external_lex_state = 76}, [585] = {.lex_state = 0, .external_lex_state = 76}, [586] = {.lex_state = 0, .external_lex_state = 73}, [587] = {.lex_state = 0, .external_lex_state = 76}, [588] = {.lex_state = 0, .external_lex_state = 76}, [589] = {.lex_state = 0, .external_lex_state = 76}, [590] = {.lex_state = 0, .external_lex_state = 76}, [591] = {.lex_state = 0, .external_lex_state = 76}, [592] = {.lex_state = 0, .external_lex_state = 76}, [593] = {.lex_state = 0, .external_lex_state = 71}, [594] = {.lex_state = 0, .external_lex_state = 74}, [595] = {.lex_state = 0, .external_lex_state = 74}, [596] = {.lex_state = 0, .external_lex_state = 74}, [597] = {.lex_state = 0, .external_lex_state = 74}, [598] = {.lex_state = 0, .external_lex_state = 74}, [599] = {.lex_state = 0, .external_lex_state = 74}, [600] = {.lex_state = 0, .external_lex_state = 74}, [601] = {.lex_state = 0, .external_lex_state = 74}, [602] = {.lex_state = 0, .external_lex_state = 74}, [603] = {.lex_state = 0, .external_lex_state = 74}, [604] = {.lex_state = 0, .external_lex_state = 74}, [605] = {.lex_state = 0, .external_lex_state = 76}, [606] = {.lex_state = 0, .external_lex_state = 74}, [607] = {.lex_state = 0, .external_lex_state = 76}, [608] = {.lex_state = 0, .external_lex_state = 76}, [609] = {.lex_state = 0, .external_lex_state = 76}, [610] = {.lex_state = 0, .external_lex_state = 74}, [611] = {.lex_state = 0, .external_lex_state = 74}, [612] = {.lex_state = 0, .external_lex_state = 74}, [613] = {.lex_state = 0, .external_lex_state = 74}, [614] = {.lex_state = 0, .external_lex_state = 73}, [615] = {.lex_state = 0, .external_lex_state = 73}, [616] = {.lex_state = 0, .external_lex_state = 74}, [617] = {.lex_state = 0, .external_lex_state = 76}, [618] = {.lex_state = 0, .external_lex_state = 76}, [619] = {.lex_state = 0, .external_lex_state = 76}, [620] = {.lex_state = 0, .external_lex_state = 76}, [621] = {.lex_state = 0, .external_lex_state = 76}, [622] = {.lex_state = 0, .external_lex_state = 76}, [623] = {.lex_state = 0, .external_lex_state = 74}, [624] = {.lex_state = 0, .external_lex_state = 74}, [625] = {.lex_state = 0, .external_lex_state = 76}, [626] = {.lex_state = 0, .external_lex_state = 74}, [627] = {.lex_state = 0, .external_lex_state = 76}, [628] = {.lex_state = 0, .external_lex_state = 76}, [629] = {.lex_state = 0, .external_lex_state = 76}, [630] = {.lex_state = 0, .external_lex_state = 76}, [631] = {.lex_state = 0, .external_lex_state = 76}, [632] = {.lex_state = 0, .external_lex_state = 74}, [633] = {.lex_state = 0, .external_lex_state = 76}, [634] = {.lex_state = 0, .external_lex_state = 76}, [635] = {.lex_state = 0, .external_lex_state = 76}, [636] = {.lex_state = 0, .external_lex_state = 74}, [637] = {.lex_state = 0, .external_lex_state = 71}, [638] = {.lex_state = 0, .external_lex_state = 71}, [639] = {.lex_state = 0, .external_lex_state = 71}, [640] = {.lex_state = 0, .external_lex_state = 76}, [641] = {.lex_state = 0, .external_lex_state = 76}, [642] = {.lex_state = 0, .external_lex_state = 76}, [643] = {.lex_state = 0, .external_lex_state = 76}, [644] = {.lex_state = 0, .external_lex_state = 76}, [645] = {.lex_state = 0, .external_lex_state = 78}, [646] = {.lex_state = 0, .external_lex_state = 76}, [647] = {.lex_state = 0, .external_lex_state = 76}, [648] = {.lex_state = 0, .external_lex_state = 73}, [649] = {.lex_state = 0, .external_lex_state = 77}, [650] = {.lex_state = 0, .external_lex_state = 76}, [651] = {.lex_state = 0, .external_lex_state = 76}, [652] = {.lex_state = 0, .external_lex_state = 76}, [653] = {.lex_state = 0, .external_lex_state = 76}, [654] = {.lex_state = 0, .external_lex_state = 76}, [655] = {.lex_state = 0, .external_lex_state = 76}, [656] = {.lex_state = 0, .external_lex_state = 76}, [657] = {.lex_state = 0, .external_lex_state = 76}, [658] = {.lex_state = 0, .external_lex_state = 76}, [659] = {.lex_state = 0, .external_lex_state = 76}, [660] = {.lex_state = 0, .external_lex_state = 77}, [661] = {.lex_state = 0, .external_lex_state = 77}, [662] = {.lex_state = 0, .external_lex_state = 71}, [663] = {.lex_state = 0, .external_lex_state = 77}, [664] = {.lex_state = 0, .external_lex_state = 76}, [665] = {.lex_state = 0, .external_lex_state = 76}, [666] = {.lex_state = 0, .external_lex_state = 76}, [667] = {.lex_state = 0, .external_lex_state = 76}, [668] = {.lex_state = 0, .external_lex_state = 76}, [669] = {.lex_state = 0, .external_lex_state = 76}, [670] = {.lex_state = 0, .external_lex_state = 79}, [671] = {.lex_state = 0, .external_lex_state = 79}, [672] = {.lex_state = 0, .external_lex_state = 75}, [673] = {.lex_state = 0, .external_lex_state = 79}, [674] = {.lex_state = 0, .external_lex_state = 75}, [675] = {.lex_state = 0, .external_lex_state = 79}, [676] = {.lex_state = 0, .external_lex_state = 76}, [677] = {.lex_state = 0, .external_lex_state = 71}, [678] = {.lex_state = 0, .external_lex_state = 76}, [679] = {.lex_state = 0, .external_lex_state = 71}, [680] = {.lex_state = 0, .external_lex_state = 76}, [681] = {.lex_state = 0, .external_lex_state = 76}, [682] = {.lex_state = 0, .external_lex_state = 76}, [683] = {.lex_state = 0, .external_lex_state = 71}, [684] = {.lex_state = 0, .external_lex_state = 71}, [685] = {.lex_state = 0, .external_lex_state = 76}, [686] = {.lex_state = 0, .external_lex_state = 76}, [687] = {.lex_state = 0, .external_lex_state = 76}, [688] = {.lex_state = 0, .external_lex_state = 76}, [689] = {.lex_state = 0, .external_lex_state = 76}, [690] = {.lex_state = 0, .external_lex_state = 76}, [691] = {.lex_state = 0, .external_lex_state = 76}, [692] = {.lex_state = 0, .external_lex_state = 74}, [693] = {.lex_state = 0, .external_lex_state = 80}, [694] = {.lex_state = 0, .external_lex_state = 81}, [695] = {.lex_state = 0, .external_lex_state = 75}, [696] = {.lex_state = 0, .external_lex_state = 75}, [697] = {.lex_state = 0, .external_lex_state = 75}, [698] = {.lex_state = 0, .external_lex_state = 81}, [699] = {.lex_state = 0, .external_lex_state = 75}, [700] = {.lex_state = 0, .external_lex_state = 75}, [701] = {.lex_state = 0, .external_lex_state = 75}, [702] = {.lex_state = 0, .external_lex_state = 78}, [703] = {.lex_state = 0, .external_lex_state = 78}, [704] = {.lex_state = 0, .external_lex_state = 78}, [705] = {.lex_state = 0, .external_lex_state = 78}, [706] = {.lex_state = 0, .external_lex_state = 78}, [707] = {.lex_state = 0, .external_lex_state = 78}, [708] = {.lex_state = 0, .external_lex_state = 78}, [709] = {.lex_state = 0, .external_lex_state = 78}, [710] = {.lex_state = 0, .external_lex_state = 75}, [711] = {.lex_state = 0, .external_lex_state = 78}, [712] = {.lex_state = 0, .external_lex_state = 78}, [713] = {.lex_state = 0, .external_lex_state = 78}, [714] = {.lex_state = 0, .external_lex_state = 78}, [715] = {.lex_state = 0, .external_lex_state = 78}, [716] = {.lex_state = 0, .external_lex_state = 78}, [717] = {.lex_state = 0, .external_lex_state = 78}, [718] = {.lex_state = 0, .external_lex_state = 78}, [719] = {.lex_state = 0, .external_lex_state = 78}, [720] = {.lex_state = 0, .external_lex_state = 78}, [721] = {.lex_state = 0, .external_lex_state = 78}, [722] = {.lex_state = 0, .external_lex_state = 78}, [723] = {.lex_state = 0, .external_lex_state = 75}, [724] = {.lex_state = 0, .external_lex_state = 78}, [725] = {.lex_state = 0, .external_lex_state = 78}, [726] = {.lex_state = 0, .external_lex_state = 78}, [727] = {.lex_state = 0, .external_lex_state = 78}, [728] = {.lex_state = 0, .external_lex_state = 78}, [729] = {.lex_state = 0, .external_lex_state = 78}, [730] = {.lex_state = 0, .external_lex_state = 78}, [731] = {.lex_state = 0, .external_lex_state = 78}, [732] = {.lex_state = 0, .external_lex_state = 78}, [733] = {.lex_state = 0, .external_lex_state = 78}, [734] = {.lex_state = 0, .external_lex_state = 78}, [735] = {.lex_state = 0, .external_lex_state = 78}, [736] = {.lex_state = 0, .external_lex_state = 78}, [737] = {.lex_state = 0, .external_lex_state = 78}, [738] = {.lex_state = 0, .external_lex_state = 78}, [739] = {.lex_state = 0, .external_lex_state = 78}, [740] = {.lex_state = 0, .external_lex_state = 78}, [741] = {.lex_state = 0, .external_lex_state = 80}, [742] = {.lex_state = 0, .external_lex_state = 78}, [743] = {.lex_state = 0, .external_lex_state = 78}, [744] = {.lex_state = 0, .external_lex_state = 78}, [745] = {.lex_state = 0, .external_lex_state = 78}, [746] = {.lex_state = 0, .external_lex_state = 75}, [747] = {.lex_state = 0, .external_lex_state = 75}, [748] = {.lex_state = 0, .external_lex_state = 75}, [749] = {.lex_state = 0, .external_lex_state = 75}, [750] = {.lex_state = 0, .external_lex_state = 80}, [751] = {.lex_state = 0, .external_lex_state = 80}, [752] = {.lex_state = 0, .external_lex_state = 80}, [753] = {.lex_state = 0, .external_lex_state = 75}, [754] = {.lex_state = 0, .external_lex_state = 80}, [755] = {.lex_state = 0, .external_lex_state = 80}, [756] = {.lex_state = 0, .external_lex_state = 80}, [757] = {.lex_state = 0, .external_lex_state = 80}, [758] = {.lex_state = 0, .external_lex_state = 81}, [759] = {.lex_state = 0, .external_lex_state = 80}, [760] = {.lex_state = 0, .external_lex_state = 80}, [761] = {.lex_state = 0, .external_lex_state = 80}, [762] = {.lex_state = 0, .external_lex_state = 80}, [763] = {.lex_state = 0, .external_lex_state = 80}, [764] = {.lex_state = 0, .external_lex_state = 80}, [765] = {.lex_state = 0, .external_lex_state = 80}, [766] = {.lex_state = 0, .external_lex_state = 80}, [767] = {.lex_state = 0, .external_lex_state = 80}, [768] = {.lex_state = 0, .external_lex_state = 80}, [769] = {.lex_state = 0, .external_lex_state = 80}, [770] = {.lex_state = 0, .external_lex_state = 80}, [771] = {.lex_state = 0, .external_lex_state = 80}, [772] = {.lex_state = 0, .external_lex_state = 80}, [773] = {.lex_state = 0, .external_lex_state = 80}, [774] = {.lex_state = 0, .external_lex_state = 80}, [775] = {.lex_state = 0, .external_lex_state = 80}, [776] = {.lex_state = 0, .external_lex_state = 80}, [777] = {.lex_state = 0, .external_lex_state = 80}, [778] = {.lex_state = 0, .external_lex_state = 80}, [779] = {.lex_state = 0, .external_lex_state = 80}, [780] = {.lex_state = 0, .external_lex_state = 80}, [781] = {.lex_state = 0, .external_lex_state = 80}, [782] = {.lex_state = 0, .external_lex_state = 80}, [783] = {.lex_state = 0, .external_lex_state = 78}, [784] = {.lex_state = 0, .external_lex_state = 79}, [785] = {.lex_state = 0, .external_lex_state = 77}, [786] = {.lex_state = 0, .external_lex_state = 77}, [787] = {.lex_state = 0, .external_lex_state = 79}, [788] = {.lex_state = 0, .external_lex_state = 79}, [789] = {.lex_state = 0, .external_lex_state = 77}, [790] = {.lex_state = 0, .external_lex_state = 77}, [791] = {.lex_state = 0, .external_lex_state = 77}, [792] = {.lex_state = 0, .external_lex_state = 77}, [793] = {.lex_state = 0, .external_lex_state = 79}, [794] = {.lex_state = 0, .external_lex_state = 76}, [795] = {.lex_state = 0, .external_lex_state = 77}, [796] = {.lex_state = 0, .external_lex_state = 79}, [797] = {.lex_state = 0, .external_lex_state = 79}, [798] = {.lex_state = 0, .external_lex_state = 79}, [799] = {.lex_state = 0, .external_lex_state = 77}, [800] = {.lex_state = 0, .external_lex_state = 77}, [801] = {.lex_state = 0, .external_lex_state = 79}, [802] = {.lex_state = 0, .external_lex_state = 79}, [803] = {.lex_state = 0, .external_lex_state = 79}, [804] = {.lex_state = 0, .external_lex_state = 77}, [805] = {.lex_state = 0, .external_lex_state = 82}, [806] = {.lex_state = 0, .external_lex_state = 77}, [807] = {.lex_state = 0, .external_lex_state = 77}, [808] = {.lex_state = 0, .external_lex_state = 77}, [809] = {.lex_state = 0, .external_lex_state = 77}, [810] = {.lex_state = 0, .external_lex_state = 77}, [811] = {.lex_state = 0, .external_lex_state = 79}, [812] = {.lex_state = 0, .external_lex_state = 79}, [813] = {.lex_state = 0, .external_lex_state = 79}, [814] = {.lex_state = 0, .external_lex_state = 79}, [815] = {.lex_state = 0, .external_lex_state = 79}, [816] = {.lex_state = 0, .external_lex_state = 77}, [817] = {.lex_state = 0, .external_lex_state = 77}, [818] = {.lex_state = 0, .external_lex_state = 77}, [819] = {.lex_state = 0, .external_lex_state = 77}, [820] = {.lex_state = 0, .external_lex_state = 77}, [821] = {.lex_state = 0, .external_lex_state = 77}, [822] = {.lex_state = 0, .external_lex_state = 77}, [823] = {.lex_state = 0, .external_lex_state = 77}, [824] = {.lex_state = 0, .external_lex_state = 77}, [825] = {.lex_state = 0, .external_lex_state = 77}, [826] = {.lex_state = 0, .external_lex_state = 79}, [827] = {.lex_state = 0, .external_lex_state = 77}, [828] = {.lex_state = 0, .external_lex_state = 77}, [829] = {.lex_state = 0, .external_lex_state = 77}, [830] = {.lex_state = 0, .external_lex_state = 77}, [831] = {.lex_state = 0, .external_lex_state = 77}, [832] = {.lex_state = 0, .external_lex_state = 77}, [833] = {.lex_state = 0, .external_lex_state = 77}, [834] = {.lex_state = 0, .external_lex_state = 77}, [835] = {.lex_state = 0, .external_lex_state = 77}, [836] = {.lex_state = 0, .external_lex_state = 77}, [837] = {.lex_state = 0, .external_lex_state = 77}, [838] = {.lex_state = 0, .external_lex_state = 77}, [839] = {.lex_state = 0, .external_lex_state = 79}, [840] = {.lex_state = 0, .external_lex_state = 79}, [841] = {.lex_state = 0, .external_lex_state = 79}, [842] = {.lex_state = 0, .external_lex_state = 77}, [843] = {.lex_state = 0, .external_lex_state = 77}, [844] = {.lex_state = 0, .external_lex_state = 77}, [845] = {.lex_state = 0, .external_lex_state = 77}, [846] = {.lex_state = 0, .external_lex_state = 77}, [847] = {.lex_state = 0, .external_lex_state = 77}, [848] = {.lex_state = 0, .external_lex_state = 77}, [849] = {.lex_state = 0, .external_lex_state = 77}, [850] = {.lex_state = 0, .external_lex_state = 77}, [851] = {.lex_state = 0, .external_lex_state = 77}, [852] = {.lex_state = 0, .external_lex_state = 77}, [853] = {.lex_state = 0, .external_lex_state = 77}, [854] = {.lex_state = 0, .external_lex_state = 77}, [855] = {.lex_state = 0, .external_lex_state = 77}, [856] = {.lex_state = 0, .external_lex_state = 77}, [857] = {.lex_state = 0, .external_lex_state = 77}, [858] = {.lex_state = 0, .external_lex_state = 77}, [859] = {.lex_state = 0, .external_lex_state = 77}, [860] = {.lex_state = 0, .external_lex_state = 77}, [861] = {.lex_state = 0, .external_lex_state = 77}, [862] = {.lex_state = 0, .external_lex_state = 77}, [863] = {.lex_state = 0, .external_lex_state = 77}, [864] = {.lex_state = 0, .external_lex_state = 79}, [865] = {.lex_state = 0, .external_lex_state = 79}, [866] = {.lex_state = 0, .external_lex_state = 79}, [867] = {.lex_state = 0, .external_lex_state = 79}, [868] = {.lex_state = 0, .external_lex_state = 79}, [869] = {.lex_state = 0, .external_lex_state = 79}, [870] = {.lex_state = 0, .external_lex_state = 79}, [871] = {.lex_state = 0, .external_lex_state = 79}, [872] = {.lex_state = 0, .external_lex_state = 79}, [873] = {.lex_state = 0, .external_lex_state = 77}, [874] = {.lex_state = 0, .external_lex_state = 77}, [875] = {.lex_state = 0, .external_lex_state = 79}, [876] = {.lex_state = 0, .external_lex_state = 79}, [877] = {.lex_state = 0, .external_lex_state = 79}, [878] = {.lex_state = 0, .external_lex_state = 79}, [879] = {.lex_state = 0, .external_lex_state = 79}, [880] = {.lex_state = 0, .external_lex_state = 79}, [881] = {.lex_state = 0, .external_lex_state = 79}, [882] = {.lex_state = 0, .external_lex_state = 79}, [883] = {.lex_state = 0, .external_lex_state = 79}, [884] = {.lex_state = 0, .external_lex_state = 79}, [885] = {.lex_state = 0, .external_lex_state = 79}, [886] = {.lex_state = 0, .external_lex_state = 79}, [887] = {.lex_state = 0, .external_lex_state = 79}, [888] = {.lex_state = 0, .external_lex_state = 79}, [889] = {.lex_state = 0, .external_lex_state = 76}, [890] = {.lex_state = 0, .external_lex_state = 77}, [891] = {.lex_state = 0, .external_lex_state = 77}, [892] = {.lex_state = 0, .external_lex_state = 79}, [893] = {.lex_state = 0, .external_lex_state = 79}, [894] = {.lex_state = 0, .external_lex_state = 79}, [895] = {.lex_state = 0, .external_lex_state = 79}, [896] = {.lex_state = 0, .external_lex_state = 79}, [897] = {.lex_state = 0, .external_lex_state = 79}, [898] = {.lex_state = 0, .external_lex_state = 79}, [899] = {.lex_state = 0, .external_lex_state = 79}, [900] = {.lex_state = 0, .external_lex_state = 79}, [901] = {.lex_state = 0, .external_lex_state = 79}, [902] = {.lex_state = 0, .external_lex_state = 79}, [903] = {.lex_state = 0, .external_lex_state = 79}, [904] = {.lex_state = 0, .external_lex_state = 79}, [905] = {.lex_state = 0, .external_lex_state = 79}, [906] = {.lex_state = 0, .external_lex_state = 79}, [907] = {.lex_state = 0, .external_lex_state = 79}, [908] = {.lex_state = 0, .external_lex_state = 79}, [909] = {.lex_state = 0, .external_lex_state = 79}, [910] = {.lex_state = 0, .external_lex_state = 79}, [911] = {.lex_state = 0, .external_lex_state = 79}, [912] = {.lex_state = 0, .external_lex_state = 79}, [913] = {.lex_state = 0, .external_lex_state = 79}, [914] = {.lex_state = 0, .external_lex_state = 79}, [915] = {.lex_state = 0, .external_lex_state = 79}, [916] = {.lex_state = 0, .external_lex_state = 79}, [917] = {.lex_state = 0, .external_lex_state = 83}, [918] = {.lex_state = 0, .external_lex_state = 83}, [919] = {.lex_state = 0, .external_lex_state = 77}, [920] = {.lex_state = 0, .external_lex_state = 77}, [921] = {.lex_state = 0, .external_lex_state = 77}, [922] = {.lex_state = 0, .external_lex_state = 77}, [923] = {.lex_state = 0, .external_lex_state = 77}, [924] = {.lex_state = 0, .external_lex_state = 79}, [925] = {.lex_state = 0, .external_lex_state = 79}, [926] = {.lex_state = 0, .external_lex_state = 79}, [927] = {.lex_state = 0, .external_lex_state = 79}, [928] = {.lex_state = 0, .external_lex_state = 82}, [929] = {.lex_state = 0, .external_lex_state = 79}, [930] = {.lex_state = 0, .external_lex_state = 77}, [931] = {.lex_state = 0, .external_lex_state = 79}, [932] = {.lex_state = 0, .external_lex_state = 79}, [933] = {.lex_state = 0, .external_lex_state = 79}, [934] = {.lex_state = 0, .external_lex_state = 79}, [935] = {.lex_state = 0, .external_lex_state = 79}, [936] = {.lex_state = 0, .external_lex_state = 79}, [937] = {.lex_state = 0, .external_lex_state = 79}, [938] = {.lex_state = 0, .external_lex_state = 79}, [939] = {.lex_state = 0, .external_lex_state = 83}, [940] = {.lex_state = 0, .external_lex_state = 79}, [941] = {.lex_state = 0, .external_lex_state = 79}, [942] = {.lex_state = 0, .external_lex_state = 77}, [943] = {.lex_state = 0, .external_lex_state = 79}, [944] = {.lex_state = 0, .external_lex_state = 77}, [945] = {.lex_state = 0, .external_lex_state = 77}, [946] = {.lex_state = 0, .external_lex_state = 77}, [947] = {.lex_state = 0, .external_lex_state = 77}, [948] = {.lex_state = 0, .external_lex_state = 77}, [949] = {.lex_state = 0, .external_lex_state = 77}, [950] = {.lex_state = 0, .external_lex_state = 77}, [951] = {.lex_state = 0, .external_lex_state = 79}, [952] = {.lex_state = 0, .external_lex_state = 77}, [953] = {.lex_state = 0, .external_lex_state = 77}, [954] = {.lex_state = 0, .external_lex_state = 77}, [955] = {.lex_state = 0, .external_lex_state = 77}, [956] = {.lex_state = 0, .external_lex_state = 79}, [957] = {.lex_state = 0, .external_lex_state = 77}, [958] = {.lex_state = 0, .external_lex_state = 77}, [959] = {.lex_state = 0, .external_lex_state = 77}, [960] = {.lex_state = 0, .external_lex_state = 77}, [961] = {.lex_state = 0, .external_lex_state = 79}, [962] = {.lex_state = 0, .external_lex_state = 79}, [963] = {.lex_state = 0, .external_lex_state = 84}, [964] = {.lex_state = 0, .external_lex_state = 85}, [965] = {.lex_state = 0, .external_lex_state = 86}, [966] = {.lex_state = 0, .external_lex_state = 86}, [967] = {.lex_state = 0, .external_lex_state = 87}, [968] = {.lex_state = 0, .external_lex_state = 72}, [969] = {.lex_state = 0, .external_lex_state = 87}, [970] = {.lex_state = 0, .external_lex_state = 88}, [971] = {.lex_state = 0, .external_lex_state = 88}, [972] = {.lex_state = 0, .external_lex_state = 89}, [973] = {.lex_state = 0, .external_lex_state = 86}, [974] = {.lex_state = 0, .external_lex_state = 86}, [975] = {.lex_state = 0, .external_lex_state = 89}, [976] = {.lex_state = 0, .external_lex_state = 90}, [977] = {.lex_state = 0, .external_lex_state = 88}, [978] = {.lex_state = 0, .external_lex_state = 89}, [979] = {.lex_state = 0, .external_lex_state = 86}, [980] = {.lex_state = 0, .external_lex_state = 82}, [981] = {.lex_state = 0, .external_lex_state = 82}, [982] = {.lex_state = 0, .external_lex_state = 88}, [983] = {.lex_state = 0, .external_lex_state = 89}, [984] = {.lex_state = 0, .external_lex_state = 82}, [985] = {.lex_state = 0, .external_lex_state = 83}, [986] = {.lex_state = 0, .external_lex_state = 84}, [987] = {.lex_state = 0, .external_lex_state = 83}, [988] = {.lex_state = 0, .external_lex_state = 83}, [989] = {.lex_state = 0, .external_lex_state = 83}, [990] = {.lex_state = 0, .external_lex_state = 83}, [991] = {.lex_state = 0, .external_lex_state = 82}, [992] = {.lex_state = 0, .external_lex_state = 88}, [993] = {.lex_state = 0, .external_lex_state = 88}, [994] = {.lex_state = 0, .external_lex_state = 89}, [995] = {.lex_state = 0, .external_lex_state = 86}, [996] = {.lex_state = 0, .external_lex_state = 83}, [997] = {.lex_state = 0, .external_lex_state = 83}, [998] = {.lex_state = 0, .external_lex_state = 86}, [999] = {.lex_state = 0, .external_lex_state = 83}, [1000] = {.lex_state = 0, .external_lex_state = 83}, [1001] = {.lex_state = 0, .external_lex_state = 83}, [1002] = {.lex_state = 0, .external_lex_state = 86}, [1003] = {.lex_state = 0, .external_lex_state = 86}, [1004] = {.lex_state = 0, .external_lex_state = 86}, [1005] = {.lex_state = 0, .external_lex_state = 83}, [1006] = {.lex_state = 0, .external_lex_state = 88}, [1007] = {.lex_state = 0, .external_lex_state = 89}, [1008] = {.lex_state = 0, .external_lex_state = 83}, [1009] = {.lex_state = 0, .external_lex_state = 91}, [1010] = {.lex_state = 0, .external_lex_state = 88}, [1011] = {.lex_state = 0, .external_lex_state = 89}, [1012] = {.lex_state = 0, .external_lex_state = 85}, [1013] = {.lex_state = 0, .external_lex_state = 89}, [1014] = {.lex_state = 0, .external_lex_state = 88}, [1015] = {.lex_state = 0, .external_lex_state = 72}, [1016] = {.lex_state = 0, .external_lex_state = 84}, [1017] = {.lex_state = 0, .external_lex_state = 88}, [1018] = {.lex_state = 0, .external_lex_state = 91}, [1019] = {.lex_state = 0, .external_lex_state = 89}, [1020] = {.lex_state = 0, .external_lex_state = 88}, [1021] = {.lex_state = 0, .external_lex_state = 89}, [1022] = {.lex_state = 0, .external_lex_state = 86}, [1023] = {.lex_state = 0, .external_lex_state = 88}, [1024] = {.lex_state = 0, .external_lex_state = 89}, [1025] = {.lex_state = 0, .external_lex_state = 92}, [1026] = {.lex_state = 0, .external_lex_state = 86}, [1027] = {.lex_state = 0, .external_lex_state = 88}, [1028] = {.lex_state = 0, .external_lex_state = 89}, [1029] = {.lex_state = 0, .external_lex_state = 89}, [1030] = {.lex_state = 0, .external_lex_state = 83}, [1031] = {.lex_state = 0, .external_lex_state = 91}, [1032] = {.lex_state = 0, .external_lex_state = 88}, [1033] = {.lex_state = 0, .external_lex_state = 89}, [1034] = {.lex_state = 0, .external_lex_state = 85}, [1035] = {.lex_state = 0, .external_lex_state = 91}, [1036] = {.lex_state = 0, .external_lex_state = 83}, [1037] = {.lex_state = 0, .external_lex_state = 83}, [1038] = {.lex_state = 0, .external_lex_state = 93}, [1039] = {.lex_state = 0, .external_lex_state = 83}, [1040] = {.lex_state = 0, .external_lex_state = 83}, [1041] = {.lex_state = 0, .external_lex_state = 86}, [1042] = {.lex_state = 0, .external_lex_state = 88}, [1043] = {.lex_state = 0, .external_lex_state = 89}, [1044] = {.lex_state = 0, .external_lex_state = 83}, [1045] = {.lex_state = 0, .external_lex_state = 94}, [1046] = {.lex_state = 0, .external_lex_state = 83}, [1047] = {.lex_state = 0, .external_lex_state = 83}, [1048] = {.lex_state = 0, .external_lex_state = 86}, [1049] = {.lex_state = 0, .external_lex_state = 70}, [1050] = {.lex_state = 0, .external_lex_state = 94}, [1051] = {.lex_state = 0, .external_lex_state = 94}, [1052] = {.lex_state = 0, .external_lex_state = 94}, [1053] = {.lex_state = 0, .external_lex_state = 94}, [1054] = {.lex_state = 0, .external_lex_state = 94}, [1055] = {.lex_state = 0, .external_lex_state = 70}, [1056] = {.lex_state = 0, .external_lex_state = 95}, [1057] = {.lex_state = 0, .external_lex_state = 70}, [1058] = {.lex_state = 0, .external_lex_state = 96}, [1059] = {.lex_state = 0, .external_lex_state = 93}, [1060] = {.lex_state = 0, .external_lex_state = 70}, [1061] = {.lex_state = 0, .external_lex_state = 94}, [1062] = {.lex_state = 0, .external_lex_state = 94}, [1063] = {.lex_state = 0, .external_lex_state = 70}, [1064] = {.lex_state = 0, .external_lex_state = 94}, [1065] = {.lex_state = 0, .external_lex_state = 70}, [1066] = {.lex_state = 0, .external_lex_state = 95}, [1067] = {.lex_state = 0, .external_lex_state = 94}, [1068] = {.lex_state = 0, .external_lex_state = 94}, [1069] = {.lex_state = 0, .external_lex_state = 70}, [1070] = {.lex_state = 0, .external_lex_state = 70}, [1071] = {.lex_state = 0, .external_lex_state = 70}, [1072] = {.lex_state = 0, .external_lex_state = 94}, [1073] = {.lex_state = 0, .external_lex_state = 70}, [1074] = {.lex_state = 0, .external_lex_state = 94}, [1075] = {.lex_state = 0, .external_lex_state = 70}, [1076] = {.lex_state = 0, .external_lex_state = 70}, [1077] = {.lex_state = 0, .external_lex_state = 90}, [1078] = {.lex_state = 0, .external_lex_state = 95}, [1079] = {.lex_state = 0, .external_lex_state = 87}, [1080] = {.lex_state = 0, .external_lex_state = 70}, [1081] = {.lex_state = 0, .external_lex_state = 95}, [1082] = {.lex_state = 0, .external_lex_state = 70}, [1083] = {.lex_state = 0, .external_lex_state = 70}, [1084] = {.lex_state = 0, .external_lex_state = 90}, [1085] = {.lex_state = 0, .external_lex_state = 70}, [1086] = {.lex_state = 0, .external_lex_state = 70}, [1087] = {.lex_state = 0, .external_lex_state = 70}, [1088] = {.lex_state = 0, .external_lex_state = 70}, [1089] = {.lex_state = 0, .external_lex_state = 95}, [1090] = {.lex_state = 0, .external_lex_state = 70}, [1091] = {.lex_state = 0, .external_lex_state = 70}, [1092] = {.lex_state = 0, .external_lex_state = 70}, [1093] = {.lex_state = 0, .external_lex_state = 70}, [1094] = {.lex_state = 0, .external_lex_state = 70}, [1095] = {.lex_state = 0, .external_lex_state = 70}, [1096] = {.lex_state = 0, .external_lex_state = 70}, [1097] = {.lex_state = 0, .external_lex_state = 90}, [1098] = {.lex_state = 0, .external_lex_state = 70}, [1099] = {.lex_state = 0, .external_lex_state = 90}, [1100] = {.lex_state = 0, .external_lex_state = 93}, [1101] = {.lex_state = 0, .external_lex_state = 93}, [1102] = {.lex_state = 0, .external_lex_state = 70}, [1103] = {.lex_state = 0, .external_lex_state = 70}, [1104] = {.lex_state = 0, .external_lex_state = 70}, [1105] = {.lex_state = 0, .external_lex_state = 70}, [1106] = {.lex_state = 0, .external_lex_state = 70}, [1107] = {.lex_state = 0, .external_lex_state = 87}, [1108] = {.lex_state = 0, .external_lex_state = 70}, [1109] = {.lex_state = 0, .external_lex_state = 70}, [1110] = {.lex_state = 0, .external_lex_state = 92}, [1111] = {.lex_state = 0, .external_lex_state = 95}, [1112] = {.lex_state = 0, .external_lex_state = 95}, [1113] = {.lex_state = 0, .external_lex_state = 92}, [1114] = {.lex_state = 0, .external_lex_state = 92}, [1115] = {.lex_state = 0, .external_lex_state = 70}, [1116] = {.lex_state = 0, .external_lex_state = 92}, [1117] = {.lex_state = 0, .external_lex_state = 87}, [1118] = {.lex_state = 0, .external_lex_state = 87}, [1119] = {.lex_state = 0, .external_lex_state = 70}, [1120] = {.lex_state = 0, .external_lex_state = 95}, [1121] = {.lex_state = 0, .external_lex_state = 95}, [1122] = {.lex_state = 0, .external_lex_state = 87}, [1123] = {.lex_state = 0, .external_lex_state = 70}, [1124] = {.lex_state = 0, .external_lex_state = 96}, [1125] = {.lex_state = 0, .external_lex_state = 97}, [1126] = {.lex_state = 0, .external_lex_state = 70}, [1127] = {.lex_state = 0, .external_lex_state = 70}, [1128] = {.lex_state = 0, .external_lex_state = 87}, [1129] = {.lex_state = 0, .external_lex_state = 70}, [1130] = {.lex_state = 0, .external_lex_state = 70}, [1131] = {.lex_state = 0, .external_lex_state = 70}, [1132] = {.lex_state = 0, .external_lex_state = 90}, [1133] = {.lex_state = 0, .external_lex_state = 70}, [1134] = {.lex_state = 0, .external_lex_state = 70}, [1135] = {.lex_state = 0, .external_lex_state = 70}, [1136] = {.lex_state = 0, .external_lex_state = 70}, [1137] = {.lex_state = 0, .external_lex_state = 87}, [1138] = {.lex_state = 0, .external_lex_state = 97}, [1139] = {.lex_state = 0, .external_lex_state = 92}, [1140] = {.lex_state = 0, .external_lex_state = 95}, [1141] = {.lex_state = 0, .external_lex_state = 95}, [1142] = {.lex_state = 0, .external_lex_state = 70}, [1143] = {.lex_state = 0, .external_lex_state = 70}, [1144] = {.lex_state = 0, .external_lex_state = 87}, [1145] = {.lex_state = 0, .external_lex_state = 92}, [1146] = {.lex_state = 0, .external_lex_state = 87}, [1147] = {.lex_state = 0, .external_lex_state = 95}, [1148] = {.lex_state = 0, .external_lex_state = 95}, [1149] = {.lex_state = 0, .external_lex_state = 87}, [1150] = {.lex_state = 0, .external_lex_state = 87}, [1151] = {.lex_state = 0, .external_lex_state = 96}, [1152] = {.lex_state = 0, .external_lex_state = 97}, [1153] = {.lex_state = 0, .external_lex_state = 87}, [1154] = {.lex_state = 0, .external_lex_state = 70}, [1155] = {.lex_state = 0, .external_lex_state = 70}, [1156] = {.lex_state = 0, .external_lex_state = 70}, [1157] = {.lex_state = 0, .external_lex_state = 70}, [1158] = {.lex_state = 0, .external_lex_state = 87}, [1159] = {.lex_state = 0, .external_lex_state = 87}, [1160] = {.lex_state = 0, .external_lex_state = 87}, [1161] = {.lex_state = 0, .external_lex_state = 92}, [1162] = {.lex_state = 0, .external_lex_state = 92}, [1163] = {.lex_state = 0, .external_lex_state = 92}, [1164] = {.lex_state = 0, .external_lex_state = 92}, [1165] = {.lex_state = 0, .external_lex_state = 96}, [1166] = {.lex_state = 0, .external_lex_state = 97}, [1167] = {.lex_state = 0, .external_lex_state = 70}, [1168] = {.lex_state = 0, .external_lex_state = 70}, [1169] = {.lex_state = 0, .external_lex_state = 70}, [1170] = {.lex_state = 0, .external_lex_state = 70}, [1171] = {.lex_state = 0, .external_lex_state = 93}, [1172] = {.lex_state = 0, .external_lex_state = 96}, [1173] = {.lex_state = 0, .external_lex_state = 97}, [1174] = {.lex_state = 0, .external_lex_state = 92}, [1175] = {.lex_state = 0, .external_lex_state = 70}, [1176] = {.lex_state = 0, .external_lex_state = 70}, [1177] = {.lex_state = 0, .external_lex_state = 70}, [1178] = {.lex_state = 0, .external_lex_state = 92}, [1179] = {.lex_state = 0, .external_lex_state = 87}, [1180] = {.lex_state = 0, .external_lex_state = 87}, [1181] = {.lex_state = 0, .external_lex_state = 87}, [1182] = {.lex_state = 0, .external_lex_state = 96}, [1183] = {.lex_state = 0, .external_lex_state = 97}, [1184] = {.lex_state = 0, .external_lex_state = 87}, [1185] = {.lex_state = 0, .external_lex_state = 70}, [1186] = {.lex_state = 0, .external_lex_state = 70}, [1187] = {.lex_state = 0, .external_lex_state = 93}, [1188] = {.lex_state = 0, .external_lex_state = 70}, [1189] = {.lex_state = 0, .external_lex_state = 92}, [1190] = {.lex_state = 0, .external_lex_state = 92}, [1191] = {.lex_state = 0, .external_lex_state = 70}, [1192] = {.lex_state = 0, .external_lex_state = 70}, [1193] = {.lex_state = 0, .external_lex_state = 96}, [1194] = {.lex_state = 0, .external_lex_state = 97}, [1195] = {.lex_state = 0, .external_lex_state = 92}, [1196] = {.lex_state = 0, .external_lex_state = 92}, [1197] = {.lex_state = 0, .external_lex_state = 70}, [1198] = {.lex_state = 0, .external_lex_state = 87}, [1199] = {.lex_state = 0, .external_lex_state = 70}, [1200] = {.lex_state = 0, .external_lex_state = 70}, [1201] = {.lex_state = 0, .external_lex_state = 70}, [1202] = {.lex_state = 0, .external_lex_state = 70}, [1203] = {.lex_state = 0, .external_lex_state = 70}, [1204] = {.lex_state = 0, .external_lex_state = 70}, [1205] = {.lex_state = 0, .external_lex_state = 70}, [1206] = {.lex_state = 0, .external_lex_state = 70}, [1207] = {.lex_state = 0, .external_lex_state = 70}, [1208] = {.lex_state = 0, .external_lex_state = 70}, [1209] = {.lex_state = 0, .external_lex_state = 94}, [1210] = {.lex_state = 0, .external_lex_state = 94}, [1211] = {.lex_state = 0, .external_lex_state = 96}, [1212] = {.lex_state = 0, .external_lex_state = 97}, [1213] = {.lex_state = 0, .external_lex_state = 94}, [1214] = {.lex_state = 0, .external_lex_state = 94}, [1215] = {.lex_state = 0, .external_lex_state = 70}, [1216] = {.lex_state = 0, .external_lex_state = 82}, [1217] = {.lex_state = 0, .external_lex_state = 86}, [1218] = {.lex_state = 0, .external_lex_state = 86}, [1219] = {.lex_state = 0, .external_lex_state = 84}, [1220] = {.lex_state = 0, .external_lex_state = 86}, [1221] = {.lex_state = 0, .external_lex_state = 86}, [1222] = {.lex_state = 0, .external_lex_state = 82}, [1223] = {.lex_state = 0, .external_lex_state = 84}, [1224] = {.lex_state = 0, .external_lex_state = 84}, [1225] = {.lex_state = 0, .external_lex_state = 84}, [1226] = {.lex_state = 0, .external_lex_state = 84}, [1227] = {.lex_state = 0, .external_lex_state = 98}, [1228] = {.lex_state = 0, .external_lex_state = 84}, [1229] = {.lex_state = 0, .external_lex_state = 86}, [1230] = {.lex_state = 0, .external_lex_state = 86}, [1231] = {.lex_state = 0, .external_lex_state = 84}, [1232] = {.lex_state = 0, .external_lex_state = 84}, [1233] = {.lex_state = 0, .external_lex_state = 84}, [1234] = {.lex_state = 0, .external_lex_state = 84}, [1235] = {.lex_state = 0, .external_lex_state = 84}, [1236] = {.lex_state = 0, .external_lex_state = 85}, [1237] = {.lex_state = 0, .external_lex_state = 98}, [1238] = {.lex_state = 0, .external_lex_state = 84}, [1239] = {.lex_state = 0, .external_lex_state = 99}, [1240] = {.lex_state = 0, .external_lex_state = 84}, [1241] = {.lex_state = 0, .external_lex_state = 84}, [1242] = {.lex_state = 0, .external_lex_state = 100}, [1243] = {.lex_state = 0, .external_lex_state = 82}, [1244] = {.lex_state = 0, .external_lex_state = 100}, [1245] = {.lex_state = 0, .external_lex_state = 84}, [1246] = {.lex_state = 0, .external_lex_state = 82}, [1247] = {.lex_state = 0, .external_lex_state = 86}, [1248] = {.lex_state = 0, .external_lex_state = 82}, [1249] = {.lex_state = 0, .external_lex_state = 84}, [1250] = {.lex_state = 0, .external_lex_state = 85}, [1251] = {.lex_state = 0, .external_lex_state = 85}, [1252] = {.lex_state = 0, .external_lex_state = 85}, [1253] = {.lex_state = 0, .external_lex_state = 84}, [1254] = {.lex_state = 0, .external_lex_state = 82}, [1255] = {.lex_state = 0, .external_lex_state = 84}, [1256] = {.lex_state = 0, .external_lex_state = 86}, [1257] = {.lex_state = 0, .external_lex_state = 84}, [1258] = {.lex_state = 0, .external_lex_state = 86}, [1259] = {.lex_state = 0, .external_lex_state = 86}, [1260] = {.lex_state = 0, .external_lex_state = 86}, [1261] = {.lex_state = 0, .external_lex_state = 86}, [1262] = {.lex_state = 0, .external_lex_state = 82}, [1263] = {.lex_state = 0, .external_lex_state = 82}, [1264] = {.lex_state = 0, .external_lex_state = 84}, [1265] = {.lex_state = 0, .external_lex_state = 86}, [1266] = {.lex_state = 0, .external_lex_state = 86}, [1267] = {.lex_state = 0, .external_lex_state = 86}, [1268] = {.lex_state = 0, .external_lex_state = 86}, [1269] = {.lex_state = 0, .external_lex_state = 84}, [1270] = {.lex_state = 0, .external_lex_state = 84}, [1271] = {.lex_state = 0, .external_lex_state = 84}, [1272] = {.lex_state = 0, .external_lex_state = 82}, [1273] = {.lex_state = 0, .external_lex_state = 86}, [1274] = {.lex_state = 0, .external_lex_state = 86}, [1275] = {.lex_state = 0, .external_lex_state = 86}, [1276] = {.lex_state = 0, .external_lex_state = 86}, [1277] = {.lex_state = 0, .external_lex_state = 86}, [1278] = {.lex_state = 0, .external_lex_state = 86}, [1279] = {.lex_state = 0, .external_lex_state = 86}, [1280] = {.lex_state = 0, .external_lex_state = 86}, [1281] = {.lex_state = 0, .external_lex_state = 86}, [1282] = {.lex_state = 0, .external_lex_state = 91}, [1283] = {.lex_state = 0, .external_lex_state = 91}, [1284] = {.lex_state = 0, .external_lex_state = 86}, [1285] = {.lex_state = 0, .external_lex_state = 86}, [1286] = {.lex_state = 0, .external_lex_state = 86}, [1287] = {.lex_state = 0, .external_lex_state = 86}, [1288] = {.lex_state = 0, .external_lex_state = 86}, [1289] = {.lex_state = 0, .external_lex_state = 86}, [1290] = {.lex_state = 0, .external_lex_state = 86}, [1291] = {.lex_state = 0, .external_lex_state = 86}, [1292] = {.lex_state = 0, .external_lex_state = 84}, [1293] = {.lex_state = 0, .external_lex_state = 84}, [1294] = {.lex_state = 0, .external_lex_state = 86}, [1295] = {.lex_state = 0, .external_lex_state = 86}, [1296] = {.lex_state = 0, .external_lex_state = 86}, [1297] = {.lex_state = 0, .external_lex_state = 86}, [1298] = {.lex_state = 0, .external_lex_state = 85}, [1299] = {.lex_state = 0, .external_lex_state = 98}, [1300] = {.lex_state = 0, .external_lex_state = 86}, [1301] = {.lex_state = 0, .external_lex_state = 85}, [1302] = {.lex_state = 0, .external_lex_state = 91}, [1303] = {.lex_state = 0, .external_lex_state = 86}, [1304] = {.lex_state = 0, .external_lex_state = 91}, [1305] = {.lex_state = 0, .external_lex_state = 85}, [1306] = {.lex_state = 0, .external_lex_state = 91}, [1307] = {.lex_state = 0, .external_lex_state = 91}, [1308] = {.lex_state = 0, .external_lex_state = 85}, [1309] = {.lex_state = 0, .external_lex_state = 91}, [1310] = {.lex_state = 0, .external_lex_state = 91}, [1311] = {.lex_state = 0, .external_lex_state = 85}, [1312] = {.lex_state = 0, .external_lex_state = 85}, [1313] = {.lex_state = 0, .external_lex_state = 86}, [1314] = {.lex_state = 0, .external_lex_state = 91}, [1315] = {.lex_state = 0, .external_lex_state = 82}, [1316] = {.lex_state = 0, .external_lex_state = 91}, [1317] = {.lex_state = 0, .external_lex_state = 85}, [1318] = {.lex_state = 0, .external_lex_state = 91}, [1319] = {.lex_state = 0, .external_lex_state = 85}, [1320] = {.lex_state = 0, .external_lex_state = 91}, [1321] = {.lex_state = 0, .external_lex_state = 91}, [1322] = {.lex_state = 0, .external_lex_state = 85}, [1323] = {.lex_state = 0, .external_lex_state = 91}, [1324] = {.lex_state = 0, .external_lex_state = 91}, [1325] = {.lex_state = 0, .external_lex_state = 91}, [1326] = {.lex_state = 0, .external_lex_state = 84}, [1327] = {.lex_state = 0, .external_lex_state = 84}, [1328] = {.lex_state = 0, .external_lex_state = 91}, [1329] = {.lex_state = 0, .external_lex_state = 91}, [1330] = {.lex_state = 0, .external_lex_state = 91}, [1331] = {.lex_state = 0, .external_lex_state = 91}, [1332] = {.lex_state = 0, .external_lex_state = 85}, [1333] = {.lex_state = 0, .external_lex_state = 86}, [1334] = {.lex_state = 0, .external_lex_state = 91}, [1335] = {.lex_state = 0, .external_lex_state = 84}, [1336] = {.lex_state = 0, .external_lex_state = 85}, [1337] = {.lex_state = 0, .external_lex_state = 85}, [1338] = {.lex_state = 0, .external_lex_state = 91}, [1339] = {.lex_state = 0, .external_lex_state = 91}, [1340] = {.lex_state = 0, .external_lex_state = 91}, [1341] = {.lex_state = 0, .external_lex_state = 91}, [1342] = {.lex_state = 0, .external_lex_state = 91}, [1343] = {.lex_state = 0, .external_lex_state = 91}, [1344] = {.lex_state = 0, .external_lex_state = 86}, [1345] = {.lex_state = 0, .external_lex_state = 82}, [1346] = {.lex_state = 0, .external_lex_state = 91}, [1347] = {.lex_state = 0, .external_lex_state = 86}, [1348] = {.lex_state = 0, .external_lex_state = 84}, [1349] = {.lex_state = 0, .external_lex_state = 91}, [1350] = {.lex_state = 0, .external_lex_state = 86}, [1351] = {.lex_state = 0, .external_lex_state = 86}, [1352] = {.lex_state = 0, .external_lex_state = 84}, [1353] = {.lex_state = 0, .external_lex_state = 85}, [1354] = {.lex_state = 0, .external_lex_state = 85}, [1355] = {.lex_state = 0, .external_lex_state = 86}, [1356] = {.lex_state = 0, .external_lex_state = 85}, [1357] = {.lex_state = 0, .external_lex_state = 85}, [1358] = {.lex_state = 0, .external_lex_state = 85}, [1359] = {.lex_state = 0, .external_lex_state = 99}, [1360] = {.lex_state = 0, .external_lex_state = 85}, [1361] = {.lex_state = 0, .external_lex_state = 91}, [1362] = {.lex_state = 0, .external_lex_state = 86}, [1363] = {.lex_state = 0, .external_lex_state = 86}, [1364] = {.lex_state = 0, .external_lex_state = 86}, [1365] = {.lex_state = 0, .external_lex_state = 86}, [1366] = {.lex_state = 0, .external_lex_state = 85}, [1367] = {.lex_state = 0, .external_lex_state = 91}, [1368] = {.lex_state = 0, .external_lex_state = 85}, [1369] = {.lex_state = 0, .external_lex_state = 91}, [1370] = {.lex_state = 0, .external_lex_state = 91}, [1371] = {.lex_state = 0, .external_lex_state = 85}, [1372] = {.lex_state = 0, .external_lex_state = 85}, [1373] = {.lex_state = 0, .external_lex_state = 91}, [1374] = {.lex_state = 0, .external_lex_state = 91}, [1375] = {.lex_state = 0, .external_lex_state = 86}, [1376] = {.lex_state = 0, .external_lex_state = 86}, [1377] = {.lex_state = 0, .external_lex_state = 86}, [1378] = {.lex_state = 0, .external_lex_state = 86}, [1379] = {.lex_state = 0, .external_lex_state = 84}, [1380] = {.lex_state = 0, .external_lex_state = 86}, [1381] = {.lex_state = 0, .external_lex_state = 86}, [1382] = {.lex_state = 0, .external_lex_state = 86}, [1383] = {.lex_state = 0, .external_lex_state = 86}, [1384] = {.lex_state = 0, .external_lex_state = 91}, [1385] = {.lex_state = 0, .external_lex_state = 91}, [1386] = {.lex_state = 0, .external_lex_state = 86}, [1387] = {.lex_state = 0, .external_lex_state = 86}, [1388] = {.lex_state = 0, .external_lex_state = 86}, [1389] = {.lex_state = 0, .external_lex_state = 86}, [1390] = {.lex_state = 0, .external_lex_state = 86}, [1391] = {.lex_state = 0, .external_lex_state = 85}, [1392] = {.lex_state = 0, .external_lex_state = 85}, [1393] = {.lex_state = 0, .external_lex_state = 86}, [1394] = {.lex_state = 0, .external_lex_state = 86}, [1395] = {.lex_state = 0, .external_lex_state = 86}, [1396] = {.lex_state = 0, .external_lex_state = 91}, [1397] = {.lex_state = 0, .external_lex_state = 91}, [1398] = {.lex_state = 0, .external_lex_state = 82}, [1399] = {.lex_state = 0, .external_lex_state = 91}, [1400] = {.lex_state = 0, .external_lex_state = 82}, [1401] = {.lex_state = 0, .external_lex_state = 86}, [1402] = {.lex_state = 0, .external_lex_state = 86}, [1403] = {.lex_state = 0, .external_lex_state = 91}, [1404] = {.lex_state = 0, .external_lex_state = 86}, [1405] = {.lex_state = 0, .external_lex_state = 85}, [1406] = {.lex_state = 0, .external_lex_state = 85}, [1407] = {.lex_state = 0, .external_lex_state = 86}, [1408] = {.lex_state = 0, .external_lex_state = 91}, [1409] = {.lex_state = 0, .external_lex_state = 85}, [1410] = {.lex_state = 0, .external_lex_state = 101}, [1411] = {.lex_state = 0, .external_lex_state = 98}, [1412] = {.lex_state = 0, .external_lex_state = 98}, [1413] = {.lex_state = 0, .external_lex_state = 98}, [1414] = {.lex_state = 0, .external_lex_state = 100}, [1415] = {.lex_state = 0, .external_lex_state = 98}, [1416] = {.lex_state = 0, .external_lex_state = 98}, [1417] = {.lex_state = 0, .external_lex_state = 98}, [1418] = {.lex_state = 0, .external_lex_state = 98}, [1419] = {.lex_state = 0, .external_lex_state = 98}, [1420] = {.lex_state = 0, .external_lex_state = 98}, [1421] = {.lex_state = 0, .external_lex_state = 98}, [1422] = {.lex_state = 0, .external_lex_state = 100}, [1423] = {.lex_state = 0, .external_lex_state = 98}, [1424] = {.lex_state = 0, .external_lex_state = 98}, [1425] = {.lex_state = 0, .external_lex_state = 98}, [1426] = {.lex_state = 0, .external_lex_state = 102}, [1427] = {.lex_state = 0, .external_lex_state = 103}, [1428] = {.lex_state = 0, .external_lex_state = 104}, [1429] = {.lex_state = 0, .external_lex_state = 102}, [1430] = {.lex_state = 0, .external_lex_state = 101}, [1431] = {.lex_state = 0, .external_lex_state = 101}, [1432] = {.lex_state = 0, .external_lex_state = 105}, [1433] = {.lex_state = 0, .external_lex_state = 101}, [1434] = {.lex_state = 0, .external_lex_state = 101}, [1435] = {.lex_state = 0, .external_lex_state = 105}, [1436] = {.lex_state = 0, .external_lex_state = 105}, [1437] = {.lex_state = 0, .external_lex_state = 105}, [1438] = {.lex_state = 0, .external_lex_state = 101}, [1439] = {.lex_state = 0, .external_lex_state = 101}, [1440] = {.lex_state = 0, .external_lex_state = 105}, [1441] = {.lex_state = 0, .external_lex_state = 105}, [1442] = {.lex_state = 0, .external_lex_state = 98}, [1443] = {.lex_state = 0, .external_lex_state = 98}, [1444] = {.lex_state = 0, .external_lex_state = 98}, [1445] = {.lex_state = 0, .external_lex_state = 98}, [1446] = {.lex_state = 0, .external_lex_state = 98}, [1447] = {.lex_state = 0, .external_lex_state = 106}, [1448] = {.lex_state = 0, .external_lex_state = 100}, [1449] = {.lex_state = 0, .external_lex_state = 107}, [1450] = {.lex_state = 0, .external_lex_state = 98}, [1451] = {.lex_state = 0, .external_lex_state = 100}, [1452] = {.lex_state = 0, .external_lex_state = 102}, [1453] = {.lex_state = 0, .external_lex_state = 98}, [1454] = {.lex_state = 0, .external_lex_state = 108}, [1455] = {.lex_state = 0, .external_lex_state = 99}, [1456] = {.lex_state = 0, .external_lex_state = 104}, [1457] = {.lex_state = 0, .external_lex_state = 106}, [1458] = {.lex_state = 0, .external_lex_state = 100}, [1459] = {.lex_state = 0, .external_lex_state = 106}, [1460] = {.lex_state = 0, .external_lex_state = 107}, [1461] = {.lex_state = 0, .external_lex_state = 98}, [1462] = {.lex_state = 0, .external_lex_state = 99}, [1463] = {.lex_state = 0, .external_lex_state = 100}, [1464] = {.lex_state = 0, .external_lex_state = 98}, [1465] = {.lex_state = 0, .external_lex_state = 102}, [1466] = {.lex_state = 0, .external_lex_state = 100}, [1467] = {.lex_state = 0, .external_lex_state = 100}, [1468] = {.lex_state = 0, .external_lex_state = 106}, [1469] = {.lex_state = 0, .external_lex_state = 100}, [1470] = {.lex_state = 0, .external_lex_state = 99}, [1471] = {.lex_state = 0, .external_lex_state = 107}, [1472] = {.lex_state = 0, .external_lex_state = 101}, [1473] = {.lex_state = 0, .external_lex_state = 106}, [1474] = {.lex_state = 0, .external_lex_state = 105}, [1475] = {.lex_state = 0, .external_lex_state = 99}, [1476] = {.lex_state = 0, .external_lex_state = 107}, [1477] = {.lex_state = 0, .external_lex_state = 98}, [1478] = {.lex_state = 0, .external_lex_state = 101}, [1479] = {.lex_state = 0, .external_lex_state = 101}, [1480] = {.lex_state = 0, .external_lex_state = 105}, [1481] = {.lex_state = 0, .external_lex_state = 105}, [1482] = {.lex_state = 0, .external_lex_state = 100}, [1483] = {.lex_state = 0, .external_lex_state = 101}, [1484] = {.lex_state = 0, .external_lex_state = 101}, [1485] = {.lex_state = 0, .external_lex_state = 98}, [1486] = {.lex_state = 0, .external_lex_state = 105}, [1487] = {.lex_state = 0, .external_lex_state = 98}, [1488] = {.lex_state = 0, .external_lex_state = 105}, [1489] = {.lex_state = 0, .external_lex_state = 104}, [1490] = {.lex_state = 0, .external_lex_state = 104}, [1491] = {.lex_state = 0, .external_lex_state = 98}, [1492] = {.lex_state = 0, .external_lex_state = 98}, [1493] = {.lex_state = 0, .external_lex_state = 98}, [1494] = {.lex_state = 0, .external_lex_state = 105}, [1495] = {.lex_state = 0, .external_lex_state = 100}, [1496] = {.lex_state = 0, .external_lex_state = 98}, [1497] = {.lex_state = 0, .external_lex_state = 98}, [1498] = {.lex_state = 0, .external_lex_state = 101}, [1499] = {.lex_state = 0, .external_lex_state = 98}, [1500] = {.lex_state = 0, .external_lex_state = 98}, [1501] = {.lex_state = 0, .external_lex_state = 98}, [1502] = {.lex_state = 0, .external_lex_state = 98}, [1503] = {.lex_state = 0, .external_lex_state = 101}, [1504] = {.lex_state = 0, .external_lex_state = 105}, [1505] = {.lex_state = 0, .external_lex_state = 105}, [1506] = {.lex_state = 0, .external_lex_state = 100}, [1507] = {.lex_state = 0, .external_lex_state = 100}, [1508] = {.lex_state = 0, .external_lex_state = 105}, [1509] = {.lex_state = 0, .external_lex_state = 100}, [1510] = {.lex_state = 0, .external_lex_state = 101}, [1511] = {.lex_state = 0, .external_lex_state = 101}, [1512] = {.lex_state = 0, .external_lex_state = 105}, [1513] = {.lex_state = 0, .external_lex_state = 105}, [1514] = {.lex_state = 0, .external_lex_state = 98}, [1515] = {.lex_state = 0, .external_lex_state = 109}, [1516] = {.lex_state = 0, .external_lex_state = 107}, [1517] = {.lex_state = 0, .external_lex_state = 98}, [1518] = {.lex_state = 0, .external_lex_state = 99}, [1519] = {.lex_state = 0, .external_lex_state = 101}, [1520] = {.lex_state = 0, .external_lex_state = 98}, [1521] = {.lex_state = 0, .external_lex_state = 98}, [1522] = {.lex_state = 0, .external_lex_state = 98}, [1523] = {.lex_state = 0, .external_lex_state = 98}, [1524] = {.lex_state = 0, .external_lex_state = 98}, [1525] = {.lex_state = 0, .external_lex_state = 106}, [1526] = {.lex_state = 0, .external_lex_state = 104}, [1527] = {.lex_state = 0, .external_lex_state = 107}, [1528] = {.lex_state = 0, .external_lex_state = 98}, [1529] = {.lex_state = 0, .external_lex_state = 98}, [1530] = {.lex_state = 0, .external_lex_state = 98}, [1531] = {.lex_state = 0, .external_lex_state = 98}, [1532] = {.lex_state = 0, .external_lex_state = 98}, [1533] = {.lex_state = 0, .external_lex_state = 98}, [1534] = {.lex_state = 0, .external_lex_state = 100}, [1535] = {.lex_state = 0, .external_lex_state = 100}, [1536] = {.lex_state = 0, .external_lex_state = 98}, [1537] = {.lex_state = 0, .external_lex_state = 98}, [1538] = {.lex_state = 0, .external_lex_state = 101}, [1539] = {.lex_state = 0, .external_lex_state = 101}, [1540] = {.lex_state = 0, .external_lex_state = 105}, [1541] = {.lex_state = 0, .external_lex_state = 105}, [1542] = {.lex_state = 0, .external_lex_state = 101}, [1543] = {.lex_state = 0, .external_lex_state = 101}, [1544] = {.lex_state = 0, .external_lex_state = 105}, [1545] = {.lex_state = 0, .external_lex_state = 101}, [1546] = {.lex_state = 0, .external_lex_state = 101}, [1547] = {.lex_state = 0, .external_lex_state = 105}, [1548] = {.lex_state = 0, .external_lex_state = 101}, [1549] = {.lex_state = 0, .external_lex_state = 101}, [1550] = {.lex_state = 0, .external_lex_state = 105}, [1551] = {.lex_state = 0, .external_lex_state = 98}, [1552] = {.lex_state = 0, .external_lex_state = 101}, [1553] = {.lex_state = 0, .external_lex_state = 105}, [1554] = {.lex_state = 0, .external_lex_state = 101}, [1555] = {.lex_state = 0, .external_lex_state = 101}, [1556] = {.lex_state = 0, .external_lex_state = 105}, [1557] = {.lex_state = 0, .external_lex_state = 101}, [1558] = {.lex_state = 0, .external_lex_state = 101}, [1559] = {.lex_state = 0, .external_lex_state = 105}, [1560] = {.lex_state = 0, .external_lex_state = 101}, [1561] = {.lex_state = 0, .external_lex_state = 101}, [1562] = {.lex_state = 0, .external_lex_state = 101}, [1563] = {.lex_state = 0, .external_lex_state = 101}, [1564] = {.lex_state = 0, .external_lex_state = 101}, [1565] = {.lex_state = 0, .external_lex_state = 101}, [1566] = {.lex_state = 0, .external_lex_state = 101}, [1567] = {.lex_state = 0, .external_lex_state = 101}, [1568] = {.lex_state = 0, .external_lex_state = 101}, [1569] = {.lex_state = 0, .external_lex_state = 101}, [1570] = {.lex_state = 0, .external_lex_state = 101}, [1571] = {.lex_state = 0, .external_lex_state = 101}, [1572] = {.lex_state = 0, .external_lex_state = 101}, [1573] = {.lex_state = 0, .external_lex_state = 101}, [1574] = {.lex_state = 0, .external_lex_state = 101}, [1575] = {.lex_state = 0, .external_lex_state = 101}, [1576] = {.lex_state = 0, .external_lex_state = 101}, [1577] = {.lex_state = 0, .external_lex_state = 101}, [1578] = {.lex_state = 0, .external_lex_state = 101}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym__eof] = ACTIONS(1), [sym__s_dir_yml_bgn] = ACTIONS(1), [sym__r_dir_yml_ver] = ACTIONS(1), [sym__s_dir_tag_bgn] = ACTIONS(1), [sym__r_dir_tag_hdl] = ACTIONS(1), [sym__r_dir_tag_pfx] = ACTIONS(1), [sym__s_dir_rsv_bgn] = ACTIONS(1), [sym__r_dir_rsv_prm] = ACTIONS(1), [sym__s_drs_end] = ACTIONS(1), [sym__s_doc_end] = ACTIONS(1), [sym__r_blk_seq_bgn] = ACTIONS(1), [sym__br_blk_seq_bgn] = ACTIONS(1), [sym__b_blk_seq_bgn] = ACTIONS(1), [sym__r_blk_key_bgn] = ACTIONS(1), [sym__br_blk_key_bgn] = ACTIONS(1), [sym__b_blk_key_bgn] = ACTIONS(1), [sym__r_blk_val_bgn] = ACTIONS(1), [sym__br_blk_val_bgn] = ACTIONS(1), [sym__b_blk_val_bgn] = ACTIONS(1), [sym__r_blk_imp_bgn] = ACTIONS(1), [sym__r_blk_lit_bgn] = ACTIONS(1), [sym__br_blk_lit_bgn] = ACTIONS(1), [sym__r_blk_fld_bgn] = ACTIONS(1), [sym__br_blk_fld_bgn] = ACTIONS(1), [sym__br_blk_str_ctn] = ACTIONS(1), [sym__r_flw_seq_bgn] = ACTIONS(1), [sym__br_flw_seq_bgn] = ACTIONS(1), [sym__b_flw_seq_bgn] = ACTIONS(1), [sym__r_flw_seq_end] = ACTIONS(1), [sym__br_flw_seq_end] = ACTIONS(1), [sym__b_flw_seq_end] = ACTIONS(1), [sym__r_flw_map_bgn] = ACTIONS(1), [sym__br_flw_map_bgn] = ACTIONS(1), [sym__b_flw_map_bgn] = ACTIONS(1), [sym__r_flw_map_end] = ACTIONS(1), [sym__br_flw_map_end] = ACTIONS(1), [sym__b_flw_map_end] = ACTIONS(1), [sym__r_flw_sep_bgn] = ACTIONS(1), [sym__br_flw_sep_bgn] = ACTIONS(1), [sym__r_flw_key_bgn] = ACTIONS(1), [sym__br_flw_key_bgn] = ACTIONS(1), [sym__r_flw_jsv_bgn] = ACTIONS(1), [sym__br_flw_jsv_bgn] = ACTIONS(1), [sym__r_flw_njv_bgn] = ACTIONS(1), [sym__br_flw_njv_bgn] = ACTIONS(1), [sym__r_dqt_str_bgn] = ACTIONS(1), [sym__br_dqt_str_bgn] = ACTIONS(1), [sym__b_dqt_str_bgn] = ACTIONS(1), [sym__r_dqt_str_ctn] = ACTIONS(1), [sym__br_dqt_str_ctn] = ACTIONS(1), [sym__r_dqt_esc_nwl] = ACTIONS(1), [sym__br_dqt_esc_nwl] = ACTIONS(1), [sym__r_dqt_esc_seq] = ACTIONS(1), [sym__br_dqt_esc_seq] = ACTIONS(1), [sym__r_dqt_str_end] = ACTIONS(1), [sym__br_dqt_str_end] = ACTIONS(1), [sym__r_sqt_str_bgn] = ACTIONS(1), [sym__br_sqt_str_bgn] = ACTIONS(1), [sym__b_sqt_str_bgn] = ACTIONS(1), [sym__r_sqt_str_ctn] = ACTIONS(1), [sym__br_sqt_str_ctn] = ACTIONS(1), [sym__r_sqt_esc_sqt] = ACTIONS(1), [sym__br_sqt_esc_sqt] = ACTIONS(1), [sym__r_sqt_str_end] = ACTIONS(1), [sym__br_sqt_str_end] = ACTIONS(1), [sym__r_sgl_pln_nul_blk] = ACTIONS(1), [sym__br_sgl_pln_nul_blk] = ACTIONS(1), [sym__b_sgl_pln_nul_blk] = ACTIONS(1), [sym__r_sgl_pln_nul_flw] = ACTIONS(1), [sym__br_sgl_pln_nul_flw] = ACTIONS(1), [sym__r_sgl_pln_bol_blk] = ACTIONS(1), [sym__br_sgl_pln_bol_blk] = ACTIONS(1), [sym__b_sgl_pln_bol_blk] = ACTIONS(1), [sym__r_sgl_pln_bol_flw] = ACTIONS(1), [sym__br_sgl_pln_bol_flw] = ACTIONS(1), [sym__r_sgl_pln_int_blk] = ACTIONS(1), [sym__br_sgl_pln_int_blk] = ACTIONS(1), [sym__b_sgl_pln_int_blk] = ACTIONS(1), [sym__r_sgl_pln_int_flw] = ACTIONS(1), [sym__br_sgl_pln_int_flw] = ACTIONS(1), [sym__r_sgl_pln_flt_blk] = ACTIONS(1), [sym__br_sgl_pln_flt_blk] = ACTIONS(1), [sym__b_sgl_pln_flt_blk] = ACTIONS(1), [sym__r_sgl_pln_flt_flw] = ACTIONS(1), [sym__br_sgl_pln_flt_flw] = ACTIONS(1), [sym__r_sgl_pln_tms_blk] = ACTIONS(1), [sym__br_sgl_pln_tms_blk] = ACTIONS(1), [sym__b_sgl_pln_tms_blk] = ACTIONS(1), [sym__r_sgl_pln_tms_flw] = ACTIONS(1), [sym__br_sgl_pln_tms_flw] = ACTIONS(1), [sym__r_sgl_pln_str_blk] = ACTIONS(1), [sym__br_sgl_pln_str_blk] = ACTIONS(1), [sym__b_sgl_pln_str_blk] = ACTIONS(1), [sym__r_sgl_pln_str_flw] = ACTIONS(1), [sym__br_sgl_pln_str_flw] = ACTIONS(1), [sym__r_mtl_pln_str_blk] = ACTIONS(1), [sym__br_mtl_pln_str_blk] = ACTIONS(1), [sym__r_mtl_pln_str_flw] = ACTIONS(1), [sym__br_mtl_pln_str_flw] = ACTIONS(1), [sym__r_tag] = ACTIONS(1), [sym__br_tag] = ACTIONS(1), [sym__b_tag] = ACTIONS(1), [sym__r_acr_bgn] = ACTIONS(1), [sym__br_acr_bgn] = ACTIONS(1), [sym__b_acr_bgn] = ACTIONS(1), [sym__r_acr_ctn] = ACTIONS(1), [sym__r_als_bgn] = ACTIONS(1), [sym__br_als_bgn] = ACTIONS(1), [sym__b_als_bgn] = ACTIONS(1), [sym__r_als_ctn] = ACTIONS(1), [sym__bl] = ACTIONS(1), [sym_comment] = ACTIONS(3), [sym__err_rec] = ACTIONS(1), }, [STATE(1)] = { [sym_stream] = STATE(1429), [sym__bgn_imp_doc] = STATE(474), [sym__drs_doc] = STATE(477), [sym__exp_doc] = STATE(479), [sym__drs_doc_end] = STATE(37), [sym__exp_doc_end] = STATE(37), [sym__bgn_imp_doc_end] = STATE(37), [sym__doc_end] = STATE(37), [sym__exp_doc_tal] = STATE(1123), [sym__s_dir] = STATE(478), [sym__s_dir_yml] = STATE(478), [sym__s_dir_tag] = STATE(478), [sym__s_dir_rsv] = STATE(478), [sym__r_prp_val] = STATE(1123), [sym__br_prp_val] = STATE(1123), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(81), [sym__br_prp] = STATE(80), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(1123), [sym__r_blk_seq_br_val] = STATE(1123), [sym__br_blk_seq_val] = STATE(1123), [sym__r_blk_seq] = STATE(1154), [sym__br_blk_seq] = STATE(1170), [sym__r_blk_seq_itm] = STATE(1004), [sym__br_blk_seq_itm] = STATE(1048), [sym__r_blk_map_r_val] = STATE(1123), [sym__r_blk_map_br_val] = STATE(1123), [sym__br_blk_map_val] = STATE(1123), [sym__r_blk_map] = STATE(1175), [sym__br_blk_map] = STATE(1200), [sym__r_blk_map_itm] = STATE(125), [sym__br_blk_map_itm] = STATE(130), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str_val] = STATE(1123), [sym__br_blk_str_val] = STATE(1123), [sym__r_blk_str] = STATE(1083), [sym__br_blk_str] = STATE(1103), [sym__r_flw_seq_val] = STATE(1123), [sym__br_flw_seq_val] = STATE(1123), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(1115), [sym__br_flw_seq] = STATE(1156), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(1123), [sym__br_flw_map_val] = STATE(1123), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(1070), [sym__br_flw_map] = STATE(1071), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(1123), [sym__br_dqt_str_val] = STATE(1123), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(1060), [sym__br_dqt_str] = STATE(1087), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(1123), [sym__br_sqt_str_val] = STATE(1123), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(1127), [sym__br_sqt_str] = STATE(1129), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(1123), [sym__br_pln_blk_val] = STATE(1123), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(1046), [sym__br_sgl_pln_blk] = STATE(997), [sym__r_mtl_pln_blk] = STATE(1094), [sym__br_mtl_pln_blk] = STATE(1095), [sym__r_als_val] = STATE(917), [sym__br_als_val] = STATE(918), [sym__r_als] = STATE(999), [sym__br_als] = STATE(1001), [sym__r_acr] = STATE(131), [sym__br_acr] = STATE(146), [aux_sym__drs_doc_repeat1] = STATE(478), [sym__eof] = ACTIONS(5), [sym__s_dir_yml_bgn] = ACTIONS(7), [sym__s_dir_tag_bgn] = ACTIONS(9), [sym__s_dir_rsv_bgn] = ACTIONS(11), [sym__s_drs_end] = ACTIONS(13), [sym__s_doc_end] = ACTIONS(15), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__r_blk_lit_bgn] = ACTIONS(29), [sym__br_blk_lit_bgn] = ACTIONS(31), [sym__r_blk_fld_bgn] = ACTIONS(29), [sym__br_blk_fld_bgn] = ACTIONS(31), [sym__r_flw_seq_bgn] = ACTIONS(33), [sym__br_flw_seq_bgn] = ACTIONS(35), [sym__r_flw_map_bgn] = ACTIONS(37), [sym__br_flw_map_bgn] = ACTIONS(39), [sym__r_dqt_str_bgn] = ACTIONS(41), [sym__br_dqt_str_bgn] = ACTIONS(43), [sym__r_sqt_str_bgn] = ACTIONS(45), [sym__br_sqt_str_bgn] = ACTIONS(47), [sym__r_sgl_pln_nul_blk] = ACTIONS(49), [sym__br_sgl_pln_nul_blk] = ACTIONS(51), [sym__r_sgl_pln_bol_blk] = ACTIONS(49), [sym__br_sgl_pln_bol_blk] = ACTIONS(51), [sym__r_sgl_pln_int_blk] = ACTIONS(49), [sym__br_sgl_pln_int_blk] = ACTIONS(51), [sym__r_sgl_pln_flt_blk] = ACTIONS(49), [sym__br_sgl_pln_flt_blk] = ACTIONS(51), [sym__r_sgl_pln_tms_blk] = ACTIONS(49), [sym__br_sgl_pln_tms_blk] = ACTIONS(51), [sym__r_sgl_pln_str_blk] = ACTIONS(49), [sym__br_sgl_pln_str_blk] = ACTIONS(51), [sym__r_mtl_pln_str_blk] = ACTIONS(53), [sym__br_mtl_pln_str_blk] = ACTIONS(55), [sym__r_tag] = ACTIONS(57), [sym__br_tag] = ACTIONS(59), [sym__r_acr_bgn] = ACTIONS(61), [sym__br_acr_bgn] = ACTIONS(63), [sym__r_als_bgn] = ACTIONS(65), [sym__br_als_bgn] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(2)] = { [sym__r_prp_val] = STATE(316), [sym__br_prp_val] = STATE(316), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(36), [sym__br_prp] = STATE(35), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(316), [sym__r_blk_seq_br_val] = STATE(316), [sym__br_blk_seq_val] = STATE(316), [sym__r_blk_seq_spc_val] = STATE(316), [sym__br_blk_seq_spc_val] = STATE(316), [sym__b_blk_seq_spc_val] = STATE(316), [sym__r_blk_seq] = STATE(340), [sym__br_blk_seq] = STATE(341), [sym__b_blk_seq_spc] = STATE(310), [sym__r_blk_seq_itm] = STATE(965), [sym__br_blk_seq_itm] = STATE(966), [sym__b_blk_seq_itm] = STATE(1041), [sym__blk_seq_itm_tal] = STATE(316), [sym__r_blk_map_r_val] = STATE(316), [sym__r_blk_map_br_val] = STATE(316), [sym__br_blk_map_val] = STATE(316), [sym__r_blk_map] = STATE(342), [sym__br_blk_map] = STATE(343), [sym__r_blk_map_itm] = STATE(142), [sym__br_blk_map_itm] = STATE(143), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__blk_exp_itm_tal] = STATE(316), [sym__r_blk_str_val] = STATE(316), [sym__br_blk_str_val] = STATE(316), [sym__r_blk_str] = STATE(344), [sym__br_blk_str] = STATE(345), [sym__r_flw_seq_val] = STATE(316), [sym__br_flw_seq_val] = STATE(316), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(346), [sym__br_flw_seq] = STATE(347), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(316), [sym__br_flw_map_val] = STATE(316), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(348), [sym__br_flw_map] = STATE(349), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(316), [sym__br_dqt_str_val] = STATE(316), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(350), [sym__br_dqt_str] = STATE(351), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(316), [sym__br_sqt_str_val] = STATE(316), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(352), [sym__br_sqt_str] = STATE(353), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(316), [sym__br_pln_blk_val] = STATE(316), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(281), [sym__br_sgl_pln_blk] = STATE(282), [sym__r_mtl_pln_blk] = STATE(356), [sym__br_mtl_pln_blk] = STATE(357), [sym__r_als_val] = STATE(262), [sym__br_als_val] = STATE(264), [sym__r_als] = STATE(266), [sym__br_als] = STATE(283), [sym__r_acr] = STATE(100), [sym__br_acr] = STATE(99), [aux_sym__r_blk_seq_repeat1] = STATE(1041), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(69), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__b_blk_key_bgn] = ACTIONS(71), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__b_blk_val_bgn] = ACTIONS(71), [sym__r_blk_lit_bgn] = ACTIONS(73), [sym__br_blk_lit_bgn] = ACTIONS(75), [sym__r_blk_fld_bgn] = ACTIONS(73), [sym__br_blk_fld_bgn] = ACTIONS(75), [sym__r_flw_seq_bgn] = ACTIONS(77), [sym__br_flw_seq_bgn] = ACTIONS(79), [sym__b_flw_seq_bgn] = ACTIONS(71), [sym__r_flw_map_bgn] = ACTIONS(81), [sym__br_flw_map_bgn] = ACTIONS(83), [sym__b_flw_map_bgn] = ACTIONS(71), [sym__r_dqt_str_bgn] = ACTIONS(85), [sym__br_dqt_str_bgn] = ACTIONS(87), [sym__b_dqt_str_bgn] = ACTIONS(71), [sym__r_sqt_str_bgn] = ACTIONS(89), [sym__br_sqt_str_bgn] = ACTIONS(91), [sym__b_sqt_str_bgn] = ACTIONS(71), [sym__r_sgl_pln_nul_blk] = ACTIONS(93), [sym__br_sgl_pln_nul_blk] = ACTIONS(95), [sym__b_sgl_pln_nul_blk] = ACTIONS(71), [sym__r_sgl_pln_bol_blk] = ACTIONS(93), [sym__br_sgl_pln_bol_blk] = ACTIONS(95), [sym__b_sgl_pln_bol_blk] = ACTIONS(71), [sym__r_sgl_pln_int_blk] = ACTIONS(93), [sym__br_sgl_pln_int_blk] = ACTIONS(95), [sym__b_sgl_pln_int_blk] = ACTIONS(71), [sym__r_sgl_pln_flt_blk] = ACTIONS(93), [sym__br_sgl_pln_flt_blk] = ACTIONS(95), [sym__b_sgl_pln_flt_blk] = ACTIONS(71), [sym__r_sgl_pln_tms_blk] = ACTIONS(93), [sym__br_sgl_pln_tms_blk] = ACTIONS(95), [sym__b_sgl_pln_tms_blk] = ACTIONS(71), [sym__r_sgl_pln_str_blk] = ACTIONS(93), [sym__br_sgl_pln_str_blk] = ACTIONS(95), [sym__b_sgl_pln_str_blk] = ACTIONS(71), [sym__r_mtl_pln_str_blk] = ACTIONS(97), [sym__br_mtl_pln_str_blk] = ACTIONS(99), [sym__r_tag] = ACTIONS(101), [sym__br_tag] = ACTIONS(103), [sym__b_tag] = ACTIONS(71), [sym__r_acr_bgn] = ACTIONS(105), [sym__br_acr_bgn] = ACTIONS(107), [sym__b_acr_bgn] = ACTIONS(71), [sym__r_als_bgn] = ACTIONS(109), [sym__br_als_bgn] = ACTIONS(111), [sym__b_als_bgn] = ACTIONS(71), [sym__bl] = ACTIONS(71), [sym_comment] = ACTIONS(3), }, [STATE(3)] = { [sym__r_prp_val] = STATE(311), [sym__br_prp_val] = STATE(311), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(36), [sym__br_prp] = STATE(35), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(311), [sym__r_blk_seq_br_val] = STATE(311), [sym__br_blk_seq_val] = STATE(311), [sym__r_blk_seq_spc_val] = STATE(311), [sym__br_blk_seq_spc_val] = STATE(311), [sym__b_blk_seq_spc_val] = STATE(311), [sym__r_blk_seq] = STATE(340), [sym__br_blk_seq] = STATE(341), [sym__b_blk_seq_spc] = STATE(310), [sym__r_blk_seq_itm] = STATE(965), [sym__br_blk_seq_itm] = STATE(966), [sym__b_blk_seq_itm] = STATE(1041), [sym__blk_seq_itm_tal] = STATE(311), [sym__r_blk_map_r_val] = STATE(311), [sym__r_blk_map_br_val] = STATE(311), [sym__br_blk_map_val] = STATE(311), [sym__r_blk_map] = STATE(342), [sym__br_blk_map] = STATE(343), [sym__r_blk_map_itm] = STATE(142), [sym__br_blk_map_itm] = STATE(143), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__blk_exp_itm_tal] = STATE(311), [sym__r_blk_str_val] = STATE(311), [sym__br_blk_str_val] = STATE(311), [sym__r_blk_str] = STATE(344), [sym__br_blk_str] = STATE(345), [sym__r_flw_seq_val] = STATE(311), [sym__br_flw_seq_val] = STATE(311), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(346), [sym__br_flw_seq] = STATE(347), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(311), [sym__br_flw_map_val] = STATE(311), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(348), [sym__br_flw_map] = STATE(349), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(311), [sym__br_dqt_str_val] = STATE(311), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(350), [sym__br_dqt_str] = STATE(351), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(311), [sym__br_sqt_str_val] = STATE(311), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(352), [sym__br_sqt_str] = STATE(353), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(311), [sym__br_pln_blk_val] = STATE(311), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(281), [sym__br_sgl_pln_blk] = STATE(282), [sym__r_mtl_pln_blk] = STATE(356), [sym__br_mtl_pln_blk] = STATE(357), [sym__r_als_val] = STATE(262), [sym__br_als_val] = STATE(264), [sym__r_als] = STATE(266), [sym__br_als] = STATE(283), [sym__r_acr] = STATE(100), [sym__br_acr] = STATE(99), [aux_sym__r_blk_seq_repeat1] = STATE(1041), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(69), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__b_blk_key_bgn] = ACTIONS(113), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__b_blk_val_bgn] = ACTIONS(113), [sym__r_blk_lit_bgn] = ACTIONS(73), [sym__br_blk_lit_bgn] = ACTIONS(75), [sym__r_blk_fld_bgn] = ACTIONS(73), [sym__br_blk_fld_bgn] = ACTIONS(75), [sym__r_flw_seq_bgn] = ACTIONS(77), [sym__br_flw_seq_bgn] = ACTIONS(79), [sym__b_flw_seq_bgn] = ACTIONS(113), [sym__r_flw_map_bgn] = ACTIONS(81), [sym__br_flw_map_bgn] = ACTIONS(83), [sym__b_flw_map_bgn] = ACTIONS(113), [sym__r_dqt_str_bgn] = ACTIONS(85), [sym__br_dqt_str_bgn] = ACTIONS(87), [sym__b_dqt_str_bgn] = ACTIONS(113), [sym__r_sqt_str_bgn] = ACTIONS(89), [sym__br_sqt_str_bgn] = ACTIONS(91), [sym__b_sqt_str_bgn] = ACTIONS(113), [sym__r_sgl_pln_nul_blk] = ACTIONS(93), [sym__br_sgl_pln_nul_blk] = ACTIONS(95), [sym__b_sgl_pln_nul_blk] = ACTIONS(113), [sym__r_sgl_pln_bol_blk] = ACTIONS(93), [sym__br_sgl_pln_bol_blk] = ACTIONS(95), [sym__b_sgl_pln_bol_blk] = ACTIONS(113), [sym__r_sgl_pln_int_blk] = ACTIONS(93), [sym__br_sgl_pln_int_blk] = ACTIONS(95), [sym__b_sgl_pln_int_blk] = ACTIONS(113), [sym__r_sgl_pln_flt_blk] = ACTIONS(93), [sym__br_sgl_pln_flt_blk] = ACTIONS(95), [sym__b_sgl_pln_flt_blk] = ACTIONS(113), [sym__r_sgl_pln_tms_blk] = ACTIONS(93), [sym__br_sgl_pln_tms_blk] = ACTIONS(95), [sym__b_sgl_pln_tms_blk] = ACTIONS(113), [sym__r_sgl_pln_str_blk] = ACTIONS(93), [sym__br_sgl_pln_str_blk] = ACTIONS(95), [sym__b_sgl_pln_str_blk] = ACTIONS(113), [sym__r_mtl_pln_str_blk] = ACTIONS(97), [sym__br_mtl_pln_str_blk] = ACTIONS(99), [sym__r_tag] = ACTIONS(101), [sym__br_tag] = ACTIONS(103), [sym__b_tag] = ACTIONS(113), [sym__r_acr_bgn] = ACTIONS(105), [sym__br_acr_bgn] = ACTIONS(107), [sym__b_acr_bgn] = ACTIONS(113), [sym__r_als_bgn] = ACTIONS(109), [sym__br_als_bgn] = ACTIONS(111), [sym__b_als_bgn] = ACTIONS(113), [sym__bl] = ACTIONS(113), [sym_comment] = ACTIONS(3), }, [STATE(4)] = { [sym__r_prp_val] = STATE(312), [sym__br_prp_val] = STATE(312), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(36), [sym__br_prp] = STATE(35), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(312), [sym__r_blk_seq_br_val] = STATE(312), [sym__br_blk_seq_val] = STATE(312), [sym__r_blk_seq_spc_val] = STATE(312), [sym__br_blk_seq_spc_val] = STATE(312), [sym__b_blk_seq_spc_val] = STATE(312), [sym__r_blk_seq] = STATE(340), [sym__br_blk_seq] = STATE(341), [sym__b_blk_seq_spc] = STATE(310), [sym__r_blk_seq_itm] = STATE(965), [sym__br_blk_seq_itm] = STATE(966), [sym__b_blk_seq_itm] = STATE(1041), [sym__blk_seq_itm_tal] = STATE(312), [sym__r_blk_map_r_val] = STATE(312), [sym__r_blk_map_br_val] = STATE(312), [sym__br_blk_map_val] = STATE(312), [sym__r_blk_map] = STATE(342), [sym__br_blk_map] = STATE(343), [sym__r_blk_map_itm] = STATE(142), [sym__br_blk_map_itm] = STATE(143), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__blk_exp_itm_tal] = STATE(312), [sym__r_blk_str_val] = STATE(312), [sym__br_blk_str_val] = STATE(312), [sym__r_blk_str] = STATE(344), [sym__br_blk_str] = STATE(345), [sym__r_flw_seq_val] = STATE(312), [sym__br_flw_seq_val] = STATE(312), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(346), [sym__br_flw_seq] = STATE(347), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(312), [sym__br_flw_map_val] = STATE(312), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(348), [sym__br_flw_map] = STATE(349), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(312), [sym__br_dqt_str_val] = STATE(312), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(350), [sym__br_dqt_str] = STATE(351), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(312), [sym__br_sqt_str_val] = STATE(312), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(352), [sym__br_sqt_str] = STATE(353), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(312), [sym__br_pln_blk_val] = STATE(312), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(281), [sym__br_sgl_pln_blk] = STATE(282), [sym__r_mtl_pln_blk] = STATE(356), [sym__br_mtl_pln_blk] = STATE(357), [sym__r_als_val] = STATE(262), [sym__br_als_val] = STATE(264), [sym__r_als] = STATE(266), [sym__br_als] = STATE(283), [sym__r_acr] = STATE(100), [sym__br_acr] = STATE(99), [aux_sym__r_blk_seq_repeat1] = STATE(1041), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(69), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__b_blk_key_bgn] = ACTIONS(115), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__b_blk_val_bgn] = ACTIONS(115), [sym__r_blk_lit_bgn] = ACTIONS(73), [sym__br_blk_lit_bgn] = ACTIONS(75), [sym__r_blk_fld_bgn] = ACTIONS(73), [sym__br_blk_fld_bgn] = ACTIONS(75), [sym__r_flw_seq_bgn] = ACTIONS(77), [sym__br_flw_seq_bgn] = ACTIONS(79), [sym__b_flw_seq_bgn] = ACTIONS(115), [sym__r_flw_map_bgn] = ACTIONS(81), [sym__br_flw_map_bgn] = ACTIONS(83), [sym__b_flw_map_bgn] = ACTIONS(115), [sym__r_dqt_str_bgn] = ACTIONS(85), [sym__br_dqt_str_bgn] = ACTIONS(87), [sym__b_dqt_str_bgn] = ACTIONS(115), [sym__r_sqt_str_bgn] = ACTIONS(89), [sym__br_sqt_str_bgn] = ACTIONS(91), [sym__b_sqt_str_bgn] = ACTIONS(115), [sym__r_sgl_pln_nul_blk] = ACTIONS(93), [sym__br_sgl_pln_nul_blk] = ACTIONS(95), [sym__b_sgl_pln_nul_blk] = ACTIONS(115), [sym__r_sgl_pln_bol_blk] = ACTIONS(93), [sym__br_sgl_pln_bol_blk] = ACTIONS(95), [sym__b_sgl_pln_bol_blk] = ACTIONS(115), [sym__r_sgl_pln_int_blk] = ACTIONS(93), [sym__br_sgl_pln_int_blk] = ACTIONS(95), [sym__b_sgl_pln_int_blk] = ACTIONS(115), [sym__r_sgl_pln_flt_blk] = ACTIONS(93), [sym__br_sgl_pln_flt_blk] = ACTIONS(95), [sym__b_sgl_pln_flt_blk] = ACTIONS(115), [sym__r_sgl_pln_tms_blk] = ACTIONS(93), [sym__br_sgl_pln_tms_blk] = ACTIONS(95), [sym__b_sgl_pln_tms_blk] = ACTIONS(115), [sym__r_sgl_pln_str_blk] = ACTIONS(93), [sym__br_sgl_pln_str_blk] = ACTIONS(95), [sym__b_sgl_pln_str_blk] = ACTIONS(115), [sym__r_mtl_pln_str_blk] = ACTIONS(97), [sym__br_mtl_pln_str_blk] = ACTIONS(99), [sym__r_tag] = ACTIONS(101), [sym__br_tag] = ACTIONS(103), [sym__b_tag] = ACTIONS(115), [sym__r_acr_bgn] = ACTIONS(105), [sym__br_acr_bgn] = ACTIONS(107), [sym__b_acr_bgn] = ACTIONS(115), [sym__r_als_bgn] = ACTIONS(109), [sym__br_als_bgn] = ACTIONS(111), [sym__b_als_bgn] = ACTIONS(115), [sym__bl] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(5)] = { [sym__r_prp_val] = STATE(317), [sym__br_prp_val] = STATE(317), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(36), [sym__br_prp] = STATE(35), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(317), [sym__r_blk_seq_br_val] = STATE(317), [sym__br_blk_seq_val] = STATE(317), [sym__r_blk_seq_spc_val] = STATE(317), [sym__br_blk_seq_spc_val] = STATE(317), [sym__b_blk_seq_spc_val] = STATE(317), [sym__r_blk_seq] = STATE(340), [sym__br_blk_seq] = STATE(341), [sym__b_blk_seq_spc] = STATE(310), [sym__r_blk_seq_itm] = STATE(965), [sym__br_blk_seq_itm] = STATE(966), [sym__b_blk_seq_itm] = STATE(1041), [sym__blk_seq_itm_tal] = STATE(317), [sym__r_blk_map_r_val] = STATE(317), [sym__r_blk_map_br_val] = STATE(317), [sym__br_blk_map_val] = STATE(317), [sym__r_blk_map] = STATE(342), [sym__br_blk_map] = STATE(343), [sym__r_blk_map_itm] = STATE(142), [sym__br_blk_map_itm] = STATE(143), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__blk_exp_itm_tal] = STATE(317), [sym__r_blk_str_val] = STATE(317), [sym__br_blk_str_val] = STATE(317), [sym__r_blk_str] = STATE(344), [sym__br_blk_str] = STATE(345), [sym__r_flw_seq_val] = STATE(317), [sym__br_flw_seq_val] = STATE(317), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(346), [sym__br_flw_seq] = STATE(347), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(317), [sym__br_flw_map_val] = STATE(317), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(348), [sym__br_flw_map] = STATE(349), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(317), [sym__br_dqt_str_val] = STATE(317), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(350), [sym__br_dqt_str] = STATE(351), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(317), [sym__br_sqt_str_val] = STATE(317), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(352), [sym__br_sqt_str] = STATE(353), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(317), [sym__br_pln_blk_val] = STATE(317), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(281), [sym__br_sgl_pln_blk] = STATE(282), [sym__r_mtl_pln_blk] = STATE(356), [sym__br_mtl_pln_blk] = STATE(357), [sym__r_als_val] = STATE(262), [sym__br_als_val] = STATE(264), [sym__r_als] = STATE(266), [sym__br_als] = STATE(283), [sym__r_acr] = STATE(100), [sym__br_acr] = STATE(99), [aux_sym__r_blk_seq_repeat1] = STATE(1041), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(69), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__b_blk_key_bgn] = ACTIONS(117), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__b_blk_val_bgn] = ACTIONS(117), [sym__r_blk_lit_bgn] = ACTIONS(73), [sym__br_blk_lit_bgn] = ACTIONS(75), [sym__r_blk_fld_bgn] = ACTIONS(73), [sym__br_blk_fld_bgn] = ACTIONS(75), [sym__r_flw_seq_bgn] = ACTIONS(77), [sym__br_flw_seq_bgn] = ACTIONS(79), [sym__b_flw_seq_bgn] = ACTIONS(117), [sym__r_flw_map_bgn] = ACTIONS(81), [sym__br_flw_map_bgn] = ACTIONS(83), [sym__b_flw_map_bgn] = ACTIONS(117), [sym__r_dqt_str_bgn] = ACTIONS(85), [sym__br_dqt_str_bgn] = ACTIONS(87), [sym__b_dqt_str_bgn] = ACTIONS(117), [sym__r_sqt_str_bgn] = ACTIONS(89), [sym__br_sqt_str_bgn] = ACTIONS(91), [sym__b_sqt_str_bgn] = ACTIONS(117), [sym__r_sgl_pln_nul_blk] = ACTIONS(93), [sym__br_sgl_pln_nul_blk] = ACTIONS(95), [sym__b_sgl_pln_nul_blk] = ACTIONS(117), [sym__r_sgl_pln_bol_blk] = ACTIONS(93), [sym__br_sgl_pln_bol_blk] = ACTIONS(95), [sym__b_sgl_pln_bol_blk] = ACTIONS(117), [sym__r_sgl_pln_int_blk] = ACTIONS(93), [sym__br_sgl_pln_int_blk] = ACTIONS(95), [sym__b_sgl_pln_int_blk] = ACTIONS(117), [sym__r_sgl_pln_flt_blk] = ACTIONS(93), [sym__br_sgl_pln_flt_blk] = ACTIONS(95), [sym__b_sgl_pln_flt_blk] = ACTIONS(117), [sym__r_sgl_pln_tms_blk] = ACTIONS(93), [sym__br_sgl_pln_tms_blk] = ACTIONS(95), [sym__b_sgl_pln_tms_blk] = ACTIONS(117), [sym__r_sgl_pln_str_blk] = ACTIONS(93), [sym__br_sgl_pln_str_blk] = ACTIONS(95), [sym__b_sgl_pln_str_blk] = ACTIONS(117), [sym__r_mtl_pln_str_blk] = ACTIONS(97), [sym__br_mtl_pln_str_blk] = ACTIONS(99), [sym__r_tag] = ACTIONS(101), [sym__br_tag] = ACTIONS(103), [sym__b_tag] = ACTIONS(117), [sym__r_acr_bgn] = ACTIONS(105), [sym__br_acr_bgn] = ACTIONS(107), [sym__b_acr_bgn] = ACTIONS(117), [sym__r_als_bgn] = ACTIONS(109), [sym__br_als_bgn] = ACTIONS(111), [sym__b_als_bgn] = ACTIONS(117), [sym__bl] = ACTIONS(117), [sym_comment] = ACTIONS(3), }, [STATE(6)] = { [sym__r_prp_val] = STATE(302), [sym__br_prp_val] = STATE(302), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(36), [sym__br_prp] = STATE(35), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(302), [sym__r_blk_seq_br_val] = STATE(302), [sym__br_blk_seq_val] = STATE(302), [sym__r_blk_seq_spc_val] = STATE(302), [sym__br_blk_seq_spc_val] = STATE(302), [sym__b_blk_seq_spc_val] = STATE(302), [sym__r_blk_seq] = STATE(340), [sym__br_blk_seq] = STATE(341), [sym__b_blk_seq_spc] = STATE(310), [sym__r_blk_seq_itm] = STATE(965), [sym__br_blk_seq_itm] = STATE(966), [sym__b_blk_seq_itm] = STATE(1041), [sym__blk_seq_itm_tal] = STATE(302), [sym__r_blk_map_r_val] = STATE(302), [sym__r_blk_map_br_val] = STATE(302), [sym__br_blk_map_val] = STATE(302), [sym__r_blk_map] = STATE(342), [sym__br_blk_map] = STATE(343), [sym__r_blk_map_itm] = STATE(142), [sym__br_blk_map_itm] = STATE(143), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__blk_exp_itm_tal] = STATE(302), [sym__r_blk_str_val] = STATE(302), [sym__br_blk_str_val] = STATE(302), [sym__r_blk_str] = STATE(344), [sym__br_blk_str] = STATE(345), [sym__r_flw_seq_val] = STATE(302), [sym__br_flw_seq_val] = STATE(302), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(346), [sym__br_flw_seq] = STATE(347), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(302), [sym__br_flw_map_val] = STATE(302), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(348), [sym__br_flw_map] = STATE(349), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(302), [sym__br_dqt_str_val] = STATE(302), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(350), [sym__br_dqt_str] = STATE(351), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(302), [sym__br_sqt_str_val] = STATE(302), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(352), [sym__br_sqt_str] = STATE(353), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(302), [sym__br_pln_blk_val] = STATE(302), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(281), [sym__br_sgl_pln_blk] = STATE(282), [sym__r_mtl_pln_blk] = STATE(356), [sym__br_mtl_pln_blk] = STATE(357), [sym__r_als_val] = STATE(262), [sym__br_als_val] = STATE(264), [sym__r_als] = STATE(266), [sym__br_als] = STATE(283), [sym__r_acr] = STATE(100), [sym__br_acr] = STATE(99), [aux_sym__r_blk_seq_repeat1] = STATE(1041), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(69), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__b_blk_key_bgn] = ACTIONS(119), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__b_blk_val_bgn] = ACTIONS(119), [sym__r_blk_lit_bgn] = ACTIONS(73), [sym__br_blk_lit_bgn] = ACTIONS(75), [sym__r_blk_fld_bgn] = ACTIONS(73), [sym__br_blk_fld_bgn] = ACTIONS(75), [sym__r_flw_seq_bgn] = ACTIONS(77), [sym__br_flw_seq_bgn] = ACTIONS(79), [sym__b_flw_seq_bgn] = ACTIONS(119), [sym__r_flw_map_bgn] = ACTIONS(81), [sym__br_flw_map_bgn] = ACTIONS(83), [sym__b_flw_map_bgn] = ACTIONS(119), [sym__r_dqt_str_bgn] = ACTIONS(85), [sym__br_dqt_str_bgn] = ACTIONS(87), [sym__b_dqt_str_bgn] = ACTIONS(119), [sym__r_sqt_str_bgn] = ACTIONS(89), [sym__br_sqt_str_bgn] = ACTIONS(91), [sym__b_sqt_str_bgn] = ACTIONS(119), [sym__r_sgl_pln_nul_blk] = ACTIONS(93), [sym__br_sgl_pln_nul_blk] = ACTIONS(95), [sym__b_sgl_pln_nul_blk] = ACTIONS(119), [sym__r_sgl_pln_bol_blk] = ACTIONS(93), [sym__br_sgl_pln_bol_blk] = ACTIONS(95), [sym__b_sgl_pln_bol_blk] = ACTIONS(119), [sym__r_sgl_pln_int_blk] = ACTIONS(93), [sym__br_sgl_pln_int_blk] = ACTIONS(95), [sym__b_sgl_pln_int_blk] = ACTIONS(119), [sym__r_sgl_pln_flt_blk] = ACTIONS(93), [sym__br_sgl_pln_flt_blk] = ACTIONS(95), [sym__b_sgl_pln_flt_blk] = ACTIONS(119), [sym__r_sgl_pln_tms_blk] = ACTIONS(93), [sym__br_sgl_pln_tms_blk] = ACTIONS(95), [sym__b_sgl_pln_tms_blk] = ACTIONS(119), [sym__r_sgl_pln_str_blk] = ACTIONS(93), [sym__br_sgl_pln_str_blk] = ACTIONS(95), [sym__b_sgl_pln_str_blk] = ACTIONS(119), [sym__r_mtl_pln_str_blk] = ACTIONS(97), [sym__br_mtl_pln_str_blk] = ACTIONS(99), [sym__r_tag] = ACTIONS(101), [sym__br_tag] = ACTIONS(103), [sym__b_tag] = ACTIONS(119), [sym__r_acr_bgn] = ACTIONS(105), [sym__br_acr_bgn] = ACTIONS(107), [sym__b_acr_bgn] = ACTIONS(119), [sym__r_als_bgn] = ACTIONS(109), [sym__br_als_bgn] = ACTIONS(111), [sym__b_als_bgn] = ACTIONS(119), [sym__bl] = ACTIONS(119), [sym_comment] = ACTIONS(3), }, [STATE(7)] = { [sym__r_prp_val] = STATE(303), [sym__br_prp_val] = STATE(303), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(36), [sym__br_prp] = STATE(35), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(303), [sym__r_blk_seq_br_val] = STATE(303), [sym__br_blk_seq_val] = STATE(303), [sym__r_blk_seq_spc_val] = STATE(303), [sym__br_blk_seq_spc_val] = STATE(303), [sym__b_blk_seq_spc_val] = STATE(303), [sym__r_blk_seq] = STATE(340), [sym__br_blk_seq] = STATE(341), [sym__b_blk_seq_spc] = STATE(310), [sym__r_blk_seq_itm] = STATE(965), [sym__br_blk_seq_itm] = STATE(966), [sym__b_blk_seq_itm] = STATE(1041), [sym__blk_seq_itm_tal] = STATE(303), [sym__r_blk_map_r_val] = STATE(303), [sym__r_blk_map_br_val] = STATE(303), [sym__br_blk_map_val] = STATE(303), [sym__r_blk_map] = STATE(342), [sym__br_blk_map] = STATE(343), [sym__r_blk_map_itm] = STATE(142), [sym__br_blk_map_itm] = STATE(143), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__blk_exp_itm_tal] = STATE(303), [sym__r_blk_str_val] = STATE(303), [sym__br_blk_str_val] = STATE(303), [sym__r_blk_str] = STATE(344), [sym__br_blk_str] = STATE(345), [sym__r_flw_seq_val] = STATE(303), [sym__br_flw_seq_val] = STATE(303), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(346), [sym__br_flw_seq] = STATE(347), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(303), [sym__br_flw_map_val] = STATE(303), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(348), [sym__br_flw_map] = STATE(349), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(303), [sym__br_dqt_str_val] = STATE(303), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(350), [sym__br_dqt_str] = STATE(351), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(303), [sym__br_sqt_str_val] = STATE(303), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(352), [sym__br_sqt_str] = STATE(353), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(303), [sym__br_pln_blk_val] = STATE(303), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(281), [sym__br_sgl_pln_blk] = STATE(282), [sym__r_mtl_pln_blk] = STATE(356), [sym__br_mtl_pln_blk] = STATE(357), [sym__r_als_val] = STATE(262), [sym__br_als_val] = STATE(264), [sym__r_als] = STATE(266), [sym__br_als] = STATE(283), [sym__r_acr] = STATE(100), [sym__br_acr] = STATE(99), [aux_sym__r_blk_seq_repeat1] = STATE(1041), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(69), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__b_blk_key_bgn] = ACTIONS(121), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__b_blk_val_bgn] = ACTIONS(121), [sym__r_blk_lit_bgn] = ACTIONS(73), [sym__br_blk_lit_bgn] = ACTIONS(75), [sym__r_blk_fld_bgn] = ACTIONS(73), [sym__br_blk_fld_bgn] = ACTIONS(75), [sym__r_flw_seq_bgn] = ACTIONS(77), [sym__br_flw_seq_bgn] = ACTIONS(79), [sym__b_flw_seq_bgn] = ACTIONS(121), [sym__r_flw_map_bgn] = ACTIONS(81), [sym__br_flw_map_bgn] = ACTIONS(83), [sym__b_flw_map_bgn] = ACTIONS(121), [sym__r_dqt_str_bgn] = ACTIONS(85), [sym__br_dqt_str_bgn] = ACTIONS(87), [sym__b_dqt_str_bgn] = ACTIONS(121), [sym__r_sqt_str_bgn] = ACTIONS(89), [sym__br_sqt_str_bgn] = ACTIONS(91), [sym__b_sqt_str_bgn] = ACTIONS(121), [sym__r_sgl_pln_nul_blk] = ACTIONS(93), [sym__br_sgl_pln_nul_blk] = ACTIONS(95), [sym__b_sgl_pln_nul_blk] = ACTIONS(121), [sym__r_sgl_pln_bol_blk] = ACTIONS(93), [sym__br_sgl_pln_bol_blk] = ACTIONS(95), [sym__b_sgl_pln_bol_blk] = ACTIONS(121), [sym__r_sgl_pln_int_blk] = ACTIONS(93), [sym__br_sgl_pln_int_blk] = ACTIONS(95), [sym__b_sgl_pln_int_blk] = ACTIONS(121), [sym__r_sgl_pln_flt_blk] = ACTIONS(93), [sym__br_sgl_pln_flt_blk] = ACTIONS(95), [sym__b_sgl_pln_flt_blk] = ACTIONS(121), [sym__r_sgl_pln_tms_blk] = ACTIONS(93), [sym__br_sgl_pln_tms_blk] = ACTIONS(95), [sym__b_sgl_pln_tms_blk] = ACTIONS(121), [sym__r_sgl_pln_str_blk] = ACTIONS(93), [sym__br_sgl_pln_str_blk] = ACTIONS(95), [sym__b_sgl_pln_str_blk] = ACTIONS(121), [sym__r_mtl_pln_str_blk] = ACTIONS(97), [sym__br_mtl_pln_str_blk] = ACTIONS(99), [sym__r_tag] = ACTIONS(101), [sym__br_tag] = ACTIONS(103), [sym__b_tag] = ACTIONS(121), [sym__r_acr_bgn] = ACTIONS(105), [sym__br_acr_bgn] = ACTIONS(107), [sym__b_acr_bgn] = ACTIONS(121), [sym__r_als_bgn] = ACTIONS(109), [sym__br_als_bgn] = ACTIONS(111), [sym__b_als_bgn] = ACTIONS(121), [sym__bl] = ACTIONS(121), [sym_comment] = ACTIONS(3), }, [STATE(8)] = { [sym__r_prp_val] = STATE(1268), [sym__br_prp_val] = STATE(1268), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(82), [sym__br_prp] = STATE(83), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(1268), [sym__r_blk_seq_br_val] = STATE(1268), [sym__br_blk_seq_val] = STATE(1268), [sym__r_blk_seq] = STATE(1386), [sym__br_blk_seq] = STATE(1387), [sym__r_blk_seq_itm] = STATE(1002), [sym__br_blk_seq_itm] = STATE(1003), [sym__blk_seq_itm_tal] = STATE(1268), [sym__r_blk_map_r_val] = STATE(1268), [sym__r_blk_map_br_val] = STATE(1268), [sym__br_blk_map_val] = STATE(1268), [sym__r_blk_map] = STATE(1388), [sym__br_blk_map] = STATE(1389), [sym__r_blk_map_itm] = STATE(134), [sym__br_blk_map_itm] = STATE(135), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str_val] = STATE(1268), [sym__br_blk_str_val] = STATE(1268), [sym__r_blk_str] = STATE(1390), [sym__br_blk_str] = STATE(1393), [sym__r_flw_seq_val] = STATE(1268), [sym__br_flw_seq_val] = STATE(1268), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(1394), [sym__br_flw_seq] = STATE(1395), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(1268), [sym__br_flw_map_val] = STATE(1268), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(1401), [sym__br_flw_map] = STATE(1402), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(1268), [sym__br_dqt_str_val] = STATE(1268), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(1404), [sym__br_dqt_str] = STATE(1407), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(1268), [sym__br_sqt_str_val] = STATE(1268), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(1217), [sym__br_sqt_str] = STATE(1218), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(1268), [sym__br_pln_blk_val] = STATE(1268), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(1117), [sym__br_sgl_pln_blk] = STATE(1118), [sym__r_mtl_pln_blk] = STATE(1220), [sym__br_mtl_pln_blk] = STATE(1221), [sym__r_als_val] = STATE(967), [sym__br_als_val] = STATE(969), [sym__r_als] = STATE(1137), [sym__br_als] = STATE(1122), [sym__r_acr] = STATE(157), [sym__br_acr] = STATE(158), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(123), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__r_blk_lit_bgn] = ACTIONS(125), [sym__br_blk_lit_bgn] = ACTIONS(127), [sym__r_blk_fld_bgn] = ACTIONS(125), [sym__br_blk_fld_bgn] = ACTIONS(127), [sym__r_flw_seq_bgn] = ACTIONS(129), [sym__br_flw_seq_bgn] = ACTIONS(131), [sym__r_flw_map_bgn] = ACTIONS(133), [sym__br_flw_map_bgn] = ACTIONS(135), [sym__r_dqt_str_bgn] = ACTIONS(137), [sym__br_dqt_str_bgn] = ACTIONS(139), [sym__r_sqt_str_bgn] = ACTIONS(141), [sym__br_sqt_str_bgn] = ACTIONS(143), [sym__r_sgl_pln_nul_blk] = ACTIONS(145), [sym__br_sgl_pln_nul_blk] = ACTIONS(147), [sym__r_sgl_pln_bol_blk] = ACTIONS(145), [sym__br_sgl_pln_bol_blk] = ACTIONS(147), [sym__r_sgl_pln_int_blk] = ACTIONS(145), [sym__br_sgl_pln_int_blk] = ACTIONS(147), [sym__r_sgl_pln_flt_blk] = ACTIONS(145), [sym__br_sgl_pln_flt_blk] = ACTIONS(147), [sym__r_sgl_pln_tms_blk] = ACTIONS(145), [sym__br_sgl_pln_tms_blk] = ACTIONS(147), [sym__r_sgl_pln_str_blk] = ACTIONS(145), [sym__br_sgl_pln_str_blk] = ACTIONS(147), [sym__r_mtl_pln_str_blk] = ACTIONS(149), [sym__br_mtl_pln_str_blk] = ACTIONS(151), [sym__r_tag] = ACTIONS(153), [sym__br_tag] = ACTIONS(155), [sym__r_acr_bgn] = ACTIONS(157), [sym__br_acr_bgn] = ACTIONS(159), [sym__r_als_bgn] = ACTIONS(161), [sym__br_als_bgn] = ACTIONS(163), [sym__bl] = ACTIONS(123), [sym_comment] = ACTIONS(3), }, [STATE(9)] = { [sym__r_prp_val] = STATE(1313), [sym__br_prp_val] = STATE(1313), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(82), [sym__br_prp] = STATE(83), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(1313), [sym__r_blk_seq_br_val] = STATE(1313), [sym__br_blk_seq_val] = STATE(1313), [sym__r_blk_seq] = STATE(1386), [sym__br_blk_seq] = STATE(1387), [sym__r_blk_seq_itm] = STATE(1002), [sym__br_blk_seq_itm] = STATE(1003), [sym__blk_seq_itm_tal] = STATE(1313), [sym__r_blk_map_r_val] = STATE(1313), [sym__r_blk_map_br_val] = STATE(1313), [sym__br_blk_map_val] = STATE(1313), [sym__r_blk_map] = STATE(1388), [sym__br_blk_map] = STATE(1389), [sym__r_blk_map_itm] = STATE(134), [sym__br_blk_map_itm] = STATE(135), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str_val] = STATE(1313), [sym__br_blk_str_val] = STATE(1313), [sym__r_blk_str] = STATE(1390), [sym__br_blk_str] = STATE(1393), [sym__r_flw_seq_val] = STATE(1313), [sym__br_flw_seq_val] = STATE(1313), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(1394), [sym__br_flw_seq] = STATE(1395), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(1313), [sym__br_flw_map_val] = STATE(1313), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(1401), [sym__br_flw_map] = STATE(1402), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(1313), [sym__br_dqt_str_val] = STATE(1313), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(1404), [sym__br_dqt_str] = STATE(1407), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(1313), [sym__br_sqt_str_val] = STATE(1313), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(1217), [sym__br_sqt_str] = STATE(1218), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(1313), [sym__br_pln_blk_val] = STATE(1313), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(1117), [sym__br_sgl_pln_blk] = STATE(1118), [sym__r_mtl_pln_blk] = STATE(1220), [sym__br_mtl_pln_blk] = STATE(1221), [sym__r_als_val] = STATE(967), [sym__br_als_val] = STATE(969), [sym__r_als] = STATE(1137), [sym__br_als] = STATE(1122), [sym__r_acr] = STATE(157), [sym__br_acr] = STATE(158), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(165), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__r_blk_lit_bgn] = ACTIONS(125), [sym__br_blk_lit_bgn] = ACTIONS(127), [sym__r_blk_fld_bgn] = ACTIONS(125), [sym__br_blk_fld_bgn] = ACTIONS(127), [sym__r_flw_seq_bgn] = ACTIONS(129), [sym__br_flw_seq_bgn] = ACTIONS(131), [sym__r_flw_map_bgn] = ACTIONS(133), [sym__br_flw_map_bgn] = ACTIONS(135), [sym__r_dqt_str_bgn] = ACTIONS(137), [sym__br_dqt_str_bgn] = ACTIONS(139), [sym__r_sqt_str_bgn] = ACTIONS(141), [sym__br_sqt_str_bgn] = ACTIONS(143), [sym__r_sgl_pln_nul_blk] = ACTIONS(145), [sym__br_sgl_pln_nul_blk] = ACTIONS(147), [sym__r_sgl_pln_bol_blk] = ACTIONS(145), [sym__br_sgl_pln_bol_blk] = ACTIONS(147), [sym__r_sgl_pln_int_blk] = ACTIONS(145), [sym__br_sgl_pln_int_blk] = ACTIONS(147), [sym__r_sgl_pln_flt_blk] = ACTIONS(145), [sym__br_sgl_pln_flt_blk] = ACTIONS(147), [sym__r_sgl_pln_tms_blk] = ACTIONS(145), [sym__br_sgl_pln_tms_blk] = ACTIONS(147), [sym__r_sgl_pln_str_blk] = ACTIONS(145), [sym__br_sgl_pln_str_blk] = ACTIONS(147), [sym__r_mtl_pln_str_blk] = ACTIONS(149), [sym__br_mtl_pln_str_blk] = ACTIONS(151), [sym__r_tag] = ACTIONS(153), [sym__br_tag] = ACTIONS(155), [sym__r_acr_bgn] = ACTIONS(157), [sym__br_acr_bgn] = ACTIONS(159), [sym__r_als_bgn] = ACTIONS(161), [sym__br_als_bgn] = ACTIONS(163), [sym__bl] = ACTIONS(165), [sym_comment] = ACTIONS(3), }, [STATE(10)] = { [sym__r_prp_val] = STATE(1267), [sym__br_prp_val] = STATE(1267), [sym__r_sgl_prp_val] = STATE(1227), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(82), [sym__br_prp] = STATE(83), [sym__r_sgl_prp] = STATE(308), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_r_val] = STATE(1267), [sym__r_blk_seq_br_val] = STATE(1267), [sym__br_blk_seq_val] = STATE(1267), [sym__r_blk_seq] = STATE(1386), [sym__br_blk_seq] = STATE(1387), [sym__r_blk_seq_itm] = STATE(1002), [sym__br_blk_seq_itm] = STATE(1003), [sym__blk_seq_itm_tal] = STATE(1267), [sym__r_blk_map_r_val] = STATE(1267), [sym__r_blk_map_br_val] = STATE(1267), [sym__br_blk_map_val] = STATE(1267), [sym__r_blk_map] = STATE(1388), [sym__br_blk_map] = STATE(1389), [sym__r_blk_map_itm] = STATE(134), [sym__br_blk_map_itm] = STATE(135), [sym__r_blk_exp_itm] = STATE(318), [sym__br_blk_exp_itm] = STATE(319), [sym__r_blk_key_itm] = STATE(277), [sym__br_blk_key_itm] = STATE(278), [sym__r_blk_val_itm] = STATE(291), [sym__br_blk_val_itm] = STATE(328), [sym__r_blk_imp_itm] = STATE(360), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str_val] = STATE(1267), [sym__br_blk_str_val] = STATE(1267), [sym__r_blk_str] = STATE(1390), [sym__br_blk_str] = STATE(1393), [sym__r_flw_seq_val] = STATE(1267), [sym__br_flw_seq_val] = STATE(1267), [sym__r_sgl_flw_seq_val] = STATE(1227), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(1394), [sym__br_flw_seq] = STATE(1395), [sym__r_sgl_flw_seq] = STATE(1420), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(1267), [sym__br_flw_map_val] = STATE(1267), [sym__r_sgl_flw_map_val] = STATE(1227), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(1401), [sym__br_flw_map] = STATE(1402), [sym__r_sgl_flw_map] = STATE(1442), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(1267), [sym__br_dqt_str_val] = STATE(1267), [sym__r_sgl_dqt_str_val] = STATE(1227), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(1404), [sym__br_dqt_str] = STATE(1407), [sym__r_sgl_dqt_str] = STATE(1453), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(1267), [sym__br_sqt_str_val] = STATE(1267), [sym__r_sgl_sqt_str_val] = STATE(1227), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(1217), [sym__br_sqt_str] = STATE(1218), [sym__r_sgl_sqt_str] = STATE(1411), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(1267), [sym__br_pln_blk_val] = STATE(1267), [sym__r_sgl_pln_blk_val] = STATE(1227), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(1117), [sym__br_sgl_pln_blk] = STATE(1118), [sym__r_mtl_pln_blk] = STATE(1220), [sym__br_mtl_pln_blk] = STATE(1221), [sym__r_als_val] = STATE(967), [sym__br_als_val] = STATE(969), [sym__r_als] = STATE(1137), [sym__br_als] = STATE(1122), [sym__r_acr] = STATE(157), [sym__br_acr] = STATE(158), [sym__r_blk_seq_bgn] = ACTIONS(17), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(167), [sym__r_blk_key_bgn] = ACTIONS(21), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__r_blk_val_bgn] = ACTIONS(25), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__r_blk_lit_bgn] = ACTIONS(125), [sym__br_blk_lit_bgn] = ACTIONS(127), [sym__r_blk_fld_bgn] = ACTIONS(125), [sym__br_blk_fld_bgn] = ACTIONS(127), [sym__r_flw_seq_bgn] = ACTIONS(129), [sym__br_flw_seq_bgn] = ACTIONS(131), [sym__r_flw_map_bgn] = ACTIONS(133), [sym__br_flw_map_bgn] = ACTIONS(135), [sym__r_dqt_str_bgn] = ACTIONS(137), [sym__br_dqt_str_bgn] = ACTIONS(139), [sym__r_sqt_str_bgn] = ACTIONS(141), [sym__br_sqt_str_bgn] = ACTIONS(143), [sym__r_sgl_pln_nul_blk] = ACTIONS(145), [sym__br_sgl_pln_nul_blk] = ACTIONS(147), [sym__r_sgl_pln_bol_blk] = ACTIONS(145), [sym__br_sgl_pln_bol_blk] = ACTIONS(147), [sym__r_sgl_pln_int_blk] = ACTIONS(145), [sym__br_sgl_pln_int_blk] = ACTIONS(147), [sym__r_sgl_pln_flt_blk] = ACTIONS(145), [sym__br_sgl_pln_flt_blk] = ACTIONS(147), [sym__r_sgl_pln_tms_blk] = ACTIONS(145), [sym__br_sgl_pln_tms_blk] = ACTIONS(147), [sym__r_sgl_pln_str_blk] = ACTIONS(145), [sym__br_sgl_pln_str_blk] = ACTIONS(147), [sym__r_mtl_pln_str_blk] = ACTIONS(149), [sym__br_mtl_pln_str_blk] = ACTIONS(151), [sym__r_tag] = ACTIONS(153), [sym__br_tag] = ACTIONS(155), [sym__r_acr_bgn] = ACTIONS(157), [sym__br_acr_bgn] = ACTIONS(159), [sym__r_als_bgn] = ACTIONS(161), [sym__br_als_bgn] = ACTIONS(163), [sym__bl] = ACTIONS(167), [sym_comment] = ACTIONS(3), }, [STATE(11)] = { [sym__r_prp_val] = STATE(300), [sym__br_prp_val] = STATE(300), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(36), [sym__br_prp] = STATE(35), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_br_val] = STATE(300), [sym__br_blk_seq_val] = STATE(300), [sym__r_blk_seq_spc_val] = STATE(300), [sym__br_blk_seq_spc_val] = STATE(300), [sym__b_blk_seq_spc_val] = STATE(300), [sym__br_blk_seq] = STATE(341), [sym__b_blk_seq_spc] = STATE(310), [sym__br_blk_seq_itm] = STATE(966), [sym__b_blk_seq_itm] = STATE(1041), [sym__r_blk_map_br_val] = STATE(300), [sym__br_blk_map_val] = STATE(300), [sym__br_blk_map] = STATE(343), [sym__br_blk_map_itm] = STATE(143), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str_val] = STATE(300), [sym__br_blk_str_val] = STATE(300), [sym__r_blk_str] = STATE(344), [sym__br_blk_str] = STATE(345), [sym__r_flw_seq_val] = STATE(300), [sym__br_flw_seq_val] = STATE(300), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(346), [sym__br_flw_seq] = STATE(347), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(300), [sym__br_flw_map_val] = STATE(300), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(348), [sym__br_flw_map] = STATE(349), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(300), [sym__br_dqt_str_val] = STATE(300), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(350), [sym__br_dqt_str] = STATE(351), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(300), [sym__br_sqt_str_val] = STATE(300), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(352), [sym__br_sqt_str] = STATE(353), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(300), [sym__br_pln_blk_val] = STATE(300), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(356), [sym__br_sgl_pln_blk] = STATE(282), [sym__r_mtl_pln_blk] = STATE(356), [sym__br_mtl_pln_blk] = STATE(357), [sym__r_als_val] = STATE(300), [sym__br_als_val] = STATE(263), [sym__r_als] = STATE(330), [sym__br_als] = STATE(283), [sym__r_acr] = STATE(105), [sym__br_acr] = STATE(99), [aux_sym__r_blk_seq_repeat1] = STATE(1041), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(69), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__b_blk_key_bgn] = ACTIONS(169), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__b_blk_val_bgn] = ACTIONS(169), [sym__r_blk_lit_bgn] = ACTIONS(73), [sym__br_blk_lit_bgn] = ACTIONS(75), [sym__r_blk_fld_bgn] = ACTIONS(73), [sym__br_blk_fld_bgn] = ACTIONS(75), [sym__r_flw_seq_bgn] = ACTIONS(171), [sym__br_flw_seq_bgn] = ACTIONS(79), [sym__b_flw_seq_bgn] = ACTIONS(169), [sym__r_flw_map_bgn] = ACTIONS(173), [sym__br_flw_map_bgn] = ACTIONS(83), [sym__b_flw_map_bgn] = ACTIONS(169), [sym__r_dqt_str_bgn] = ACTIONS(175), [sym__br_dqt_str_bgn] = ACTIONS(87), [sym__b_dqt_str_bgn] = ACTIONS(169), [sym__r_sqt_str_bgn] = ACTIONS(177), [sym__br_sqt_str_bgn] = ACTIONS(91), [sym__b_sqt_str_bgn] = ACTIONS(169), [sym__r_sgl_pln_nul_blk] = ACTIONS(179), [sym__br_sgl_pln_nul_blk] = ACTIONS(95), [sym__b_sgl_pln_nul_blk] = ACTIONS(169), [sym__r_sgl_pln_bol_blk] = ACTIONS(179), [sym__br_sgl_pln_bol_blk] = ACTIONS(95), [sym__b_sgl_pln_bol_blk] = ACTIONS(169), [sym__r_sgl_pln_int_blk] = ACTIONS(179), [sym__br_sgl_pln_int_blk] = ACTIONS(95), [sym__b_sgl_pln_int_blk] = ACTIONS(169), [sym__r_sgl_pln_flt_blk] = ACTIONS(179), [sym__br_sgl_pln_flt_blk] = ACTIONS(95), [sym__b_sgl_pln_flt_blk] = ACTIONS(169), [sym__r_sgl_pln_tms_blk] = ACTIONS(179), [sym__br_sgl_pln_tms_blk] = ACTIONS(95), [sym__b_sgl_pln_tms_blk] = ACTIONS(169), [sym__r_sgl_pln_str_blk] = ACTIONS(179), [sym__br_sgl_pln_str_blk] = ACTIONS(95), [sym__b_sgl_pln_str_blk] = ACTIONS(169), [sym__r_mtl_pln_str_blk] = ACTIONS(97), [sym__br_mtl_pln_str_blk] = ACTIONS(99), [sym__r_tag] = ACTIONS(181), [sym__br_tag] = ACTIONS(103), [sym__b_tag] = ACTIONS(169), [sym__r_acr_bgn] = ACTIONS(183), [sym__br_acr_bgn] = ACTIONS(107), [sym__b_acr_bgn] = ACTIONS(169), [sym__r_als_bgn] = ACTIONS(185), [sym__br_als_bgn] = ACTIONS(111), [sym__b_als_bgn] = ACTIONS(169), [sym__bl] = ACTIONS(169), [sym_comment] = ACTIONS(3), }, [STATE(12)] = { [sym__exp_doc_tal] = STATE(1143), [sym__r_prp_val] = STATE(1143), [sym__br_prp_val] = STATE(1143), [sym__br_sgl_prp_val] = STATE(1237), [sym__r_prp] = STATE(81), [sym__br_prp] = STATE(80), [sym__br_sgl_prp] = STATE(309), [sym__r_blk_seq_br_val] = STATE(1143), [sym__br_blk_seq_val] = STATE(1143), [sym__br_blk_seq] = STATE(1170), [sym__br_blk_seq_itm] = STATE(1048), [sym__r_blk_map_br_val] = STATE(1143), [sym__br_blk_map_val] = STATE(1143), [sym__br_blk_map] = STATE(1200), [sym__br_blk_map_itm] = STATE(130), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str_val] = STATE(1143), [sym__br_blk_str_val] = STATE(1143), [sym__r_blk_str] = STATE(1083), [sym__br_blk_str] = STATE(1103), [sym__r_flw_seq_val] = STATE(1143), [sym__br_flw_seq_val] = STATE(1143), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(1115), [sym__br_flw_seq] = STATE(1156), [sym__br_sgl_flw_seq] = STATE(1551), [sym__r_flw_map_val] = STATE(1143), [sym__br_flw_map_val] = STATE(1143), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(1070), [sym__br_flw_map] = STATE(1071), [sym__br_sgl_flw_map] = STATE(1514), [sym__r_dqt_str_val] = STATE(1143), [sym__br_dqt_str_val] = STATE(1143), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(1060), [sym__br_dqt_str] = STATE(1087), [sym__br_sgl_dqt_str] = STATE(1446), [sym__r_sqt_str_val] = STATE(1143), [sym__br_sqt_str_val] = STATE(1143), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(1127), [sym__br_sqt_str] = STATE(1129), [sym__br_sgl_sqt_str] = STATE(1417), [sym__r_pln_blk_val] = STATE(1143), [sym__br_pln_blk_val] = STATE(1143), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(1094), [sym__br_sgl_pln_blk] = STATE(997), [sym__r_mtl_pln_blk] = STATE(1094), [sym__br_mtl_pln_blk] = STATE(1095), [sym__r_als_val] = STATE(1143), [sym__br_als_val] = STATE(918), [sym__r_als] = STATE(1049), [sym__br_als] = STATE(1001), [sym__r_acr] = STATE(160), [sym__br_acr] = STATE(146), [sym__eof] = ACTIONS(187), [sym__s_drs_end] = ACTIONS(187), [sym__s_doc_end] = ACTIONS(187), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__r_blk_lit_bgn] = ACTIONS(29), [sym__br_blk_lit_bgn] = ACTIONS(31), [sym__r_blk_fld_bgn] = ACTIONS(29), [sym__br_blk_fld_bgn] = ACTIONS(31), [sym__r_flw_seq_bgn] = ACTIONS(189), [sym__br_flw_seq_bgn] = ACTIONS(35), [sym__r_flw_map_bgn] = ACTIONS(191), [sym__br_flw_map_bgn] = ACTIONS(39), [sym__r_dqt_str_bgn] = ACTIONS(193), [sym__br_dqt_str_bgn] = ACTIONS(43), [sym__r_sqt_str_bgn] = ACTIONS(195), [sym__br_sqt_str_bgn] = ACTIONS(47), [sym__r_sgl_pln_nul_blk] = ACTIONS(197), [sym__br_sgl_pln_nul_blk] = ACTIONS(51), [sym__r_sgl_pln_bol_blk] = ACTIONS(197), [sym__br_sgl_pln_bol_blk] = ACTIONS(51), [sym__r_sgl_pln_int_blk] = ACTIONS(197), [sym__br_sgl_pln_int_blk] = ACTIONS(51), [sym__r_sgl_pln_flt_blk] = ACTIONS(197), [sym__br_sgl_pln_flt_blk] = ACTIONS(51), [sym__r_sgl_pln_tms_blk] = ACTIONS(197), [sym__br_sgl_pln_tms_blk] = ACTIONS(51), [sym__r_sgl_pln_str_blk] = ACTIONS(197), [sym__br_sgl_pln_str_blk] = ACTIONS(51), [sym__r_mtl_pln_str_blk] = ACTIONS(53), [sym__br_mtl_pln_str_blk] = ACTIONS(55), [sym__r_tag] = ACTIONS(199), [sym__br_tag] = ACTIONS(59), [sym__r_acr_bgn] = ACTIONS(201), [sym__br_acr_bgn] = ACTIONS(63), [sym__r_als_bgn] = ACTIONS(203), [sym__br_als_bgn] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(13)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(1133), [sym__sgl_flw_map_tal] = STATE(1517), [sym__r_flw_map_dat] = STATE(1138), [sym__br_flw_map_dat] = STATE(1138), [sym__r_sgl_flw_col_dat] = STATE(1516), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(213), [sym__br_flw_map_end] = ACTIONS(215), [sym__b_flw_map_end] = ACTIONS(215), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(14)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(1076), [sym__sgl_flw_map_tal] = STATE(1450), [sym__r_flw_map_dat] = STATE(1138), [sym__br_flw_map_dat] = STATE(1138), [sym__r_sgl_flw_col_dat] = STATE(1516), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(213), [sym__br_flw_map_end] = ACTIONS(253), [sym__b_flw_map_end] = ACTIONS(253), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(15)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(1258), [sym__sgl_flw_map_tal] = STATE(1517), [sym__r_flw_map_dat] = STATE(1125), [sym__br_flw_map_dat] = STATE(1125), [sym__r_sgl_flw_col_dat] = STATE(1516), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(255), [sym__br_flw_map_end] = ACTIONS(257), [sym__b_flw_map_end] = ACTIONS(257), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(16)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(370), [sym__sgl_flw_map_tal] = STATE(1450), [sym__r_flw_map_dat] = STATE(1152), [sym__br_flw_map_dat] = STATE(1152), [sym__r_sgl_flw_col_dat] = STATE(1516), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(259), [sym__br_flw_map_end] = ACTIONS(261), [sym__b_flw_map_end] = ACTIONS(261), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(17)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(1259), [sym__sgl_flw_map_tal] = STATE(1450), [sym__r_flw_map_dat] = STATE(1125), [sym__br_flw_map_dat] = STATE(1125), [sym__r_sgl_flw_col_dat] = STATE(1516), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(255), [sym__br_flw_map_end] = ACTIONS(263), [sym__b_flw_map_end] = ACTIONS(263), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(18)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(369), [sym__sgl_flw_map_tal] = STATE(1517), [sym__r_flw_map_dat] = STATE(1152), [sym__br_flw_map_dat] = STATE(1152), [sym__r_sgl_flw_col_dat] = STATE(1516), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(259), [sym__br_flw_map_end] = ACTIONS(265), [sym__b_flw_map_end] = ACTIONS(265), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(19)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(570), [sym__sgl_flw_map_tal] = STATE(1064), [sym__r_flw_map_dat] = STATE(1173), [sym__br_flw_map_dat] = STATE(1173), [sym__r_sgl_flw_col_dat] = STATE(1476), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(267), [sym__br_flw_map_end] = ACTIONS(269), [sym__b_flw_map_end] = ACTIONS(269), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(20)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(1321), [sym__sgl_flw_map_tal] = STATE(1422), [sym__r_flw_map_dat] = STATE(1183), [sym__br_flw_map_dat] = STATE(1183), [sym__r_sgl_flw_col_dat] = STATE(1460), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(271), [sym__br_flw_map_end] = ACTIONS(273), [sym__b_flw_map_end] = ACTIONS(273), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(21)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(715), [sym__sgl_flw_map_tal] = STATE(1145), [sym__r_flw_map_dat] = STATE(1166), [sym__br_flw_map_dat] = STATE(1166), [sym__r_sgl_flw_col_dat] = STATE(1471), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(275), [sym__br_flw_map_end] = ACTIONS(277), [sym__b_flw_map_end] = ACTIONS(277), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(22)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(831), [sym__sgl_flw_map_tal] = STATE(1264), [sym__r_flw_map_dat] = STATE(1194), [sym__br_flw_map_dat] = STATE(1194), [sym__r_sgl_flw_col_dat] = STATE(1527), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(279), [sym__br_flw_map_end] = ACTIONS(281), [sym__b_flw_map_end] = ACTIONS(281), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(23)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_sgl_prp_val] = STATE(1038), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_sgl_prp] = STATE(265), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_sgl_flw_seq_val] = STATE(1045), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_sgl_flw_seq] = STATE(1209), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_sgl_flw_map_val] = STATE(1045), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_sgl_flw_map] = STATE(1210), [sym__flw_map_tal] = STATE(879), [sym__sgl_flw_map_tal] = STATE(1322), [sym__r_flw_map_dat] = STATE(1212), [sym__br_flw_map_dat] = STATE(1212), [sym__r_sgl_flw_col_dat] = STATE(1449), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_sgl_flw_col_itm] = STATE(964), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_sgl_flw_exp_par] = STATE(1250), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_sgl_flw_imp_par] = STATE(1251), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_sgl_flw_njl_ann_par] = STATE(1252), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_sgl_dqt_str_val] = STATE(1045), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sgl_dqt_str] = STATE(1213), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sgl_sqt_str_val] = STATE(1045), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_sgl_sqt_str] = STATE(1214), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw_val] = STATE(1038), [sym__r_sgl_pln_flw] = STATE(556), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(475), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(191), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(205), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(209), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(283), [sym__br_flw_map_end] = ACTIONS(285), [sym__b_flw_map_end] = ACTIONS(285), [sym__r_flw_key_bgn] = ACTIONS(217), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(221), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(225), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(229), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(241), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(24)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(566), [sym__sgl_flw_seq_tal] = STATE(1050), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1172), [sym__br_flw_seq_dat] = STATE(1172), [sym__r_sgl_flw_col_dat] = STATE(1473), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(291), [sym__br_flw_seq_end] = ACTIONS(293), [sym__b_flw_seq_end] = ACTIONS(293), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(25)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(367), [sym__sgl_flw_seq_tal] = STATE(1416), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1151), [sym__br_flw_seq_dat] = STATE(1151), [sym__r_sgl_flw_col_dat] = STATE(1459), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(335), [sym__br_flw_seq_end] = ACTIONS(337), [sym__b_flw_seq_end] = ACTIONS(337), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(26)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(366), [sym__sgl_flw_seq_tal] = STATE(1423), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1151), [sym__br_flw_seq_dat] = STATE(1151), [sym__r_sgl_flw_col_dat] = STATE(1459), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(335), [sym__br_flw_seq_end] = ACTIONS(339), [sym__b_flw_seq_end] = ACTIONS(339), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(27)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(1109), [sym__sgl_flw_seq_tal] = STATE(1416), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1058), [sym__br_flw_seq_dat] = STATE(1058), [sym__r_sgl_flw_col_dat] = STATE(1459), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(341), [sym__br_flw_seq_end] = ACTIONS(343), [sym__b_flw_seq_end] = ACTIONS(343), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(28)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(1247), [sym__sgl_flw_seq_tal] = STATE(1423), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1124), [sym__br_flw_seq_dat] = STATE(1124), [sym__r_sgl_flw_col_dat] = STATE(1459), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(345), [sym__br_flw_seq_end] = ACTIONS(347), [sym__b_flw_seq_end] = ACTIONS(347), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(29)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(1256), [sym__sgl_flw_seq_tal] = STATE(1416), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1124), [sym__br_flw_seq_dat] = STATE(1124), [sym__r_sgl_flw_col_dat] = STATE(1459), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(345), [sym__br_flw_seq_end] = ACTIONS(349), [sym__b_flw_seq_end] = ACTIONS(349), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(30)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(712), [sym__sgl_flw_seq_tal] = STATE(1139), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1165), [sym__br_flw_seq_dat] = STATE(1165), [sym__r_sgl_flw_col_dat] = STATE(1468), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(351), [sym__br_flw_seq_end] = ACTIONS(353), [sym__b_flw_seq_end] = ACTIONS(353), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(31)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(828), [sym__sgl_flw_seq_tal] = STATE(1257), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1193), [sym__br_flw_seq_dat] = STATE(1193), [sym__r_sgl_flw_col_dat] = STATE(1525), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(355), [sym__br_flw_seq_end] = ACTIONS(357), [sym__b_flw_seq_end] = ACTIONS(357), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(32)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(1131), [sym__sgl_flw_seq_tal] = STATE(1423), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1058), [sym__br_flw_seq_dat] = STATE(1058), [sym__r_sgl_flw_col_dat] = STATE(1459), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(341), [sym__br_flw_seq_end] = ACTIONS(359), [sym__b_flw_seq_end] = ACTIONS(359), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(33)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(1316), [sym__sgl_flw_seq_tal] = STATE(1509), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1182), [sym__br_flw_seq_dat] = STATE(1182), [sym__r_sgl_flw_col_dat] = STATE(1457), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(361), [sym__br_flw_seq_end] = ACTIONS(363), [sym__b_flw_seq_end] = ACTIONS(363), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(34)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_sgl_prp_val] = STATE(976), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_sgl_prp] = STATE(261), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_sgl_flw_seq_val] = STATE(1025), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_sgl_flw_seq] = STATE(1110), [sym__flw_seq_tal] = STATE(784), [sym__sgl_flw_seq_tal] = STATE(1317), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_sgl_flw_map_val] = STATE(1025), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_sgl_flw_map] = STATE(1113), [sym__r_flw_seq_dat] = STATE(1211), [sym__br_flw_seq_dat] = STATE(1211), [sym__r_sgl_flw_col_dat] = STATE(1447), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_sgl_flw_col_itm] = STATE(986), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_sgl_flw_exp_par] = STATE(1225), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_sgl_flw_imp_par] = STATE(1240), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_sgl_flw_njl_ann_par] = STATE(1253), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_sgl_dqt_str_val] = STATE(1025), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sgl_dqt_str] = STATE(1114), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sgl_sqt_str_val] = STATE(1025), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_sgl_sqt_str] = STATE(1116), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw_val] = STATE(976), [sym__r_sgl_pln_flw] = STATE(747), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(538), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(207), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(287), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(365), [sym__br_flw_seq_end] = ACTIONS(367), [sym__b_flw_seq_end] = ACTIONS(367), [sym__r_flw_map_bgn] = ACTIONS(295), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(299), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(303), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(307), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(311), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(323), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(35)] = { [sym__br_sgl_prp_val] = STATE(1237), [sym__br_sgl_prp] = STATE(309), [sym__br_blk_seq] = STATE(388), [sym__b_blk_seq_spc] = STATE(339), [sym__br_blk_seq_itm] = STATE(966), [sym__b_blk_seq_itm] = STATE(1041), [sym__br_blk_map] = STATE(389), [sym__br_blk_map_itm] = STATE(143), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str] = STATE(390), [sym__br_blk_str] = STATE(390), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(378), [sym__br_flw_seq] = STATE(378), [sym__br_sgl_flw_seq] = STATE(1551), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(327), [sym__br_flw_map] = STATE(327), [sym__br_sgl_flw_map] = STATE(1514), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(298), [sym__br_dqt_str] = STATE(298), [sym__br_sgl_dqt_str] = STATE(1446), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(355), [sym__br_sqt_str] = STATE(355), [sym__br_sgl_sqt_str] = STATE(1417), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(335), [sym__br_sgl_pln_blk] = STATE(268), [sym__r_mtl_pln_blk] = STATE(335), [sym__br_mtl_pln_blk] = STATE(335), [sym__br_als_val] = STATE(1237), [sym__br_als] = STATE(1487), [sym__br_acr] = STATE(415), [aux_sym__r_blk_seq_repeat1] = STATE(1041), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(69), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__b_blk_key_bgn] = ACTIONS(369), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__b_blk_val_bgn] = ACTIONS(369), [sym__r_blk_lit_bgn] = ACTIONS(73), [sym__br_blk_lit_bgn] = ACTIONS(75), [sym__r_blk_fld_bgn] = ACTIONS(73), [sym__br_blk_fld_bgn] = ACTIONS(75), [sym__r_flw_seq_bgn] = ACTIONS(171), [sym__br_flw_seq_bgn] = ACTIONS(79), [sym__b_flw_seq_bgn] = ACTIONS(369), [sym__r_flw_map_bgn] = ACTIONS(173), [sym__br_flw_map_bgn] = ACTIONS(83), [sym__b_flw_map_bgn] = ACTIONS(369), [sym__r_dqt_str_bgn] = ACTIONS(175), [sym__br_dqt_str_bgn] = ACTIONS(87), [sym__b_dqt_str_bgn] = ACTIONS(369), [sym__r_sqt_str_bgn] = ACTIONS(177), [sym__br_sqt_str_bgn] = ACTIONS(91), [sym__b_sqt_str_bgn] = ACTIONS(369), [sym__r_sgl_pln_nul_blk] = ACTIONS(179), [sym__br_sgl_pln_nul_blk] = ACTIONS(95), [sym__b_sgl_pln_nul_blk] = ACTIONS(369), [sym__r_sgl_pln_bol_blk] = ACTIONS(179), [sym__br_sgl_pln_bol_blk] = ACTIONS(95), [sym__b_sgl_pln_bol_blk] = ACTIONS(369), [sym__r_sgl_pln_int_blk] = ACTIONS(179), [sym__br_sgl_pln_int_blk] = ACTIONS(95), [sym__b_sgl_pln_int_blk] = ACTIONS(369), [sym__r_sgl_pln_flt_blk] = ACTIONS(179), [sym__br_sgl_pln_flt_blk] = ACTIONS(95), [sym__b_sgl_pln_flt_blk] = ACTIONS(369), [sym__r_sgl_pln_tms_blk] = ACTIONS(179), [sym__br_sgl_pln_tms_blk] = ACTIONS(95), [sym__b_sgl_pln_tms_blk] = ACTIONS(369), [sym__r_sgl_pln_str_blk] = ACTIONS(179), [sym__br_sgl_pln_str_blk] = ACTIONS(95), [sym__b_sgl_pln_str_blk] = ACTIONS(369), [sym__r_mtl_pln_str_blk] = ACTIONS(97), [sym__br_mtl_pln_str_blk] = ACTIONS(99), [sym__br_tag] = ACTIONS(371), [sym__b_tag] = ACTIONS(369), [sym__br_acr_bgn] = ACTIONS(373), [sym__b_acr_bgn] = ACTIONS(369), [sym__br_als_bgn] = ACTIONS(375), [sym__b_als_bgn] = ACTIONS(369), [sym__bl] = ACTIONS(369), [sym_comment] = ACTIONS(3), }, [STATE(36)] = { [sym__br_sgl_prp_val] = STATE(1237), [sym__br_sgl_prp] = STATE(309), [sym__br_blk_seq] = STATE(379), [sym__b_blk_seq_spc] = STATE(338), [sym__br_blk_seq_itm] = STATE(966), [sym__b_blk_seq_itm] = STATE(1041), [sym__br_blk_map] = STATE(380), [sym__br_blk_map_itm] = STATE(143), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str] = STATE(381), [sym__br_blk_str] = STATE(381), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(382), [sym__br_flw_seq] = STATE(382), [sym__br_sgl_flw_seq] = STATE(1551), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(383), [sym__br_flw_map] = STATE(383), [sym__br_sgl_flw_map] = STATE(1514), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(384), [sym__br_dqt_str] = STATE(384), [sym__br_sgl_dqt_str] = STATE(1446), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(385), [sym__br_sqt_str] = STATE(385), [sym__br_sgl_sqt_str] = STATE(1417), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(386), [sym__br_sgl_pln_blk] = STATE(267), [sym__r_mtl_pln_blk] = STATE(386), [sym__br_mtl_pln_blk] = STATE(386), [sym__br_als_val] = STATE(1237), [sym__br_als] = STATE(1487), [sym__br_acr] = STATE(415), [aux_sym__r_blk_seq_repeat1] = STATE(1041), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(69), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__b_blk_key_bgn] = ACTIONS(377), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__b_blk_val_bgn] = ACTIONS(377), [sym__r_blk_lit_bgn] = ACTIONS(73), [sym__br_blk_lit_bgn] = ACTIONS(75), [sym__r_blk_fld_bgn] = ACTIONS(73), [sym__br_blk_fld_bgn] = ACTIONS(75), [sym__r_flw_seq_bgn] = ACTIONS(171), [sym__br_flw_seq_bgn] = ACTIONS(79), [sym__b_flw_seq_bgn] = ACTIONS(377), [sym__r_flw_map_bgn] = ACTIONS(173), [sym__br_flw_map_bgn] = ACTIONS(83), [sym__b_flw_map_bgn] = ACTIONS(377), [sym__r_dqt_str_bgn] = ACTIONS(175), [sym__br_dqt_str_bgn] = ACTIONS(87), [sym__b_dqt_str_bgn] = ACTIONS(377), [sym__r_sqt_str_bgn] = ACTIONS(177), [sym__br_sqt_str_bgn] = ACTIONS(91), [sym__b_sqt_str_bgn] = ACTIONS(377), [sym__r_sgl_pln_nul_blk] = ACTIONS(179), [sym__br_sgl_pln_nul_blk] = ACTIONS(95), [sym__b_sgl_pln_nul_blk] = ACTIONS(377), [sym__r_sgl_pln_bol_blk] = ACTIONS(179), [sym__br_sgl_pln_bol_blk] = ACTIONS(95), [sym__b_sgl_pln_bol_blk] = ACTIONS(377), [sym__r_sgl_pln_int_blk] = ACTIONS(179), [sym__br_sgl_pln_int_blk] = ACTIONS(95), [sym__b_sgl_pln_int_blk] = ACTIONS(377), [sym__r_sgl_pln_flt_blk] = ACTIONS(179), [sym__br_sgl_pln_flt_blk] = ACTIONS(95), [sym__b_sgl_pln_flt_blk] = ACTIONS(377), [sym__r_sgl_pln_tms_blk] = ACTIONS(179), [sym__br_sgl_pln_tms_blk] = ACTIONS(95), [sym__b_sgl_pln_tms_blk] = ACTIONS(377), [sym__r_sgl_pln_str_blk] = ACTIONS(179), [sym__br_sgl_pln_str_blk] = ACTIONS(95), [sym__b_sgl_pln_str_blk] = ACTIONS(377), [sym__r_mtl_pln_str_blk] = ACTIONS(97), [sym__br_mtl_pln_str_blk] = ACTIONS(99), [sym__br_tag] = ACTIONS(371), [sym__b_tag] = ACTIONS(377), [sym__br_acr_bgn] = ACTIONS(373), [sym__b_acr_bgn] = ACTIONS(377), [sym__br_als_bgn] = ACTIONS(375), [sym__b_als_bgn] = ACTIONS(377), [sym__bl] = ACTIONS(377), [sym_comment] = ACTIONS(3), }, [STATE(37)] = { [sym__doc_w_bgn_w_end_seq] = STATE(1428), [sym__doc_w_bgn_wo_end_seq] = STATE(1428), [sym__doc_wo_bgn_w_end_seq] = STATE(1428), [sym__doc_wo_bgn_wo_end_seq] = STATE(1428), [sym__doc_w_bgn_w_end] = STATE(38), [sym__doc_w_bgn_wo_end] = STATE(476), [sym__doc_wo_bgn_w_end] = STATE(39), [sym__doc_wo_bgn_wo_end] = STATE(480), [sym__drs_doc] = STATE(1167), [sym__exp_doc] = STATE(1155), [sym__imp_doc] = STATE(1168), [sym__drs_doc_end] = STATE(39), [sym__exp_doc_end] = STATE(38), [sym__imp_doc_end] = STATE(39), [sym__doc_end] = STATE(38), [sym__s_dir] = STATE(478), [sym__s_dir_yml] = STATE(478), [sym__s_dir_tag] = STATE(478), [sym__s_dir_rsv] = STATE(478), [sym__br_prp_val] = STATE(1169), [sym__br_sgl_prp_val] = STATE(1237), [sym__br_prp] = STATE(80), [sym__br_sgl_prp] = STATE(309), [sym__br_blk_seq_val] = STATE(1169), [sym__br_blk_seq] = STATE(1170), [sym__br_blk_seq_itm] = STATE(1048), [sym__br_blk_map_val] = STATE(1169), [sym__br_blk_map] = STATE(1200), [sym__br_blk_map_itm] = STATE(130), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__br_blk_str_val] = STATE(1169), [sym__br_blk_str] = STATE(1103), [sym__br_flw_seq_val] = STATE(1169), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__br_flw_seq] = STATE(1156), [sym__br_sgl_flw_seq] = STATE(1551), [sym__br_flw_map_val] = STATE(1169), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__br_flw_map] = STATE(1071), [sym__br_sgl_flw_map] = STATE(1514), [sym__br_dqt_str_val] = STATE(1169), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__br_dqt_str] = STATE(1087), [sym__br_sgl_dqt_str] = STATE(1446), [sym__br_sqt_str_val] = STATE(1169), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__br_sqt_str] = STATE(1129), [sym__br_sgl_sqt_str] = STATE(1417), [sym__br_pln_blk_val] = STATE(1169), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__br_sgl_pln_blk] = STATE(997), [sym__br_mtl_pln_blk] = STATE(1095), [sym__br_als_val] = STATE(939), [sym__br_als] = STATE(1001), [sym__br_acr] = STATE(146), [aux_sym__drs_doc_repeat1] = STATE(478), [sym__eof] = ACTIONS(379), [sym__s_dir_yml_bgn] = ACTIONS(7), [sym__s_dir_tag_bgn] = ACTIONS(9), [sym__s_dir_rsv_bgn] = ACTIONS(11), [sym__s_drs_end] = ACTIONS(13), [sym__s_doc_end] = ACTIONS(15), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__br_blk_lit_bgn] = ACTIONS(31), [sym__br_blk_fld_bgn] = ACTIONS(31), [sym__br_flw_seq_bgn] = ACTIONS(35), [sym__br_flw_map_bgn] = ACTIONS(39), [sym__br_dqt_str_bgn] = ACTIONS(43), [sym__br_sqt_str_bgn] = ACTIONS(47), [sym__br_sgl_pln_nul_blk] = ACTIONS(51), [sym__br_sgl_pln_bol_blk] = ACTIONS(51), [sym__br_sgl_pln_int_blk] = ACTIONS(51), [sym__br_sgl_pln_flt_blk] = ACTIONS(51), [sym__br_sgl_pln_tms_blk] = ACTIONS(51), [sym__br_sgl_pln_str_blk] = ACTIONS(51), [sym__br_mtl_pln_str_blk] = ACTIONS(55), [sym__br_tag] = ACTIONS(59), [sym__br_acr_bgn] = ACTIONS(63), [sym__br_als_bgn] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(38)] = { [sym__doc_w_bgn_w_end_seq] = STATE(1456), [sym__doc_w_bgn_wo_end_seq] = STATE(1456), [sym__doc_wo_bgn_w_end_seq] = STATE(1456), [sym__doc_wo_bgn_wo_end_seq] = STATE(1456), [sym__doc_w_bgn_w_end] = STATE(38), [sym__doc_w_bgn_wo_end] = STATE(476), [sym__doc_wo_bgn_w_end] = STATE(39), [sym__doc_wo_bgn_wo_end] = STATE(480), [sym__drs_doc] = STATE(1167), [sym__exp_doc] = STATE(1155), [sym__imp_doc] = STATE(1168), [sym__drs_doc_end] = STATE(39), [sym__exp_doc_end] = STATE(38), [sym__imp_doc_end] = STATE(39), [sym__doc_end] = STATE(38), [sym__s_dir] = STATE(478), [sym__s_dir_yml] = STATE(478), [sym__s_dir_tag] = STATE(478), [sym__s_dir_rsv] = STATE(478), [sym__br_prp_val] = STATE(1169), [sym__br_sgl_prp_val] = STATE(1237), [sym__br_prp] = STATE(80), [sym__br_sgl_prp] = STATE(309), [sym__br_blk_seq_val] = STATE(1169), [sym__br_blk_seq] = STATE(1170), [sym__br_blk_seq_itm] = STATE(1048), [sym__br_blk_map_val] = STATE(1169), [sym__br_blk_map] = STATE(1200), [sym__br_blk_map_itm] = STATE(130), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__br_blk_str_val] = STATE(1169), [sym__br_blk_str] = STATE(1103), [sym__br_flw_seq_val] = STATE(1169), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__br_flw_seq] = STATE(1156), [sym__br_sgl_flw_seq] = STATE(1551), [sym__br_flw_map_val] = STATE(1169), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__br_flw_map] = STATE(1071), [sym__br_sgl_flw_map] = STATE(1514), [sym__br_dqt_str_val] = STATE(1169), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__br_dqt_str] = STATE(1087), [sym__br_sgl_dqt_str] = STATE(1446), [sym__br_sqt_str_val] = STATE(1169), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__br_sqt_str] = STATE(1129), [sym__br_sgl_sqt_str] = STATE(1417), [sym__br_pln_blk_val] = STATE(1169), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__br_sgl_pln_blk] = STATE(997), [sym__br_mtl_pln_blk] = STATE(1095), [sym__br_als_val] = STATE(939), [sym__br_als] = STATE(1001), [sym__br_acr] = STATE(146), [aux_sym__drs_doc_repeat1] = STATE(478), [sym__eof] = ACTIONS(381), [sym__s_dir_yml_bgn] = ACTIONS(7), [sym__s_dir_tag_bgn] = ACTIONS(9), [sym__s_dir_rsv_bgn] = ACTIONS(11), [sym__s_drs_end] = ACTIONS(13), [sym__s_doc_end] = ACTIONS(15), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__br_blk_lit_bgn] = ACTIONS(31), [sym__br_blk_fld_bgn] = ACTIONS(31), [sym__br_flw_seq_bgn] = ACTIONS(35), [sym__br_flw_map_bgn] = ACTIONS(39), [sym__br_dqt_str_bgn] = ACTIONS(43), [sym__br_sqt_str_bgn] = ACTIONS(47), [sym__br_sgl_pln_nul_blk] = ACTIONS(51), [sym__br_sgl_pln_bol_blk] = ACTIONS(51), [sym__br_sgl_pln_int_blk] = ACTIONS(51), [sym__br_sgl_pln_flt_blk] = ACTIONS(51), [sym__br_sgl_pln_tms_blk] = ACTIONS(51), [sym__br_sgl_pln_str_blk] = ACTIONS(51), [sym__br_mtl_pln_str_blk] = ACTIONS(55), [sym__br_tag] = ACTIONS(59), [sym__br_acr_bgn] = ACTIONS(63), [sym__br_als_bgn] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(39)] = { [sym__doc_w_bgn_w_end_seq] = STATE(1489), [sym__doc_w_bgn_wo_end_seq] = STATE(1489), [sym__doc_wo_bgn_w_end_seq] = STATE(1489), [sym__doc_wo_bgn_wo_end_seq] = STATE(1489), [sym__doc_w_bgn_w_end] = STATE(38), [sym__doc_w_bgn_wo_end] = STATE(476), [sym__doc_wo_bgn_w_end] = STATE(39), [sym__doc_wo_bgn_wo_end] = STATE(480), [sym__drs_doc] = STATE(1167), [sym__exp_doc] = STATE(1155), [sym__imp_doc] = STATE(1168), [sym__drs_doc_end] = STATE(39), [sym__exp_doc_end] = STATE(38), [sym__imp_doc_end] = STATE(39), [sym__doc_end] = STATE(38), [sym__s_dir] = STATE(478), [sym__s_dir_yml] = STATE(478), [sym__s_dir_tag] = STATE(478), [sym__s_dir_rsv] = STATE(478), [sym__br_prp_val] = STATE(1169), [sym__br_sgl_prp_val] = STATE(1237), [sym__br_prp] = STATE(80), [sym__br_sgl_prp] = STATE(309), [sym__br_blk_seq_val] = STATE(1169), [sym__br_blk_seq] = STATE(1170), [sym__br_blk_seq_itm] = STATE(1048), [sym__br_blk_map_val] = STATE(1169), [sym__br_blk_map] = STATE(1200), [sym__br_blk_map_itm] = STATE(130), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__br_blk_str_val] = STATE(1169), [sym__br_blk_str] = STATE(1103), [sym__br_flw_seq_val] = STATE(1169), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__br_flw_seq] = STATE(1156), [sym__br_sgl_flw_seq] = STATE(1551), [sym__br_flw_map_val] = STATE(1169), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__br_flw_map] = STATE(1071), [sym__br_sgl_flw_map] = STATE(1514), [sym__br_dqt_str_val] = STATE(1169), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__br_dqt_str] = STATE(1087), [sym__br_sgl_dqt_str] = STATE(1446), [sym__br_sqt_str_val] = STATE(1169), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__br_sqt_str] = STATE(1129), [sym__br_sgl_sqt_str] = STATE(1417), [sym__br_pln_blk_val] = STATE(1169), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__br_sgl_pln_blk] = STATE(997), [sym__br_mtl_pln_blk] = STATE(1095), [sym__br_als_val] = STATE(939), [sym__br_als] = STATE(1001), [sym__br_acr] = STATE(146), [aux_sym__drs_doc_repeat1] = STATE(478), [sym__eof] = ACTIONS(383), [sym__s_dir_yml_bgn] = ACTIONS(7), [sym__s_dir_tag_bgn] = ACTIONS(9), [sym__s_dir_rsv_bgn] = ACTIONS(11), [sym__s_drs_end] = ACTIONS(13), [sym__s_doc_end] = ACTIONS(15), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__br_blk_lit_bgn] = ACTIONS(31), [sym__br_blk_fld_bgn] = ACTIONS(31), [sym__br_flw_seq_bgn] = ACTIONS(35), [sym__br_flw_map_bgn] = ACTIONS(39), [sym__br_dqt_str_bgn] = ACTIONS(43), [sym__br_sqt_str_bgn] = ACTIONS(47), [sym__br_sgl_pln_nul_blk] = ACTIONS(51), [sym__br_sgl_pln_bol_blk] = ACTIONS(51), [sym__br_sgl_pln_int_blk] = ACTIONS(51), [sym__br_sgl_pln_flt_blk] = ACTIONS(51), [sym__br_sgl_pln_tms_blk] = ACTIONS(51), [sym__br_sgl_pln_str_blk] = ACTIONS(51), [sym__br_mtl_pln_str_blk] = ACTIONS(55), [sym__br_tag] = ACTIONS(59), [sym__br_acr_bgn] = ACTIONS(63), [sym__br_als_bgn] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(40)] = { [sym__r_prp_val] = STATE(981), [sym__br_prp_val] = STATE(984), [sym__r_sgl_prp_val] = STATE(1239), [sym__r_prp] = STATE(162), [sym__br_prp] = STATE(164), [sym__r_sgl_prp] = STATE(365), [sym__r_flw_seq_val] = STATE(1031), [sym__br_flw_seq_val] = STATE(1035), [sym__r_sgl_flw_seq_val] = STATE(1242), [sym__r_flw_seq] = STATE(1282), [sym__br_flw_seq] = STATE(1283), [sym__r_sgl_flw_seq] = STATE(1506), [sym__r_flw_map_val] = STATE(1031), [sym__br_flw_map_val] = STATE(1035), [sym__r_sgl_flw_map_val] = STATE(1242), [sym__r_flw_map] = STATE(1302), [sym__br_flw_map] = STATE(1304), [sym__r_sgl_flw_map] = STATE(1534), [sym__r_flw_imp_r_par] = STATE(924), [sym__r_flw_imp_br_par] = STATE(925), [sym__br_flw_imp_r_par] = STATE(926), [sym__br_flw_imp_br_par] = STATE(927), [sym__r_sgl_flw_imp_par] = STATE(1312), [sym__r_dqt_str_val] = STATE(1031), [sym__br_dqt_str_val] = STATE(1035), [sym__r_sgl_dqt_str_val] = STATE(1242), [sym__r_dqt_str] = STATE(1306), [sym__br_dqt_str] = STATE(1307), [sym__r_sgl_dqt_str] = STATE(1463), [sym__r_sqt_str_val] = STATE(1031), [sym__br_sqt_str_val] = STATE(1035), [sym__r_sgl_sqt_str_val] = STATE(1242), [sym__r_sqt_str] = STATE(1309), [sym__br_sqt_str] = STATE(1310), [sym__r_sgl_sqt_str] = STATE(1467), [sym__r_pln_flw_val] = STATE(981), [sym__br_pln_flw_val] = STATE(984), [sym__r_sgl_pln_flw_val] = STATE(1239), [sym__r_sgl_pln_flw] = STATE(1243), [sym__br_sgl_pln_flw] = STATE(1345), [sym__r_mtl_pln_flw] = STATE(1222), [sym__br_mtl_pln_flw] = STATE(1345), [sym__r_als_val] = STATE(928), [sym__br_als_val] = STATE(984), [sym__r_als] = STATE(1246), [sym__br_als] = STATE(1272), [sym__r_acr] = STATE(244), [sym__br_acr] = STATE(248), [sym__r_flw_seq_bgn] = ACTIONS(385), [sym__br_flw_seq_bgn] = ACTIONS(387), [sym__r_flw_map_bgn] = ACTIONS(389), [sym__br_flw_map_bgn] = ACTIONS(391), [sym__r_flw_map_end] = ACTIONS(393), [sym__br_flw_map_end] = ACTIONS(396), [sym__b_flw_map_end] = ACTIONS(396), [sym__r_flw_sep_bgn] = ACTIONS(393), [sym__br_flw_sep_bgn] = ACTIONS(396), [sym__r_dqt_str_bgn] = ACTIONS(398), [sym__br_dqt_str_bgn] = ACTIONS(400), [sym__r_sqt_str_bgn] = ACTIONS(402), [sym__br_sqt_str_bgn] = ACTIONS(404), [sym__r_sgl_pln_nul_flw] = ACTIONS(406), [sym__br_sgl_pln_nul_flw] = ACTIONS(408), [sym__r_sgl_pln_bol_flw] = ACTIONS(406), [sym__br_sgl_pln_bol_flw] = ACTIONS(408), [sym__r_sgl_pln_int_flw] = ACTIONS(406), [sym__br_sgl_pln_int_flw] = ACTIONS(408), [sym__r_sgl_pln_flt_flw] = ACTIONS(406), [sym__br_sgl_pln_flt_flw] = ACTIONS(408), [sym__r_sgl_pln_tms_flw] = ACTIONS(406), [sym__br_sgl_pln_tms_flw] = ACTIONS(408), [sym__r_sgl_pln_str_flw] = ACTIONS(406), [sym__br_sgl_pln_str_flw] = ACTIONS(408), [sym__r_mtl_pln_str_flw] = ACTIONS(410), [sym__br_mtl_pln_str_flw] = ACTIONS(412), [sym__r_tag] = ACTIONS(414), [sym__br_tag] = ACTIONS(416), [sym__r_acr_bgn] = ACTIONS(418), [sym__br_acr_bgn] = ACTIONS(420), [sym__r_als_bgn] = ACTIONS(422), [sym__br_als_bgn] = ACTIONS(424), [sym_comment] = ACTIONS(3), }, [STATE(41)] = { [sym__r_prp_val] = STATE(980), [sym__br_prp_val] = STATE(991), [sym__r_sgl_prp_val] = STATE(1359), [sym__r_prp] = STATE(162), [sym__br_prp] = STATE(164), [sym__r_sgl_prp] = STATE(365), [sym__r_flw_seq_val] = STATE(1009), [sym__br_flw_seq_val] = STATE(1018), [sym__r_sgl_flw_seq_val] = STATE(1244), [sym__r_flw_seq] = STATE(1282), [sym__br_flw_seq] = STATE(1283), [sym__r_sgl_flw_seq] = STATE(1506), [sym__r_flw_map_val] = STATE(1009), [sym__br_flw_map_val] = STATE(1018), [sym__r_sgl_flw_map_val] = STATE(1244), [sym__r_flw_map] = STATE(1302), [sym__br_flw_map] = STATE(1304), [sym__r_sgl_flw_map] = STATE(1534), [sym__r_flw_imp_r_par] = STATE(948), [sym__r_flw_imp_br_par] = STATE(953), [sym__br_flw_imp_r_par] = STATE(960), [sym__br_flw_imp_br_par] = STATE(804), [sym__r_sgl_flw_imp_par] = STATE(1292), [sym__r_dqt_str_val] = STATE(1009), [sym__br_dqt_str_val] = STATE(1018), [sym__r_sgl_dqt_str_val] = STATE(1244), [sym__r_dqt_str] = STATE(1306), [sym__br_dqt_str] = STATE(1307), [sym__r_sgl_dqt_str] = STATE(1463), [sym__r_sqt_str_val] = STATE(1009), [sym__br_sqt_str_val] = STATE(1018), [sym__r_sgl_sqt_str_val] = STATE(1244), [sym__r_sqt_str] = STATE(1309), [sym__br_sqt_str] = STATE(1310), [sym__r_sgl_sqt_str] = STATE(1467), [sym__r_pln_flw_val] = STATE(980), [sym__br_pln_flw_val] = STATE(991), [sym__r_sgl_pln_flw_val] = STATE(1359), [sym__r_sgl_pln_flw] = STATE(1243), [sym__br_sgl_pln_flw] = STATE(1345), [sym__r_mtl_pln_flw] = STATE(1222), [sym__br_mtl_pln_flw] = STATE(1345), [sym__r_als_val] = STATE(805), [sym__br_als_val] = STATE(991), [sym__r_als] = STATE(1246), [sym__br_als] = STATE(1272), [sym__r_acr] = STATE(244), [sym__br_acr] = STATE(248), [sym__r_flw_seq_bgn] = ACTIONS(385), [sym__br_flw_seq_bgn] = ACTIONS(387), [sym__r_flw_seq_end] = ACTIONS(393), [sym__br_flw_seq_end] = ACTIONS(396), [sym__b_flw_seq_end] = ACTIONS(396), [sym__r_flw_map_bgn] = ACTIONS(389), [sym__br_flw_map_bgn] = ACTIONS(391), [sym__r_flw_sep_bgn] = ACTIONS(393), [sym__br_flw_sep_bgn] = ACTIONS(396), [sym__r_dqt_str_bgn] = ACTIONS(398), [sym__br_dqt_str_bgn] = ACTIONS(400), [sym__r_sqt_str_bgn] = ACTIONS(402), [sym__br_sqt_str_bgn] = ACTIONS(404), [sym__r_sgl_pln_nul_flw] = ACTIONS(406), [sym__br_sgl_pln_nul_flw] = ACTIONS(408), [sym__r_sgl_pln_bol_flw] = ACTIONS(406), [sym__br_sgl_pln_bol_flw] = ACTIONS(408), [sym__r_sgl_pln_int_flw] = ACTIONS(406), [sym__br_sgl_pln_int_flw] = ACTIONS(408), [sym__r_sgl_pln_flt_flw] = ACTIONS(406), [sym__br_sgl_pln_flt_flw] = ACTIONS(408), [sym__r_sgl_pln_tms_flw] = ACTIONS(406), [sym__br_sgl_pln_tms_flw] = ACTIONS(408), [sym__r_sgl_pln_str_flw] = ACTIONS(406), [sym__br_sgl_pln_str_flw] = ACTIONS(408), [sym__r_mtl_pln_str_flw] = ACTIONS(410), [sym__br_mtl_pln_str_flw] = ACTIONS(412), [sym__r_tag] = ACTIONS(414), [sym__br_tag] = ACTIONS(416), [sym__r_acr_bgn] = ACTIONS(418), [sym__br_acr_bgn] = ACTIONS(420), [sym__r_als_bgn] = ACTIONS(422), [sym__br_als_bgn] = ACTIONS(424), [sym_comment] = ACTIONS(3), }, [STATE(42)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(571), [sym__r_flw_map_dat] = STATE(1173), [sym__br_flw_map_dat] = STATE(1173), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(430), [sym__br_flw_map_end] = ACTIONS(430), [sym__b_flw_map_end] = ACTIONS(430), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(43)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(715), [sym__r_flw_map_dat] = STATE(1166), [sym__br_flw_map_dat] = STATE(1166), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(277), [sym__br_flw_map_end] = ACTIONS(277), [sym__b_flw_map_end] = ACTIONS(277), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(44)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(879), [sym__r_flw_map_dat] = STATE(1212), [sym__br_flw_map_dat] = STATE(1212), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(285), [sym__br_flw_map_end] = ACTIONS(285), [sym__b_flw_map_end] = ACTIONS(285), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(45)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(1133), [sym__r_flw_map_dat] = STATE(1138), [sym__br_flw_map_dat] = STATE(1138), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(215), [sym__br_flw_map_end] = ACTIONS(215), [sym__b_flw_map_end] = ACTIONS(215), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(46)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(570), [sym__r_flw_map_dat] = STATE(1173), [sym__br_flw_map_dat] = STATE(1173), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(269), [sym__br_flw_map_end] = ACTIONS(269), [sym__b_flw_map_end] = ACTIONS(269), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(47)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(1323), [sym__r_flw_map_dat] = STATE(1183), [sym__br_flw_map_dat] = STATE(1183), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(442), [sym__br_flw_map_end] = ACTIONS(442), [sym__b_flw_map_end] = ACTIONS(442), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(48)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(832), [sym__r_flw_map_dat] = STATE(1194), [sym__br_flw_map_dat] = STATE(1194), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(444), [sym__br_flw_map_end] = ACTIONS(444), [sym__b_flw_map_end] = ACTIONS(444), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(49)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(369), [sym__r_flw_map_dat] = STATE(1152), [sym__br_flw_map_dat] = STATE(1152), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(265), [sym__br_flw_map_end] = ACTIONS(265), [sym__b_flw_map_end] = ACTIONS(265), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(50)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(880), [sym__r_flw_map_dat] = STATE(1212), [sym__br_flw_map_dat] = STATE(1212), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(446), [sym__br_flw_map_end] = ACTIONS(446), [sym__b_flw_map_end] = ACTIONS(446), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(51)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(1321), [sym__r_flw_map_dat] = STATE(1183), [sym__br_flw_map_dat] = STATE(1183), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(273), [sym__br_flw_map_end] = ACTIONS(273), [sym__b_flw_map_end] = ACTIONS(273), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(52)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(1258), [sym__r_flw_map_dat] = STATE(1125), [sym__br_flw_map_dat] = STATE(1125), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(257), [sym__br_flw_map_end] = ACTIONS(257), [sym__b_flw_map_end] = ACTIONS(257), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(53)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(716), [sym__r_flw_map_dat] = STATE(1166), [sym__br_flw_map_dat] = STATE(1166), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(448), [sym__br_flw_map_end] = ACTIONS(448), [sym__b_flw_map_end] = ACTIONS(448), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(54)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__flw_map_tal] = STATE(831), [sym__r_flw_map_dat] = STATE(1194), [sym__br_flw_map_dat] = STATE(1194), [sym__r_flw_map_itm] = STATE(670), [sym__br_flw_map_itm] = STATE(671), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(281), [sym__br_flw_map_end] = ACTIONS(281), [sym__b_flw_map_end] = ACTIONS(281), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(55)] = { [sym__r_prp_val] = STATE(810), [sym__br_prp_val] = STATE(810), [sym__r_sgl_prp_val] = STATE(1379), [sym__r_prp] = STATE(121), [sym__br_prp] = STATE(117), [sym__r_sgl_prp] = STATE(274), [sym__r_flw_seq_val] = STATE(810), [sym__br_flw_seq_val] = STATE(810), [sym__r_sgl_flw_seq_val] = STATE(1379), [sym__r_flw_seq] = STATE(817), [sym__br_flw_seq] = STATE(818), [sym__r_sgl_flw_seq] = STATE(1219), [sym__r_flw_map_val] = STATE(810), [sym__br_flw_map_val] = STATE(810), [sym__r_sgl_flw_map_val] = STATE(1379), [sym__r_flw_map] = STATE(819), [sym__br_flw_map] = STATE(820), [sym__r_sgl_flw_map] = STATE(1223), [sym__flw_ann_par_tal] = STATE(810), [sym__sgl_flw_ann_par_tal] = STATE(1379), [sym__r_dqt_str_val] = STATE(810), [sym__br_dqt_str_val] = STATE(810), [sym__r_sgl_dqt_str_val] = STATE(1379), [sym__r_dqt_str] = STATE(821), [sym__br_dqt_str] = STATE(822), [sym__r_sgl_dqt_str] = STATE(1224), [sym__r_sqt_str_val] = STATE(810), [sym__br_sqt_str_val] = STATE(810), [sym__r_sgl_sqt_str_val] = STATE(1379), [sym__r_sqt_str] = STATE(823), [sym__br_sqt_str] = STATE(824), [sym__r_sgl_sqt_str] = STATE(1228), [sym__r_pln_flw_val] = STATE(810), [sym__br_pln_flw_val] = STATE(810), [sym__r_sgl_pln_flw_val] = STATE(1379), [sym__r_sgl_pln_flw] = STATE(785), [sym__br_sgl_pln_flw] = STATE(786), [sym__r_mtl_pln_flw] = STATE(792), [sym__br_mtl_pln_flw] = STATE(786), [sym__r_als_val] = STATE(919), [sym__br_als_val] = STATE(810), [sym__r_als] = STATE(873), [sym__br_als] = STATE(874), [sym__r_acr] = STATE(215), [sym__br_acr] = STATE(224), [sym__r_flw_seq_bgn] = ACTIONS(450), [sym__br_flw_seq_bgn] = ACTIONS(452), [sym__r_flw_seq_end] = ACTIONS(454), [sym__br_flw_seq_end] = ACTIONS(457), [sym__b_flw_seq_end] = ACTIONS(457), [sym__r_flw_map_bgn] = ACTIONS(459), [sym__br_flw_map_bgn] = ACTIONS(461), [sym__r_flw_sep_bgn] = ACTIONS(454), [sym__br_flw_sep_bgn] = ACTIONS(457), [sym__r_dqt_str_bgn] = ACTIONS(463), [sym__br_dqt_str_bgn] = ACTIONS(465), [sym__r_sqt_str_bgn] = ACTIONS(467), [sym__br_sqt_str_bgn] = ACTIONS(469), [sym__r_sgl_pln_nul_flw] = ACTIONS(471), [sym__br_sgl_pln_nul_flw] = ACTIONS(473), [sym__r_sgl_pln_bol_flw] = ACTIONS(471), [sym__br_sgl_pln_bol_flw] = ACTIONS(473), [sym__r_sgl_pln_int_flw] = ACTIONS(471), [sym__br_sgl_pln_int_flw] = ACTIONS(473), [sym__r_sgl_pln_flt_flw] = ACTIONS(471), [sym__br_sgl_pln_flt_flw] = ACTIONS(473), [sym__r_sgl_pln_tms_flw] = ACTIONS(471), [sym__br_sgl_pln_tms_flw] = ACTIONS(473), [sym__r_sgl_pln_str_flw] = ACTIONS(471), [sym__br_sgl_pln_str_flw] = ACTIONS(473), [sym__r_mtl_pln_str_flw] = ACTIONS(475), [sym__br_mtl_pln_str_flw] = ACTIONS(477), [sym__r_tag] = ACTIONS(479), [sym__br_tag] = ACTIONS(481), [sym__r_acr_bgn] = ACTIONS(483), [sym__br_acr_bgn] = ACTIONS(485), [sym__r_als_bgn] = ACTIONS(487), [sym__br_als_bgn] = ACTIONS(489), [sym_comment] = ACTIONS(3), }, [STATE(56)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(784), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1211), [sym__br_flw_seq_dat] = STATE(1211), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(367), [sym__br_flw_seq_end] = ACTIONS(367), [sym__b_flw_seq_end] = ACTIONS(367), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(57)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(1131), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1058), [sym__br_flw_seq_dat] = STATE(1058), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(359), [sym__br_flw_seq_end] = ACTIONS(359), [sym__b_flw_seq_end] = ACTIONS(359), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(58)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(1318), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1182), [sym__br_flw_seq_dat] = STATE(1182), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(505), [sym__br_flw_seq_end] = ACTIONS(505), [sym__b_flw_seq_end] = ACTIONS(505), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(59)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(712), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1165), [sym__br_flw_seq_dat] = STATE(1165), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(353), [sym__br_flw_seq_end] = ACTIONS(353), [sym__b_flw_seq_end] = ACTIONS(353), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(60)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(568), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1172), [sym__br_flw_seq_dat] = STATE(1172), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(507), [sym__br_flw_seq_end] = ACTIONS(507), [sym__b_flw_seq_end] = ACTIONS(507), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(61)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(566), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1172), [sym__br_flw_seq_dat] = STATE(1172), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(293), [sym__br_flw_seq_end] = ACTIONS(293), [sym__b_flw_seq_end] = ACTIONS(293), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(62)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(1247), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1124), [sym__br_flw_seq_dat] = STATE(1124), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(347), [sym__br_flw_seq_end] = ACTIONS(347), [sym__b_flw_seq_end] = ACTIONS(347), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(63)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(829), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1193), [sym__br_flw_seq_dat] = STATE(1193), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(509), [sym__br_flw_seq_end] = ACTIONS(509), [sym__b_flw_seq_end] = ACTIONS(509), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(64)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(713), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1165), [sym__br_flw_seq_dat] = STATE(1165), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(511), [sym__br_flw_seq_end] = ACTIONS(511), [sym__b_flw_seq_end] = ACTIONS(511), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(65)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(366), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1151), [sym__br_flw_seq_dat] = STATE(1151), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(339), [sym__br_flw_seq_end] = ACTIONS(339), [sym__b_flw_seq_end] = ACTIONS(339), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(66)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(877), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1211), [sym__br_flw_seq_dat] = STATE(1211), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(513), [sym__br_flw_seq_end] = ACTIONS(513), [sym__b_flw_seq_end] = ACTIONS(513), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(67)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(1316), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1182), [sym__br_flw_seq_dat] = STATE(1182), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(363), [sym__br_flw_seq_end] = ACTIONS(363), [sym__b_flw_seq_end] = ACTIONS(363), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(68)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__flw_seq_tal] = STATE(828), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_dat] = STATE(1193), [sym__br_flw_seq_dat] = STATE(1193), [sym__r_flw_seq_itm] = STATE(649), [sym__br_flw_seq_itm] = STATE(661), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(357), [sym__br_flw_seq_end] = ACTIONS(357), [sym__b_flw_seq_end] = ACTIONS(357), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(69)] = { [sym__r_prp_val] = STATE(934), [sym__br_prp_val] = STATE(934), [sym__r_sgl_prp_val] = STATE(1319), [sym__r_prp] = STATE(119), [sym__br_prp] = STATE(120), [sym__r_sgl_prp] = STATE(276), [sym__r_flw_seq_val] = STATE(934), [sym__br_flw_seq_val] = STATE(934), [sym__r_sgl_flw_seq_val] = STATE(1319), [sym__r_flw_seq] = STATE(865), [sym__br_flw_seq] = STATE(866), [sym__r_sgl_flw_seq] = STATE(1301), [sym__r_flw_map_val] = STATE(934), [sym__br_flw_map_val] = STATE(934), [sym__r_sgl_flw_map_val] = STATE(1319), [sym__r_flw_map] = STATE(867), [sym__br_flw_map] = STATE(868), [sym__r_sgl_flw_map] = STATE(1305), [sym__flw_ann_par_tal] = STATE(934), [sym__sgl_flw_ann_par_tal] = STATE(1319), [sym__r_dqt_str_val] = STATE(934), [sym__br_dqt_str_val] = STATE(934), [sym__r_sgl_dqt_str_val] = STATE(1319), [sym__r_dqt_str] = STATE(869), [sym__br_dqt_str] = STATE(870), [sym__r_sgl_dqt_str] = STATE(1308), [sym__r_sqt_str_val] = STATE(934), [sym__br_sqt_str_val] = STATE(934), [sym__r_sgl_sqt_str_val] = STATE(1319), [sym__r_sqt_str] = STATE(871), [sym__br_sqt_str] = STATE(872), [sym__r_sgl_sqt_str] = STATE(1311), [sym__r_pln_flw_val] = STATE(934), [sym__br_pln_flw_val] = STATE(934), [sym__r_sgl_pln_flw_val] = STATE(1319), [sym__r_sgl_pln_flw] = STATE(801), [sym__br_sgl_pln_flw] = STATE(802), [sym__r_mtl_pln_flw] = STATE(803), [sym__br_mtl_pln_flw] = STATE(802), [sym__r_als_val] = STATE(935), [sym__br_als_val] = STATE(934), [sym__r_als] = STATE(913), [sym__br_als] = STATE(914), [sym__r_acr] = STATE(220), [sym__br_acr] = STATE(218), [sym__r_flw_seq_bgn] = ACTIONS(515), [sym__br_flw_seq_bgn] = ACTIONS(517), [sym__r_flw_map_bgn] = ACTIONS(519), [sym__br_flw_map_bgn] = ACTIONS(521), [sym__r_flw_map_end] = ACTIONS(454), [sym__br_flw_map_end] = ACTIONS(457), [sym__b_flw_map_end] = ACTIONS(457), [sym__r_flw_sep_bgn] = ACTIONS(454), [sym__br_flw_sep_bgn] = ACTIONS(457), [sym__r_dqt_str_bgn] = ACTIONS(523), [sym__br_dqt_str_bgn] = ACTIONS(525), [sym__r_sqt_str_bgn] = ACTIONS(527), [sym__br_sqt_str_bgn] = ACTIONS(529), [sym__r_sgl_pln_nul_flw] = ACTIONS(531), [sym__br_sgl_pln_nul_flw] = ACTIONS(533), [sym__r_sgl_pln_bol_flw] = ACTIONS(531), [sym__br_sgl_pln_bol_flw] = ACTIONS(533), [sym__r_sgl_pln_int_flw] = ACTIONS(531), [sym__br_sgl_pln_int_flw] = ACTIONS(533), [sym__r_sgl_pln_flt_flw] = ACTIONS(531), [sym__br_sgl_pln_flt_flw] = ACTIONS(533), [sym__r_sgl_pln_tms_flw] = ACTIONS(531), [sym__br_sgl_pln_tms_flw] = ACTIONS(533), [sym__r_sgl_pln_str_flw] = ACTIONS(531), [sym__br_sgl_pln_str_flw] = ACTIONS(533), [sym__r_mtl_pln_str_flw] = ACTIONS(535), [sym__br_mtl_pln_str_flw] = ACTIONS(537), [sym__r_tag] = ACTIONS(539), [sym__br_tag] = ACTIONS(541), [sym__r_acr_bgn] = ACTIONS(543), [sym__br_acr_bgn] = ACTIONS(545), [sym__r_als_bgn] = ACTIONS(547), [sym__br_als_bgn] = ACTIONS(549), [sym_comment] = ACTIONS(3), }, [STATE(70)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_flw_map_itm] = STATE(875), [sym__br_flw_map_itm] = STATE(875), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(551), [sym__br_flw_map_end] = ACTIONS(551), [sym__b_flw_map_end] = ACTIONS(551), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(71)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_flw_map_itm] = STATE(875), [sym__br_flw_map_itm] = STATE(875), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(553), [sym__br_flw_map_end] = ACTIONS(553), [sym__b_flw_map_end] = ACTIONS(553), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(72)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_flw_map_itm] = STATE(875), [sym__br_flw_map_itm] = STATE(875), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(555), [sym__br_flw_map_end] = ACTIONS(555), [sym__b_flw_map_end] = ACTIONS(555), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(73)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_flw_map_itm] = STATE(875), [sym__br_flw_map_itm] = STATE(875), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_map_end] = ACTIONS(557), [sym__br_flw_map_end] = ACTIONS(557), [sym__b_flw_map_end] = ACTIONS(557), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(74)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_itm] = STATE(825), [sym__br_flw_seq_itm] = STATE(825), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(559), [sym__br_flw_seq_end] = ACTIONS(559), [sym__b_flw_seq_end] = ACTIONS(559), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(75)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_itm] = STATE(825), [sym__br_flw_seq_itm] = STATE(825), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(561), [sym__br_flw_seq_end] = ACTIONS(561), [sym__b_flw_seq_end] = ACTIONS(561), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(76)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_itm] = STATE(825), [sym__br_flw_seq_itm] = STATE(825), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(563), [sym__br_flw_seq_end] = ACTIONS(563), [sym__b_flw_seq_end] = ACTIONS(563), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(77)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_itm] = STATE(825), [sym__br_flw_seq_itm] = STATE(825), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_seq_end] = ACTIONS(565), [sym__br_flw_seq_end] = ACTIONS(565), [sym__b_flw_seq_end] = ACTIONS(565), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(78)] = { [sym__r_prp_val] = STATE(492), [sym__br_prp_val] = STATE(493), [sym__r_prp] = STATE(113), [sym__br_prp] = STATE(112), [sym__r_flw_seq_val] = STATE(498), [sym__br_flw_seq_val] = STATE(504), [sym__r_flw_seq] = STATE(623), [sym__br_flw_seq] = STATE(540), [sym__r_flw_map_val] = STATE(498), [sym__br_flw_map_val] = STATE(504), [sym__r_flw_map] = STATE(542), [sym__br_flw_map] = STATE(545), [sym__r_flw_map_itm] = STATE(875), [sym__br_flw_map_itm] = STATE(875), [sym__r_flw_exp_par] = STATE(814), [sym__br_flw_exp_par] = STATE(815), [sym__r_flw_imp_r_par] = STATE(826), [sym__r_flw_imp_br_par] = STATE(839), [sym__br_flw_imp_r_par] = STATE(840), [sym__br_flw_imp_br_par] = STATE(841), [sym__r_flw_njl_ann_par] = STATE(887), [sym__br_flw_njl_ann_par] = STATE(888), [sym__r_dqt_str_val] = STATE(498), [sym__br_dqt_str_val] = STATE(504), [sym__r_dqt_str] = STATE(547), [sym__br_dqt_str] = STATE(548), [sym__r_sqt_str_val] = STATE(498), [sym__br_sqt_str_val] = STATE(504), [sym__r_sqt_str] = STATE(549), [sym__br_sqt_str] = STATE(550), [sym__r_pln_flw_val] = STATE(492), [sym__br_pln_flw_val] = STATE(493), [sym__r_sgl_pln_flw] = STATE(564), [sym__br_sgl_pln_flw] = STATE(563), [sym__r_mtl_pln_flw] = STATE(564), [sym__br_mtl_pln_flw] = STATE(563), [sym__r_als_val] = STATE(492), [sym__br_als_val] = STATE(493), [sym__r_als] = STATE(638), [sym__br_als] = STATE(551), [sym__r_acr] = STATE(190), [sym__br_acr] = STATE(197), [sym__r_flw_seq_bgn] = ACTIONS(426), [sym__br_flw_seq_bgn] = ACTIONS(207), [sym__r_flw_map_bgn] = ACTIONS(428), [sym__br_flw_map_bgn] = ACTIONS(211), [sym__r_flw_key_bgn] = ACTIONS(432), [sym__br_flw_key_bgn] = ACTIONS(219), [sym__r_flw_njv_bgn] = ACTIONS(434), [sym__br_flw_njv_bgn] = ACTIONS(223), [sym__r_dqt_str_bgn] = ACTIONS(436), [sym__br_dqt_str_bgn] = ACTIONS(227), [sym__r_sqt_str_bgn] = ACTIONS(438), [sym__br_sqt_str_bgn] = ACTIONS(231), [sym__r_sgl_pln_nul_flw] = ACTIONS(233), [sym__br_sgl_pln_nul_flw] = ACTIONS(235), [sym__r_sgl_pln_bol_flw] = ACTIONS(233), [sym__br_sgl_pln_bol_flw] = ACTIONS(235), [sym__r_sgl_pln_int_flw] = ACTIONS(233), [sym__br_sgl_pln_int_flw] = ACTIONS(235), [sym__r_sgl_pln_flt_flw] = ACTIONS(233), [sym__br_sgl_pln_flt_flw] = ACTIONS(235), [sym__r_sgl_pln_tms_flw] = ACTIONS(233), [sym__br_sgl_pln_tms_flw] = ACTIONS(235), [sym__r_sgl_pln_str_flw] = ACTIONS(233), [sym__br_sgl_pln_str_flw] = ACTIONS(235), [sym__r_mtl_pln_str_flw] = ACTIONS(237), [sym__br_mtl_pln_str_flw] = ACTIONS(239), [sym__r_tag] = ACTIONS(440), [sym__br_tag] = ACTIONS(243), [sym__r_acr_bgn] = ACTIONS(245), [sym__br_acr_bgn] = ACTIONS(247), [sym__r_als_bgn] = ACTIONS(249), [sym__br_als_bgn] = ACTIONS(251), [sym_comment] = ACTIONS(3), }, [STATE(79)] = { [sym__r_prp_val] = STATE(674), [sym__br_prp_val] = STATE(672), [sym__r_prp] = STATE(115), [sym__br_prp] = STATE(114), [sym__r_flw_seq_val] = STATE(554), [sym__br_flw_seq_val] = STATE(645), [sym__r_flw_seq] = STATE(702), [sym__br_flw_seq] = STATE(703), [sym__r_flw_map_val] = STATE(554), [sym__br_flw_map_val] = STATE(645), [sym__r_flw_map] = STATE(704), [sym__br_flw_map] = STATE(705), [sym__r_flw_seq_itm] = STATE(825), [sym__br_flw_seq_itm] = STATE(825), [sym__r_flw_exp_par] = STATE(789), [sym__br_flw_exp_par] = STATE(790), [sym__r_flw_imp_r_par] = STATE(791), [sym__br_flw_imp_r_par] = STATE(795), [sym__r_flw_njl_ann_par] = STATE(799), [sym__br_flw_njl_ann_par] = STATE(800), [sym__r_dqt_str_val] = STATE(554), [sym__br_dqt_str_val] = STATE(645), [sym__r_dqt_str] = STATE(706), [sym__br_dqt_str] = STATE(707), [sym__r_sqt_str_val] = STATE(554), [sym__br_sqt_str_val] = STATE(645), [sym__r_sqt_str] = STATE(708), [sym__br_sqt_str] = STATE(709), [sym__r_pln_flw_val] = STATE(674), [sym__br_pln_flw_val] = STATE(672), [sym__r_sgl_pln_flw] = STATE(749), [sym__br_sgl_pln_flw] = STATE(748), [sym__r_mtl_pln_flw] = STATE(749), [sym__br_mtl_pln_flw] = STATE(748), [sym__r_als_val] = STATE(674), [sym__br_als_val] = STATE(672), [sym__r_als] = STATE(746), [sym__br_als] = STATE(710), [sym__r_acr] = STATE(209), [sym__br_acr] = STATE(210), [sym__r_flw_seq_bgn] = ACTIONS(491), [sym__br_flw_seq_bgn] = ACTIONS(289), [sym__r_flw_map_bgn] = ACTIONS(493), [sym__br_flw_map_bgn] = ACTIONS(297), [sym__r_flw_key_bgn] = ACTIONS(495), [sym__br_flw_key_bgn] = ACTIONS(301), [sym__r_flw_njv_bgn] = ACTIONS(497), [sym__br_flw_njv_bgn] = ACTIONS(305), [sym__r_dqt_str_bgn] = ACTIONS(499), [sym__br_dqt_str_bgn] = ACTIONS(309), [sym__r_sqt_str_bgn] = ACTIONS(501), [sym__br_sqt_str_bgn] = ACTIONS(313), [sym__r_sgl_pln_nul_flw] = ACTIONS(315), [sym__br_sgl_pln_nul_flw] = ACTIONS(317), [sym__r_sgl_pln_bol_flw] = ACTIONS(315), [sym__br_sgl_pln_bol_flw] = ACTIONS(317), [sym__r_sgl_pln_int_flw] = ACTIONS(315), [sym__br_sgl_pln_int_flw] = ACTIONS(317), [sym__r_sgl_pln_flt_flw] = ACTIONS(315), [sym__br_sgl_pln_flt_flw] = ACTIONS(317), [sym__r_sgl_pln_tms_flw] = ACTIONS(315), [sym__br_sgl_pln_tms_flw] = ACTIONS(317), [sym__r_sgl_pln_str_flw] = ACTIONS(315), [sym__br_sgl_pln_str_flw] = ACTIONS(317), [sym__r_mtl_pln_str_flw] = ACTIONS(319), [sym__br_mtl_pln_str_flw] = ACTIONS(321), [sym__r_tag] = ACTIONS(503), [sym__br_tag] = ACTIONS(325), [sym__r_acr_bgn] = ACTIONS(327), [sym__br_acr_bgn] = ACTIONS(329), [sym__r_als_bgn] = ACTIONS(331), [sym__br_als_bgn] = ACTIONS(333), [sym_comment] = ACTIONS(3), }, [STATE(80)] = { [sym__br_sgl_prp_val] = STATE(1237), [sym__br_sgl_prp] = STATE(309), [sym__br_blk_seq] = STATE(1201), [sym__br_blk_seq_itm] = STATE(1048), [sym__br_blk_map] = STATE(1202), [sym__br_blk_map_itm] = STATE(130), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str] = STATE(1203), [sym__br_blk_str] = STATE(1203), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(1204), [sym__br_flw_seq] = STATE(1204), [sym__br_sgl_flw_seq] = STATE(1551), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(1205), [sym__br_flw_map] = STATE(1205), [sym__br_sgl_flw_map] = STATE(1514), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(1206), [sym__br_dqt_str] = STATE(1206), [sym__br_sgl_dqt_str] = STATE(1446), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(1207), [sym__br_sqt_str] = STATE(1207), [sym__br_sgl_sqt_str] = STATE(1417), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(1208), [sym__br_sgl_pln_blk] = STATE(1040), [sym__r_mtl_pln_blk] = STATE(1208), [sym__br_mtl_pln_blk] = STATE(1208), [sym__br_als_val] = STATE(1237), [sym__br_als] = STATE(1487), [sym__br_acr] = STATE(415), [sym__eof] = ACTIONS(369), [sym__s_drs_end] = ACTIONS(369), [sym__s_doc_end] = ACTIONS(369), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__r_blk_lit_bgn] = ACTIONS(29), [sym__br_blk_lit_bgn] = ACTIONS(31), [sym__r_blk_fld_bgn] = ACTIONS(29), [sym__br_blk_fld_bgn] = ACTIONS(31), [sym__r_flw_seq_bgn] = ACTIONS(189), [sym__br_flw_seq_bgn] = ACTIONS(35), [sym__r_flw_map_bgn] = ACTIONS(191), [sym__br_flw_map_bgn] = ACTIONS(39), [sym__r_dqt_str_bgn] = ACTIONS(193), [sym__br_dqt_str_bgn] = ACTIONS(43), [sym__r_sqt_str_bgn] = ACTIONS(195), [sym__br_sqt_str_bgn] = ACTIONS(47), [sym__r_sgl_pln_nul_blk] = ACTIONS(197), [sym__br_sgl_pln_nul_blk] = ACTIONS(51), [sym__r_sgl_pln_bol_blk] = ACTIONS(197), [sym__br_sgl_pln_bol_blk] = ACTIONS(51), [sym__r_sgl_pln_int_blk] = ACTIONS(197), [sym__br_sgl_pln_int_blk] = ACTIONS(51), [sym__r_sgl_pln_flt_blk] = ACTIONS(197), [sym__br_sgl_pln_flt_blk] = ACTIONS(51), [sym__r_sgl_pln_tms_blk] = ACTIONS(197), [sym__br_sgl_pln_tms_blk] = ACTIONS(51), [sym__r_sgl_pln_str_blk] = ACTIONS(197), [sym__br_sgl_pln_str_blk] = ACTIONS(51), [sym__r_mtl_pln_str_blk] = ACTIONS(53), [sym__br_mtl_pln_str_blk] = ACTIONS(55), [sym__br_tag] = ACTIONS(371), [sym__br_acr_bgn] = ACTIONS(373), [sym__br_als_bgn] = ACTIONS(375), [sym_comment] = ACTIONS(3), }, [STATE(81)] = { [sym__br_sgl_prp_val] = STATE(1237), [sym__br_sgl_prp] = STATE(309), [sym__br_blk_seq] = STATE(1177), [sym__br_blk_seq_itm] = STATE(1048), [sym__br_blk_map] = STATE(1185), [sym__br_blk_map_itm] = STATE(130), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str] = STATE(1186), [sym__br_blk_str] = STATE(1186), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(1188), [sym__br_flw_seq] = STATE(1188), [sym__br_sgl_flw_seq] = STATE(1551), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(1191), [sym__br_flw_map] = STATE(1191), [sym__br_sgl_flw_map] = STATE(1514), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(1192), [sym__br_dqt_str] = STATE(1192), [sym__br_sgl_dqt_str] = STATE(1446), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(1197), [sym__br_sqt_str] = STATE(1197), [sym__br_sgl_sqt_str] = STATE(1417), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(1199), [sym__br_sgl_pln_blk] = STATE(1037), [sym__r_mtl_pln_blk] = STATE(1199), [sym__br_mtl_pln_blk] = STATE(1199), [sym__br_als_val] = STATE(1237), [sym__br_als] = STATE(1487), [sym__br_acr] = STATE(415), [sym__eof] = ACTIONS(377), [sym__s_drs_end] = ACTIONS(377), [sym__s_doc_end] = ACTIONS(377), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__r_blk_lit_bgn] = ACTIONS(29), [sym__br_blk_lit_bgn] = ACTIONS(31), [sym__r_blk_fld_bgn] = ACTIONS(29), [sym__br_blk_fld_bgn] = ACTIONS(31), [sym__r_flw_seq_bgn] = ACTIONS(189), [sym__br_flw_seq_bgn] = ACTIONS(35), [sym__r_flw_map_bgn] = ACTIONS(191), [sym__br_flw_map_bgn] = ACTIONS(39), [sym__r_dqt_str_bgn] = ACTIONS(193), [sym__br_dqt_str_bgn] = ACTIONS(43), [sym__r_sqt_str_bgn] = ACTIONS(195), [sym__br_sqt_str_bgn] = ACTIONS(47), [sym__r_sgl_pln_nul_blk] = ACTIONS(197), [sym__br_sgl_pln_nul_blk] = ACTIONS(51), [sym__r_sgl_pln_bol_blk] = ACTIONS(197), [sym__br_sgl_pln_bol_blk] = ACTIONS(51), [sym__r_sgl_pln_int_blk] = ACTIONS(197), [sym__br_sgl_pln_int_blk] = ACTIONS(51), [sym__r_sgl_pln_flt_blk] = ACTIONS(197), [sym__br_sgl_pln_flt_blk] = ACTIONS(51), [sym__r_sgl_pln_tms_blk] = ACTIONS(197), [sym__br_sgl_pln_tms_blk] = ACTIONS(51), [sym__r_sgl_pln_str_blk] = ACTIONS(197), [sym__br_sgl_pln_str_blk] = ACTIONS(51), [sym__r_mtl_pln_str_blk] = ACTIONS(53), [sym__br_mtl_pln_str_blk] = ACTIONS(55), [sym__br_tag] = ACTIONS(371), [sym__br_acr_bgn] = ACTIONS(373), [sym__br_als_bgn] = ACTIONS(375), [sym_comment] = ACTIONS(3), }, [STATE(82)] = { [sym__br_sgl_prp_val] = STATE(1237), [sym__br_sgl_prp] = STATE(309), [sym__br_blk_seq] = STATE(1273), [sym__br_blk_seq_itm] = STATE(1003), [sym__br_blk_map] = STATE(1274), [sym__br_blk_map_itm] = STATE(135), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str] = STATE(1275), [sym__br_blk_str] = STATE(1275), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(1276), [sym__br_flw_seq] = STATE(1276), [sym__br_sgl_flw_seq] = STATE(1551), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(1277), [sym__br_flw_map] = STATE(1277), [sym__br_sgl_flw_map] = STATE(1514), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(1278), [sym__br_dqt_str] = STATE(1278), [sym__br_sgl_dqt_str] = STATE(1446), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(1279), [sym__br_sqt_str] = STATE(1279), [sym__br_sgl_sqt_str] = STATE(1417), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(1280), [sym__br_sgl_pln_blk] = STATE(1159), [sym__r_mtl_pln_blk] = STATE(1280), [sym__br_mtl_pln_blk] = STATE(1280), [sym__br_als_val] = STATE(1237), [sym__br_als] = STATE(1487), [sym__br_acr] = STATE(415), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(377), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__r_blk_lit_bgn] = ACTIONS(125), [sym__br_blk_lit_bgn] = ACTIONS(127), [sym__r_blk_fld_bgn] = ACTIONS(125), [sym__br_blk_fld_bgn] = ACTIONS(127), [sym__r_flw_seq_bgn] = ACTIONS(567), [sym__br_flw_seq_bgn] = ACTIONS(131), [sym__r_flw_map_bgn] = ACTIONS(569), [sym__br_flw_map_bgn] = ACTIONS(135), [sym__r_dqt_str_bgn] = ACTIONS(571), [sym__br_dqt_str_bgn] = ACTIONS(139), [sym__r_sqt_str_bgn] = ACTIONS(573), [sym__br_sqt_str_bgn] = ACTIONS(143), [sym__r_sgl_pln_nul_blk] = ACTIONS(575), [sym__br_sgl_pln_nul_blk] = ACTIONS(147), [sym__r_sgl_pln_bol_blk] = ACTIONS(575), [sym__br_sgl_pln_bol_blk] = ACTIONS(147), [sym__r_sgl_pln_int_blk] = ACTIONS(575), [sym__br_sgl_pln_int_blk] = ACTIONS(147), [sym__r_sgl_pln_flt_blk] = ACTIONS(575), [sym__br_sgl_pln_flt_blk] = ACTIONS(147), [sym__r_sgl_pln_tms_blk] = ACTIONS(575), [sym__br_sgl_pln_tms_blk] = ACTIONS(147), [sym__r_sgl_pln_str_blk] = ACTIONS(575), [sym__br_sgl_pln_str_blk] = ACTIONS(147), [sym__r_mtl_pln_str_blk] = ACTIONS(149), [sym__br_mtl_pln_str_blk] = ACTIONS(151), [sym__br_tag] = ACTIONS(371), [sym__br_acr_bgn] = ACTIONS(373), [sym__br_als_bgn] = ACTIONS(375), [sym__bl] = ACTIONS(377), [sym_comment] = ACTIONS(3), }, [STATE(83)] = { [sym__br_sgl_prp_val] = STATE(1237), [sym__br_sgl_prp] = STATE(309), [sym__br_blk_seq] = STATE(1284), [sym__br_blk_seq_itm] = STATE(1003), [sym__br_blk_map] = STATE(1285), [sym__br_blk_map_itm] = STATE(135), [sym__br_blk_exp_itm] = STATE(319), [sym__br_blk_key_itm] = STATE(278), [sym__br_blk_val_itm] = STATE(328), [sym__br_blk_imp_itm] = STATE(364), [sym__r_blk_str] = STATE(1286), [sym__br_blk_str] = STATE(1286), [sym__br_sgl_flw_seq_val] = STATE(1237), [sym__r_flw_seq] = STATE(1287), [sym__br_flw_seq] = STATE(1287), [sym__br_sgl_flw_seq] = STATE(1551), [sym__br_sgl_flw_map_val] = STATE(1237), [sym__r_flw_map] = STATE(1288), [sym__br_flw_map] = STATE(1288), [sym__br_sgl_flw_map] = STATE(1514), [sym__br_sgl_dqt_str_val] = STATE(1237), [sym__r_dqt_str] = STATE(1289), [sym__br_dqt_str] = STATE(1289), [sym__br_sgl_dqt_str] = STATE(1446), [sym__br_sgl_sqt_str_val] = STATE(1237), [sym__r_sqt_str] = STATE(1290), [sym__br_sqt_str] = STATE(1290), [sym__br_sgl_sqt_str] = STATE(1417), [sym__br_sgl_pln_blk_val] = STATE(1237), [sym__r_sgl_pln_blk] = STATE(1291), [sym__br_sgl_pln_blk] = STATE(1160), [sym__r_mtl_pln_blk] = STATE(1291), [sym__br_mtl_pln_blk] = STATE(1291), [sym__br_als_val] = STATE(1237), [sym__br_als] = STATE(1487), [sym__br_acr] = STATE(415), [sym__br_blk_seq_bgn] = ACTIONS(19), [sym__b_blk_seq_bgn] = ACTIONS(369), [sym__br_blk_key_bgn] = ACTIONS(23), [sym__br_blk_val_bgn] = ACTIONS(27), [sym__r_blk_lit_bgn] = ACTIONS(125), [sym__br_blk_lit_bgn] = ACTIONS(127), [sym__r_blk_fld_bgn] = ACTIONS(125), [sym__br_blk_fld_bgn] = ACTIONS(127), [sym__r_flw_seq_bgn] = ACTIONS(567), [sym__br_flw_seq_bgn] = ACTIONS(131), [sym__r_flw_map_bgn] = ACTIONS(569), [sym__br_flw_map_bgn] = ACTIONS(135), [sym__r_dqt_str_bgn] = ACTIONS(571), [sym__br_dqt_str_bgn] = ACTIONS(139), [sym__r_sqt_str_bgn] = ACTIONS(573), [sym__br_sqt_str_bgn] = ACTIONS(143), [sym__r_sgl_pln_nul_blk] = ACTIONS(575), [sym__br_sgl_pln_nul_blk] = ACTIONS(147), [sym__r_sgl_pln_bol_blk] = ACTIONS(575), [sym__br_sgl_pln_bol_blk] = ACTIONS(147), [sym__r_sgl_pln_int_blk] = ACTIONS(575), [sym__br_sgl_pln_int_blk] = ACTIONS(147), [sym__r_sgl_pln_flt_blk] = ACTIONS(575), [sym__br_sgl_pln_flt_blk] = ACTIONS(147), [sym__r_sgl_pln_tms_blk] = ACTIONS(575), [sym__br_sgl_pln_tms_blk] = ACTIONS(147), [sym__r_sgl_pln_str_blk] = ACTIONS(575), [sym__br_sgl_pln_str_blk] = ACTIONS(147), [sym__r_mtl_pln_str_blk] = ACTIONS(149), [sym__br_mtl_pln_str_blk] = ACTIONS(151), [sym__br_tag] = ACTIONS(371), [sym__br_acr_bgn] = ACTIONS(373), [sym__br_als_bgn] = ACTIONS(375), [sym__bl] = ACTIONS(369), [sym_comment] = ACTIONS(3), }, [STATE(84)] = { [sym__r_prp_val] = STATE(981), [sym__br_prp_val] = STATE(984), [sym__r_prp] = STATE(162), [sym__br_prp] = STATE(164), [sym__r_flw_seq_val] = STATE(1031), [sym__br_flw_seq_val] = STATE(1035), [sym__r_flw_seq] = STATE(1282), [sym__br_flw_seq] = STATE(1283), [sym__r_flw_map_val] = STATE(1031), [sym__br_flw_map_val] = STATE(1035), [sym__r_flw_map] = STATE(1302), [sym__br_flw_map] = STATE(1304), [sym__r_flw_imp_r_par] = STATE(929), [sym__r_flw_imp_br_par] = STATE(931), [sym__br_flw_imp_r_par] = STATE(932), [sym__br_flw_imp_br_par] = STATE(933), [sym__r_dqt_str_val] = STATE(1031), [sym__br_dqt_str_val] = STATE(1035), [sym__r_dqt_str] = STATE(1306), [sym__br_dqt_str] = STATE(1307), [sym__r_sqt_str_val] = STATE(1031), [sym__br_sqt_str_val] = STATE(1035), [sym__r_sqt_str] = STATE(1309), [sym__br_sqt_str] = STATE(1310), [sym__r_pln_flw_val] = STATE(981), [sym__br_pln_flw_val] = STATE(984), [sym__r_sgl_pln_flw] = STATE(1222), [sym__br_sgl_pln_flw] = STATE(1345), [sym__r_mtl_pln_flw] = STATE(1222), [sym__br_mtl_pln_flw] = STATE(1345), [sym__r_als_val] = STATE(981), [sym__br_als_val] = STATE(984), [sym__r_als] = STATE(1246), [sym__br_als] = STATE(1272), [sym__r_acr] = STATE(245), [sym__br_acr] = STATE(248), [sym__r_flw_seq_bgn] = ACTIONS(577), [sym__br_flw_seq_bgn] = ACTIONS(387), [sym__r_flw_map_bgn] = ACTIONS(579), [sym__br_flw_map_bgn] = ACTIONS(391), [sym__r_flw_map_end] = ACTIONS(581), [sym__br_flw_map_end] = ACTIONS(581), [sym__b_flw_map_end] = ACTIONS(581), [sym__r_flw_sep_bgn] = ACTIONS(581), [sym__br_flw_sep_bgn] = ACTIONS(581), [sym__r_dqt_str_bgn] = ACTIONS(583), [sym__br_dqt_str_bgn] = ACTIONS(400), [sym__r_sqt_str_bgn] = ACTIONS(585), [sym__br_sqt_str_bgn] = ACTIONS(404), [sym__r_sgl_pln_nul_flw] = ACTIONS(406), [sym__br_sgl_pln_nul_flw] = ACTIONS(408), [sym__r_sgl_pln_bol_flw] = ACTIONS(406), [sym__br_sgl_pln_bol_flw] = ACTIONS(408), [sym__r_sgl_pln_int_flw] = ACTIONS(406), [sym__br_sgl_pln_int_flw] = ACTIONS(408), [sym__r_sgl_pln_flt_flw] = ACTIONS(406), [sym__br_sgl_pln_flt_flw] = ACTIONS(408), [sym__r_sgl_pln_tms_flw] = ACTIONS(406), [sym__br_sgl_pln_tms_flw] = ACTIONS(408), [sym__r_sgl_pln_str_flw] = ACTIONS(406), [sym__br_sgl_pln_str_flw] = ACTIONS(408), [sym__r_mtl_pln_str_flw] = ACTIONS(410), [sym__br_mtl_pln_str_flw] = ACTIONS(412), [sym__r_tag] = ACTIONS(587), [sym__br_tag] = ACTIONS(416), [sym__r_acr_bgn] = ACTIONS(418), [sym__br_acr_bgn] = ACTIONS(420), [sym__r_als_bgn] = ACTIONS(422), [sym__br_als_bgn] = ACTIONS(424), [sym_comment] = ACTIONS(3), }, [STATE(85)] = { [sym__r_prp_val] = STATE(980), [sym__br_prp_val] = STATE(991), [sym__r_prp] = STATE(162), [sym__br_prp] = STATE(164), [sym__r_flw_seq_val] = STATE(1009), [sym__br_flw_seq_val] = STATE(1018), [sym__r_flw_seq] = STATE(1282), [sym__br_flw_seq] = STATE(1283), [sym__r_flw_map_val] = STATE(1009), [sym__br_flw_map_val] = STATE(1018), [sym__r_flw_map] = STATE(1302), [sym__br_flw_map] = STATE(1304), [sym__r_flw_imp_r_par] = STATE(948), [sym__r_flw_imp_br_par] = STATE(953), [sym__br_flw_imp_r_par] = STATE(960), [sym__br_flw_imp_br_par] = STATE(804), [sym__r_dqt_str_val] = STATE(1009), [sym__br_dqt_str_val] = STATE(1018), [sym__r_dqt_str] = STATE(1306), [sym__br_dqt_str] = STATE(1307), [sym__r_sqt_str_val] = STATE(1009), [sym__br_sqt_str_val] = STATE(1018), [sym__r_sqt_str] = STATE(1309), [sym__br_sqt_str] = STATE(1310), [sym__r_pln_flw_val] = STATE(980), [sym__br_pln_flw_val] = STATE(991), [sym__r_sgl_pln_flw] = STATE(1222), [sym__br_sgl_pln_flw] = STATE(1345), [sym__r_mtl_pln_flw] = STATE(1222), [sym__br_mtl_pln_flw] = STATE(1345), [sym__r_als_val] = STATE(980), [sym__br_als_val] = STATE(991), [sym__r_als] = STATE(1246), [sym__br_als] = STATE(1272), [sym__r_acr] = STATE(245), [sym__br_acr] = STATE(248), [sym__r_flw_seq_bgn] = ACTIONS(577), [sym__br_flw_seq_bgn] = ACTIONS(387), [sym__r_flw_seq_end] = ACTIONS(396), [sym__br_flw_seq_end] = ACTIONS(396), [sym__b_flw_seq_end] = ACTIONS(396), [sym__r_flw_map_bgn] = ACTIONS(579), [sym__br_flw_map_bgn] = ACTIONS(391), [sym__r_flw_sep_bgn] = ACTIONS(396), [sym__br_flw_sep_bgn] = ACTIONS(396), [sym__r_dqt_str_bgn] = ACTIONS(583), [sym__br_dqt_str_bgn] = ACTIONS(400), [sym__r_sqt_str_bgn] = ACTIONS(585), [sym__br_sqt_str_bgn] = ACTIONS(404), [sym__r_sgl_pln_nul_flw] = ACTIONS(406), [sym__br_sgl_pln_nul_flw] = ACTIONS(408), [sym__r_sgl_pln_bol_flw] = ACTIONS(406), [sym__br_sgl_pln_bol_flw] = ACTIONS(408), [sym__r_sgl_pln_int_flw] = ACTIONS(406), [sym__br_sgl_pln_int_flw] = ACTIONS(408), [sym__r_sgl_pln_flt_flw] = ACTIONS(406), [sym__br_sgl_pln_flt_flw] = ACTIONS(408), [sym__r_sgl_pln_tms_flw] = ACTIONS(406), [sym__br_sgl_pln_tms_flw] = ACTIONS(408), [sym__r_sgl_pln_str_flw] = ACTIONS(406), [sym__br_sgl_pln_str_flw] = ACTIONS(408), [sym__r_mtl_pln_str_flw] = ACTIONS(410), [sym__br_mtl_pln_str_flw] = ACTIONS(412), [sym__r_tag] = ACTIONS(587), [sym__br_tag] = ACTIONS(416), [sym__r_acr_bgn] = ACTIONS(418), [sym__br_acr_bgn] = ACTIONS(420), [sym__r_als_bgn] = ACTIONS(422), [sym__br_als_bgn] = ACTIONS(424), [sym_comment] = ACTIONS(3), }, [STATE(86)] = { [sym__r_prp_val] = STATE(980), [sym__br_prp_val] = STATE(991), [sym__r_prp] = STATE(162), [sym__br_prp] = STATE(164), [sym__r_flw_seq_val] = STATE(1009), [sym__br_flw_seq_val] = STATE(1018), [sym__r_flw_seq] = STATE(1282), [sym__br_flw_seq] = STATE(1283), [sym__r_flw_map_val] = STATE(1009), [sym__br_flw_map_val] = STATE(1018), [sym__r_flw_map] = STATE(1302), [sym__br_flw_map] = STATE(1304), [sym__r_flw_imp_r_par] = STATE(806), [sym__r_flw_imp_br_par] = STATE(807), [sym__br_flw_imp_r_par] = STATE(808), [sym__br_flw_imp_br_par] = STATE(809), [sym__r_dqt_str_val] = STATE(1009), [sym__br_dqt_str_val] = STATE(1018), [sym__r_dqt_str] = STATE(1306), [sym__br_dqt_str] = STATE(1307), [sym__r_sqt_str_val] = STATE(1009), [sym__br_sqt_str_val] = STATE(1018), [sym__r_sqt_str] = STATE(1309), [sym__br_sqt_str] = STATE(1310), [sym__r_pln_flw_val] = STATE(980), [sym__br_pln_flw_val] = STATE(991), [sym__r_sgl_pln_flw] = STATE(1222), [sym__br_sgl_pln_flw] = STATE(1345), [sym__r_mtl_pln_flw] = STATE(1222), [sym__br_mtl_pln_flw] = STATE(1345), [sym__r_als_val] = STATE(980), [sym__br_als_val] = STATE(991), [sym__r_als] = STATE(1246), [sym__br_als] = STATE(1272), [sym__r_acr] = STATE(245), [sym__br_acr] = STATE(248), [sym__r_flw_seq_bgn] = ACTIONS(577), [sym__br_flw_seq_bgn] = ACTIONS(387), [sym__r_flw_seq_end] = ACTIONS(581), [sym__br_flw_seq_end] = ACTIONS(581), [sym__b_flw_seq_end] = ACTIONS(581), [sym__r_flw_map_bgn] = ACTIONS(579), [sym__br_flw_map_bgn] = ACTIONS(391), [sym__r_flw_sep_bgn] = ACTIONS(581), [sym__br_flw_sep_bgn] = ACTIONS(581), [sym__r_dqt_str_bgn] = ACTIONS(583), [sym__br_dqt_str_bgn] = ACTIONS(400), [sym__r_sqt_str_bgn] = ACTIONS(585), [sym__br_sqt_str_bgn] = ACTIONS(404), [sym__r_sgl_pln_nul_flw] = ACTIONS(406), [sym__br_sgl_pln_nul_flw] = ACTIONS(408), [sym__r_sgl_pln_bol_flw] = ACTIONS(406), [sym__br_sgl_pln_bol_flw] = ACTIONS(408), [sym__r_sgl_pln_int_flw] = ACTIONS(406), [sym__br_sgl_pln_int_flw] = ACTIONS(408), [sym__r_sgl_pln_flt_flw] = ACTIONS(406), [sym__br_sgl_pln_flt_flw] = ACTIONS(408), [sym__r_sgl_pln_tms_flw] = ACTIONS(406), [sym__br_sgl_pln_tms_flw] = ACTIONS(408), [sym__r_sgl_pln_str_flw] = ACTIONS(406), [sym__br_sgl_pln_str_flw] = ACTIONS(408), [sym__r_mtl_pln_str_flw] = ACTIONS(410), [sym__br_mtl_pln_str_flw] = ACTIONS(412), [sym__r_tag] = ACTIONS(587), [sym__br_tag] = ACTIONS(416), [sym__r_acr_bgn] = ACTIONS(418), [sym__br_acr_bgn] = ACTIONS(420), [sym__r_als_bgn] = ACTIONS(422), [sym__br_als_bgn] = ACTIONS(424), [sym_comment] = ACTIONS(3), }, [STATE(87)] = { [sym__r_prp_val] = STATE(981), [sym__br_prp_val] = STATE(984), [sym__r_prp] = STATE(162), [sym__br_prp] = STATE(164), [sym__r_flw_seq_val] = STATE(1031), [sym__br_flw_seq_val] = STATE(1035), [sym__r_flw_seq] = STATE(1282), [sym__br_flw_seq] = STATE(1283), [sym__r_flw_map_val] = STATE(1031), [sym__br_flw_map_val] = STATE(1035), [sym__r_flw_map] = STATE(1302), [sym__br_flw_map] = STATE(1304), [sym__r_flw_imp_r_par] = STATE(924), [sym__r_flw_imp_br_par] = STATE(925), [sym__br_flw_imp_r_par] = STATE(926), [sym__br_flw_imp_br_par] = STATE(927), [sym__r_dqt_str_val] = STATE(1031), [sym__br_dqt_str_val] = STATE(1035), [sym__r_dqt_str] = STATE(1306), [sym__br_dqt_str] = STATE(1307), [sym__r_sqt_str_val] = STATE(1031), [sym__br_sqt_str_val] = STATE(1035), [sym__r_sqt_str] = STATE(1309), [sym__br_sqt_str] = STATE(1310), [sym__r_pln_flw_val] = STATE(981), [sym__br_pln_flw_val] = STATE(984), [sym__r_sgl_pln_flw] = STATE(1222), [sym__br_sgl_pln_flw] = STATE(1345), [sym__r_mtl_pln_flw] = STATE(1222), [sym__br_mtl_pln_flw] = STATE(1345), [sym__r_als_val] = STATE(981), [sym__br_als_val] = STATE(984), [sym__r_als] = STATE(1246), [sym__br_als] = STATE(1272), [sym__r_acr] = STATE(245), [sym__br_acr] = STATE(248), [sym__r_flw_seq_bgn] = ACTIONS(577), [sym__br_flw_seq_bgn] = ACTIONS(387), [sym__r_flw_map_bgn] = ACTIONS(579), [sym__br_flw_map_bgn] = ACTIONS(391), [sym__r_flw_map_end] = ACTIONS(396), [sym__br_flw_map_end] = ACTIONS(396), [sym__b_flw_map_end] = ACTIONS(396), [sym__r_flw_sep_bgn] = ACTIONS(396), [sym__br_flw_sep_bgn] = ACTIONS(396), [sym__r_dqt_str_bgn] = ACTIONS(583), [sym__br_dqt_str_bgn] = ACTIONS(400), [sym__r_sqt_str_bgn] = ACTIONS(585), [sym__br_sqt_str_bgn] = ACTIONS(404), [sym__r_sgl_pln_nul_flw] = ACTIONS(406), [sym__br_sgl_pln_nul_flw] = ACTIONS(408), [sym__r_sgl_pln_bol_flw] = ACTIONS(406), [sym__br_sgl_pln_bol_flw] = ACTIONS(408), [sym__r_sgl_pln_int_flw] = ACTIONS(406), [sym__br_sgl_pln_int_flw] = ACTIONS(408), [sym__r_sgl_pln_flt_flw] = ACTIONS(406), [sym__br_sgl_pln_flt_flw] = ACTIONS(408), [sym__r_sgl_pln_tms_flw] = ACTIONS(406), [sym__br_sgl_pln_tms_flw] = ACTIONS(408), [sym__r_sgl_pln_str_flw] = ACTIONS(406), [sym__br_sgl_pln_str_flw] = ACTIONS(408), [sym__r_mtl_pln_str_flw] = ACTIONS(410), [sym__br_mtl_pln_str_flw] = ACTIONS(412), [sym__r_tag] = ACTIONS(587), [sym__br_tag] = ACTIONS(416), [sym__r_acr_bgn] = ACTIONS(418), [sym__br_acr_bgn] = ACTIONS(420), [sym__r_als_bgn] = ACTIONS(422), [sym__br_als_bgn] = ACTIONS(424), [sym_comment] = ACTIONS(3), }, [STATE(88)] = { [sym__r_prp_val] = STATE(934), [sym__br_prp_val] = STATE(934), [sym__r_prp] = STATE(119), [sym__br_prp] = STATE(120), [sym__r_flw_seq_val] = STATE(934), [sym__br_flw_seq_val] = STATE(934), [sym__r_flw_seq] = STATE(865), [sym__br_flw_seq] = STATE(866), [sym__r_flw_map_val] = STATE(934), [sym__br_flw_map_val] = STATE(934), [sym__r_flw_map] = STATE(867), [sym__br_flw_map] = STATE(868), [sym__flw_ann_par_tal] = STATE(934), [sym__r_dqt_str_val] = STATE(934), [sym__br_dqt_str_val] = STATE(934), [sym__r_dqt_str] = STATE(869), [sym__br_dqt_str] = STATE(870), [sym__r_sqt_str_val] = STATE(934), [sym__br_sqt_str_val] = STATE(934), [sym__r_sqt_str] = STATE(871), [sym__br_sqt_str] = STATE(872), [sym__r_pln_flw_val] = STATE(934), [sym__br_pln_flw_val] = STATE(934), [sym__r_sgl_pln_flw] = STATE(803), [sym__br_sgl_pln_flw] = STATE(802), [sym__r_mtl_pln_flw] = STATE(803), [sym__br_mtl_pln_flw] = STATE(802), [sym__r_als_val] = STATE(934), [sym__br_als_val] = STATE(934), [sym__r_als] = STATE(913), [sym__br_als] = STATE(914), [sym__r_acr] = STATE(213), [sym__br_acr] = STATE(218), [sym__r_flw_seq_bgn] = ACTIONS(589), [sym__br_flw_seq_bgn] = ACTIONS(517), [sym__r_flw_map_bgn] = ACTIONS(591), [sym__br_flw_map_bgn] = ACTIONS(521), [sym__r_flw_map_end] = ACTIONS(457), [sym__br_flw_map_end] = ACTIONS(457), [sym__b_flw_map_end] = ACTIONS(457), [sym__r_flw_sep_bgn] = ACTIONS(457), [sym__br_flw_sep_bgn] = ACTIONS(457), [sym__r_dqt_str_bgn] = ACTIONS(593), [sym__br_dqt_str_bgn] = ACTIONS(525), [sym__r_sqt_str_bgn] = ACTIONS(595), [sym__br_sqt_str_bgn] = ACTIONS(529), [sym__r_sgl_pln_nul_flw] = ACTIONS(531), [sym__br_sgl_pln_nul_flw] = ACTIONS(533), [sym__r_sgl_pln_bol_flw] = ACTIONS(531), [sym__br_sgl_pln_bol_flw] = ACTIONS(533), [sym__r_sgl_pln_int_flw] = ACTIONS(531), [sym__br_sgl_pln_int_flw] = ACTIONS(533), [sym__r_sgl_pln_flt_flw] = ACTIONS(531), [sym__br_sgl_pln_flt_flw] = ACTIONS(533), [sym__r_sgl_pln_tms_flw] = ACTIONS(531), [sym__br_sgl_pln_tms_flw] = ACTIONS(533), [sym__r_sgl_pln_str_flw] = ACTIONS(531), [sym__br_sgl_pln_str_flw] = ACTIONS(533), [sym__r_mtl_pln_str_flw] = ACTIONS(535), [sym__br_mtl_pln_str_flw] = ACTIONS(537), [sym__r_tag] = ACTIONS(597), [sym__br_tag] = ACTIONS(541), [sym__r_acr_bgn] = ACTIONS(543), [sym__br_acr_bgn] = ACTIONS(545), [sym__r_als_bgn] = ACTIONS(547), [sym__br_als_bgn] = ACTIONS(549), [sym_comment] = ACTIONS(3), }, [STATE(89)] = { [sym__r_prp_val] = STATE(951), [sym__br_prp_val] = STATE(951), [sym__r_prp] = STATE(119), [sym__br_prp] = STATE(120), [sym__r_flw_seq_val] = STATE(951), [sym__br_flw_seq_val] = STATE(951), [sym__r_flw_seq] = STATE(865), [sym__br_flw_seq] = STATE(866), [sym__r_flw_map_val] = STATE(951), [sym__br_flw_map_val] = STATE(951), [sym__r_flw_map] = STATE(867), [sym__br_flw_map] = STATE(868), [sym__flw_ann_par_tal] = STATE(951), [sym__r_dqt_str_val] = STATE(951), [sym__br_dqt_str_val] = STATE(951), [sym__r_dqt_str] = STATE(869), [sym__br_dqt_str] = STATE(870), [sym__r_sqt_str_val] = STATE(951), [sym__br_sqt_str_val] = STATE(951), [sym__r_sqt_str] = STATE(871), [sym__br_sqt_str] = STATE(872), [sym__r_pln_flw_val] = STATE(951), [sym__br_pln_flw_val] = STATE(951), [sym__r_sgl_pln_flw] = STATE(803), [sym__br_sgl_pln_flw] = STATE(802), [sym__r_mtl_pln_flw] = STATE(803), [sym__br_mtl_pln_flw] = STATE(802), [sym__r_als_val] = STATE(951), [sym__br_als_val] = STATE(951), [sym__r_als] = STATE(913), [sym__br_als] = STATE(914), [sym__r_acr] = STATE(213), [sym__br_acr] = STATE(218), [sym__r_flw_seq_bgn] = ACTIONS(589), [sym__br_flw_seq_bgn] = ACTIONS(517), [sym__r_flw_map_bgn] = ACTIONS(591), [sym__br_flw_map_bgn] = ACTIONS(521), [sym__r_flw_map_end] = ACTIONS(599), [sym__br_flw_map_end] = ACTIONS(599), [sym__b_flw_map_end] = ACTIONS(599), [sym__r_flw_sep_bgn] = ACTIONS(599), [sym__br_flw_sep_bgn] = ACTIONS(599), [sym__r_dqt_str_bgn] = ACTIONS(593), [sym__br_dqt_str_bgn] = ACTIONS(525), [sym__r_sqt_str_bgn] = ACTIONS(595), [sym__br_sqt_str_bgn] = ACTIONS(529), [sym__r_sgl_pln_nul_flw] = ACTIONS(531), [sym__br_sgl_pln_nul_flw] = ACTIONS(533), [sym__r_sgl_pln_bol_flw] = ACTIONS(531), [sym__br_sgl_pln_bol_flw] = ACTIONS(533), [sym__r_sgl_pln_int_flw] = ACTIONS(531), [sym__br_sgl_pln_int_flw] = ACTIONS(533), [sym__r_sgl_pln_flt_flw] = ACTIONS(531), [sym__br_sgl_pln_flt_flw] = ACTIONS(533), [sym__r_sgl_pln_tms_flw] = ACTIONS(531), [sym__br_sgl_pln_tms_flw] = ACTIONS(533), [sym__r_sgl_pln_str_flw] = ACTIONS(531), [sym__br_sgl_pln_str_flw] = ACTIONS(533), [sym__r_mtl_pln_str_flw] = ACTIONS(535), [sym__br_mtl_pln_str_flw] = ACTIONS(537), [sym__r_tag] = ACTIONS(597), [sym__br_tag] = ACTIONS(541), [sym__r_acr_bgn] = ACTIONS(543), [sym__br_acr_bgn] = ACTIONS(545), [sym__r_als_bgn] = ACTIONS(547), [sym__br_als_bgn] = ACTIONS(549), [sym_comment] = ACTIONS(3), }, [STATE(90)] = { [sym__r_prp_val] = STATE(954), [sym__br_prp_val] = STATE(954), [sym__r_prp] = STATE(121), [sym__br_prp] = STATE(117), [sym__r_flw_seq_val] = STATE(954), [sym__br_flw_seq_val] = STATE(954), [sym__r_flw_seq] = STATE(817), [sym__br_flw_seq] = STATE(818), [sym__r_flw_map_val] = STATE(954), [sym__br_flw_map_val] = STATE(954), [sym__r_flw_map] = STATE(819), [sym__br_flw_map] = STATE(820), [sym__flw_ann_par_tal] = STATE(954), [sym__r_dqt_str_val] = STATE(954), [sym__br_dqt_str_val] = STATE(954), [sym__r_dqt_str] = STATE(821), [sym__br_dqt_str] = STATE(822), [sym__r_sqt_str_val] = STATE(954), [sym__br_sqt_str_val] = STATE(954), [sym__r_sqt_str] = STATE(823), [sym__br_sqt_str] = STATE(824), [sym__r_pln_flw_val] = STATE(954), [sym__br_pln_flw_val] = STATE(954), [sym__r_sgl_pln_flw] = STATE(792), [sym__br_sgl_pln_flw] = STATE(786), [sym__r_mtl_pln_flw] = STATE(792), [sym__br_mtl_pln_flw] = STATE(786), [sym__r_als_val] = STATE(954), [sym__br_als_val] = STATE(954), [sym__r_als] = STATE(873), [sym__br_als] = STATE(874), [sym__r_acr] = STATE(214), [sym__br_acr] = STATE(224), [sym__r_flw_seq_bgn] = ACTIONS(601), [sym__br_flw_seq_bgn] = ACTIONS(452), [sym__r_flw_seq_end] = ACTIONS(603), [sym__br_flw_seq_end] = ACTIONS(603), [sym__b_flw_seq_end] = ACTIONS(603), [sym__r_flw_map_bgn] = ACTIONS(605), [sym__br_flw_map_bgn] = ACTIONS(461), [sym__r_flw_sep_bgn] = ACTIONS(603), [sym__br_flw_sep_bgn] = ACTIONS(603), [sym__r_dqt_str_bgn] = ACTIONS(607), [sym__br_dqt_str_bgn] = ACTIONS(465), [sym__r_sqt_str_bgn] = ACTIONS(609), [sym__br_sqt_str_bgn] = ACTIONS(469), [sym__r_sgl_pln_nul_flw] = ACTIONS(471), [sym__br_sgl_pln_nul_flw] = ACTIONS(473), [sym__r_sgl_pln_bol_flw] = ACTIONS(471), [sym__br_sgl_pln_bol_flw] = ACTIONS(473), [sym__r_sgl_pln_int_flw] = ACTIONS(471), [sym__br_sgl_pln_int_flw] = ACTIONS(473), [sym__r_sgl_pln_flt_flw] = ACTIONS(471), [sym__br_sgl_pln_flt_flw] = ACTIONS(473), [sym__r_sgl_pln_tms_flw] = ACTIONS(471), [sym__br_sgl_pln_tms_flw] = ACTIONS(473), [sym__r_sgl_pln_str_flw] = ACTIONS(471), [sym__br_sgl_pln_str_flw] = ACTIONS(473), [sym__r_mtl_pln_str_flw] = ACTIONS(475), [sym__br_mtl_pln_str_flw] = ACTIONS(477), [sym__r_tag] = ACTIONS(611), [sym__br_tag] = ACTIONS(481), [sym__r_acr_bgn] = ACTIONS(483), [sym__br_acr_bgn] = ACTIONS(485), [sym__r_als_bgn] = ACTIONS(487), [sym__br_als_bgn] = ACTIONS(489), [sym_comment] = ACTIONS(3), }, [STATE(91)] = { [sym__r_prp_val] = STATE(810), [sym__br_prp_val] = STATE(810), [sym__r_prp] = STATE(121), [sym__br_prp] = STATE(117), [sym__r_flw_seq_val] = STATE(810), [sym__br_flw_seq_val] = STATE(810), [sym__r_flw_seq] = STATE(817), [sym__br_flw_seq] = STATE(818), [sym__r_flw_map_val] = STATE(810), [sym__br_flw_map_val] = STATE(810), [sym__r_flw_map] = STATE(819), [sym__br_flw_map] = STATE(820), [sym__flw_ann_par_tal] = STATE(810), [sym__r_dqt_str_val] = STATE(810), [sym__br_dqt_str_val] = STATE(810), [sym__r_dqt_str] = STATE(821), [sym__br_dqt_str] = STATE(822), [sym__r_sqt_str_val] = STATE(810), [sym__br_sqt_str_val] = STATE(810), [sym__r_sqt_str] = STATE(823), [sym__br_sqt_str] = STATE(824), [sym__r_pln_flw_val] = STATE(810), [sym__br_pln_flw_val] = STATE(810), [sym__r_sgl_pln_flw] = STATE(792), [sym__br_sgl_pln_flw] = STATE(786), [sym__r_mtl_pln_flw] = STATE(792), [sym__br_mtl_pln_flw] = STATE(786), [sym__r_als_val] = STATE(810), [sym__br_als_val] = STATE(810), [sym__r_als] = STATE(873), [sym__br_als] = STATE(874), [sym__r_acr] = STATE(214), [sym__br_acr] = STATE(224), [sym__r_flw_seq_bgn] = ACTIONS(601), [sym__br_flw_seq_bgn] = ACTIONS(452), [sym__r_flw_seq_end] = ACTIONS(457), [sym__br_flw_seq_end] = ACTIONS(457), [sym__b_flw_seq_end] = ACTIONS(457), [sym__r_flw_map_bgn] = ACTIONS(605), [sym__br_flw_map_bgn] = ACTIONS(461), [sym__r_flw_sep_bgn] = ACTIONS(457), [sym__br_flw_sep_bgn] = ACTIONS(457), [sym__r_dqt_str_bgn] = ACTIONS(607), [sym__br_dqt_str_bgn] = ACTIONS(465), [sym__r_sqt_str_bgn] = ACTIONS(609), [sym__br_sqt_str_bgn] = ACTIONS(469), [sym__r_sgl_pln_nul_flw] = ACTIONS(471), [sym__br_sgl_pln_nul_flw] = ACTIONS(473), [sym__r_sgl_pln_bol_flw] = ACTIONS(471), [sym__br_sgl_pln_bol_flw] = ACTIONS(473), [sym__r_sgl_pln_int_flw] = ACTIONS(471), [sym__br_sgl_pln_int_flw] = ACTIONS(473), [sym__r_sgl_pln_flt_flw] = ACTIONS(471), [sym__br_sgl_pln_flt_flw] = ACTIONS(473), [sym__r_sgl_pln_tms_flw] = ACTIONS(471), [sym__br_sgl_pln_tms_flw] = ACTIONS(473), [sym__r_sgl_pln_str_flw] = ACTIONS(471), [sym__br_sgl_pln_str_flw] = ACTIONS(473), [sym__r_mtl_pln_str_flw] = ACTIONS(475), [sym__br_mtl_pln_str_flw] = ACTIONS(477), [sym__r_tag] = ACTIONS(611), [sym__br_tag] = ACTIONS(481), [sym__r_acr_bgn] = ACTIONS(483), [sym__br_acr_bgn] = ACTIONS(485), [sym__r_als_bgn] = ACTIONS(487), [sym__br_als_bgn] = ACTIONS(489), [sym_comment] = ACTIONS(3), }, [STATE(92)] = { [sym__r_prp_val] = STATE(816), [sym__br_prp_val] = STATE(816), [sym__r_prp] = STATE(121), [sym__br_prp] = STATE(117), [sym__r_flw_seq_val] = STATE(816), [sym__br_flw_seq_val] = STATE(816), [sym__r_flw_seq] = STATE(817), [sym__br_flw_seq] = STATE(818), [sym__r_flw_map_val] = STATE(816), [sym__br_flw_map_val] = STATE(816), [sym__r_flw_map] = STATE(819), [sym__br_flw_map] = STATE(820), [sym__flw_ann_par_tal] = STATE(816), [sym__r_dqt_str_val] = STATE(816), [sym__br_dqt_str_val] = STATE(816), [sym__r_dqt_str] = STATE(821), [sym__br_dqt_str] = STATE(822), [sym__r_sqt_str_val] = STATE(816), [sym__br_sqt_str_val] = STATE(816), [sym__r_sqt_str] = STATE(823), [sym__br_sqt_str] = STATE(824), [sym__r_pln_flw_val] = STATE(816), [sym__br_pln_flw_val] = STATE(816), [sym__r_sgl_pln_flw] = STATE(792), [sym__br_sgl_pln_flw] = STATE(786), [sym__r_mtl_pln_flw] = STATE(792), [sym__br_mtl_pln_flw] = STATE(786), [sym__r_als_val] = STATE(816), [sym__br_als_val] = STATE(816), [sym__r_als] = STATE(873), [sym__br_als] = STATE(874), [sym__r_acr] = STATE(214), [sym__br_acr] = STATE(224), [sym__r_flw_seq_bgn] = ACTIONS(601), [sym__br_flw_seq_bgn] = ACTIONS(452), [sym__r_flw_seq_end] = ACTIONS(599), [sym__br_flw_seq_end] = ACTIONS(599), [sym__b_flw_seq_end] = ACTIONS(599), [sym__r_flw_map_bgn] = ACTIONS(605), [sym__br_flw_map_bgn] = ACTIONS(461), [sym__r_flw_sep_bgn] = ACTIONS(599), [sym__br_flw_sep_bgn] = ACTIONS(599), [sym__r_dqt_str_bgn] = ACTIONS(607), [sym__br_dqt_str_bgn] = ACTIONS(465), [sym__r_sqt_str_bgn] = ACTIONS(609), [sym__br_sqt_str_bgn] = ACTIONS(469), [sym__r_sgl_pln_nul_flw] = ACTIONS(471), [sym__br_sgl_pln_nul_flw] = ACTIONS(473), [sym__r_sgl_pln_bol_flw] = ACTIONS(471), [sym__br_sgl_pln_bol_flw] = ACTIONS(473), [sym__r_sgl_pln_int_flw] = ACTIONS(471), [sym__br_sgl_pln_int_flw] = ACTIONS(473), [sym__r_sgl_pln_flt_flw] = ACTIONS(471), [sym__br_sgl_pln_flt_flw] = ACTIONS(473), [sym__r_sgl_pln_tms_flw] = ACTIONS(471), [sym__br_sgl_pln_tms_flw] = ACTIONS(473), [sym__r_sgl_pln_str_flw] = ACTIONS(471), [sym__br_sgl_pln_str_flw] = ACTIONS(473), [sym__r_mtl_pln_str_flw] = ACTIONS(475), [sym__br_mtl_pln_str_flw] = ACTIONS(477), [sym__r_tag] = ACTIONS(611), [sym__br_tag] = ACTIONS(481), [sym__r_acr_bgn] = ACTIONS(483), [sym__br_acr_bgn] = ACTIONS(485), [sym__r_als_bgn] = ACTIONS(487), [sym__br_als_bgn] = ACTIONS(489), [sym_comment] = ACTIONS(3), }, [STATE(93)] = { [sym__r_prp_val] = STATE(864), [sym__br_prp_val] = STATE(864), [sym__r_prp] = STATE(119), [sym__br_prp] = STATE(120), [sym__r_flw_seq_val] = STATE(864), [sym__br_flw_seq_val] = STATE(864), [sym__r_flw_seq] = STATE(865), [sym__br_flw_seq] = STATE(866), [sym__r_flw_map_val] = STATE(864), [sym__br_flw_map_val] = STATE(864), [sym__r_flw_map] = STATE(867), [sym__br_flw_map] = STATE(868), [sym__flw_ann_par_tal] = STATE(864), [sym__r_dqt_str_val] = STATE(864), [sym__br_dqt_str_val] = STATE(864), [sym__r_dqt_str] = STATE(869), [sym__br_dqt_str] = STATE(870), [sym__r_sqt_str_val] = STATE(864), [sym__br_sqt_str_val] = STATE(864), [sym__r_sqt_str] = STATE(871), [sym__br_sqt_str] = STATE(872), [sym__r_pln_flw_val] = STATE(864), [sym__br_pln_flw_val] = STATE(864), [sym__r_sgl_pln_flw] = STATE(803), [sym__br_sgl_pln_flw] = STATE(802), [sym__r_mtl_pln_flw] = STATE(803), [sym__br_mtl_pln_flw] = STATE(802), [sym__r_als_val] = STATE(864), [sym__br_als_val] = STATE(864), [sym__r_als] = STATE(913), [sym__br_als] = STATE(914), [sym__r_acr] = STATE(213), [sym__br_acr] = STATE(218), [sym__r_flw_seq_bgn] = ACTIONS(589), [sym__br_flw_seq_bgn] = ACTIONS(517), [sym__r_flw_map_bgn] = ACTIONS(591), [sym__br_flw_map_bgn] = ACTIONS(521), [sym__r_flw_map_end] = ACTIONS(603), [sym__br_flw_map_end] = ACTIONS(603), [sym__b_flw_map_end] = ACTIONS(603), [sym__r_flw_sep_bgn] = ACTIONS(603), [sym__br_flw_sep_bgn] = ACTIONS(603), [sym__r_dqt_str_bgn] = ACTIONS(593), [sym__br_dqt_str_bgn] = ACTIONS(525), [sym__r_sqt_str_bgn] = ACTIONS(595), [sym__br_sqt_str_bgn] = ACTIONS(529), [sym__r_sgl_pln_nul_flw] = ACTIONS(531), [sym__br_sgl_pln_nul_flw] = ACTIONS(533), [sym__r_sgl_pln_bol_flw] = ACTIONS(531), [sym__br_sgl_pln_bol_flw] = ACTIONS(533), [sym__r_sgl_pln_int_flw] = ACTIONS(531), [sym__br_sgl_pln_int_flw] = ACTIONS(533), [sym__r_sgl_pln_flt_flw] = ACTIONS(531), [sym__br_sgl_pln_flt_flw] = ACTIONS(533), [sym__r_sgl_pln_tms_flw] = ACTIONS(531), [sym__br_sgl_pln_tms_flw] = ACTIONS(533), [sym__r_sgl_pln_str_flw] = ACTIONS(531), [sym__br_sgl_pln_str_flw] = ACTIONS(533), [sym__r_mtl_pln_str_flw] = ACTIONS(535), [sym__br_mtl_pln_str_flw] = ACTIONS(537), [sym__r_tag] = ACTIONS(597), [sym__br_tag] = ACTIONS(541), [sym__r_acr_bgn] = ACTIONS(543), [sym__br_acr_bgn] = ACTIONS(545), [sym__r_als_bgn] = ACTIONS(547), [sym__br_als_bgn] = ACTIONS(549), [sym_comment] = ACTIONS(3), }, [STATE(94)] = { [sym__r_prp_val] = STATE(936), [sym__br_prp_val] = STATE(936), [sym__r_prp] = STATE(119), [sym__br_prp] = STATE(120), [sym__r_flw_seq_val] = STATE(936), [sym__br_flw_seq_val] = STATE(936), [sym__r_flw_seq] = STATE(865), [sym__br_flw_seq] = STATE(866), [sym__r_flw_map_val] = STATE(936), [sym__br_flw_map_val] = STATE(936), [sym__r_flw_map] = STATE(867), [sym__br_flw_map] = STATE(868), [sym__flw_ann_par_tal] = STATE(936), [sym__r_dqt_str_val] = STATE(936), [sym__br_dqt_str_val] = STATE(936), [sym__r_dqt_str] = STATE(869), [sym__br_dqt_str] = STATE(870), [sym__r_sqt_str_val] = STATE(936), [sym__br_sqt_str_val] = STATE(936), [sym__r_sqt_str] = STATE(871), [sym__br_sqt_str] = STATE(872), [sym__r_pln_flw_val] = STATE(936), [sym__br_pln_flw_val] = STATE(936), [sym__r_sgl_pln_flw] = STATE(803), [sym__br_sgl_pln_flw] = STATE(802), [sym__r_mtl_pln_flw] = STATE(803), [sym__br_mtl_pln_flw] = STATE(802), [sym__r_als_val] = STATE(936), [sym__br_als_val] = STATE(936), [sym__r_als] = STATE(913), [sym__br_als] = STATE(914), [sym__r_acr] = STATE(213), [sym__br_acr] = STATE(218), [sym__r_flw_seq_bgn] = ACTIONS(589), [sym__br_flw_seq_bgn] = ACTIONS(517), [sym__r_flw_map_bgn] = ACTIONS(591), [sym__br_flw_map_bgn] = ACTIONS(521), [sym__r_flw_map_end] = ACTIONS(613), [sym__br_flw_map_end] = ACTIONS(613), [sym__b_flw_map_end] = ACTIONS(613), [sym__r_flw_sep_bgn] = ACTIONS(613), [sym__br_flw_sep_bgn] = ACTIONS(613), [sym__r_dqt_str_bgn] = ACTIONS(593), [sym__br_dqt_str_bgn] = ACTIONS(525), [sym__r_sqt_str_bgn] = ACTIONS(595), [sym__br_sqt_str_bgn] = ACTIONS(529), [sym__r_sgl_pln_nul_flw] = ACTIONS(531), [sym__br_sgl_pln_nul_flw] = ACTIONS(533), [sym__r_sgl_pln_bol_flw] = ACTIONS(531), [sym__br_sgl_pln_bol_flw] = ACTIONS(533), [sym__r_sgl_pln_int_flw] = ACTIONS(531), [sym__br_sgl_pln_int_flw] = ACTIONS(533), [sym__r_sgl_pln_flt_flw] = ACTIONS(531), [sym__br_sgl_pln_flt_flw] = ACTIONS(533), [sym__r_sgl_pln_tms_flw] = ACTIONS(531), [sym__br_sgl_pln_tms_flw] = ACTIONS(533), [sym__r_sgl_pln_str_flw] = ACTIONS(531), [sym__br_sgl_pln_str_flw] = ACTIONS(533), [sym__r_mtl_pln_str_flw] = ACTIONS(535), [sym__br_mtl_pln_str_flw] = ACTIONS(537), [sym__r_tag] = ACTIONS(597), [sym__br_tag] = ACTIONS(541), [sym__r_acr_bgn] = ACTIONS(543), [sym__br_acr_bgn] = ACTIONS(545), [sym__r_als_bgn] = ACTIONS(547), [sym__br_als_bgn] = ACTIONS(549), [sym_comment] = ACTIONS(3), }, [STATE(95)] = { [sym__r_prp_val] = STATE(920), [sym__br_prp_val] = STATE(920), [sym__r_prp] = STATE(121), [sym__br_prp] = STATE(117), [sym__r_flw_seq_val] = STATE(920), [sym__br_flw_seq_val] = STATE(920), [sym__r_flw_seq] = STATE(817), [sym__br_flw_seq] = STATE(818), [sym__r_flw_map_val] = STATE(920), [sym__br_flw_map_val] = STATE(920), [sym__r_flw_map] = STATE(819), [sym__br_flw_map] = STATE(820), [sym__flw_ann_par_tal] = STATE(920), [sym__r_dqt_str_val] = STATE(920), [sym__br_dqt_str_val] = STATE(920), [sym__r_dqt_str] = STATE(821), [sym__br_dqt_str] = STATE(822), [sym__r_sqt_str_val] = STATE(920), [sym__br_sqt_str_val] = STATE(920), [sym__r_sqt_str] = STATE(823), [sym__br_sqt_str] = STATE(824), [sym__r_pln_flw_val] = STATE(920), [sym__br_pln_flw_val] = STATE(920), [sym__r_sgl_pln_flw] = STATE(792), [sym__br_sgl_pln_flw] = STATE(786), [sym__r_mtl_pln_flw] = STATE(792), [sym__br_mtl_pln_flw] = STATE(786), [sym__r_als_val] = STATE(920), [sym__br_als_val] = STATE(920), [sym__r_als] = STATE(873), [sym__br_als] = STATE(874), [sym__r_acr] = STATE(214), [sym__br_acr] = STATE(224), [sym__r_flw_seq_bgn] = ACTIONS(601), [sym__br_flw_seq_bgn] = ACTIONS(452), [sym__r_flw_seq_end] = ACTIONS(613), [sym__br_flw_seq_end] = ACTIONS(613), [sym__b_flw_seq_end] = ACTIONS(613), [sym__r_flw_map_bgn] = ACTIONS(605), [sym__br_flw_map_bgn] = ACTIONS(461), [sym__r_flw_sep_bgn] = ACTIONS(613), [sym__br_flw_sep_bgn] = ACTIONS(613), [sym__r_dqt_str_bgn] = ACTIONS(607), [sym__br_dqt_str_bgn] = ACTIONS(465), [sym__r_sqt_str_bgn] = ACTIONS(609), [sym__br_sqt_str_bgn] = ACTIONS(469), [sym__r_sgl_pln_nul_flw] = ACTIONS(471), [sym__br_sgl_pln_nul_flw] = ACTIONS(473), [sym__r_sgl_pln_bol_flw] = ACTIONS(471), [sym__br_sgl_pln_bol_flw] = ACTIONS(473), [sym__r_sgl_pln_int_flw] = ACTIONS(471), [sym__br_sgl_pln_int_flw] = ACTIONS(473), [sym__r_sgl_pln_flt_flw] = ACTIONS(471), [sym__br_sgl_pln_flt_flw] = ACTIONS(473), [sym__r_sgl_pln_tms_flw] = ACTIONS(471), [sym__br_sgl_pln_tms_flw] = ACTIONS(473), [sym__r_sgl_pln_str_flw] = ACTIONS(471), [sym__br_sgl_pln_str_flw] = ACTIONS(473), [sym__r_mtl_pln_str_flw] = ACTIONS(475), [sym__br_mtl_pln_str_flw] = ACTIONS(477), [sym__r_tag] = ACTIONS(611), [sym__br_tag] = ACTIONS(481), [sym__r_acr_bgn] = ACTIONS(483), [sym__br_acr_bgn] = ACTIONS(485), [sym__r_als_bgn] = ACTIONS(487), [sym__br_als_bgn] = ACTIONS(489), [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(617), 1, sym__r_blk_imp_bgn, ACTIONS(622), 1, sym__r_acr_bgn, ACTIONS(624), 1, sym__br_acr_bgn, STATE(103), 1, sym__r_acr, STATE(108), 1, sym__br_acr, ACTIONS(619), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(615), 38, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [71] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, sym__r_acr_bgn, ACTIONS(629), 1, sym__r_blk_imp_bgn, ACTIONS(634), 1, sym__br_acr_bgn, STATE(104), 1, sym__r_acr, STATE(109), 1, sym__br_acr, ACTIONS(631), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(627), 38, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [142] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(624), 1, sym__br_acr_bgn, ACTIONS(637), 1, sym__r_acr_bgn, STATE(108), 2, sym__r_acr, sym__br_acr, ACTIONS(615), 48, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [206] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(629), 1, sym__r_blk_imp_bgn, ACTIONS(639), 1, sym__r_tag, ACTIONS(641), 1, sym__br_tag, ACTIONS(631), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(627), 38, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [271] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(617), 1, sym__r_blk_imp_bgn, ACTIONS(644), 1, sym__r_tag, ACTIONS(646), 1, sym__br_tag, ACTIONS(619), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(615), 38, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 51, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_imp_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__r_tag, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 51, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_imp_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__r_tag, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [450] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(655), 1, sym__r_blk_imp_bgn, ACTIONS(657), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(653), 39, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [510] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(662), 1, sym__r_blk_imp_bgn, ACTIONS(664), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(660), 39, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [570] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__br_tag, ACTIONS(667), 1, sym__r_tag, ACTIONS(615), 48, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [630] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 50, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__r_tag, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [686] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 50, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_imp_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(653), 49, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [797] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(660), 49, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 49, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [907] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 49, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__b_blk_key_bgn, sym__br_blk_val_bgn, sym__b_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__b_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__b_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__b_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__b_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__b_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__b_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__b_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__b_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__b_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__b_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__b_tag, sym__br_acr_bgn, sym__b_acr_bgn, sym__br_als_bgn, sym__b_als_bgn, sym__bl, [962] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(207), 1, sym__br_flw_seq_bgn, ACTIONS(211), 1, sym__br_flw_map_bgn, ACTIONS(227), 1, sym__br_dqt_str_bgn, ACTIONS(231), 1, sym__br_sqt_str_bgn, ACTIONS(237), 1, sym__r_mtl_pln_str_flw, ACTIONS(239), 1, sym__br_mtl_pln_str_flw, ACTIONS(426), 1, sym__r_flw_seq_bgn, ACTIONS(428), 1, sym__r_flw_map_bgn, ACTIONS(436), 1, sym__r_dqt_str_bgn, ACTIONS(438), 1, sym__r_sqt_str_bgn, STATE(598), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(599), 2, sym__r_flw_map, sym__br_flw_map, STATE(600), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(601), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(639), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(233), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(235), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, ACTIONS(369), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [1043] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(207), 1, sym__br_flw_seq_bgn, ACTIONS(211), 1, sym__br_flw_map_bgn, ACTIONS(227), 1, sym__br_dqt_str_bgn, ACTIONS(231), 1, sym__br_sqt_str_bgn, ACTIONS(237), 1, sym__r_mtl_pln_str_flw, ACTIONS(239), 1, sym__br_mtl_pln_str_flw, ACTIONS(426), 1, sym__r_flw_seq_bgn, ACTIONS(428), 1, sym__r_flw_map_bgn, ACTIONS(436), 1, sym__r_dqt_str_bgn, ACTIONS(438), 1, sym__r_sqt_str_bgn, STATE(594), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(595), 2, sym__r_flw_map, sym__br_flw_map, STATE(596), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(597), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(637), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(233), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(235), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, ACTIONS(377), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [1124] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(289), 1, sym__br_flw_seq_bgn, ACTIONS(297), 1, sym__br_flw_map_bgn, ACTIONS(309), 1, sym__br_dqt_str_bgn, ACTIONS(313), 1, sym__br_sqt_str_bgn, ACTIONS(319), 1, sym__r_mtl_pln_str_flw, ACTIONS(321), 1, sym__br_mtl_pln_str_flw, ACTIONS(491), 1, sym__r_flw_seq_bgn, ACTIONS(493), 1, sym__r_flw_map_bgn, ACTIONS(499), 1, sym__r_dqt_str_bgn, ACTIONS(501), 1, sym__r_sqt_str_bgn, STATE(728), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(729), 2, sym__r_flw_map, sym__br_flw_map, STATE(730), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(731), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(701), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(315), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(317), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, ACTIONS(369), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [1204] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(289), 1, sym__br_flw_seq_bgn, ACTIONS(297), 1, sym__br_flw_map_bgn, ACTIONS(309), 1, sym__br_dqt_str_bgn, ACTIONS(313), 1, sym__br_sqt_str_bgn, ACTIONS(319), 1, sym__r_mtl_pln_str_flw, ACTIONS(321), 1, sym__br_mtl_pln_str_flw, ACTIONS(491), 1, sym__r_flw_seq_bgn, ACTIONS(493), 1, sym__r_flw_map_bgn, ACTIONS(499), 1, sym__r_dqt_str_bgn, ACTIONS(501), 1, sym__r_sqt_str_bgn, STATE(724), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(725), 2, sym__r_flw_map, sym__br_flw_map, STATE(726), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(727), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(700), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(315), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(317), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, ACTIONS(377), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [1284] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(629), 1, sym__r_blk_imp_bgn, ACTIONS(669), 1, sym__r_acr_bgn, ACTIONS(671), 1, sym__br_acr_bgn, STATE(166), 1, sym__r_acr, STATE(169), 1, sym__br_acr, ACTIONS(631), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(627), 24, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_als_bgn, [1341] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(452), 1, sym__br_flw_seq_bgn, ACTIONS(461), 1, sym__br_flw_map_bgn, ACTIONS(465), 1, sym__br_dqt_str_bgn, ACTIONS(469), 1, sym__br_sqt_str_bgn, ACTIONS(475), 1, sym__r_mtl_pln_str_flw, ACTIONS(477), 1, sym__br_mtl_pln_str_flw, ACTIONS(601), 1, sym__r_flw_seq_bgn, ACTIONS(605), 1, sym__r_flw_map_bgn, ACTIONS(607), 1, sym__r_dqt_str_bgn, ACTIONS(609), 1, sym__r_sqt_str_bgn, STATE(846), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(847), 2, sym__r_flw_map, sym__br_flw_map, STATE(848), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(849), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(942), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(369), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, ACTIONS(471), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(473), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, [1420] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(617), 1, sym__r_blk_imp_bgn, ACTIONS(669), 1, sym__r_acr_bgn, ACTIONS(674), 1, sym__br_acr_bgn, STATE(165), 1, sym__r_acr, STATE(176), 1, sym__br_acr, ACTIONS(619), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(615), 24, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_als_bgn, [1477] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(517), 1, sym__br_flw_seq_bgn, ACTIONS(521), 1, sym__br_flw_map_bgn, ACTIONS(525), 1, sym__br_dqt_str_bgn, ACTIONS(529), 1, sym__br_sqt_str_bgn, ACTIONS(535), 1, sym__r_mtl_pln_str_flw, ACTIONS(537), 1, sym__br_mtl_pln_str_flw, ACTIONS(589), 1, sym__r_flw_seq_bgn, ACTIONS(591), 1, sym__r_flw_map_bgn, ACTIONS(593), 1, sym__r_dqt_str_bgn, ACTIONS(595), 1, sym__r_sqt_str_bgn, STATE(892), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(893), 2, sym__r_flw_map, sym__br_flw_map, STATE(894), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(895), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(811), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(377), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, ACTIONS(531), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(533), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, [1556] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(517), 1, sym__br_flw_seq_bgn, ACTIONS(521), 1, sym__br_flw_map_bgn, ACTIONS(525), 1, sym__br_dqt_str_bgn, ACTIONS(529), 1, sym__br_sqt_str_bgn, ACTIONS(535), 1, sym__r_mtl_pln_str_flw, ACTIONS(537), 1, sym__br_mtl_pln_str_flw, ACTIONS(589), 1, sym__r_flw_seq_bgn, ACTIONS(591), 1, sym__r_flw_map_bgn, ACTIONS(593), 1, sym__r_dqt_str_bgn, ACTIONS(595), 1, sym__r_sqt_str_bgn, STATE(896), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(897), 2, sym__r_flw_map, sym__br_flw_map, STATE(898), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(899), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(812), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(369), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, ACTIONS(531), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(533), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, [1635] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(452), 1, sym__br_flw_seq_bgn, ACTIONS(461), 1, sym__br_flw_map_bgn, ACTIONS(465), 1, sym__br_dqt_str_bgn, ACTIONS(469), 1, sym__br_sqt_str_bgn, ACTIONS(475), 1, sym__r_mtl_pln_str_flw, ACTIONS(477), 1, sym__br_mtl_pln_str_flw, ACTIONS(601), 1, sym__r_flw_seq_bgn, ACTIONS(605), 1, sym__r_flw_map_bgn, ACTIONS(607), 1, sym__r_dqt_str_bgn, ACTIONS(609), 1, sym__r_sqt_str_bgn, STATE(842), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(843), 2, sym__r_flw_map, sym__br_flw_map, STATE(844), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(845), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(930), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(377), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, ACTIONS(471), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(473), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, [1714] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(617), 1, sym__r_blk_imp_bgn, ACTIONS(677), 1, sym__r_acr_bgn, ACTIONS(679), 1, sym__br_acr_bgn, STATE(168), 1, sym__r_acr, STATE(178), 1, sym__br_acr, ACTIONS(619), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(615), 23, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_als_bgn, sym__bl, [1770] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(629), 1, sym__r_blk_imp_bgn, ACTIONS(677), 1, sym__r_acr_bgn, ACTIONS(682), 1, sym__br_acr_bgn, STATE(172), 1, sym__r_acr, STATE(179), 1, sym__br_acr, ACTIONS(631), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(627), 23, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_als_bgn, sym__bl, [1826] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(674), 1, sym__br_acr_bgn, ACTIONS(685), 1, sym__r_acr_bgn, STATE(176), 2, sym__r_acr, sym__br_acr, ACTIONS(615), 34, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_als_bgn, [1876] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(707), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(144), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [1967] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(713), 1, sym__r_flw_map_end, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(964), 1, sym__r_sgl_flw_col_itm, STATE(1100), 1, sym__r_als, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1322), 1, sym__sgl_flw_map_tal, STATE(1449), 1, sym__r_sgl_flw_col_dat, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [2062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 37, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_imp_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__r_tag, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [2105] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(731), 1, sym__b_blk_key_bgn, ACTIONS(734), 1, sym__b_blk_val_bgn, ACTIONS(737), 1, sym__b_flw_seq_bgn, ACTIONS(740), 1, sym__b_flw_map_bgn, ACTIONS(743), 1, sym__b_dqt_str_bgn, ACTIONS(746), 1, sym__b_sqt_str_bgn, ACTIONS(752), 1, sym__b_tag, ACTIONS(755), 1, sym__b_acr_bgn, ACTIONS(758), 1, sym__b_als_bgn, ACTIONS(761), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(128), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(749), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [2196] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 37, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_imp_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__r_tag, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [2239] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(763), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(145), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [2330] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(617), 1, sym__r_blk_imp_bgn, ACTIONS(765), 1, sym__r_tag, ACTIONS(767), 1, sym__br_tag, ACTIONS(619), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(615), 24, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_acr_bgn, sym__br_als_bgn, [2381] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(772), 1, sym__r_flw_seq_end, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(986), 1, sym__r_sgl_flw_col_itm, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(1423), 1, sym__sgl_flw_seq_tal, STATE(1459), 1, sym__r_sgl_flw_col_dat, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [2476] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, ACTIONS(792), 1, sym__r_flw_map_end, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(964), 1, sym__r_sgl_flw_col_itm, STATE(1100), 1, sym__r_als, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1516), 1, sym__r_sgl_flw_col_dat, STATE(1517), 1, sym__sgl_flw_map_tal, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [2571] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(794), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(138), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [2662] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(796), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(139), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [2753] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, ACTIONS(798), 1, sym__r_flw_seq_end, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(986), 1, sym__r_sgl_flw_col_itm, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1139), 1, sym__sgl_flw_seq_tal, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(1468), 1, sym__r_sgl_flw_col_dat, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [2848] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, ACTIONS(800), 1, sym__r_flw_map_end, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(964), 1, sym__r_sgl_flw_col_itm, STATE(1100), 1, sym__r_als, STATE(1145), 1, sym__sgl_flw_map_tal, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1471), 1, sym__r_sgl_flw_col_dat, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [2943] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(802), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(128), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [3034] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(804), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(128), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [3125] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, ACTIONS(806), 1, sym__r_flw_seq_end, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(986), 1, sym__r_sgl_flw_col_itm, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(1445), 1, sym__sgl_flw_seq_tal, STATE(1459), 1, sym__r_sgl_flw_col_dat, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [3220] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, ACTIONS(808), 1, sym__r_flw_map_end, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(964), 1, sym__r_sgl_flw_col_itm, STATE(1100), 1, sym__r_als, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1496), 1, sym__sgl_flw_map_tal, STATE(1516), 1, sym__r_sgl_flw_col_dat, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [3315] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(810), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(149), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [3406] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(812), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(150), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [3497] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(814), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(128), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [3588] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(816), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(128), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [3679] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(629), 1, sym__r_blk_imp_bgn, ACTIONS(818), 1, sym__r_tag, ACTIONS(820), 1, sym__br_tag, ACTIONS(631), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(627), 24, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_acr_bgn, sym__br_als_bgn, [3730] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, ACTIONS(823), 1, sym__r_flw_seq_end, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(986), 1, sym__r_sgl_flw_col_itm, STATE(1050), 1, sym__sgl_flw_seq_tal, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(1473), 1, sym__r_sgl_flw_col_dat, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [3825] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, ACTIONS(825), 1, sym__r_flw_map_end, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(964), 1, sym__r_sgl_flw_col_itm, STATE(1064), 1, sym__sgl_flw_map_tal, STATE(1100), 1, sym__r_als, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1476), 1, sym__r_sgl_flw_col_dat, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [3920] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(827), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(128), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [4011] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(687), 1, sym__b_blk_key_bgn, ACTIONS(689), 1, sym__b_blk_val_bgn, ACTIONS(691), 1, sym__b_flw_seq_bgn, ACTIONS(693), 1, sym__b_flw_map_bgn, ACTIONS(695), 1, sym__b_dqt_str_bgn, ACTIONS(697), 1, sym__b_sqt_str_bgn, ACTIONS(701), 1, sym__b_tag, ACTIONS(703), 1, sym__b_acr_bgn, ACTIONS(705), 1, sym__b_als_bgn, ACTIONS(829), 1, sym__bl, STATE(279), 1, sym__b_blk_key_itm, STATE(322), 1, sym__b_sgl_prp, STATE(323), 1, sym__b_blk_exp_itm, STATE(325), 1, sym__b_blk_val_itm, STATE(326), 1, sym__b_blk_imp_itm, STATE(420), 1, sym__b_acr, STATE(1412), 1, sym__b_als, STATE(1464), 1, sym__b_sgl_dqt_str, STATE(1493), 1, sym__b_sgl_flw_seq, STATE(1502), 1, sym__b_sgl_flw_map, STATE(1520), 1, sym__b_sgl_sqt_str, STATE(1532), 1, sym__b_sgl_pln_blk, STATE(128), 2, sym__b_blk_map_itm, aux_sym__r_blk_map_repeat1, ACTIONS(699), 6, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, STATE(1299), 7, sym__b_sgl_prp_val, sym__b_sgl_flw_seq_val, sym__b_sgl_flw_map_val, sym__b_sgl_dqt_str_val, sym__b_sgl_sqt_str_val, sym__b_sgl_pln_blk_val, sym__b_als_val, [4102] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, ACTIONS(831), 1, sym__r_flw_seq_end, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(986), 1, sym__r_sgl_flw_col_itm, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(1457), 1, sym__r_sgl_flw_col_dat, STATE(1509), 1, sym__sgl_flw_seq_tal, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [4197] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, ACTIONS(833), 1, sym__r_flw_map_end, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(964), 1, sym__r_sgl_flw_col_itm, STATE(1100), 1, sym__r_als, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1422), 1, sym__sgl_flw_map_tal, STATE(1460), 1, sym__r_sgl_flw_col_dat, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [4292] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, ACTIONS(835), 1, sym__r_flw_seq_end, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(986), 1, sym__r_sgl_flw_col_itm, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(1257), 1, sym__sgl_flw_seq_tal, STATE(1525), 1, sym__r_sgl_flw_col_dat, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [4387] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, ACTIONS(837), 1, sym__r_flw_map_end, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(964), 1, sym__r_sgl_flw_col_itm, STATE(1100), 1, sym__r_als, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1264), 1, sym__sgl_flw_map_tal, STATE(1527), 1, sym__r_sgl_flw_col_dat, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [4482] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, ACTIONS(839), 1, sym__r_flw_seq_end, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(986), 1, sym__r_sgl_flw_col_itm, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(1317), 1, sym__sgl_flw_seq_tal, STATE(1447), 1, sym__r_sgl_flw_col_dat, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [4577] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 36, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_imp_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__r_tag, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [4619] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(617), 1, sym__r_blk_imp_bgn, ACTIONS(841), 1, sym__r_tag, ACTIONS(843), 1, sym__br_tag, ACTIONS(619), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(615), 23, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [4669] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(629), 1, sym__r_blk_imp_bgn, ACTIONS(846), 1, sym__r_tag, ACTIONS(848), 1, sym__br_tag, ACTIONS(631), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(627), 23, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [4719] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 36, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_imp_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [4761] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(767), 1, sym__br_tag, ACTIONS(851), 1, sym__r_tag, ACTIONS(615), 34, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_acr_bgn, sym__br_als_bgn, [4807] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 36, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__r_tag, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [4849] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(387), 1, sym__br_flw_seq_bgn, ACTIONS(391), 1, sym__br_flw_map_bgn, ACTIONS(400), 1, sym__br_dqt_str_bgn, ACTIONS(404), 1, sym__br_sqt_str_bgn, ACTIONS(410), 1, sym__r_mtl_pln_str_flw, ACTIONS(412), 1, sym__br_mtl_pln_str_flw, ACTIONS(577), 1, sym__r_flw_seq_bgn, ACTIONS(579), 1, sym__r_flw_map_bgn, ACTIONS(583), 1, sym__r_dqt_str_bgn, ACTIONS(585), 1, sym__r_sqt_str_bgn, ACTIONS(377), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, STATE(1338), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(1339), 2, sym__r_flw_map, sym__br_flw_map, STATE(1340), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(1341), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(1398), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(406), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(408), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, [4925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 36, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_imp_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__r_tag, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [4967] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(387), 1, sym__br_flw_seq_bgn, ACTIONS(391), 1, sym__br_flw_map_bgn, ACTIONS(400), 1, sym__br_dqt_str_bgn, ACTIONS(404), 1, sym__br_sqt_str_bgn, ACTIONS(410), 1, sym__r_mtl_pln_str_flw, ACTIONS(412), 1, sym__br_mtl_pln_str_flw, ACTIONS(577), 1, sym__r_flw_seq_bgn, ACTIONS(579), 1, sym__r_flw_map_bgn, ACTIONS(583), 1, sym__r_dqt_str_bgn, ACTIONS(585), 1, sym__r_sqt_str_bgn, ACTIONS(369), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, STATE(1342), 2, sym__r_flw_seq, sym__br_flw_seq, STATE(1343), 2, sym__r_flw_map, sym__br_flw_map, STATE(1346), 2, sym__r_dqt_str, sym__br_dqt_str, STATE(1349), 2, sym__r_sqt_str, sym__br_sqt_str, STATE(1400), 4, sym__r_sgl_pln_flw, sym__br_sgl_pln_flw, sym__r_mtl_pln_flw, sym__br_mtl_pln_flw, ACTIONS(406), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(408), 6, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, [5043] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(655), 1, sym__r_blk_imp_bgn, ACTIONS(657), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(653), 25, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [5089] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(662), 1, sym__r_blk_imp_bgn, ACTIONS(664), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(660), 25, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [5135] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, ACTIONS(853), 1, sym__r_flw_seq_end, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1245), 1, sym__r_sgl_flw_col_itm, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [5224] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(655), 1, sym__r_blk_imp_bgn, ACTIONS(657), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(653), 24, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [5269] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(660), 35, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [5310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 35, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [5351] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 35, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [5392] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(662), 1, sym__r_blk_imp_bgn, ACTIONS(664), 10, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, ACTIONS(660), 24, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [5437] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 35, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_imp_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [5478] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, ACTIONS(853), 1, sym__r_flw_map_end, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(1100), 1, sym__r_als, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1372), 1, sym__r_sgl_flw_col_itm, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [5567] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, ACTIONS(855), 1, sym__r_flw_map_end, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(1100), 1, sym__r_als, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1372), 1, sym__r_sgl_flw_col_itm, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [5656] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(653), 35, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [5697] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, ACTIONS(855), 1, sym__r_flw_seq_end, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1245), 1, sym__r_sgl_flw_col_itm, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [5786] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(653), 34, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [5826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(660), 34, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [5866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 34, sym__br_blk_seq_bgn, sym__b_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__r_blk_lit_bgn, sym__br_blk_lit_bgn, sym__r_blk_fld_bgn, sym__br_blk_fld_bgn, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__br_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__br_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__br_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__br_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__br_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__br_sgl_pln_str_blk, sym__r_mtl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, sym__bl, [5906] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(776), 1, sym__r_flw_key_bgn, ACTIONS(778), 1, sym__r_flw_njv_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, ACTIONS(786), 1, sym__r_tag, ACTIONS(788), 1, sym__r_acr_bgn, ACTIONS(790), 1, sym__r_als_bgn, STATE(261), 1, sym__r_sgl_prp, STATE(395), 1, sym__r_acr, STATE(1097), 1, sym__r_als, STATE(1110), 1, sym__r_sgl_flw_seq, STATE(1113), 1, sym__r_sgl_flw_map, STATE(1114), 1, sym__r_sgl_dqt_str, STATE(1116), 1, sym__r_sgl_sqt_str, STATE(1132), 1, sym__r_sgl_pln_flw, STATE(1225), 1, sym__r_sgl_flw_exp_par, STATE(1240), 1, sym__r_sgl_flw_imp_par, STATE(1245), 1, sym__r_sgl_flw_col_itm, STATE(1253), 1, sym__r_sgl_flw_njl_ann_par, STATE(976), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1025), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [5992] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(715), 1, sym__r_flw_key_bgn, ACTIONS(717), 1, sym__r_flw_njv_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, ACTIONS(725), 1, sym__r_tag, ACTIONS(727), 1, sym__r_acr_bgn, ACTIONS(729), 1, sym__r_als_bgn, STATE(265), 1, sym__r_sgl_prp, STATE(398), 1, sym__r_acr, STATE(1100), 1, sym__r_als, STATE(1187), 1, sym__r_sgl_pln_flw, STATE(1209), 1, sym__r_sgl_flw_seq, STATE(1210), 1, sym__r_sgl_flw_map, STATE(1213), 1, sym__r_sgl_dqt_str, STATE(1214), 1, sym__r_sgl_sqt_str, STATE(1250), 1, sym__r_sgl_flw_exp_par, STATE(1251), 1, sym__r_sgl_flw_imp_par, STATE(1252), 1, sym__r_sgl_flw_njl_ann_par, STATE(1372), 1, sym__r_sgl_flw_col_itm, STATE(1038), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1045), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [6078] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(857), 1, sym__r_acr_bgn, ACTIONS(859), 1, sym__br_acr_bgn, STATE(219), 1, sym__r_acr, STATE(221), 1, sym__br_acr, ACTIONS(619), 13, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 16, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_njv_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6127] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(857), 1, sym__r_acr_bgn, ACTIONS(859), 1, sym__br_acr_bgn, STATE(222), 2, sym__r_acr, sym__br_acr, ACTIONS(627), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6172] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(857), 1, sym__r_acr_bgn, ACTIONS(859), 1, sym__br_acr_bgn, STATE(221), 2, sym__r_acr, sym__br_acr, ACTIONS(615), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6217] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(861), 1, sym__r_acr_bgn, ACTIONS(863), 1, sym__br_acr_bgn, STATE(232), 2, sym__r_acr, sym__br_acr, ACTIONS(627), 28, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6261] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(861), 1, sym__r_acr_bgn, ACTIONS(863), 1, sym__br_acr_bgn, STATE(231), 2, sym__r_acr, sym__br_acr, ACTIONS(615), 28, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6305] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(861), 1, sym__r_acr_bgn, ACTIONS(863), 1, sym__br_acr_bgn, STATE(230), 1, sym__r_acr, STATE(231), 1, sym__br_acr, ACTIONS(619), 13, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 15, sym__br_flw_seq_bgn, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_map_bgn, sym__br_flw_sep_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6353] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(865), 1, sym__r_flw_seq_bgn, ACTIONS(867), 1, sym__r_flw_map_bgn, ACTIONS(871), 1, sym__r_dqt_str_bgn, ACTIONS(873), 1, sym__r_sqt_str_bgn, ACTIONS(877), 1, sym__r_tag, ACTIONS(879), 1, sym__r_acr_bgn, ACTIONS(881), 1, sym__r_als_bgn, STATE(365), 1, sym__r_sgl_prp, STATE(413), 1, sym__r_acr, STATE(1312), 1, sym__r_sgl_flw_imp_par, STATE(1455), 1, sym__r_als, STATE(1463), 1, sym__r_sgl_dqt_str, STATE(1467), 1, sym__r_sgl_sqt_str, STATE(1506), 1, sym__r_sgl_flw_seq, STATE(1518), 1, sym__r_sgl_pln_flw, STATE(1534), 1, sym__r_sgl_flw_map, ACTIONS(869), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, STATE(1239), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1242), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(875), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [6428] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(883), 2, sym__r_tag, sym__br_tag, ACTIONS(615), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6467] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(883), 1, sym__br_tag, ACTIONS(885), 1, sym__r_tag, ACTIONS(619), 13, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 16, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_njv_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6510] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(887), 1, sym__r_acr_bgn, ACTIONS(889), 1, sym__br_acr_bgn, STATE(236), 2, sym__r_acr, sym__br_acr, ACTIONS(615), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6553] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(891), 1, sym__r_acr_bgn, ACTIONS(893), 1, sym__br_acr_bgn, STATE(243), 2, sym__r_acr, sym__br_acr, ACTIONS(627), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 31, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [6633] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(891), 1, sym__r_acr_bgn, ACTIONS(893), 1, sym__br_acr_bgn, STATE(240), 2, sym__r_acr, sym__br_acr, ACTIONS(615), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6676] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 31, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [6713] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(895), 2, sym__r_tag, sym__br_tag, ACTIONS(627), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6752] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(887), 1, sym__r_acr_bgn, ACTIONS(889), 1, sym__br_acr_bgn, STATE(236), 1, sym__br_acr, STATE(238), 1, sym__r_acr, ACTIONS(619), 12, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 15, sym__br_flw_seq_bgn, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_map_bgn, sym__br_flw_sep_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6799] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(897), 1, sym__r_flw_seq_bgn, ACTIONS(901), 1, sym__r_flw_map_bgn, ACTIONS(903), 1, sym__r_dqt_str_bgn, ACTIONS(905), 1, sym__r_sqt_str_bgn, ACTIONS(909), 1, sym__r_tag, ACTIONS(911), 1, sym__r_acr_bgn, ACTIONS(913), 1, sym__r_als_bgn, STATE(274), 1, sym__r_sgl_prp, STATE(401), 1, sym__r_acr, STATE(1219), 1, sym__r_sgl_flw_seq, STATE(1223), 1, sym__r_sgl_flw_map, STATE(1224), 1, sym__r_sgl_dqt_str, STATE(1228), 1, sym__r_sgl_sqt_str, STATE(1326), 1, sym__r_sgl_pln_flw, STATE(1348), 1, sym__r_als, ACTIONS(899), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(907), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, STATE(1379), 8, sym__r_sgl_prp_val, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__sgl_flw_ann_par_tal, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, sym__r_sgl_pln_flw_val, sym__r_als_val, [6870] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(915), 1, sym__r_flw_seq_bgn, ACTIONS(917), 1, sym__r_flw_map_bgn, ACTIONS(919), 1, sym__r_dqt_str_bgn, ACTIONS(921), 1, sym__r_sqt_str_bgn, ACTIONS(925), 1, sym__r_tag, ACTIONS(927), 1, sym__r_acr_bgn, ACTIONS(929), 1, sym__r_als_bgn, STATE(276), 1, sym__r_sgl_prp, STATE(404), 1, sym__r_acr, STATE(1301), 1, sym__r_sgl_flw_seq, STATE(1305), 1, sym__r_sgl_flw_map, STATE(1308), 1, sym__r_sgl_dqt_str, STATE(1311), 1, sym__r_sgl_sqt_str, STATE(1336), 1, sym__r_sgl_pln_flw, STATE(1353), 1, sym__r_als, ACTIONS(899), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(923), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, STATE(1319), 8, sym__r_sgl_prp_val, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__sgl_flw_ann_par_tal, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, sym__r_sgl_pln_flw_val, sym__r_als_val, [6941] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(891), 1, sym__r_acr_bgn, ACTIONS(893), 1, sym__br_acr_bgn, STATE(240), 1, sym__br_acr, STATE(242), 1, sym__r_acr, ACTIONS(619), 12, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 15, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [6988] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(915), 1, sym__r_flw_seq_bgn, ACTIONS(917), 1, sym__r_flw_map_bgn, ACTIONS(919), 1, sym__r_dqt_str_bgn, ACTIONS(921), 1, sym__r_sqt_str_bgn, ACTIONS(925), 1, sym__r_tag, ACTIONS(927), 1, sym__r_acr_bgn, ACTIONS(929), 1, sym__r_als_bgn, STATE(276), 1, sym__r_sgl_prp, STATE(404), 1, sym__r_acr, STATE(1301), 1, sym__r_sgl_flw_seq, STATE(1305), 1, sym__r_sgl_flw_map, STATE(1308), 1, sym__r_sgl_dqt_str, STATE(1311), 1, sym__r_sgl_sqt_str, STATE(1336), 1, sym__r_sgl_pln_flw, STATE(1353), 1, sym__r_als, ACTIONS(931), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(923), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, STATE(1371), 8, sym__r_sgl_prp_val, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__sgl_flw_ann_par_tal, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, sym__r_sgl_pln_flw_val, sym__r_als_val, [7059] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(897), 1, sym__r_flw_seq_bgn, ACTIONS(901), 1, sym__r_flw_map_bgn, ACTIONS(903), 1, sym__r_dqt_str_bgn, ACTIONS(905), 1, sym__r_sqt_str_bgn, ACTIONS(909), 1, sym__r_tag, ACTIONS(911), 1, sym__r_acr_bgn, ACTIONS(913), 1, sym__r_als_bgn, STATE(274), 1, sym__r_sgl_prp, STATE(401), 1, sym__r_acr, STATE(1219), 1, sym__r_sgl_flw_seq, STATE(1223), 1, sym__r_sgl_flw_map, STATE(1224), 1, sym__r_sgl_dqt_str, STATE(1228), 1, sym__r_sgl_sqt_str, STATE(1326), 1, sym__r_sgl_pln_flw, STATE(1348), 1, sym__r_als, ACTIONS(931), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(907), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, STATE(1327), 8, sym__r_sgl_prp_val, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__sgl_flw_ann_par_tal, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, sym__r_sgl_pln_flw_val, sym__r_als_val, [7130] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(887), 1, sym__r_acr_bgn, ACTIONS(889), 1, sym__br_acr_bgn, STATE(234), 2, sym__r_acr, sym__br_acr, ACTIONS(627), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7173] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(865), 1, sym__r_flw_seq_bgn, ACTIONS(867), 1, sym__r_flw_map_bgn, ACTIONS(871), 1, sym__r_dqt_str_bgn, ACTIONS(873), 1, sym__r_sqt_str_bgn, ACTIONS(877), 1, sym__r_tag, ACTIONS(879), 1, sym__r_acr_bgn, ACTIONS(881), 1, sym__r_als_bgn, STATE(365), 1, sym__r_sgl_prp, STATE(413), 1, sym__r_acr, STATE(1292), 1, sym__r_sgl_flw_imp_par, STATE(1455), 1, sym__r_als, STATE(1463), 1, sym__r_sgl_dqt_str, STATE(1467), 1, sym__r_sgl_sqt_str, STATE(1506), 1, sym__r_sgl_flw_seq, STATE(1518), 1, sym__r_sgl_pln_flw, STATE(1534), 1, sym__r_sgl_flw_map, ACTIONS(869), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, STATE(1359), 3, sym__r_sgl_prp_val, sym__r_sgl_pln_flw_val, sym__r_als_val, STATE(1244), 4, sym__r_sgl_flw_seq_val, sym__r_sgl_flw_map_val, sym__r_sgl_dqt_str_val, sym__r_sgl_sqt_str_val, ACTIONS(875), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [7248] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 30, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [7284] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(933), 1, sym__r_tag, ACTIONS(935), 1, sym__br_tag, ACTIONS(619), 13, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 15, sym__br_flw_seq_bgn, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_map_bgn, sym__br_flw_sep_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 30, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [7362] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(935), 2, sym__r_tag, sym__br_tag, ACTIONS(615), 28, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7400] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(937), 2, sym__r_tag, sym__br_tag, ACTIONS(627), 28, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7438] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [7473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [7508] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(939), 2, sym__r_tag, sym__br_tag, ACTIONS(615), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7545] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(941), 2, sym__r_tag, sym__br_tag, ACTIONS(615), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7582] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(941), 1, sym__br_tag, ACTIONS(943), 1, sym__r_tag, ACTIONS(619), 12, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 15, sym__br_flw_seq_bgn, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_map_bgn, sym__br_flw_sep_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7658] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7693] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(945), 2, sym__r_tag, sym__br_tag, ACTIONS(627), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7730] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(657), 13, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(653), 16, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_njv_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7767] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(939), 1, sym__br_tag, ACTIONS(947), 1, sym__r_tag, ACTIONS(619), 12, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 15, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7808] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(653), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7843] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(660), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [7913] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(949), 2, sym__r_tag, sym__br_tag, ACTIONS(627), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [7950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 29, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [7985] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(951), 1, sym__r_acr_bgn, ACTIONS(953), 1, sym__br_acr_bgn, STATE(257), 1, sym__r_acr, STATE(258), 1, sym__br_acr, ACTIONS(619), 11, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 13, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_flw_njv_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8029] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 28, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 28, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8097] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(951), 1, sym__r_acr_bgn, ACTIONS(953), 1, sym__br_acr_bgn, STATE(258), 2, sym__r_acr, sym__br_acr, ACTIONS(615), 24, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8137] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(657), 13, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(653), 15, sym__br_flw_seq_bgn, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_map_bgn, sym__br_flw_sep_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(653), 28, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8207] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(660), 28, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8241] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(951), 1, sym__r_acr_bgn, ACTIONS(953), 1, sym__br_acr_bgn, STATE(260), 2, sym__r_acr, sym__br_acr, ACTIONS(627), 24, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(660), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8314] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8347] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(653), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8413] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(657), 12, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(653), 15, sym__br_flw_seq_bgn, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_map_bgn, sym__br_flw_sep_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8448] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8481] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(653), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8514] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8547] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(657), 12, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(653), 15, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(660), 27, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8615] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(955), 1, sym__r_tag, ACTIONS(957), 1, sym__br_tag, ACTIONS(619), 11, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(615), 13, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_flw_njv_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(957), 2, sym__r_tag, sym__br_tag, ACTIONS(615), 24, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 26, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [8719] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 26, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, sym__r_tag, sym__br_tag, [8751] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(959), 2, sym__r_tag, sym__br_tag, ACTIONS(627), 24, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [8785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(961), 25, sym__eof, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__br_blk_lit_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [8816] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(963), 25, sym__eof, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__br_blk_lit_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [8847] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(961), 25, sym__eof, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__br_blk_lit_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [8878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(965), 25, sym__eof, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__br_blk_lit_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [8909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(967), 25, sym__eof, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__br_blk_lit_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [8940] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(967), 25, sym__eof, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__br_blk_lit_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [8971] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(969), 25, sym__eof, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, sym__s_doc_end, sym__br_blk_seq_bgn, sym__br_blk_key_bgn, sym__br_blk_val_bgn, sym__br_blk_lit_bgn, sym__br_blk_fld_bgn, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_blk, sym__br_sgl_pln_bol_blk, sym__br_sgl_pln_int_blk, sym__br_sgl_pln_flt_blk, sym__br_sgl_pln_tms_blk, sym__br_sgl_pln_str_blk, sym__br_mtl_pln_str_blk, sym__br_tag, sym__br_acr_bgn, sym__br_als_bgn, [9002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 24, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [9032] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(657), 11, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, ACTIONS(653), 13, sym__br_flw_seq_bgn, sym__br_flw_map_bgn, sym__br_flw_njv_bgn, sym__br_dqt_str_bgn, sym__br_sqt_str_bgn, sym__br_sgl_pln_nul_flw, sym__br_sgl_pln_bol_flw, sym__br_sgl_pln_int_flw, sym__br_sgl_pln_flt_flw, sym__br_sgl_pln_tms_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [9064] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(653), 24, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [9094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 24, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [9124] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(660), 24, sym__r_flw_seq_bgn, sym__br_flw_seq_bgn, sym__r_flw_map_bgn, sym__br_flw_map_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, sym__r_dqt_str_bgn, sym__br_dqt_str_bgn, sym__r_sqt_str_bgn, sym__br_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__br_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__br_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__br_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__br_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__br_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__br_sgl_pln_str_flw, sym__r_mtl_pln_str_flw, sym__br_mtl_pln_str_flw, [9154] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, sym__r_flw_seq_bgn, ACTIONS(774), 1, sym__r_flw_map_bgn, ACTIONS(780), 1, sym__r_dqt_str_bgn, ACTIONS(782), 1, sym__r_sqt_str_bgn, STATE(1084), 1, sym__r_sgl_pln_flw, STATE(1161), 1, sym__r_sgl_flw_seq, STATE(1162), 1, sym__r_sgl_flw_map, STATE(1163), 1, sym__r_sgl_dqt_str, STATE(1164), 1, sym__r_sgl_sqt_str, ACTIONS(971), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, ACTIONS(784), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [9198] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(332), 1, sym__blk_imp_itm_tal, ACTIONS(973), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9226] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(334), 1, sym__blk_imp_itm_tal, ACTIONS(977), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9254] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(334), 1, sym__blk_imp_itm_tal, ACTIONS(973), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9282] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, sym__r_flw_seq_bgn, ACTIONS(711), 1, sym__r_flw_map_bgn, ACTIONS(719), 1, sym__r_dqt_str_bgn, ACTIONS(721), 1, sym__r_sqt_str_bgn, STATE(1051), 1, sym__r_sgl_flw_seq, STATE(1052), 1, sym__r_sgl_flw_map, STATE(1053), 1, sym__r_sgl_dqt_str, STATE(1054), 1, sym__r_sgl_sqt_str, STATE(1171), 1, sym__r_sgl_pln_flw, ACTIONS(971), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, ACTIONS(723), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [9326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 17, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__r_blk_imp_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9349] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, sym__r_blk_imp_bgn, ACTIONS(981), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9374] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, sym__r_blk_imp_bgn, ACTIONS(985), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9399] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, sym__r_blk_imp_bgn, ACTIONS(987), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9424] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, sym__r_blk_imp_bgn, ACTIONS(991), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9449] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(997), 1, sym__r_blk_imp_bgn, ACTIONS(995), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9474] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1001), 1, sym__r_blk_imp_bgn, ACTIONS(999), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9499] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1003), 17, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__r_blk_imp_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9522] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(897), 1, sym__r_flw_seq_bgn, ACTIONS(901), 1, sym__r_flw_map_bgn, ACTIONS(903), 1, sym__r_dqt_str_bgn, ACTIONS(905), 1, sym__r_sqt_str_bgn, STATE(1231), 1, sym__r_sgl_flw_seq, STATE(1232), 1, sym__r_sgl_flw_map, STATE(1233), 1, sym__r_sgl_dqt_str, STATE(1234), 1, sym__r_sgl_sqt_str, STATE(1269), 1, sym__r_sgl_pln_flw, ACTIONS(971), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(907), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [9565] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 17, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__r_blk_imp_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9588] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(915), 1, sym__r_flw_seq_bgn, ACTIONS(917), 1, sym__r_flw_map_bgn, ACTIONS(919), 1, sym__r_dqt_str_bgn, ACTIONS(921), 1, sym__r_sqt_str_bgn, STATE(1236), 1, sym__r_sgl_pln_flw, STATE(1354), 1, sym__r_sgl_flw_seq, STATE(1357), 1, sym__r_sgl_flw_map, STATE(1358), 1, sym__r_sgl_dqt_str, STATE(1360), 1, sym__r_sgl_sqt_str, ACTIONS(971), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(923), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [9631] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(689), 1, sym__b_blk_val_bgn, STATE(329), 1, sym__b_blk_val_itm, ACTIONS(1007), 15, sym__b_blk_key_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9658] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(689), 1, sym__b_blk_val_bgn, STATE(331), 1, sym__b_blk_val_itm, ACTIONS(1009), 15, sym__b_blk_key_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9685] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(689), 1, sym__b_blk_val_bgn, STATE(306), 1, sym__b_blk_val_itm, ACTIONS(1011), 15, sym__b_blk_key_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1013), 17, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__r_blk_imp_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9735] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1017), 1, sym__r_blk_imp_bgn, ACTIONS(1015), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9760] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, sym__r_blk_imp_bgn, ACTIONS(1019), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 17, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__r_blk_imp_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9808] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1025), 1, sym__r_blk_imp_bgn, ACTIONS(1023), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9833] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1029), 1, sym__r_blk_imp_bgn, ACTIONS(1027), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9858] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 1, sym__r_blk_imp_bgn, ACTIONS(1031), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9883] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1037), 1, sym__r_blk_imp_bgn, ACTIONS(1035), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9908] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 1, sym__r_blk_imp_bgn, ACTIONS(1039), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9933] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1045), 1, sym__r_blk_imp_bgn, ACTIONS(1043), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 17, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__r_blk_imp_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [9981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1049), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10003] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1051), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10025] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10047] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1055), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1059), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10113] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1063), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1065), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(977), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10201] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1067), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1069), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10245] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1071), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1073), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1075), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10311] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1077), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1079), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10355] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(971), 1, sym__r_blk_imp_bgn, ACTIONS(1081), 1, sym__r_flw_seq_bgn, ACTIONS(1083), 1, sym__r_flw_map_bgn, ACTIONS(1085), 1, sym__r_dqt_str_bgn, ACTIONS(1087), 1, sym__r_sqt_str_bgn, STATE(1521), 1, sym__r_sgl_flw_seq, STATE(1523), 1, sym__r_sgl_flw_map, STATE(1524), 1, sym__r_sgl_dqt_str, STATE(1528), 1, sym__r_sgl_sqt_str, STATE(1529), 1, sym__r_sgl_pln_blk, ACTIONS(1089), 6, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [10397] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1081), 1, sym__r_flw_seq_bgn, ACTIONS(1083), 1, sym__r_flw_map_bgn, ACTIONS(1085), 1, sym__r_dqt_str_bgn, ACTIONS(1087), 1, sym__r_sqt_str_bgn, ACTIONS(1091), 1, sym__r_blk_imp_bgn, STATE(1530), 1, sym__r_sgl_flw_seq, STATE(1531), 1, sym__r_sgl_flw_map, STATE(1533), 1, sym__r_sgl_dqt_str, STATE(1536), 1, sym__r_sgl_sqt_str, STATE(1537), 1, sym__r_sgl_pln_blk, ACTIONS(1089), 6, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [10439] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1093), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1095), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10483] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1097), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1099), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1101), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10549] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1003), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10571] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1103), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10593] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1105), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1107), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10637] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1109), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1111), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10703] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1081), 1, sym__r_flw_seq_bgn, ACTIONS(1083), 1, sym__r_flw_map_bgn, ACTIONS(1085), 1, sym__r_dqt_str_bgn, ACTIONS(1087), 1, sym__r_sqt_str_bgn, ACTIONS(1115), 1, sym__r_blk_imp_bgn, STATE(1415), 1, sym__r_sgl_dqt_str, STATE(1418), 1, sym__r_sgl_sqt_str, STATE(1419), 1, sym__r_sgl_pln_blk, STATE(1491), 1, sym__r_sgl_flw_seq, STATE(1492), 1, sym__r_sgl_flw_map, ACTIONS(1089), 6, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [10745] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1117), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(987), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10789] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1119), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10811] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1117), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10833] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1123), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10877] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1125), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10899] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10921] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1127), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1099), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [10987] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1101), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(985), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11031] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1129), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11053] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1131), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11075] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1133), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1135), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11119] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1137), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1139), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11185] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1143), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11207] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1145), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1147), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11273] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1151), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11295] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1155), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11339] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11383] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1163), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(991), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1015), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11493] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1019), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1169), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1107), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1171), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1173), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11625] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(995), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11647] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1109), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11669] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(865), 1, sym__r_flw_seq_bgn, ACTIONS(867), 1, sym__r_flw_map_bgn, ACTIONS(871), 1, sym__r_dqt_str_bgn, ACTIONS(873), 1, sym__r_sqt_str_bgn, ACTIONS(971), 1, sym__r_flw_njv_bgn, STATE(1466), 1, sym__r_sgl_flw_map, STATE(1469), 1, sym__r_sgl_dqt_str, STATE(1470), 1, sym__r_sgl_pln_flw, STATE(1482), 1, sym__r_sgl_sqt_str, STATE(1535), 1, sym__r_sgl_flw_seq, ACTIONS(875), 6, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [11711] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1175), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11733] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11755] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1179), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11799] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1183), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(999), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11843] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11865] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1035), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11931] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1043), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1187), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [11997] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12019] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1193), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1195), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12085] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1199), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12129] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1203), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12151] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(981), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1205), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1207), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12217] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1209), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12239] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1211), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12261] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 16, sym__b_blk_key_bgn, sym__b_blk_val_bgn, sym__b_flw_seq_bgn, sym__b_flw_map_bgn, sym__b_dqt_str_bgn, sym__b_sqt_str_bgn, sym__b_sgl_pln_nul_blk, sym__b_sgl_pln_bol_blk, sym__b_sgl_pln_int_blk, sym__b_sgl_pln_flt_blk, sym__b_sgl_pln_tms_blk, sym__b_sgl_pln_str_blk, sym__b_tag, sym__b_acr_bgn, sym__b_als_bgn, sym__bl, [12283] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1215), 1, sym__r_acr_bgn, STATE(406), 1, sym__r_acr, ACTIONS(617), 13, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12308] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1217), 1, sym__r_acr_bgn, STATE(408), 1, sym__r_acr, ACTIONS(617), 13, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12333] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1219), 1, sym__r_acr_bgn, STATE(419), 1, sym__r_acr, ACTIONS(617), 12, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12357] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1221), 1, sym__r_tag, ACTIONS(617), 13, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12379] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1223), 1, sym__r_acr_bgn, STATE(417), 1, sym__r_acr, ACTIONS(617), 12, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12403] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 14, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__r_tag, [12423] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1225), 1, sym__r_tag, ACTIONS(617), 13, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12445] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 14, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__r_tag, [12465] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 13, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12484] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1227), 1, sym__r_tag, ACTIONS(617), 12, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 13, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12524] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1229), 1, sym__r_acr_bgn, STATE(445), 1, sym__r_acr, ACTIONS(617), 11, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12547] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1231), 1, sym__r_tag, ACTIONS(617), 12, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12568] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym__r_acr_bgn, STATE(425), 1, sym__r_acr, ACTIONS(1233), 11, sym__r_blk_imp_bgn, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [12591] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(655), 13, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 13, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__r_tag, [12629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(655), 13, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12648] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym__r_acr_bgn, STATE(469), 1, sym__r_acr, ACTIONS(629), 11, sym__r_blk_imp_bgn, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [12671] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 13, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__r_tag, [12690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 12, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 12, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, sym__r_tag, [12726] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1237), 1, sym__r_tag, ACTIONS(617), 11, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12746] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 12, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12764] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, sym__r_tag, ACTIONS(629), 11, sym__r_blk_imp_bgn, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [12784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 12, sym__r_blk_imp_bgn, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__r_tag, [12802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(655), 12, sym__r_flw_seq_bgn, sym__r_flw_seq_end, sym__r_flw_map_bgn, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(651), 12, sym__r_blk_imp_bgn, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, sym__r_tag, [12838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(655), 12, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [12856] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1243), 1, sym__r_tag, ACTIONS(1233), 11, sym__r_blk_imp_bgn, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [12876] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1249), 1, sym__r_dqt_esc_nwl, ACTIONS(1251), 1, sym__br_dqt_esc_nwl, STATE(458), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1245), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1253), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(633), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [12905] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1257), 1, sym__r_dqt_esc_nwl, ACTIONS(1259), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1261), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(587), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [12934] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1263), 1, sym__r_dqt_esc_nwl, ACTIONS(1265), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1267), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(619), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [12963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 11, sym__r_blk_imp_bgn, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [12980] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1269), 11, sym__r_blk_imp_bgn, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [12997] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1271), 1, sym__r_dqt_esc_nwl, ACTIONS(1273), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1275), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(589), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13026] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1279), 1, sym__r_dqt_esc_nwl, ACTIONS(1281), 1, sym__br_dqt_esc_nwl, ACTIONS(1283), 1, sym__r_dqt_str_end, ACTIONS(1285), 1, sym__br_dqt_str_end, STATE(432), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1277), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(543), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13057] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1289), 1, sym__r_dqt_esc_nwl, ACTIONS(1291), 1, sym__br_dqt_esc_nwl, ACTIONS(1293), 1, sym__r_dqt_str_end, ACTIONS(1295), 1, sym__br_dqt_str_end, STATE(433), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1287), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(546), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13088] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1299), 1, sym__r_dqt_esc_nwl, ACTIONS(1301), 1, sym__br_dqt_esc_nwl, STATE(435), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1297), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1303), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(607), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13117] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1307), 1, sym__r_dqt_esc_nwl, ACTIONS(1309), 1, sym__br_dqt_esc_nwl, STATE(455), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1305), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1311), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(629), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13146] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1315), 1, sym__r_dqt_esc_nwl, ACTIONS(1317), 1, sym__br_dqt_esc_nwl, STATE(436), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1313), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1319), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(635), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13175] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1321), 1, sym__r_dqt_esc_nwl, ACTIONS(1323), 1, sym__br_dqt_esc_nwl, ACTIONS(1325), 1, sym__r_dqt_str_end, ACTIONS(1327), 1, sym__br_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(557), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13206] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1329), 1, sym__r_dqt_esc_nwl, ACTIONS(1331), 1, sym__br_dqt_esc_nwl, ACTIONS(1333), 1, sym__r_dqt_str_end, ACTIONS(1335), 1, sym__br_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(559), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13237] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1337), 1, sym__r_dqt_esc_nwl, ACTIONS(1339), 1, sym__br_dqt_esc_nwl, ACTIONS(1341), 1, sym__r_dqt_str_end, ACTIONS(1343), 1, sym__br_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(582), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13268] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1345), 1, sym__r_dqt_esc_nwl, ACTIONS(1347), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1349), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(617), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13297] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1351), 1, sym__r_dqt_esc_nwl, ACTIONS(1353), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1355), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(643), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13326] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1359), 1, sym__r_dqt_esc_nwl, ACTIONS(1361), 1, sym__br_dqt_esc_nwl, ACTIONS(1363), 1, sym__r_dqt_str_end, ACTIONS(1365), 1, sym__br_dqt_str_end, STATE(442), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1357), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(577), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(649), 11, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [13374] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1369), 1, sym__r_dqt_esc_nwl, ACTIONS(1371), 1, sym__br_dqt_esc_nwl, STATE(444), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1367), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1373), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(627), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13403] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1377), 1, sym__r_dqt_esc_nwl, ACTIONS(1379), 1, sym__br_dqt_esc_nwl, STATE(426), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1375), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1381), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(579), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13432] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1385), 1, sym__r_dqt_esc_nwl, ACTIONS(1387), 1, sym__br_dqt_esc_nwl, STATE(473), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1383), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1389), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(659), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13461] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1257), 1, sym__r_dqt_esc_nwl, ACTIONS(1259), 1, sym__br_dqt_esc_nwl, ACTIONS(1261), 1, sym__br_dqt_str_end, ACTIONS(1391), 1, sym__r_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(587), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13492] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1307), 1, sym__r_dqt_esc_nwl, ACTIONS(1309), 1, sym__br_dqt_esc_nwl, ACTIONS(1311), 1, sym__br_dqt_str_end, ACTIONS(1395), 1, sym__r_dqt_str_end, STATE(460), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1393), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(629), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13523] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1397), 1, sym__r_dqt_esc_nwl, ACTIONS(1399), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1401), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(650), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(655), 11, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_flw_njv_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_flw, sym__r_sgl_pln_bol_flw, sym__r_sgl_pln_int_flw, sym__r_sgl_pln_flt_flw, sym__r_sgl_pln_tms_flw, sym__r_sgl_pln_str_flw, [13569] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1369), 1, sym__r_dqt_esc_nwl, ACTIONS(1371), 1, sym__br_dqt_esc_nwl, ACTIONS(1373), 1, sym__br_dqt_str_end, ACTIONS(1405), 1, sym__r_dqt_str_end, STATE(465), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1403), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(627), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13600] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1409), 1, sym__r_dqt_esc_nwl, ACTIONS(1411), 1, sym__br_dqt_esc_nwl, ACTIONS(1413), 1, sym__r_dqt_str_end, ACTIONS(1415), 1, sym__br_dqt_str_end, STATE(467), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1407), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(630), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13631] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1299), 1, sym__r_dqt_esc_nwl, ACTIONS(1301), 1, sym__br_dqt_esc_nwl, ACTIONS(1303), 1, sym__br_dqt_str_end, ACTIONS(1419), 1, sym__r_dqt_str_end, STATE(451), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1417), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(607), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13662] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1279), 1, sym__r_dqt_esc_nwl, ACTIONS(1281), 1, sym__br_dqt_esc_nwl, STATE(452), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1285), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, ACTIONS(1421), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(543), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13691] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1425), 1, sym__r_dqt_esc_nwl, ACTIONS(1427), 1, sym__br_dqt_esc_nwl, STATE(453), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1423), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1429), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(682), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13720] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1345), 1, sym__r_dqt_esc_nwl, ACTIONS(1347), 1, sym__br_dqt_esc_nwl, ACTIONS(1349), 1, sym__br_dqt_str_end, ACTIONS(1431), 1, sym__r_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(617), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13751] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1321), 1, sym__r_dqt_esc_nwl, ACTIONS(1323), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1327), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(557), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13780] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1433), 1, sym__r_dqt_esc_nwl, ACTIONS(1435), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1437), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(688), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13809] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1249), 1, sym__r_dqt_esc_nwl, ACTIONS(1251), 1, sym__br_dqt_esc_nwl, ACTIONS(1253), 1, sym__br_dqt_str_end, ACTIONS(1441), 1, sym__r_dqt_str_end, STATE(456), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1439), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(633), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13840] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1443), 1, sym__r_dqt_esc_nwl, ACTIONS(1445), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1447), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(685), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13869] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1449), 1, sym__r_dqt_esc_nwl, ACTIONS(1451), 1, sym__br_dqt_esc_nwl, ACTIONS(1453), 1, sym__r_dqt_str_end, ACTIONS(1455), 1, sym__br_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(641), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13900] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1359), 1, sym__r_dqt_esc_nwl, ACTIONS(1361), 1, sym__br_dqt_esc_nwl, STATE(422), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1365), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, ACTIONS(1457), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(577), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13929] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1449), 1, sym__r_dqt_esc_nwl, ACTIONS(1451), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1455), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(641), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13958] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1461), 1, sym__r_dqt_esc_nwl, ACTIONS(1463), 1, sym__br_dqt_esc_nwl, ACTIONS(1465), 1, sym__r_dqt_str_end, ACTIONS(1467), 1, sym__br_dqt_str_end, STATE(434), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1459), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(647), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [13989] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1443), 1, sym__r_dqt_esc_nwl, ACTIONS(1445), 1, sym__br_dqt_esc_nwl, ACTIONS(1447), 1, sym__br_dqt_str_end, ACTIONS(1469), 1, sym__r_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(685), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14020] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1473), 1, sym__r_dqt_esc_nwl, ACTIONS(1475), 1, sym__br_dqt_esc_nwl, ACTIONS(1477), 1, sym__r_dqt_str_end, ACTIONS(1479), 1, sym__br_dqt_str_end, STATE(464), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1471), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(657), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14051] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1483), 1, sym__r_dqt_esc_nwl, ACTIONS(1485), 1, sym__br_dqt_esc_nwl, STATE(423), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1481), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1487), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(609), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14080] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1473), 1, sym__r_dqt_esc_nwl, ACTIONS(1475), 1, sym__br_dqt_esc_nwl, STATE(466), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1479), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, ACTIONS(1489), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(657), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14109] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1491), 1, sym__r_dqt_esc_nwl, ACTIONS(1493), 1, sym__br_dqt_esc_nwl, ACTIONS(1495), 1, sym__r_dqt_str_end, ACTIONS(1497), 1, sym__br_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(664), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14140] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1397), 1, sym__r_dqt_esc_nwl, ACTIONS(1399), 1, sym__br_dqt_esc_nwl, ACTIONS(1401), 1, sym__br_dqt_str_end, ACTIONS(1499), 1, sym__r_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(650), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14171] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1491), 1, sym__r_dqt_esc_nwl, ACTIONS(1493), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1497), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(664), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14200] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1501), 1, sym__r_dqt_esc_nwl, ACTIONS(1503), 1, sym__br_dqt_esc_nwl, ACTIONS(1505), 1, sym__r_dqt_str_end, ACTIONS(1507), 1, sym__br_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(652), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14231] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1511), 1, sym__r_dqt_esc_nwl, ACTIONS(1513), 1, sym__br_dqt_esc_nwl, ACTIONS(1515), 1, sym__r_dqt_str_end, ACTIONS(1517), 1, sym__br_dqt_str_end, STATE(471), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1509), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(680), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14262] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(662), 11, sym__r_blk_imp_bgn, sym__r_flw_seq_bgn, sym__r_flw_map_bgn, sym__r_dqt_str_bgn, sym__r_sqt_str_bgn, sym__r_sgl_pln_nul_blk, sym__r_sgl_pln_bol_blk, sym__r_sgl_pln_int_blk, sym__r_sgl_pln_flt_blk, sym__r_sgl_pln_tms_blk, sym__r_sgl_pln_str_blk, [14279] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1511), 1, sym__r_dqt_esc_nwl, ACTIONS(1513), 1, sym__br_dqt_esc_nwl, STATE(472), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1517), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, ACTIONS(1519), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(680), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14308] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, sym__r_dqt_esc_nwl, ACTIONS(1523), 1, sym__br_dqt_esc_nwl, ACTIONS(1525), 1, sym__r_dqt_str_end, ACTIONS(1527), 1, sym__br_dqt_str_end, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, STATE(686), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14339] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, sym__r_dqt_esc_nwl, ACTIONS(1523), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1527), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(686), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14368] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1529), 1, sym__r_dqt_esc_nwl, ACTIONS(1531), 1, sym__br_dqt_esc_nwl, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1255), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1533), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(666), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [14397] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, sym__s_drs_end, ACTIONS(379), 1, sym__eof, ACTIONS(1535), 1, sym__s_doc_end, STATE(476), 1, sym__doc_w_bgn_wo_end, STATE(1155), 1, sym__exp_doc, STATE(1428), 2, sym__doc_w_bgn_w_end_seq, sym__doc_w_bgn_wo_end_seq, STATE(38), 3, sym__doc_w_bgn_w_end, sym__exp_doc_end, sym__doc_end, [14425] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(221), 1, sym__r_flw_njv_bgn, ACTIONS(223), 1, sym__br_flw_njv_bgn, STATE(793), 1, sym__br_flw_njl_ann_par, STATE(943), 1, sym__r_flw_njl_ann_par, STATE(1337), 1, sym__r_sgl_flw_njl_ann_par, ACTIONS(1537), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(1540), 3, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, [14453] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, sym__s_drs_end, ACTIONS(15), 1, sym__s_doc_end, ACTIONS(1542), 1, sym__eof, STATE(476), 1, sym__doc_w_bgn_wo_end, STATE(1155), 1, sym__exp_doc, STATE(1526), 2, sym__doc_w_bgn_w_end_seq, sym__doc_w_bgn_wo_end_seq, STATE(38), 3, sym__doc_w_bgn_w_end, sym__exp_doc_end, sym__doc_end, [14481] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, sym__s_drs_end, ACTIONS(379), 1, sym__eof, ACTIONS(1544), 1, sym__s_doc_end, STATE(476), 1, sym__doc_w_bgn_wo_end, STATE(1155), 1, sym__exp_doc, STATE(1428), 2, sym__doc_w_bgn_w_end_seq, sym__doc_w_bgn_wo_end_seq, STATE(38), 3, sym__doc_w_bgn_w_end, sym__exp_doc_end, sym__doc_end, [14509] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, sym__s_dir_yml_bgn, ACTIONS(9), 1, sym__s_dir_tag_bgn, ACTIONS(11), 1, sym__s_dir_rsv_bgn, ACTIONS(13), 1, sym__s_drs_end, STATE(1085), 1, sym__exp_doc, STATE(522), 5, sym__s_dir, sym__s_dir_yml, sym__s_dir_tag, sym__s_dir_rsv, aux_sym__drs_doc_repeat1, [14535] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, sym__s_drs_end, ACTIONS(379), 1, sym__eof, ACTIONS(1546), 1, sym__s_doc_end, STATE(476), 1, sym__doc_w_bgn_wo_end, STATE(1155), 1, sym__exp_doc, STATE(1428), 2, sym__doc_w_bgn_w_end_seq, sym__doc_w_bgn_wo_end_seq, STATE(38), 3, sym__doc_w_bgn_w_end, sym__exp_doc_end, sym__doc_end, [14563] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(13), 1, sym__s_drs_end, ACTIONS(15), 1, sym__s_doc_end, ACTIONS(1548), 1, sym__eof, STATE(476), 1, sym__doc_w_bgn_wo_end, STATE(1155), 1, sym__exp_doc, STATE(1490), 2, sym__doc_w_bgn_w_end_seq, sym__doc_w_bgn_wo_end_seq, STATE(38), 3, sym__doc_w_bgn_w_end, sym__exp_doc_end, sym__doc_end, [14591] = 4, ACTIONS(3), 1, sym_comment, STATE(481), 1, aux_sym__br_mtl_dqt_ctn_repeat1, ACTIONS(1550), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1553), 6, sym__br_dqt_str_ctn, sym__r_dqt_esc_nwl, sym__br_dqt_esc_nwl, sym__br_dqt_esc_seq, sym__r_dqt_str_end, sym__br_dqt_str_end, [14610] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1559), 1, sym__r_sqt_str_end, ACTIONS(1561), 1, sym__br_sqt_str_end, STATE(526), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1555), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, STATE(755), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14635] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1565), 1, sym__r_sqt_str_end, ACTIONS(1567), 1, sym__br_sqt_str_end, STATE(529), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1563), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(756), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14660] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1571), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(779), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14683] = 6, ACTIONS(3), 1, sym_comment, STATE(495), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1573), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1575), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(761), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14706] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1581), 1, sym__r_dqt_esc_nwl, STATE(499), 1, aux_sym__br_mtl_dqt_ctn_repeat1, ACTIONS(1577), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1579), 5, sym__br_dqt_str_ctn, sym__br_dqt_esc_nwl, sym__br_dqt_esc_seq, sym__r_dqt_str_end, sym__br_dqt_str_end, [14727] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1575), 1, sym__br_sqt_str_end, ACTIONS(1585), 1, sym__r_sqt_str_end, STATE(488), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1583), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(761), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14752] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1587), 1, sym__r_sqt_str_end, ACTIONS(1589), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(763), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14777] = 6, ACTIONS(3), 1, sym_comment, STATE(497), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1591), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1593), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(781), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14800] = 6, ACTIONS(3), 1, sym_comment, STATE(508), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1595), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1597), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(754), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14823] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1599), 1, sym__r_sqt_str_end, ACTIONS(1601), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(771), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14848] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, sym__br_flw_njv_bgn, ACTIONS(434), 1, sym__r_flw_njv_bgn, STATE(937), 1, sym__r_flw_njl_ann_par, STATE(956), 1, sym__br_flw_njl_ann_par, ACTIONS(1540), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [14871] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, sym__br_flw_njv_bgn, ACTIONS(434), 1, sym__r_flw_njv_bgn, STATE(938), 1, sym__r_flw_njl_ann_par, STATE(961), 1, sym__br_flw_njl_ann_par, ACTIONS(1603), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [14894] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1607), 1, sym__r_sqt_str_end, ACTIONS(1609), 1, sym__br_sqt_str_end, STATE(503), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1605), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(762), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14919] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1589), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(763), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14942] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1611), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(768), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14965] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1613), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(741), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [14988] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1615), 1, sym__r_flw_jsv_bgn, ACTIONS(1617), 1, sym__br_flw_jsv_bgn, STATE(787), 1, sym__br_flw_jsl_ann_par, STATE(940), 1, sym__r_flw_jsl_ann_par, ACTIONS(1540), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [15011] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1623), 1, sym__r_dqt_esc_nwl, STATE(481), 1, aux_sym__br_mtl_dqt_ctn_repeat1, ACTIONS(1619), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1621), 5, sym__br_dqt_str_ctn, sym__br_dqt_esc_nwl, sym__br_dqt_esc_seq, sym__r_dqt_str_end, sym__br_dqt_str_end, [15032] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1601), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(771), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15055] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1627), 1, sym__r_sqt_str_end, ACTIONS(1629), 1, sym__br_sqt_str_end, STATE(507), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1625), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(773), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15080] = 4, ACTIONS(3), 1, sym_comment, STATE(502), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(1631), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, ACTIONS(1634), 6, sym__br_dqt_str_ctn, sym__r_dqt_esc_nwl, sym__br_dqt_esc_nwl, sym__br_dqt_esc_seq, sym__r_dqt_str_end, sym__br_dqt_str_end, [15099] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1636), 1, sym__r_sqt_str_end, ACTIONS(1638), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(764), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15124] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1615), 1, sym__r_flw_jsv_bgn, ACTIONS(1617), 1, sym__br_flw_jsv_bgn, STATE(788), 1, sym__br_flw_jsl_ann_par, STATE(941), 1, sym__r_flw_jsl_ann_par, ACTIONS(1603), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [15147] = 6, ACTIONS(3), 1, sym_comment, STATE(510), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1629), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, ACTIONS(1640), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(773), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15170] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1642), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(776), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15193] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1644), 1, sym__r_sqt_str_end, ACTIONS(1646), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(775), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15218] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1648), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(750), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15241] = 6, ACTIONS(3), 1, sym_comment, STATE(506), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1650), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1652), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(774), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15264] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1646), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(775), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15287] = 6, ACTIONS(3), 1, sym_comment, STATE(535), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1654), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1656), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(765), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15310] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1658), 1, sym__r_sqt_str_end, ACTIONS(1660), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(752), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15335] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1656), 1, sym__br_sqt_str_end, ACTIONS(1664), 1, sym__r_sqt_str_end, STATE(531), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1662), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(765), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15360] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1668), 1, sym__r_sqt_str_end, ACTIONS(1670), 1, sym__br_sqt_str_end, STATE(491), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1666), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(769), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15385] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1674), 1, sym__r_sqt_str_end, ACTIONS(1676), 1, sym__br_sqt_str_end, STATE(521), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1672), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(777), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15410] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1597), 1, sym__br_sqt_str_end, ACTIONS(1680), 1, sym__r_sqt_str_end, STATE(518), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1678), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(754), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15435] = 6, ACTIONS(3), 1, sym_comment, STATE(530), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1682), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1684), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(770), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15458] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1648), 1, sym__br_sqt_str_end, ACTIONS(1686), 1, sym__r_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(750), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15483] = 6, ACTIONS(3), 1, sym_comment, STATE(524), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1676), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, ACTIONS(1688), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(777), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15506] = 6, ACTIONS(3), 1, sym_comment, STATE(537), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1561), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, ACTIONS(1690), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(755), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15529] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1692), 1, sym__r_sqt_str_end, ACTIONS(1694), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(778), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15554] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1696), 1, sym__s_dir_yml_bgn, ACTIONS(1699), 1, sym__s_dir_tag_bgn, ACTIONS(1702), 1, sym__s_dir_rsv_bgn, ACTIONS(1705), 1, sym__s_drs_end, STATE(522), 5, sym__s_dir, sym__s_dir_yml, sym__s_dir_tag, sym__s_dir_rsv, aux_sym__drs_doc_repeat1, [15577] = 6, ACTIONS(3), 1, sym_comment, STATE(500), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1670), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, ACTIONS(1707), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(769), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15600] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1694), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(778), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15623] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1711), 1, sym__r_sqt_str_end, ACTIONS(1713), 1, sym__br_sqt_str_end, STATE(512), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1709), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(757), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15648] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1715), 1, sym__r_sqt_str_end, ACTIONS(1717), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(759), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15673] = 6, ACTIONS(3), 1, sym_comment, STATE(484), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1719), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1721), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(693), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15696] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1725), 1, sym__r_sqt_str_end, ACTIONS(1727), 1, sym__br_sqt_str_end, STATE(534), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1723), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(780), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15721] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1729), 1, sym__r_sqt_str_end, ACTIONS(1731), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(760), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15746] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1733), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(772), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15769] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1735), 1, sym__r_sqt_str_end, ACTIONS(1737), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(767), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15794] = 6, ACTIONS(3), 1, sym_comment, STATE(536), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1727), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, ACTIONS(1739), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(780), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15817] = 6, ACTIONS(3), 1, sym_comment, STATE(496), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1741), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1743), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(766), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15840] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1745), 1, sym__r_sqt_str_end, ACTIONS(1747), 1, sym__br_sqt_str_end, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, STATE(782), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15865] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1737), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(767), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15888] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1747), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(782), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15911] = 6, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1569), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1717), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(759), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [15934] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(303), 1, sym__r_flw_njv_bgn, STATE(922), 1, sym__r_flw_njl_ann_par, STATE(1335), 1, sym__r_sgl_flw_njl_ann_par, ACTIONS(1749), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(1752), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [15956] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1756), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [15975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1151), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [15988] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1323), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1327), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(557), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16020] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1327), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16039] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1331), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1335), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(559), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1155), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16071] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1335), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16103] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16116] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16129] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1163), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [16155] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1760), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(552), 2, sym__flw_seq_dat_rpt, aux_sym__r_flw_seq_dat_repeat1, ACTIONS(1758), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [16172] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1763), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1765), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(584), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16191] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1767), 1, sym__r_flw_jsv_bgn, STATE(950), 1, sym__r_flw_jsl_ann_par, ACTIONS(1752), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [16208] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1769), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, ACTIONS(1023), 4, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_jsv_bgn, [16223] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1772), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, ACTIONS(1775), 4, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_njv_bgn, [16238] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1777), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16257] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1779), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1777), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(561), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16276] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1781), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16295] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1781), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(562), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16314] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1785), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16333] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1787), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16352] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1789), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [16365] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1775), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [16378] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1794), 1, sym__br_dqt_esc_nwl, ACTIONS(1791), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1797), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16397] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1175), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16410] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1801), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(567), 2, sym__flw_map_dat_rpt, aux_sym__r_flw_map_dat_repeat1, ACTIONS(1799), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [16427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16440] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1804), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, ACTIONS(1027), 4, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_jsv_bgn, [16455] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1183), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16481] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1807), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, ACTIONS(1031), 4, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_jsv_bgn, [16496] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16509] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1035), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16522] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1261), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(587), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16541] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1810), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, ACTIONS(1039), 4, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_jsv_bgn, [16556] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1261), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16575] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1273), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1275), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(589), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16594] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1275), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16613] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16626] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1043), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16639] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1813), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16658] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1815), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1813), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(585), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16677] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1817), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16696] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1819), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16715] = 4, ACTIONS(3), 1, sym_comment, STATE(586), 1, aux_sym__br_mtl_sqt_ctn_repeat1, ACTIONS(1821), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1824), 4, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, sym__r_sqt_str_end, sym__br_sqt_str_end, [16732] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1826), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16751] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1828), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1826), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(591), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16770] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1830), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16789] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1832), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1830), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(592), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16808] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1834), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16827] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1836), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [16846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [16859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16872] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1199), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1203), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16924] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1063), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1111), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16976] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [16989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(987), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17002] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1347), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1349), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(617), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17021] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1838), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, ACTIONS(987), 4, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_jsv_bgn, [17036] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1349), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17055] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1265), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1267), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(619), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17074] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1267), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17093] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(991), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17106] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1841), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, ACTIONS(995), 4, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, sym__br_flw_jsv_bgn, [17121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(995), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(999), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17147] = 4, ACTIONS(3), 1, sym_comment, STATE(586), 1, aux_sym__br_mtl_sqt_ctn_repeat1, ACTIONS(1844), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1846), 4, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, sym__r_sqt_str_end, sym__br_sqt_str_end, [17164] = 4, ACTIONS(3), 1, sym_comment, STATE(615), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(1848), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1851), 4, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, sym__r_sqt_str_end, sym__br_sqt_str_end, [17181] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17194] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1853), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17213] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1855), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1853), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(621), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17232] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1857), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17251] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1859), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1857), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(622), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17270] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1861), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17289] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1863), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17308] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17321] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17334] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1399), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1401), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(650), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17353] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1059), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17366] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1401), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17385] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1503), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1507), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(652), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17404] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1447), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17423] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1507), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17442] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1451), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1455), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(641), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17474] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1455), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17493] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1353), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1355), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(643), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17512] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1355), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [17544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1865), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [17557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [17570] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1867), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [17583] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1339), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1343), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(582), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17602] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1869), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17621] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1871), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1869), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(539), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17640] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1873), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17659] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1875), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1873), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(646), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17678] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1767), 1, sym__r_flw_jsv_bgn, STATE(952), 1, sym__r_flw_jsl_ann_par, ACTIONS(1877), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [17695] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1879), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17714] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1343), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17733] = 4, ACTIONS(3), 1, sym_comment, STATE(614), 1, aux_sym__br_mtl_sqt_ctn_repeat1, ACTIONS(1881), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, ACTIONS(1883), 4, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, sym__r_sqt_str_end, sym__br_sqt_str_end, [17750] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1887), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(660), 2, sym__flw_seq_dat_rpt, aux_sym__r_flw_seq_dat_repeat1, ACTIONS(1885), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [17767] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1889), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17786] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1891), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1889), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(654), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17805] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1893), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17824] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1895), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1893), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(656), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17843] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1897), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17862] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1493), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1497), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(664), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17881] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1899), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17900] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1497), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17919] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1531), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1533), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(666), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17938] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1533), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [17957] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1901), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(552), 2, sym__flw_seq_dat_rpt, aux_sym__r_flw_seq_dat_repeat1, ACTIONS(559), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [17974] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1905), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(663), 2, sym__flw_seq_dat_rpt, aux_sym__r_flw_seq_dat_repeat1, ACTIONS(1903), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [17991] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [18004] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1907), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(552), 2, sym__flw_seq_dat_rpt, aux_sym__r_flw_seq_dat_repeat1, ACTIONS(561), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [18021] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1909), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18040] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1911), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1909), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(668), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18059] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1913), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18078] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1915), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1913), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(669), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18097] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1917), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18116] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1919), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18135] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1923), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(673), 2, sym__flw_map_dat_rpt, aux_sym__r_flw_map_dat_repeat1, ACTIONS(1921), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [18152] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1927), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(675), 2, sym__flw_map_dat_rpt, aux_sym__r_flw_map_dat_repeat1, ACTIONS(1925), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [18169] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(497), 1, sym__r_flw_njv_bgn, STATE(923), 1, sym__r_flw_njl_ann_par, ACTIONS(1877), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [18186] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1929), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(567), 2, sym__flw_map_dat_rpt, aux_sym__r_flw_map_dat_repeat1, ACTIONS(553), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [18203] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(497), 1, sym__r_flw_njv_bgn, STATE(921), 1, sym__r_flw_njl_ann_par, ACTIONS(1752), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [18220] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1931), 2, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, STATE(567), 2, sym__flw_map_dat_rpt, aux_sym__r_flw_map_dat_repeat1, ACTIONS(551), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [18237] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1445), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1447), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(685), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18256] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [18269] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1523), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1527), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(686), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1935), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [18301] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1527), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18320] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1435), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1437), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(688), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18339] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1437), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1937), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [18371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1939), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [18384] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1765), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18403] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1941), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18422] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1943), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1941), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(690), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18441] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1945), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18460] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1947), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1945), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(691), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18479] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1949), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18498] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1754), 1, sym__br_dqt_esc_nwl, ACTIONS(1247), 2, sym__br_dqt_str_ctn, sym__br_dqt_esc_seq, ACTIONS(1951), 2, sym__r_dqt_str_end, sym__br_dqt_str_end, STATE(565), 2, sym__br_mtl_dqt_ctn, aux_sym__r_dqt_str_repeat1, [18517] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1055), 7, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [18530] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1571), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [18546] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1955), 1, sym__r_dir_rsv_prm, STATE(758), 1, aux_sym__s_dir_rsv_repeat1, ACTIONS(1953), 4, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, [18562] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [18574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1935), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [18586] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1937), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [18598] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1959), 1, sym__r_dir_rsv_prm, STATE(698), 1, aux_sym__s_dir_rsv_repeat1, ACTIONS(1957), 4, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, [18614] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1939), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [18626] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1865), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [18638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1867), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [18650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1151), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18674] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18686] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1155), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18698] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18710] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1163), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18746] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [18758] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1023), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, ACTIONS(1769), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [18772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1175), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18796] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1027), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, ACTIONS(1804), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [18810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18822] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1183), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18834] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, ACTIONS(1807), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [18848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18860] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1035), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18872] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, ACTIONS(1810), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [18886] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1043), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18910] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [18922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18934] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1199), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1203), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18970] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [18994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1063), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19018] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1111), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19030] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(987), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19054] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(987), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, ACTIONS(1838), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [19068] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(991), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19080] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(995), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, ACTIONS(1841), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [19094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(995), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(999), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19130] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1962), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1059), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19194] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [19206] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1772), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, ACTIONS(1775), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [19220] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1789), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [19232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1775), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [19244] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1964), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19260] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1966), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1969), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19276] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1971), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_njv_bgn, [19304] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1648), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19320] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1717), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19336] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1731), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19352] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1660), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19368] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1975), 1, sym__r_dir_rsv_prm, STATE(698), 1, aux_sym__s_dir_rsv_repeat1, ACTIONS(1973), 4, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, [19384] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1977), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19400] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1979), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19416] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1589), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19432] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1638), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19448] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1981), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19464] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1983), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19480] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1737), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19496] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1611), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19512] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1985), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19528] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1987), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19544] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1601), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19560] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1733), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19576] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1989), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19592] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1991), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19608] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1646), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19624] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1642), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19640] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1993), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19656] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1995), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19672] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1694), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19688] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1997), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19704] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1999), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19720] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1747), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19736] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(1613), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19752] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 2, sym__br_sqt_str_ctn, sym__br_sqt_esc_sqt, ACTIONS(2001), 2, sym__r_sqt_str_end, sym__br_sqt_str_end, STATE(751), 2, sym__br_mtl_sqt_ctn, aux_sym__r_sqt_str_repeat1, [19768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1055), 6, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, sym__r_flw_jsv_bgn, [19780] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1175), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19791] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1772), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(1775), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [19804] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1789), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19815] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2003), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2005), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19837] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2007), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2009), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2007), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19870] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1775), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19881] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2003), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1621), 5, sym__br_dqt_str_ctn, sym__br_dqt_esc_nwl, sym__br_dqt_esc_seq, sym__r_dqt_str_end, sym__br_dqt_str_end, [19903] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2009), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1935), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1937), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1939), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19947] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2011), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2013), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19969] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1772), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(1775), 3, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, [19982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1789), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [19993] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1775), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20004] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2015), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20015] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(303), 1, sym__r_flw_njv_bgn, ACTIONS(305), 1, sym__br_flw_njv_bgn, STATE(922), 1, sym__r_flw_njl_ann_par, STATE(949), 1, sym__br_flw_njl_ann_par, STATE(1335), 1, sym__r_sgl_flw_njl_ann_par, [20034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2017), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20045] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2017), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2017), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20067] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2017), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2019), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20089] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1865), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1867), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2021), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20133] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2023), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20144] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2025), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20155] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20166] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1151), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1155), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20199] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20221] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1163), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2027), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2021), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20265] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1769), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(1023), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [20278] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1175), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20300] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1804), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(1027), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [20313] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1183), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20335] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1807), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(1031), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [20348] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1035), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20370] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1810), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(1039), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [20383] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1043), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2021), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20416] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2023), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2023), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20438] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1199), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1203), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20493] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1063), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1111), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20548] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(987), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20559] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1838), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(987), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [20572] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(991), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20583] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1841), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(995), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [20596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(995), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20607] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(999), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20618] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1055), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20640] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20651] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1059), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2029), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20695] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1151), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20717] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20728] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1155), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20739] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1163), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20783] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20794] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20805] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2031), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20816] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1769), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(1023), 3, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, [20829] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20840] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1804), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(1027), 3, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, [20853] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20864] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1183), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20875] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1807), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(1031), 3, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, [20888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20899] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1035), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20910] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1810), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(1039), 3, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, [20923] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20934] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1043), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20945] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2033), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2035), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2037), 5, sym__br_dqt_str_ctn, sym__br_dqt_esc_nwl, sym__br_dqt_esc_seq, sym__r_dqt_str_end, sym__br_dqt_str_end, [20978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [20989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21011] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1199), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21022] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21033] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1203), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21066] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1063), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21077] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21088] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1111), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21110] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1838), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(987), 3, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, [21123] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(991), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21134] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1841), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(995), 3, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, [21147] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(995), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(999), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21180] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1055), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1059), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21213] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21224] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21235] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21246] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21257] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21279] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(332), 1, sym__blk_imp_itm_tal, ACTIONS(2039), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [21294] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(334), 1, sym__blk_imp_itm_tal, ACTIONS(2039), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [21309] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2041), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, ACTIONS(2044), 3, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__br_flw_sep_bgn, [21322] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2046), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2048), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21344] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2048), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21355] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2050), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2015), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21377] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2015), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21388] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2015), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2015), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21410] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(221), 1, sym__r_flw_njv_bgn, ACTIONS(223), 1, sym__br_flw_njv_bgn, STATE(793), 1, sym__br_flw_njl_ann_par, STATE(943), 1, sym__r_flw_njl_ann_par, STATE(1337), 1, sym__r_sgl_flw_njl_ann_par, [21429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2017), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1865), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21451] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2017), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21462] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2017), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2017), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21484] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2019), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21495] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2041), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, ACTIONS(2044), 3, sym__br_flw_map_end, sym__b_flw_map_end, sym__br_flw_sep_bgn, [21508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2046), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2048), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2050), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21541] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(334), 1, sym__blk_imp_itm_tal, ACTIONS(2052), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [21556] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2048), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2050), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21578] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1867), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2048), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21600] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2003), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2005), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2003), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21633] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2005), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2015), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21655] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2003), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2048), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21677] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2025), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2050), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21699] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2015), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21710] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2029), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21721] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21732] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2003), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1935), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21754] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1937), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21765] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1939), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21776] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2015), 5, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21787] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2005), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21798] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(987), 5, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, sym__r_flw_sep_bgn, sym__br_flw_sep_bgn, [21809] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2054), 1, sym__r_flw_seq_end, ACTIONS(2056), 1, sym__r_flw_sep_bgn, STATE(963), 2, sym__sgl_flw_col_dat_rpt, aux_sym__r_sgl_flw_col_dat_repeat1, [21823] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2059), 1, sym__r_flw_map_end, ACTIONS(2061), 1, sym__r_flw_sep_bgn, STATE(1012), 2, sym__sgl_flw_col_dat_rpt, aux_sym__r_sgl_flw_col_dat_repeat1, [21837] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2063), 1, sym__bl, STATE(973), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [21851] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2065), 1, sym__bl, STATE(974), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [21865] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(332), 1, sym__blk_imp_itm_tal, ACTIONS(973), 2, sym__b_blk_seq_bgn, sym__bl, [21879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2067), 4, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, [21889] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(334), 1, sym__blk_imp_itm_tal, ACTIONS(973), 2, sym__b_blk_seq_bgn, sym__bl, [21903] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2071), 1, sym__r_dqt_str_end, STATE(1014), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2069), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [21917] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2075), 1, sym__r_dqt_str_end, STATE(977), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2073), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [21931] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2079), 1, sym__r_sqt_str_end, STATE(978), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2077), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [21945] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2081), 1, sym__bl, STATE(979), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [21959] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2083), 1, sym__bl, STATE(979), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [21973] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2087), 1, sym__r_sqt_str_end, STATE(1029), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2085), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [21987] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(778), 1, sym__r_flw_njv_bgn, STATE(1226), 1, sym__r_sgl_flw_njl_ann_par, ACTIONS(2089), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [22001] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2093), 1, sym__r_dqt_str_end, STATE(1023), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2091), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22015] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2097), 1, sym__r_sqt_str_end, STATE(1024), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2095), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22029] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2099), 1, sym__b_blk_seq_bgn, ACTIONS(2102), 1, sym__bl, STATE(979), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22043] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(305), 1, sym__br_flw_njv_bgn, ACTIONS(497), 1, sym__r_flw_njv_bgn, STATE(921), 1, sym__r_flw_njl_ann_par, STATE(944), 1, sym__br_flw_njl_ann_par, [22059] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, sym__br_flw_njv_bgn, ACTIONS(434), 1, sym__r_flw_njv_bgn, STATE(937), 1, sym__r_flw_njl_ann_par, STATE(956), 1, sym__br_flw_njl_ann_par, [22075] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2106), 1, sym__r_dqt_str_end, STATE(993), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2104), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22089] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2110), 1, sym__r_sqt_str_end, STATE(994), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2108), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22103] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, sym__br_flw_njv_bgn, ACTIONS(434), 1, sym__r_flw_njv_bgn, STATE(938), 1, sym__r_flw_njl_ann_par, STATE(961), 1, sym__br_flw_njl_ann_par, [22119] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1001), 1, sym__r_blk_imp_bgn, ACTIONS(999), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22131] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2059), 1, sym__r_flw_seq_end, ACTIONS(2112), 1, sym__r_flw_sep_bgn, STATE(1016), 2, sym__sgl_flw_col_dat_rpt, aux_sym__r_sgl_flw_col_dat_repeat1, [22145] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(997), 1, sym__r_blk_imp_bgn, ACTIONS(995), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22157] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1029), 1, sym__r_blk_imp_bgn, ACTIONS(1027), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22169] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, sym__r_blk_imp_bgn, ACTIONS(987), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22181] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, sym__r_blk_imp_bgn, ACTIONS(991), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22193] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(305), 1, sym__br_flw_njv_bgn, ACTIONS(497), 1, sym__r_flw_njv_bgn, STATE(923), 1, sym__r_flw_njl_ann_par, STATE(945), 1, sym__br_flw_njl_ann_par, [22209] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2114), 1, sym__r_dqt_str_end, STATE(1023), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2091), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22223] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2116), 1, sym__r_dqt_str_end, STATE(1023), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2091), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22237] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2118), 1, sym__r_sqt_str_end, STATE(1024), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2095), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22251] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2120), 1, sym__bl, STATE(979), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22265] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 1, sym__r_blk_imp_bgn, ACTIONS(1031), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22277] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, sym__r_blk_imp_bgn, ACTIONS(1019), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22289] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2122), 1, sym__bl, STATE(979), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 4, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__r_blk_imp_bgn, [22313] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1037), 1, sym__r_blk_imp_bgn, ACTIONS(1035), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22325] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 4, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__r_blk_imp_bgn, [22335] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2124), 1, sym__bl, STATE(1022), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22349] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2126), 1, sym__bl, STATE(1026), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22363] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2128), 1, sym__bl, STATE(998), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22377] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 1, sym__r_blk_imp_bgn, ACTIONS(1039), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22389] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2130), 1, sym__r_dqt_str_end, STATE(1023), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2091), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22403] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2132), 1, sym__r_sqt_str_end, STATE(1024), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2095), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22417] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1045), 1, sym__r_blk_imp_bgn, ACTIONS(1043), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22429] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1767), 1, sym__r_flw_jsv_bgn, ACTIONS(2134), 1, sym__br_flw_jsv_bgn, STATE(946), 1, sym__br_flw_jsl_ann_par, STATE(950), 1, sym__r_flw_jsl_ann_par, [22445] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, sym__r_dqt_str_end, STATE(1020), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2136), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22459] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2142), 1, sym__r_sqt_str_end, STATE(1021), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2140), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22473] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(855), 1, sym__r_flw_map_end, ACTIONS(2144), 1, sym__r_flw_sep_bgn, STATE(1034), 2, sym__sgl_flw_col_dat_rpt, aux_sym__r_sgl_flw_col_dat_repeat1, [22487] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2146), 1, sym__r_sqt_str_end, STATE(1024), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2095), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22501] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2148), 1, sym__r_dqt_str_end, STATE(1023), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2091), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2150), 4, sym__s_dir_yml_bgn, sym__s_dir_tag_bgn, sym__s_dir_rsv_bgn, sym__s_drs_end, [22525] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(855), 1, sym__r_flw_seq_end, ACTIONS(2152), 1, sym__r_flw_sep_bgn, STATE(963), 2, sym__sgl_flw_col_dat_rpt, aux_sym__r_sgl_flw_col_dat_repeat1, [22539] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2156), 1, sym__r_dqt_str_end, STATE(1006), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2154), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22553] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1767), 1, sym__r_flw_jsv_bgn, ACTIONS(2134), 1, sym__br_flw_jsv_bgn, STATE(947), 1, sym__br_flw_jsl_ann_par, STATE(952), 1, sym__r_flw_jsl_ann_par, [22569] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2160), 1, sym__r_sqt_str_end, STATE(1007), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2158), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22583] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2162), 1, sym__r_dqt_str_end, STATE(1023), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2091), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22597] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2164), 1, sym__r_sqt_str_end, STATE(1024), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2095), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22611] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2166), 1, sym__bl, STATE(979), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22625] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1634), 1, sym__r_dqt_str_end, STATE(1023), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2168), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22639] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1851), 1, sym__r_sqt_str_end, STATE(1024), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2171), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22653] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2174), 1, sym__r_flw_jsv_bgn, STATE(1235), 1, sym__r_sgl_flw_jsl_ann_par, ACTIONS(2089), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [22667] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2176), 1, sym__bl, STATE(979), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22681] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2180), 1, sym__r_dqt_str_end, STATE(1032), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2178), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22695] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2184), 1, sym__r_sqt_str_end, STATE(1033), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2182), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22709] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2186), 1, sym__r_sqt_str_end, STATE(1024), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2095), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22723] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1003), 4, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__r_blk_imp_bgn, [22733] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1615), 1, sym__r_flw_jsv_bgn, ACTIONS(1617), 1, sym__br_flw_jsv_bgn, STATE(787), 1, sym__br_flw_jsl_ann_par, STATE(940), 1, sym__r_flw_jsl_ann_par, [22749] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2188), 1, sym__r_dqt_str_end, STATE(1023), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2091), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22763] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2190), 1, sym__r_sqt_str_end, STATE(1024), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2095), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22777] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2054), 1, sym__r_flw_map_end, ACTIONS(2192), 1, sym__r_flw_sep_bgn, STATE(1034), 2, sym__sgl_flw_col_dat_rpt, aux_sym__r_sgl_flw_col_dat_repeat1, [22791] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1615), 1, sym__r_flw_jsv_bgn, ACTIONS(1617), 1, sym__br_flw_jsv_bgn, STATE(788), 1, sym__br_flw_jsl_ann_par, STATE(941), 1, sym__r_flw_jsl_ann_par, [22807] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1013), 4, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__r_blk_imp_bgn, [22817] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, sym__r_blk_imp_bgn, ACTIONS(981), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22829] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(717), 1, sym__r_flw_njv_bgn, STATE(1409), 1, sym__r_sgl_flw_njl_ann_par, ACTIONS(2089), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [22843] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 4, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__r_blk_imp_bgn, [22853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, sym__r_blk_imp_bgn, ACTIONS(985), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22865] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2195), 1, sym__bl, STATE(979), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22879] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2199), 1, sym__r_dqt_str_end, STATE(992), 1, aux_sym__r_sgl_dqt_ctn, ACTIONS(2197), 2, sym__r_dqt_str_ctn, sym__r_dqt_esc_seq, [22893] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2203), 1, sym__r_sqt_str_end, STATE(1013), 1, aux_sym__r_sgl_sqt_ctn, ACTIONS(2201), 2, sym__r_sqt_str_ctn, sym__r_sqt_esc_sqt, [22907] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 4, sym__eof, sym__s_drs_end, sym__s_doc_end, sym__r_blk_imp_bgn, [22917] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2205), 1, sym__r_flw_jsv_bgn, STATE(1332), 1, sym__r_sgl_flw_jsl_ann_par, ACTIONS(2089), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [22931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1017), 1, sym__r_blk_imp_bgn, ACTIONS(1015), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22943] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1025), 1, sym__r_blk_imp_bgn, ACTIONS(1023), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22955] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, sym__b_blk_seq_bgn, ACTIONS(2207), 1, sym__bl, STATE(995), 2, sym__b_blk_seq_itm, aux_sym__r_blk_seq_repeat1, [22969] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [22978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2209), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [22987] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2211), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [22996] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2213), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23005] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2215), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23014] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2217), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23023] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1075), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23032] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2219), 1, sym__br_blk_str_ctn, ACTIONS(2222), 1, sym__bl, STATE(1056), 1, aux_sym__r_blk_str_repeat1, [23045] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1079), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23054] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2224), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [23063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [23072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23081] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2226), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2228), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1173), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23108] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2230), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23117] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1065), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23126] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2232), 1, sym__br_blk_str_ctn, ACTIONS(2234), 1, sym__bl, STATE(1056), 1, aux_sym__r_blk_str_repeat1, [23139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23148] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1051), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23166] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23175] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1155), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(989), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23193] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(997), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(987), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23220] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1183), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [23238] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2236), 1, sym__br_blk_str_ctn, ACTIONS(2238), 1, sym__bl, STATE(1089), 1, aux_sym__r_blk_str_repeat1, [23251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 3, sym__b_blk_seq_bgn, sym__r_blk_imp_bgn, sym__bl, [23260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1067), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23269] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2240), 1, sym__br_blk_str_ctn, ACTIONS(2242), 1, sym__bl, STATE(1066), 1, aux_sym__r_blk_str_repeat1, [23282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(991), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1145), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2244), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [23309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2246), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23318] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(995), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23327] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1171), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23345] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2232), 1, sym__br_blk_str_ctn, ACTIONS(2248), 1, sym__bl, STATE(1056), 1, aux_sym__r_blk_str_repeat1, [23358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(999), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23367] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1179), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23376] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1055), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1015), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23403] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1019), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [23430] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1059), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23439] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [23448] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [23457] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [23466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1147), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23484] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23493] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23502] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1003), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1013), 3, sym__b_blk_seq_bgn, sym__r_blk_imp_bgn, sym__bl, [23520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1035), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23529] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2250), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23547] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2252), 1, sym__br_blk_str_ctn, ACTIONS(2254), 1, sym__bl, STATE(1120), 1, aux_sym__r_blk_str_repeat1, [23560] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2256), 1, sym__br_blk_str_ctn, ACTIONS(2258), 1, sym__bl, STATE(1121), 1, aux_sym__r_blk_str_repeat1, [23573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2260), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2262), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23591] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23600] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23609] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1017), 1, sym__r_blk_imp_bgn, ACTIONS(1015), 2, sym__b_blk_seq_bgn, sym__bl, [23620] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, sym__r_blk_imp_bgn, ACTIONS(1019), 2, sym__b_blk_seq_bgn, sym__bl, [23631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23640] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2232), 1, sym__br_blk_str_ctn, ACTIONS(2266), 1, sym__bl, STATE(1056), 1, aux_sym__r_blk_str_repeat1, [23653] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2232), 1, sym__br_blk_str_ctn, ACTIONS(2268), 1, sym__bl, STATE(1056), 1, aux_sym__r_blk_str_repeat1, [23666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 3, sym__b_blk_seq_bgn, sym__r_blk_imp_bgn, sym__bl, [23675] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2270), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2272), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [23693] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2274), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [23702] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23711] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23720] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1025), 1, sym__r_blk_imp_bgn, ACTIONS(1023), 2, sym__b_blk_seq_bgn, sym__bl, [23731] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1163), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23740] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1043), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23749] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1175), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2276), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [23767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23776] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1111), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1129), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23794] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23803] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 3, sym__b_blk_seq_bgn, sym__r_blk_imp_bgn, sym__bl, [23812] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2278), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [23821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2209), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23830] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2280), 1, sym__br_blk_str_ctn, ACTIONS(2282), 1, sym__bl, STATE(1147), 1, aux_sym__r_blk_str_repeat1, [23843] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2284), 1, sym__br_blk_str_ctn, ACTIONS(2286), 1, sym__bl, STATE(1148), 1, aux_sym__r_blk_str_repeat1, [23856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1131), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23865] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2288), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23874] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1029), 1, sym__r_blk_imp_bgn, ACTIONS(1027), 2, sym__b_blk_seq_bgn, sym__bl, [23885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2230), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [23894] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 1, sym__r_blk_imp_bgn, ACTIONS(1031), 2, sym__b_blk_seq_bgn, sym__bl, [23905] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2232), 1, sym__br_blk_str_ctn, ACTIONS(2290), 1, sym__bl, STATE(1056), 1, aux_sym__r_blk_str_repeat1, [23918] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2232), 1, sym__br_blk_str_ctn, ACTIONS(2292), 1, sym__bl, STATE(1056), 1, aux_sym__r_blk_str_repeat1, [23931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1037), 1, sym__r_blk_imp_bgn, ACTIONS(1035), 2, sym__b_blk_seq_bgn, sym__bl, [23942] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 1, sym__r_blk_imp_bgn, ACTIONS(1039), 2, sym__b_blk_seq_bgn, sym__bl, [23953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2294), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [23962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2296), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [23971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1045), 1, sym__r_blk_imp_bgn, ACTIONS(1043), 2, sym__b_blk_seq_bgn, sym__bl, [23982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1137), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [23991] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2300), 1, sym__s_doc_end, ACTIONS(2298), 2, sym__eof, sym__s_drs_end, [24002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1151), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24011] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 3, sym__b_blk_seq_bgn, sym__r_blk_imp_bgn, sym__bl, [24029] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, sym__r_blk_imp_bgn, ACTIONS(981), 2, sym__b_blk_seq_bgn, sym__bl, [24040] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(983), 1, sym__r_blk_imp_bgn, ACTIONS(985), 2, sym__b_blk_seq_bgn, sym__bl, [24051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2211), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24060] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2213), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2215), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2217), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2302), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [24096] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2304), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [24105] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2308), 1, sym__s_doc_end, ACTIONS(2306), 2, sym__eof, sym__s_drs_end, [24116] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2310), 1, sym__s_doc_end, ACTIONS(2306), 2, sym__eof, sym__s_drs_end, [24127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2052), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24136] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1139), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24145] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2244), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [24154] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2312), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [24163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2314), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [24172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2226), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24181] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1205), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24199] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24208] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2228), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24217] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, sym__r_blk_imp_bgn, ACTIONS(987), 2, sym__b_blk_seq_bgn, sym__bl, [24228] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, sym__r_blk_imp_bgn, ACTIONS(991), 2, sym__b_blk_seq_bgn, sym__bl, [24239] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(997), 1, sym__r_blk_imp_bgn, ACTIONS(995), 2, sym__b_blk_seq_bgn, sym__bl, [24250] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2316), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [24259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2318), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [24268] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1001), 1, sym__r_blk_imp_bgn, ACTIONS(999), 2, sym__b_blk_seq_bgn, sym__bl, [24279] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1193), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1195), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24297] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2276), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_njv_bgn, [24306] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24315] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1199), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24342] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24351] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2320), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [24360] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2322), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [24369] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(989), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(997), 3, sym__r_flw_seq_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24387] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1203), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24396] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1003), 3, sym__b_blk_seq_bgn, sym__r_blk_imp_bgn, sym__bl, [24405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(981), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1143), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24423] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1207), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24432] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1209), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24441] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1211), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24459] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1063), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24477] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24486] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(985), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24495] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2250), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2260), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 3, sym__r_flw_seq_end, sym__br_flw_seq_end, sym__b_flw_seq_end, [24522] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2326), 3, sym__r_flw_map_end, sym__br_flw_map_end, sym__b_flw_map_end, [24531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2262), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 3, sym__r_flw_map_end, sym__r_flw_sep_bgn, sym__r_flw_jsv_bgn, [24549] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1187), 3, sym__eof, sym__s_drs_end, sym__s_doc_end, [24558] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1935), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [24566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 2, sym__b_blk_seq_bgn, sym__bl, [24574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1163), 2, sym__b_blk_seq_bgn, sym__bl, [24582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2250), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1015), 2, sym__b_blk_seq_bgn, sym__bl, [24598] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1019), 2, sym__b_blk_seq_bgn, sym__bl, [24606] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1775), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [24614] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2260), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2262), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24630] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2328), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2330), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24646] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(313), 1, sym__blk_imp_itm_tal, [24656] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1171), 2, sym__b_blk_seq_bgn, sym__bl, [24672] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1173), 2, sym__b_blk_seq_bgn, sym__bl, [24680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2211), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2213), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24696] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2215), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24704] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2217), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2330), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24720] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2244), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [24728] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(314), 1, sym__blk_imp_itm_tal, [24738] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2226), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24746] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(717), 1, sym__r_flw_njv_bgn, STATE(1409), 1, sym__r_sgl_flw_njl_ann_par, [24756] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2328), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24764] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2228), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24772] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2205), 1, sym__r_flw_jsv_bgn, STATE(1332), 1, sym__r_sgl_flw_jsl_ann_par, [24782] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1772), 1, sym__r_flw_njv_bgn, ACTIONS(1775), 1, sym__br_flw_njv_bgn, [24792] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2174), 1, sym__r_flw_jsv_bgn, STATE(1235), 1, sym__r_sgl_flw_jsl_ann_par, [24802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2332), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [24818] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1175), 2, sym__b_blk_seq_bgn, sym__bl, [24826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [24834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24842] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2328), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [24850] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2328), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [24858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2334), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [24866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2334), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [24882] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 2, sym__b_blk_seq_bgn, sym__bl, [24898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2209), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24906] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 2, sym__b_blk_seq_bgn, sym__bl, [24914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1183), 2, sym__b_blk_seq_bgn, sym__bl, [24922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 2, sym__b_blk_seq_bgn, sym__bl, [24930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1035), 2, sym__b_blk_seq_bgn, sym__bl, [24938] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1937), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [24946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1939), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [24954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2230), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [24962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 2, sym__b_blk_seq_bgn, sym__bl, [24970] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1043), 2, sym__b_blk_seq_bgn, sym__bl, [24978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2336), 2, sym__b_blk_seq_bgn, sym__bl, [24986] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2338), 2, sym__b_blk_seq_bgn, sym__bl, [24994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2244), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(989), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25010] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(997), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25018] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [25026] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 2, sym__b_blk_seq_bgn, sym__bl, [25034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1193), 2, sym__b_blk_seq_bgn, sym__bl, [25042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1195), 2, sym__b_blk_seq_bgn, sym__bl, [25050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 2, sym__b_blk_seq_bgn, sym__bl, [25058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1199), 2, sym__b_blk_seq_bgn, sym__bl, [25066] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 2, sym__b_blk_seq_bgn, sym__bl, [25074] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1203), 2, sym__b_blk_seq_bgn, sym__bl, [25082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(981), 2, sym__b_blk_seq_bgn, sym__bl, [25090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1003), 2, sym__b_blk_seq_bgn, sym__bl, [25098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1151), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1207), 2, sym__b_blk_seq_bgn, sym__bl, [25122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1209), 2, sym__b_blk_seq_bgn, sym__bl, [25130] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1211), 2, sym__b_blk_seq_bgn, sym__bl, [25138] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 2, sym__b_blk_seq_bgn, sym__bl, [25146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 2, sym__b_blk_seq_bgn, sym__bl, [25154] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1063), 2, sym__b_blk_seq_bgn, sym__bl, [25162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 2, sym__b_blk_seq_bgn, sym__bl, [25170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(985), 2, sym__b_blk_seq_bgn, sym__bl, [25178] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2340), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25186] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25194] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 2, sym__b_blk_seq_bgn, sym__bl, [25202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1179), 2, sym__b_blk_seq_bgn, sym__bl, [25210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1065), 2, sym__b_blk_seq_bgn, sym__bl, [25218] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1067), 2, sym__b_blk_seq_bgn, sym__bl, [25226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25234] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(975), 1, sym__r_blk_imp_bgn, STATE(304), 1, sym__blk_imp_itm_tal, [25244] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1075), 2, sym__b_blk_seq_bgn, sym__bl, [25252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2250), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1079), 2, sym__b_blk_seq_bgn, sym__bl, [25276] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1155), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25284] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2260), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25308] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2262), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25316] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1163), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25332] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25340] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2340), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25348] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2342), 2, sym__b_blk_seq_bgn, sym__bl, [25356] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1023), 1, sym__br_flw_jsv_bgn, ACTIONS(1769), 1, sym__r_flw_jsv_bgn, [25366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [25374] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1175), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25382] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2209), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25390] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2344), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25406] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1027), 1, sym__br_flw_jsv_bgn, ACTIONS(1804), 1, sym__r_flw_jsv_bgn, [25416] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25424] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2230), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25432] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1183), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25448] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 1, sym__br_flw_jsv_bgn, ACTIONS(1807), 1, sym__r_flw_jsv_bgn, [25458] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2276), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25474] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1035), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25490] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 1, sym__br_flw_jsv_bgn, ACTIONS(1810), 1, sym__r_flw_jsv_bgn, [25500] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1039), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2330), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1111), 2, sym__b_blk_seq_bgn, sym__bl, [25524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1043), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25532] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2330), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2276), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25548] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2330), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25556] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25564] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1199), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25572] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1203), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 2, sym__b_blk_seq_bgn, sym__bl, [25612] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1789), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [25620] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1063), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25628] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(987), 2, sym__b_blk_seq_bgn, sym__bl, [25636] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(991), 2, sym__b_blk_seq_bgn, sym__bl, [25660] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(995), 2, sym__b_blk_seq_bgn, sym__bl, [25668] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25676] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2211), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(999), 2, sym__b_blk_seq_bgn, sym__bl, [25700] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2213), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25716] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2215), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25724] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(778), 1, sym__r_flw_njv_bgn, STATE(1226), 1, sym__r_sgl_flw_njl_ann_par, [25734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2217), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1111), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 2, sym__b_blk_seq_bgn, sym__bl, [25758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1187), 2, sym__b_blk_seq_bgn, sym__bl, [25766] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1205), 2, sym__b_blk_seq_bgn, sym__bl, [25774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1051), 2, sym__b_blk_seq_bgn, sym__bl, [25782] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2226), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25798] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2228), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(987), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25814] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(987), 1, sym__br_flw_jsv_bgn, ACTIONS(1838), 1, sym__r_flw_jsv_bgn, [25824] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25832] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2332), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(991), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25848] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(995), 1, sym__br_flw_jsv_bgn, ACTIONS(1841), 1, sym__r_flw_jsv_bgn, [25858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 2, sym__b_blk_seq_bgn, sym__bl, [25866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1055), 2, sym__b_blk_seq_bgn, sym__bl, [25874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 2, sym__b_blk_seq_bgn, sym__bl, [25882] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1059), 2, sym__b_blk_seq_bgn, sym__bl, [25890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2344), 2, sym__r_flw_seq_end, sym__r_flw_sep_bgn, [25898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1129), 2, sym__b_blk_seq_bgn, sym__bl, [25906] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1131), 2, sym__b_blk_seq_bgn, sym__bl, [25914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 2, sym__b_blk_seq_bgn, sym__bl, [25922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 2, sym__b_blk_seq_bgn, sym__bl, [25930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(995), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25938] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(999), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [25946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1137), 2, sym__b_blk_seq_bgn, sym__bl, [25954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1139), 2, sym__b_blk_seq_bgn, sym__bl, [25962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 2, sym__b_blk_seq_bgn, sym__bl, [25970] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1143), 2, sym__b_blk_seq_bgn, sym__bl, [25978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1145), 2, sym__b_blk_seq_bgn, sym__bl, [25986] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [25994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [26002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1147), 2, sym__b_blk_seq_bgn, sym__bl, [26010] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 2, sym__b_blk_seq_bgn, sym__bl, [26018] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1151), 2, sym__b_blk_seq_bgn, sym__bl, [26026] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [26034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1055), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [26042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1865), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [26050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [26058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1867), 2, sym__r_flw_njv_bgn, sym__br_flw_njv_bgn, [26066] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 2, sym__b_blk_seq_bgn, sym__bl, [26074] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1155), 2, sym__b_blk_seq_bgn, sym__bl, [26082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1059), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [26090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 2, sym__b_blk_seq_bgn, sym__bl, [26098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(989), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [26106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(997), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [26114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 2, sym__b_blk_seq_bgn, sym__bl, [26122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 2, sym__r_flw_jsv_bgn, sym__br_flw_jsv_bgn, [26130] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2330), 2, sym__r_flw_map_end, sym__r_flw_sep_bgn, [26138] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2348), 1, sym__r_acr_ctn, [26145] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, sym__r_blk_imp_bgn, [26152] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2350), 1, sym__r_blk_imp_bgn, [26159] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2228), 1, sym__r_blk_imp_bgn, [26166] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2226), 1, sym__r_flw_jsv_bgn, [26173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2352), 1, sym__r_blk_imp_bgn, [26180] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2354), 1, sym__r_blk_imp_bgn, [26187] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2356), 1, sym__r_blk_imp_bgn, [26194] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2358), 1, sym__r_blk_imp_bgn, [26201] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2360), 1, sym__r_blk_imp_bgn, [26208] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2250), 1, sym__r_blk_imp_bgn, [26215] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, sym__r_blk_imp_bgn, [26222] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2230), 1, sym__r_flw_jsv_bgn, [26229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2209), 1, sym__r_blk_imp_bgn, [26236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 1, sym__r_blk_imp_bgn, [26243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(997), 1, sym__r_blk_imp_bgn, [26250] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2362), 1, ts_builtin_sym_end, [26257] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2364), 1, sym__r_dir_yml_ver, [26264] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2366), 1, sym__eof, [26271] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2368), 1, ts_builtin_sym_end, [26278] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2370), 1, sym__r_acr_ctn, [26285] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2372), 1, sym__r_acr_ctn, [26292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2374), 1, sym__r_als_ctn, [26299] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2376), 1, sym__r_acr_ctn, [26306] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2378), 1, sym__r_acr_ctn, [26313] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2380), 1, sym__r_als_ctn, [26320] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2382), 1, sym__r_als_ctn, [26327] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2384), 1, sym__r_als_ctn, [26334] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2386), 1, sym__r_acr_ctn, [26341] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2388), 1, sym__r_acr_ctn, [26348] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2390), 1, sym__r_als_ctn, [26355] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2392), 1, sym__r_als_ctn, [26362] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2260), 1, sym__r_blk_imp_bgn, [26369] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2394), 1, sym__r_blk_imp_bgn, [26376] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2396), 1, sym__r_blk_imp_bgn, [26383] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2398), 1, sym__r_blk_imp_bgn, [26390] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2400), 1, sym__r_blk_imp_bgn, [26397] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2402), 1, sym__r_flw_seq_end, [26404] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2228), 1, sym__r_flw_jsv_bgn, [26411] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2404), 1, sym__r_flw_map_end, [26418] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2406), 1, sym__r_blk_imp_bgn, [26425] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 1, sym__r_flw_jsv_bgn, [26432] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2408), 1, ts_builtin_sym_end, [26439] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2262), 1, sym__r_blk_imp_bgn, [26446] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2410), 1, sym__r_dir_tag_pfx, [26453] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(979), 1, sym__r_flw_njv_bgn, [26460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2412), 1, sym__eof, [26467] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2414), 1, sym__r_flw_seq_end, [26474] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 1, sym__r_flw_jsv_bgn, [26481] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2416), 1, sym__r_flw_seq_end, [26488] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2418), 1, sym__r_flw_map_end, [26495] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2420), 1, sym__r_blk_imp_bgn, [26502] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 1, sym__r_flw_njv_bgn, [26509] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2262), 1, sym__r_flw_jsv_bgn, [26516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, sym__r_blk_imp_bgn, [26523] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2424), 1, ts_builtin_sym_end, [26530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2213), 1, sym__r_flw_jsv_bgn, [26537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, sym__r_flw_jsv_bgn, [26544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2426), 1, sym__r_flw_seq_end, [26551] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2215), 1, sym__r_flw_jsv_bgn, [26558] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2244), 1, sym__r_flw_njv_bgn, [26565] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2428), 1, sym__r_flw_map_end, [26572] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2430), 1, sym__r_acr_ctn, [26579] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2432), 1, sym__r_flw_seq_end, [26586] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2434), 1, sym__r_als_ctn, [26593] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1933), 1, sym__r_flw_njv_bgn, [26600] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2436), 1, sym__r_flw_map_end, [26607] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 1, sym__r_blk_imp_bgn, [26614] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2438), 1, sym__r_acr_ctn, [26621] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, sym__r_acr_ctn, [26628] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2442), 1, sym__r_als_ctn, [26635] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2444), 1, sym__r_als_ctn, [26642] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2217), 1, sym__r_flw_jsv_bgn, [26649] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2446), 1, sym__r_acr_ctn, [26656] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2448), 1, sym__r_acr_ctn, [26663] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2450), 1, sym__r_blk_imp_bgn, [26670] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2452), 1, sym__r_als_ctn, [26677] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 1, sym__r_blk_imp_bgn, [26684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2454), 1, sym__r_als_ctn, [26691] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2456), 1, sym__eof, [26698] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2458), 1, sym__eof, [26705] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2460), 1, sym__r_blk_imp_bgn, [26712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2462), 1, sym__r_blk_imp_bgn, [26719] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2464), 1, sym__r_blk_imp_bgn, [26726] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2466), 1, sym__r_als_ctn, [26733] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, sym__r_flw_jsv_bgn, [26740] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2468), 1, sym__r_blk_imp_bgn, [26747] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2470), 1, sym__r_blk_imp_bgn, [26754] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2472), 1, sym__r_acr_ctn, [26761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2474), 1, sym__r_blk_imp_bgn, [26768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 1, sym__r_blk_imp_bgn, [26775] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2226), 1, sym__r_blk_imp_bgn, [26782] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, sym__r_blk_imp_bgn, [26789] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2478), 1, sym__r_acr_ctn, [26796] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2480), 1, sym__r_als_ctn, [26803] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2482), 1, sym__r_als_ctn, [26810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2250), 1, sym__r_flw_jsv_bgn, [26817] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(997), 1, sym__r_flw_jsv_bgn, [26824] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2484), 1, sym__r_als_ctn, [26831] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2209), 1, sym__r_flw_jsv_bgn, [26838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2486), 1, sym__r_acr_ctn, [26845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2488), 1, sym__r_acr_ctn, [26852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2490), 1, sym__r_als_ctn, [26859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2492), 1, sym__r_als_ctn, [26866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2494), 1, sym__r_blk_imp_bgn, [26873] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2496), 1, sym__r_dir_tag_hdl, [26880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2498), 1, sym__r_flw_map_end, [26887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2230), 1, sym__r_blk_imp_bgn, [26894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2276), 1, sym__r_flw_njv_bgn, [26901] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2500), 1, sym__r_acr_ctn, [26908] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2502), 1, sym__r_blk_imp_bgn, [26915] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2211), 1, sym__r_blk_imp_bgn, [26922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1003), 1, sym__r_blk_imp_bgn, [26929] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2213), 1, sym__r_blk_imp_bgn, [26936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2215), 1, sym__r_blk_imp_bgn, [26943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2504), 1, sym__r_flw_seq_end, [26950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2506), 1, sym__eof, [26957] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2508), 1, sym__r_flw_map_end, [26964] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2217), 1, sym__r_blk_imp_bgn, [26971] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2510), 1, sym__r_blk_imp_bgn, [26978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2512), 1, sym__r_blk_imp_bgn, [26985] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2514), 1, sym__r_blk_imp_bgn, [26992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2516), 1, sym__r_blk_imp_bgn, [26999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2518), 1, sym__r_blk_imp_bgn, [27006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2260), 1, sym__r_flw_jsv_bgn, [27013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2211), 1, sym__r_flw_jsv_bgn, [27020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2520), 1, sym__r_blk_imp_bgn, [27027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2522), 1, sym__r_blk_imp_bgn, [27034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2524), 1, sym__r_acr_ctn, [27041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, sym__r_acr_ctn, [27048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2528), 1, sym__r_als_ctn, [27055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2530), 1, sym__r_als_ctn, [27062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2532), 1, sym__r_acr_ctn, [27069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2534), 1, sym__r_acr_ctn, [27076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2536), 1, sym__r_als_ctn, [27083] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2538), 1, sym__r_acr_ctn, [27090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2540), 1, sym__r_acr_ctn, [27097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2542), 1, sym__r_als_ctn, [27104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2544), 1, sym__r_acr_ctn, [27111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2546), 1, sym__r_acr_ctn, [27118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2548), 1, sym__r_als_ctn, [27125] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2550), 1, sym__r_blk_imp_bgn, [27132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2552), 1, sym__r_acr_ctn, [27139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2554), 1, sym__r_als_ctn, [27146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2556), 1, sym__r_acr_ctn, [27153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2558), 1, sym__r_acr_ctn, [27160] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2560), 1, sym__r_als_ctn, [27167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2562), 1, sym__r_acr_ctn, [27174] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2564), 1, sym__r_acr_ctn, [27181] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2566), 1, sym__r_als_ctn, [27188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2568), 1, sym__r_acr_ctn, [27195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2570), 1, sym__r_acr_ctn, [27202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2572), 1, sym__r_acr_ctn, [27209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2574), 1, sym__r_acr_ctn, [27216] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2576), 1, sym__r_acr_ctn, [27223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2578), 1, sym__r_acr_ctn, [27230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2580), 1, sym__r_acr_ctn, [27237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2582), 1, sym__r_acr_ctn, [27244] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2584), 1, sym__r_acr_ctn, [27251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2586), 1, sym__r_acr_ctn, [27258] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2588), 1, sym__r_acr_ctn, [27265] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2590), 1, sym__r_acr_ctn, [27272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2592), 1, sym__r_acr_ctn, [27279] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2594), 1, sym__r_acr_ctn, [27286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2596), 1, sym__r_acr_ctn, [27293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2598), 1, sym__r_acr_ctn, [27300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2600), 1, sym__r_acr_ctn, [27307] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2602), 1, sym__r_acr_ctn, [27314] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2604), 1, sym__r_acr_ctn, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(96)] = 0, [SMALL_STATE(97)] = 71, [SMALL_STATE(98)] = 142, [SMALL_STATE(99)] = 206, [SMALL_STATE(100)] = 271, [SMALL_STATE(101)] = 336, [SMALL_STATE(102)] = 393, [SMALL_STATE(103)] = 450, [SMALL_STATE(104)] = 510, [SMALL_STATE(105)] = 570, [SMALL_STATE(106)] = 630, [SMALL_STATE(107)] = 686, [SMALL_STATE(108)] = 742, [SMALL_STATE(109)] = 797, [SMALL_STATE(110)] = 852, [SMALL_STATE(111)] = 907, [SMALL_STATE(112)] = 962, [SMALL_STATE(113)] = 1043, [SMALL_STATE(114)] = 1124, [SMALL_STATE(115)] = 1204, [SMALL_STATE(116)] = 1284, [SMALL_STATE(117)] = 1341, [SMALL_STATE(118)] = 1420, [SMALL_STATE(119)] = 1477, [SMALL_STATE(120)] = 1556, [SMALL_STATE(121)] = 1635, [SMALL_STATE(122)] = 1714, [SMALL_STATE(123)] = 1770, [SMALL_STATE(124)] = 1826, [SMALL_STATE(125)] = 1876, [SMALL_STATE(126)] = 1967, [SMALL_STATE(127)] = 2062, [SMALL_STATE(128)] = 2105, [SMALL_STATE(129)] = 2196, [SMALL_STATE(130)] = 2239, [SMALL_STATE(131)] = 2330, [SMALL_STATE(132)] = 2381, [SMALL_STATE(133)] = 2476, [SMALL_STATE(134)] = 2571, [SMALL_STATE(135)] = 2662, [SMALL_STATE(136)] = 2753, [SMALL_STATE(137)] = 2848, [SMALL_STATE(138)] = 2943, [SMALL_STATE(139)] = 3034, [SMALL_STATE(140)] = 3125, [SMALL_STATE(141)] = 3220, [SMALL_STATE(142)] = 3315, [SMALL_STATE(143)] = 3406, [SMALL_STATE(144)] = 3497, [SMALL_STATE(145)] = 3588, [SMALL_STATE(146)] = 3679, [SMALL_STATE(147)] = 3730, [SMALL_STATE(148)] = 3825, [SMALL_STATE(149)] = 3920, [SMALL_STATE(150)] = 4011, [SMALL_STATE(151)] = 4102, [SMALL_STATE(152)] = 4197, [SMALL_STATE(153)] = 4292, [SMALL_STATE(154)] = 4387, [SMALL_STATE(155)] = 4482, [SMALL_STATE(156)] = 4577, [SMALL_STATE(157)] = 4619, [SMALL_STATE(158)] = 4669, [SMALL_STATE(159)] = 4719, [SMALL_STATE(160)] = 4761, [SMALL_STATE(161)] = 4807, [SMALL_STATE(162)] = 4849, [SMALL_STATE(163)] = 4925, [SMALL_STATE(164)] = 4967, [SMALL_STATE(165)] = 5043, [SMALL_STATE(166)] = 5089, [SMALL_STATE(167)] = 5135, [SMALL_STATE(168)] = 5224, [SMALL_STATE(169)] = 5269, [SMALL_STATE(170)] = 5310, [SMALL_STATE(171)] = 5351, [SMALL_STATE(172)] = 5392, [SMALL_STATE(173)] = 5437, [SMALL_STATE(174)] = 5478, [SMALL_STATE(175)] = 5567, [SMALL_STATE(176)] = 5656, [SMALL_STATE(177)] = 5697, [SMALL_STATE(178)] = 5786, [SMALL_STATE(179)] = 5826, [SMALL_STATE(180)] = 5866, [SMALL_STATE(181)] = 5906, [SMALL_STATE(182)] = 5992, [SMALL_STATE(183)] = 6078, [SMALL_STATE(184)] = 6127, [SMALL_STATE(185)] = 6172, [SMALL_STATE(186)] = 6217, [SMALL_STATE(187)] = 6261, [SMALL_STATE(188)] = 6305, [SMALL_STATE(189)] = 6353, [SMALL_STATE(190)] = 6428, [SMALL_STATE(191)] = 6467, [SMALL_STATE(192)] = 6510, [SMALL_STATE(193)] = 6553, [SMALL_STATE(194)] = 6596, [SMALL_STATE(195)] = 6633, [SMALL_STATE(196)] = 6676, [SMALL_STATE(197)] = 6713, [SMALL_STATE(198)] = 6752, [SMALL_STATE(199)] = 6799, [SMALL_STATE(200)] = 6870, [SMALL_STATE(201)] = 6941, [SMALL_STATE(202)] = 6988, [SMALL_STATE(203)] = 7059, [SMALL_STATE(204)] = 7130, [SMALL_STATE(205)] = 7173, [SMALL_STATE(206)] = 7248, [SMALL_STATE(207)] = 7284, [SMALL_STATE(208)] = 7326, [SMALL_STATE(209)] = 7362, [SMALL_STATE(210)] = 7400, [SMALL_STATE(211)] = 7438, [SMALL_STATE(212)] = 7473, [SMALL_STATE(213)] = 7508, [SMALL_STATE(214)] = 7545, [SMALL_STATE(215)] = 7582, [SMALL_STATE(216)] = 7623, [SMALL_STATE(217)] = 7658, [SMALL_STATE(218)] = 7693, [SMALL_STATE(219)] = 7730, [SMALL_STATE(220)] = 7767, [SMALL_STATE(221)] = 7808, [SMALL_STATE(222)] = 7843, [SMALL_STATE(223)] = 7878, [SMALL_STATE(224)] = 7913, [SMALL_STATE(225)] = 7950, [SMALL_STATE(226)] = 7985, [SMALL_STATE(227)] = 8029, [SMALL_STATE(228)] = 8063, [SMALL_STATE(229)] = 8097, [SMALL_STATE(230)] = 8137, [SMALL_STATE(231)] = 8173, [SMALL_STATE(232)] = 8207, [SMALL_STATE(233)] = 8241, [SMALL_STATE(234)] = 8281, [SMALL_STATE(235)] = 8314, [SMALL_STATE(236)] = 8347, [SMALL_STATE(237)] = 8380, [SMALL_STATE(238)] = 8413, [SMALL_STATE(239)] = 8448, [SMALL_STATE(240)] = 8481, [SMALL_STATE(241)] = 8514, [SMALL_STATE(242)] = 8547, [SMALL_STATE(243)] = 8582, [SMALL_STATE(244)] = 8615, [SMALL_STATE(245)] = 8653, [SMALL_STATE(246)] = 8687, [SMALL_STATE(247)] = 8719, [SMALL_STATE(248)] = 8751, [SMALL_STATE(249)] = 8785, [SMALL_STATE(250)] = 8816, [SMALL_STATE(251)] = 8847, [SMALL_STATE(252)] = 8878, [SMALL_STATE(253)] = 8909, [SMALL_STATE(254)] = 8940, [SMALL_STATE(255)] = 8971, [SMALL_STATE(256)] = 9002, [SMALL_STATE(257)] = 9032, [SMALL_STATE(258)] = 9064, [SMALL_STATE(259)] = 9094, [SMALL_STATE(260)] = 9124, [SMALL_STATE(261)] = 9154, [SMALL_STATE(262)] = 9198, [SMALL_STATE(263)] = 9226, [SMALL_STATE(264)] = 9254, [SMALL_STATE(265)] = 9282, [SMALL_STATE(266)] = 9326, [SMALL_STATE(267)] = 9349, [SMALL_STATE(268)] = 9374, [SMALL_STATE(269)] = 9399, [SMALL_STATE(270)] = 9424, [SMALL_STATE(271)] = 9449, [SMALL_STATE(272)] = 9474, [SMALL_STATE(273)] = 9499, [SMALL_STATE(274)] = 9522, [SMALL_STATE(275)] = 9565, [SMALL_STATE(276)] = 9588, [SMALL_STATE(277)] = 9631, [SMALL_STATE(278)] = 9658, [SMALL_STATE(279)] = 9685, [SMALL_STATE(280)] = 9712, [SMALL_STATE(281)] = 9735, [SMALL_STATE(282)] = 9760, [SMALL_STATE(283)] = 9785, [SMALL_STATE(284)] = 9808, [SMALL_STATE(285)] = 9833, [SMALL_STATE(286)] = 9858, [SMALL_STATE(287)] = 9883, [SMALL_STATE(288)] = 9908, [SMALL_STATE(289)] = 9933, [SMALL_STATE(290)] = 9958, [SMALL_STATE(291)] = 9981, [SMALL_STATE(292)] = 10003, [SMALL_STATE(293)] = 10025, [SMALL_STATE(294)] = 10047, [SMALL_STATE(295)] = 10069, [SMALL_STATE(296)] = 10091, [SMALL_STATE(297)] = 10113, [SMALL_STATE(298)] = 10135, [SMALL_STATE(299)] = 10157, [SMALL_STATE(300)] = 10179, [SMALL_STATE(301)] = 10201, [SMALL_STATE(302)] = 10223, [SMALL_STATE(303)] = 10245, [SMALL_STATE(304)] = 10267, [SMALL_STATE(305)] = 10289, [SMALL_STATE(306)] = 10311, [SMALL_STATE(307)] = 10333, [SMALL_STATE(308)] = 10355, [SMALL_STATE(309)] = 10397, [SMALL_STATE(310)] = 10439, [SMALL_STATE(311)] = 10461, [SMALL_STATE(312)] = 10483, [SMALL_STATE(313)] = 10505, [SMALL_STATE(314)] = 10527, [SMALL_STATE(315)] = 10549, [SMALL_STATE(316)] = 10571, [SMALL_STATE(317)] = 10593, [SMALL_STATE(318)] = 10615, [SMALL_STATE(319)] = 10637, [SMALL_STATE(320)] = 10659, [SMALL_STATE(321)] = 10681, [SMALL_STATE(322)] = 10703, [SMALL_STATE(323)] = 10745, [SMALL_STATE(324)] = 10767, [SMALL_STATE(325)] = 10789, [SMALL_STATE(326)] = 10811, [SMALL_STATE(327)] = 10833, [SMALL_STATE(328)] = 10855, [SMALL_STATE(329)] = 10877, [SMALL_STATE(330)] = 10899, [SMALL_STATE(331)] = 10921, [SMALL_STATE(332)] = 10943, [SMALL_STATE(333)] = 10965, [SMALL_STATE(334)] = 10987, [SMALL_STATE(335)] = 11009, [SMALL_STATE(336)] = 11031, [SMALL_STATE(337)] = 11053, [SMALL_STATE(338)] = 11075, [SMALL_STATE(339)] = 11097, [SMALL_STATE(340)] = 11119, [SMALL_STATE(341)] = 11141, [SMALL_STATE(342)] = 11163, [SMALL_STATE(343)] = 11185, [SMALL_STATE(344)] = 11207, [SMALL_STATE(345)] = 11229, [SMALL_STATE(346)] = 11251, [SMALL_STATE(347)] = 11273, [SMALL_STATE(348)] = 11295, [SMALL_STATE(349)] = 11317, [SMALL_STATE(350)] = 11339, [SMALL_STATE(351)] = 11361, [SMALL_STATE(352)] = 11383, [SMALL_STATE(353)] = 11405, [SMALL_STATE(354)] = 11427, [SMALL_STATE(355)] = 11449, [SMALL_STATE(356)] = 11471, [SMALL_STATE(357)] = 11493, [SMALL_STATE(358)] = 11515, [SMALL_STATE(359)] = 11537, [SMALL_STATE(360)] = 11559, [SMALL_STATE(361)] = 11581, [SMALL_STATE(362)] = 11603, [SMALL_STATE(363)] = 11625, [SMALL_STATE(364)] = 11647, [SMALL_STATE(365)] = 11669, [SMALL_STATE(366)] = 11711, [SMALL_STATE(367)] = 11733, [SMALL_STATE(368)] = 11755, [SMALL_STATE(369)] = 11777, [SMALL_STATE(370)] = 11799, [SMALL_STATE(371)] = 11821, [SMALL_STATE(372)] = 11843, [SMALL_STATE(373)] = 11865, [SMALL_STATE(374)] = 11887, [SMALL_STATE(375)] = 11909, [SMALL_STATE(376)] = 11931, [SMALL_STATE(377)] = 11953, [SMALL_STATE(378)] = 11975, [SMALL_STATE(379)] = 11997, [SMALL_STATE(380)] = 12019, [SMALL_STATE(381)] = 12041, [SMALL_STATE(382)] = 12063, [SMALL_STATE(383)] = 12085, [SMALL_STATE(384)] = 12107, [SMALL_STATE(385)] = 12129, [SMALL_STATE(386)] = 12151, [SMALL_STATE(387)] = 12173, [SMALL_STATE(388)] = 12195, [SMALL_STATE(389)] = 12217, [SMALL_STATE(390)] = 12239, [SMALL_STATE(391)] = 12261, [SMALL_STATE(392)] = 12283, [SMALL_STATE(393)] = 12308, [SMALL_STATE(394)] = 12333, [SMALL_STATE(395)] = 12357, [SMALL_STATE(396)] = 12379, [SMALL_STATE(397)] = 12403, [SMALL_STATE(398)] = 12423, [SMALL_STATE(399)] = 12445, [SMALL_STATE(400)] = 12465, [SMALL_STATE(401)] = 12484, [SMALL_STATE(402)] = 12505, [SMALL_STATE(403)] = 12524, [SMALL_STATE(404)] = 12547, [SMALL_STATE(405)] = 12568, [SMALL_STATE(406)] = 12591, [SMALL_STATE(407)] = 12610, [SMALL_STATE(408)] = 12629, [SMALL_STATE(409)] = 12648, [SMALL_STATE(410)] = 12671, [SMALL_STATE(411)] = 12690, [SMALL_STATE(412)] = 12708, [SMALL_STATE(413)] = 12726, [SMALL_STATE(414)] = 12746, [SMALL_STATE(415)] = 12764, [SMALL_STATE(416)] = 12784, [SMALL_STATE(417)] = 12802, [SMALL_STATE(418)] = 12820, [SMALL_STATE(419)] = 12838, [SMALL_STATE(420)] = 12856, [SMALL_STATE(421)] = 12876, [SMALL_STATE(422)] = 12905, [SMALL_STATE(423)] = 12934, [SMALL_STATE(424)] = 12963, [SMALL_STATE(425)] = 12980, [SMALL_STATE(426)] = 12997, [SMALL_STATE(427)] = 13026, [SMALL_STATE(428)] = 13057, [SMALL_STATE(429)] = 13088, [SMALL_STATE(430)] = 13117, [SMALL_STATE(431)] = 13146, [SMALL_STATE(432)] = 13175, [SMALL_STATE(433)] = 13206, [SMALL_STATE(434)] = 13237, [SMALL_STATE(435)] = 13268, [SMALL_STATE(436)] = 13297, [SMALL_STATE(437)] = 13326, [SMALL_STATE(438)] = 13357, [SMALL_STATE(439)] = 13374, [SMALL_STATE(440)] = 13403, [SMALL_STATE(441)] = 13432, [SMALL_STATE(442)] = 13461, [SMALL_STATE(443)] = 13492, [SMALL_STATE(444)] = 13523, [SMALL_STATE(445)] = 13552, [SMALL_STATE(446)] = 13569, [SMALL_STATE(447)] = 13600, [SMALL_STATE(448)] = 13631, [SMALL_STATE(449)] = 13662, [SMALL_STATE(450)] = 13691, [SMALL_STATE(451)] = 13720, [SMALL_STATE(452)] = 13751, [SMALL_STATE(453)] = 13780, [SMALL_STATE(454)] = 13809, [SMALL_STATE(455)] = 13840, [SMALL_STATE(456)] = 13869, [SMALL_STATE(457)] = 13900, [SMALL_STATE(458)] = 13929, [SMALL_STATE(459)] = 13958, [SMALL_STATE(460)] = 13989, [SMALL_STATE(461)] = 14020, [SMALL_STATE(462)] = 14051, [SMALL_STATE(463)] = 14080, [SMALL_STATE(464)] = 14109, [SMALL_STATE(465)] = 14140, [SMALL_STATE(466)] = 14171, [SMALL_STATE(467)] = 14200, [SMALL_STATE(468)] = 14231, [SMALL_STATE(469)] = 14262, [SMALL_STATE(470)] = 14279, [SMALL_STATE(471)] = 14308, [SMALL_STATE(472)] = 14339, [SMALL_STATE(473)] = 14368, [SMALL_STATE(474)] = 14397, [SMALL_STATE(475)] = 14425, [SMALL_STATE(476)] = 14453, [SMALL_STATE(477)] = 14481, [SMALL_STATE(478)] = 14509, [SMALL_STATE(479)] = 14535, [SMALL_STATE(480)] = 14563, [SMALL_STATE(481)] = 14591, [SMALL_STATE(482)] = 14610, [SMALL_STATE(483)] = 14635, [SMALL_STATE(484)] = 14660, [SMALL_STATE(485)] = 14683, [SMALL_STATE(486)] = 14706, [SMALL_STATE(487)] = 14727, [SMALL_STATE(488)] = 14752, [SMALL_STATE(489)] = 14777, [SMALL_STATE(490)] = 14800, [SMALL_STATE(491)] = 14823, [SMALL_STATE(492)] = 14848, [SMALL_STATE(493)] = 14871, [SMALL_STATE(494)] = 14894, [SMALL_STATE(495)] = 14919, [SMALL_STATE(496)] = 14942, [SMALL_STATE(497)] = 14965, [SMALL_STATE(498)] = 14988, [SMALL_STATE(499)] = 15011, [SMALL_STATE(500)] = 15032, [SMALL_STATE(501)] = 15055, [SMALL_STATE(502)] = 15080, [SMALL_STATE(503)] = 15099, [SMALL_STATE(504)] = 15124, [SMALL_STATE(505)] = 15147, [SMALL_STATE(506)] = 15170, [SMALL_STATE(507)] = 15193, [SMALL_STATE(508)] = 15218, [SMALL_STATE(509)] = 15241, [SMALL_STATE(510)] = 15264, [SMALL_STATE(511)] = 15287, [SMALL_STATE(512)] = 15310, [SMALL_STATE(513)] = 15335, [SMALL_STATE(514)] = 15360, [SMALL_STATE(515)] = 15385, [SMALL_STATE(516)] = 15410, [SMALL_STATE(517)] = 15435, [SMALL_STATE(518)] = 15458, [SMALL_STATE(519)] = 15483, [SMALL_STATE(520)] = 15506, [SMALL_STATE(521)] = 15529, [SMALL_STATE(522)] = 15554, [SMALL_STATE(523)] = 15577, [SMALL_STATE(524)] = 15600, [SMALL_STATE(525)] = 15623, [SMALL_STATE(526)] = 15648, [SMALL_STATE(527)] = 15673, [SMALL_STATE(528)] = 15696, [SMALL_STATE(529)] = 15721, [SMALL_STATE(530)] = 15746, [SMALL_STATE(531)] = 15769, [SMALL_STATE(532)] = 15794, [SMALL_STATE(533)] = 15817, [SMALL_STATE(534)] = 15840, [SMALL_STATE(535)] = 15865, [SMALL_STATE(536)] = 15888, [SMALL_STATE(537)] = 15911, [SMALL_STATE(538)] = 15934, [SMALL_STATE(539)] = 15956, [SMALL_STATE(540)] = 15975, [SMALL_STATE(541)] = 15988, [SMALL_STATE(542)] = 16007, [SMALL_STATE(543)] = 16020, [SMALL_STATE(544)] = 16039, [SMALL_STATE(545)] = 16058, [SMALL_STATE(546)] = 16071, [SMALL_STATE(547)] = 16090, [SMALL_STATE(548)] = 16103, [SMALL_STATE(549)] = 16116, [SMALL_STATE(550)] = 16129, [SMALL_STATE(551)] = 16142, [SMALL_STATE(552)] = 16155, [SMALL_STATE(553)] = 16172, [SMALL_STATE(554)] = 16191, [SMALL_STATE(555)] = 16208, [SMALL_STATE(556)] = 16223, [SMALL_STATE(557)] = 16238, [SMALL_STATE(558)] = 16257, [SMALL_STATE(559)] = 16276, [SMALL_STATE(560)] = 16295, [SMALL_STATE(561)] = 16314, [SMALL_STATE(562)] = 16333, [SMALL_STATE(563)] = 16352, [SMALL_STATE(564)] = 16365, [SMALL_STATE(565)] = 16378, [SMALL_STATE(566)] = 16397, [SMALL_STATE(567)] = 16410, [SMALL_STATE(568)] = 16427, [SMALL_STATE(569)] = 16440, [SMALL_STATE(570)] = 16455, [SMALL_STATE(571)] = 16468, [SMALL_STATE(572)] = 16481, [SMALL_STATE(573)] = 16496, [SMALL_STATE(574)] = 16509, [SMALL_STATE(575)] = 16522, [SMALL_STATE(576)] = 16541, [SMALL_STATE(577)] = 16556, [SMALL_STATE(578)] = 16575, [SMALL_STATE(579)] = 16594, [SMALL_STATE(580)] = 16613, [SMALL_STATE(581)] = 16626, [SMALL_STATE(582)] = 16639, [SMALL_STATE(583)] = 16658, [SMALL_STATE(584)] = 16677, [SMALL_STATE(585)] = 16696, [SMALL_STATE(586)] = 16715, [SMALL_STATE(587)] = 16732, [SMALL_STATE(588)] = 16751, [SMALL_STATE(589)] = 16770, [SMALL_STATE(590)] = 16789, [SMALL_STATE(591)] = 16808, [SMALL_STATE(592)] = 16827, [SMALL_STATE(593)] = 16846, [SMALL_STATE(594)] = 16859, [SMALL_STATE(595)] = 16872, [SMALL_STATE(596)] = 16885, [SMALL_STATE(597)] = 16898, [SMALL_STATE(598)] = 16911, [SMALL_STATE(599)] = 16924, [SMALL_STATE(600)] = 16937, [SMALL_STATE(601)] = 16950, [SMALL_STATE(602)] = 16963, [SMALL_STATE(603)] = 16976, [SMALL_STATE(604)] = 16989, [SMALL_STATE(605)] = 17002, [SMALL_STATE(606)] = 17021, [SMALL_STATE(607)] = 17036, [SMALL_STATE(608)] = 17055, [SMALL_STATE(609)] = 17074, [SMALL_STATE(610)] = 17093, [SMALL_STATE(611)] = 17106, [SMALL_STATE(612)] = 17121, [SMALL_STATE(613)] = 17134, [SMALL_STATE(614)] = 17147, [SMALL_STATE(615)] = 17164, [SMALL_STATE(616)] = 17181, [SMALL_STATE(617)] = 17194, [SMALL_STATE(618)] = 17213, [SMALL_STATE(619)] = 17232, [SMALL_STATE(620)] = 17251, [SMALL_STATE(621)] = 17270, [SMALL_STATE(622)] = 17289, [SMALL_STATE(623)] = 17308, [SMALL_STATE(624)] = 17321, [SMALL_STATE(625)] = 17334, [SMALL_STATE(626)] = 17353, [SMALL_STATE(627)] = 17366, [SMALL_STATE(628)] = 17385, [SMALL_STATE(629)] = 17404, [SMALL_STATE(630)] = 17423, [SMALL_STATE(631)] = 17442, [SMALL_STATE(632)] = 17461, [SMALL_STATE(633)] = 17474, [SMALL_STATE(634)] = 17493, [SMALL_STATE(635)] = 17512, [SMALL_STATE(636)] = 17531, [SMALL_STATE(637)] = 17544, [SMALL_STATE(638)] = 17557, [SMALL_STATE(639)] = 17570, [SMALL_STATE(640)] = 17583, [SMALL_STATE(641)] = 17602, [SMALL_STATE(642)] = 17621, [SMALL_STATE(643)] = 17640, [SMALL_STATE(644)] = 17659, [SMALL_STATE(645)] = 17678, [SMALL_STATE(646)] = 17695, [SMALL_STATE(647)] = 17714, [SMALL_STATE(648)] = 17733, [SMALL_STATE(649)] = 17750, [SMALL_STATE(650)] = 17767, [SMALL_STATE(651)] = 17786, [SMALL_STATE(652)] = 17805, [SMALL_STATE(653)] = 17824, [SMALL_STATE(654)] = 17843, [SMALL_STATE(655)] = 17862, [SMALL_STATE(656)] = 17881, [SMALL_STATE(657)] = 17900, [SMALL_STATE(658)] = 17919, [SMALL_STATE(659)] = 17938, [SMALL_STATE(660)] = 17957, [SMALL_STATE(661)] = 17974, [SMALL_STATE(662)] = 17991, [SMALL_STATE(663)] = 18004, [SMALL_STATE(664)] = 18021, [SMALL_STATE(665)] = 18040, [SMALL_STATE(666)] = 18059, [SMALL_STATE(667)] = 18078, [SMALL_STATE(668)] = 18097, [SMALL_STATE(669)] = 18116, [SMALL_STATE(670)] = 18135, [SMALL_STATE(671)] = 18152, [SMALL_STATE(672)] = 18169, [SMALL_STATE(673)] = 18186, [SMALL_STATE(674)] = 18203, [SMALL_STATE(675)] = 18220, [SMALL_STATE(676)] = 18237, [SMALL_STATE(677)] = 18256, [SMALL_STATE(678)] = 18269, [SMALL_STATE(679)] = 18288, [SMALL_STATE(680)] = 18301, [SMALL_STATE(681)] = 18320, [SMALL_STATE(682)] = 18339, [SMALL_STATE(683)] = 18358, [SMALL_STATE(684)] = 18371, [SMALL_STATE(685)] = 18384, [SMALL_STATE(686)] = 18403, [SMALL_STATE(687)] = 18422, [SMALL_STATE(688)] = 18441, [SMALL_STATE(689)] = 18460, [SMALL_STATE(690)] = 18479, [SMALL_STATE(691)] = 18498, [SMALL_STATE(692)] = 18517, [SMALL_STATE(693)] = 18530, [SMALL_STATE(694)] = 18546, [SMALL_STATE(695)] = 18562, [SMALL_STATE(696)] = 18574, [SMALL_STATE(697)] = 18586, [SMALL_STATE(698)] = 18598, [SMALL_STATE(699)] = 18614, [SMALL_STATE(700)] = 18626, [SMALL_STATE(701)] = 18638, [SMALL_STATE(702)] = 18650, [SMALL_STATE(703)] = 18662, [SMALL_STATE(704)] = 18674, [SMALL_STATE(705)] = 18686, [SMALL_STATE(706)] = 18698, [SMALL_STATE(707)] = 18710, [SMALL_STATE(708)] = 18722, [SMALL_STATE(709)] = 18734, [SMALL_STATE(710)] = 18746, [SMALL_STATE(711)] = 18758, [SMALL_STATE(712)] = 18772, [SMALL_STATE(713)] = 18784, [SMALL_STATE(714)] = 18796, [SMALL_STATE(715)] = 18810, [SMALL_STATE(716)] = 18822, [SMALL_STATE(717)] = 18834, [SMALL_STATE(718)] = 18848, [SMALL_STATE(719)] = 18860, [SMALL_STATE(720)] = 18872, [SMALL_STATE(721)] = 18886, [SMALL_STATE(722)] = 18898, [SMALL_STATE(723)] = 18910, [SMALL_STATE(724)] = 18922, [SMALL_STATE(725)] = 18934, [SMALL_STATE(726)] = 18946, [SMALL_STATE(727)] = 18958, [SMALL_STATE(728)] = 18970, [SMALL_STATE(729)] = 18982, [SMALL_STATE(730)] = 18994, [SMALL_STATE(731)] = 19006, [SMALL_STATE(732)] = 19018, [SMALL_STATE(733)] = 19030, [SMALL_STATE(734)] = 19042, [SMALL_STATE(735)] = 19054, [SMALL_STATE(736)] = 19068, [SMALL_STATE(737)] = 19080, [SMALL_STATE(738)] = 19094, [SMALL_STATE(739)] = 19106, [SMALL_STATE(740)] = 19118, [SMALL_STATE(741)] = 19130, [SMALL_STATE(742)] = 19146, [SMALL_STATE(743)] = 19158, [SMALL_STATE(744)] = 19170, [SMALL_STATE(745)] = 19182, [SMALL_STATE(746)] = 19194, [SMALL_STATE(747)] = 19206, [SMALL_STATE(748)] = 19220, [SMALL_STATE(749)] = 19232, [SMALL_STATE(750)] = 19244, [SMALL_STATE(751)] = 19260, [SMALL_STATE(752)] = 19276, [SMALL_STATE(753)] = 19292, [SMALL_STATE(754)] = 19304, [SMALL_STATE(755)] = 19320, [SMALL_STATE(756)] = 19336, [SMALL_STATE(757)] = 19352, [SMALL_STATE(758)] = 19368, [SMALL_STATE(759)] = 19384, [SMALL_STATE(760)] = 19400, [SMALL_STATE(761)] = 19416, [SMALL_STATE(762)] = 19432, [SMALL_STATE(763)] = 19448, [SMALL_STATE(764)] = 19464, [SMALL_STATE(765)] = 19480, [SMALL_STATE(766)] = 19496, [SMALL_STATE(767)] = 19512, [SMALL_STATE(768)] = 19528, [SMALL_STATE(769)] = 19544, [SMALL_STATE(770)] = 19560, [SMALL_STATE(771)] = 19576, [SMALL_STATE(772)] = 19592, [SMALL_STATE(773)] = 19608, [SMALL_STATE(774)] = 19624, [SMALL_STATE(775)] = 19640, [SMALL_STATE(776)] = 19656, [SMALL_STATE(777)] = 19672, [SMALL_STATE(778)] = 19688, [SMALL_STATE(779)] = 19704, [SMALL_STATE(780)] = 19720, [SMALL_STATE(781)] = 19736, [SMALL_STATE(782)] = 19752, [SMALL_STATE(783)] = 19768, [SMALL_STATE(784)] = 19780, [SMALL_STATE(785)] = 19791, [SMALL_STATE(786)] = 19804, [SMALL_STATE(787)] = 19815, [SMALL_STATE(788)] = 19826, [SMALL_STATE(789)] = 19837, [SMALL_STATE(790)] = 19848, [SMALL_STATE(791)] = 19859, [SMALL_STATE(792)] = 19870, [SMALL_STATE(793)] = 19881, [SMALL_STATE(794)] = 19892, [SMALL_STATE(795)] = 19903, [SMALL_STATE(796)] = 19914, [SMALL_STATE(797)] = 19925, [SMALL_STATE(798)] = 19936, [SMALL_STATE(799)] = 19947, [SMALL_STATE(800)] = 19958, [SMALL_STATE(801)] = 19969, [SMALL_STATE(802)] = 19982, [SMALL_STATE(803)] = 19993, [SMALL_STATE(804)] = 20004, [SMALL_STATE(805)] = 20015, [SMALL_STATE(806)] = 20034, [SMALL_STATE(807)] = 20045, [SMALL_STATE(808)] = 20056, [SMALL_STATE(809)] = 20067, [SMALL_STATE(810)] = 20078, [SMALL_STATE(811)] = 20089, [SMALL_STATE(812)] = 20100, [SMALL_STATE(813)] = 20111, [SMALL_STATE(814)] = 20122, [SMALL_STATE(815)] = 20133, [SMALL_STATE(816)] = 20144, [SMALL_STATE(817)] = 20155, [SMALL_STATE(818)] = 20166, [SMALL_STATE(819)] = 20177, [SMALL_STATE(820)] = 20188, [SMALL_STATE(821)] = 20199, [SMALL_STATE(822)] = 20210, [SMALL_STATE(823)] = 20221, [SMALL_STATE(824)] = 20232, [SMALL_STATE(825)] = 20243, [SMALL_STATE(826)] = 20254, [SMALL_STATE(827)] = 20265, [SMALL_STATE(828)] = 20278, [SMALL_STATE(829)] = 20289, [SMALL_STATE(830)] = 20300, [SMALL_STATE(831)] = 20313, [SMALL_STATE(832)] = 20324, [SMALL_STATE(833)] = 20335, [SMALL_STATE(834)] = 20348, [SMALL_STATE(835)] = 20359, [SMALL_STATE(836)] = 20370, [SMALL_STATE(837)] = 20383, [SMALL_STATE(838)] = 20394, [SMALL_STATE(839)] = 20405, [SMALL_STATE(840)] = 20416, [SMALL_STATE(841)] = 20427, [SMALL_STATE(842)] = 20438, [SMALL_STATE(843)] = 20449, [SMALL_STATE(844)] = 20460, [SMALL_STATE(845)] = 20471, [SMALL_STATE(846)] = 20482, [SMALL_STATE(847)] = 20493, [SMALL_STATE(848)] = 20504, [SMALL_STATE(849)] = 20515, [SMALL_STATE(850)] = 20526, [SMALL_STATE(851)] = 20537, [SMALL_STATE(852)] = 20548, [SMALL_STATE(853)] = 20559, [SMALL_STATE(854)] = 20572, [SMALL_STATE(855)] = 20583, [SMALL_STATE(856)] = 20596, [SMALL_STATE(857)] = 20607, [SMALL_STATE(858)] = 20618, [SMALL_STATE(859)] = 20629, [SMALL_STATE(860)] = 20640, [SMALL_STATE(861)] = 20651, [SMALL_STATE(862)] = 20662, [SMALL_STATE(863)] = 20673, [SMALL_STATE(864)] = 20684, [SMALL_STATE(865)] = 20695, [SMALL_STATE(866)] = 20706, [SMALL_STATE(867)] = 20717, [SMALL_STATE(868)] = 20728, [SMALL_STATE(869)] = 20739, [SMALL_STATE(870)] = 20750, [SMALL_STATE(871)] = 20761, [SMALL_STATE(872)] = 20772, [SMALL_STATE(873)] = 20783, [SMALL_STATE(874)] = 20794, [SMALL_STATE(875)] = 20805, [SMALL_STATE(876)] = 20816, [SMALL_STATE(877)] = 20829, [SMALL_STATE(878)] = 20840, [SMALL_STATE(879)] = 20853, [SMALL_STATE(880)] = 20864, [SMALL_STATE(881)] = 20875, [SMALL_STATE(882)] = 20888, [SMALL_STATE(883)] = 20899, [SMALL_STATE(884)] = 20910, [SMALL_STATE(885)] = 20923, [SMALL_STATE(886)] = 20934, [SMALL_STATE(887)] = 20945, [SMALL_STATE(888)] = 20956, [SMALL_STATE(889)] = 20967, [SMALL_STATE(890)] = 20978, [SMALL_STATE(891)] = 20989, [SMALL_STATE(892)] = 21000, [SMALL_STATE(893)] = 21011, [SMALL_STATE(894)] = 21022, [SMALL_STATE(895)] = 21033, [SMALL_STATE(896)] = 21044, [SMALL_STATE(897)] = 21055, [SMALL_STATE(898)] = 21066, [SMALL_STATE(899)] = 21077, [SMALL_STATE(900)] = 21088, [SMALL_STATE(901)] = 21099, [SMALL_STATE(902)] = 21110, [SMALL_STATE(903)] = 21123, [SMALL_STATE(904)] = 21134, [SMALL_STATE(905)] = 21147, [SMALL_STATE(906)] = 21158, [SMALL_STATE(907)] = 21169, [SMALL_STATE(908)] = 21180, [SMALL_STATE(909)] = 21191, [SMALL_STATE(910)] = 21202, [SMALL_STATE(911)] = 21213, [SMALL_STATE(912)] = 21224, [SMALL_STATE(913)] = 21235, [SMALL_STATE(914)] = 21246, [SMALL_STATE(915)] = 21257, [SMALL_STATE(916)] = 21268, [SMALL_STATE(917)] = 21279, [SMALL_STATE(918)] = 21294, [SMALL_STATE(919)] = 21309, [SMALL_STATE(920)] = 21322, [SMALL_STATE(921)] = 21333, [SMALL_STATE(922)] = 21344, [SMALL_STATE(923)] = 21355, [SMALL_STATE(924)] = 21366, [SMALL_STATE(925)] = 21377, [SMALL_STATE(926)] = 21388, [SMALL_STATE(927)] = 21399, [SMALL_STATE(928)] = 21410, [SMALL_STATE(929)] = 21429, [SMALL_STATE(930)] = 21440, [SMALL_STATE(931)] = 21451, [SMALL_STATE(932)] = 21462, [SMALL_STATE(933)] = 21473, [SMALL_STATE(934)] = 21484, [SMALL_STATE(935)] = 21495, [SMALL_STATE(936)] = 21508, [SMALL_STATE(937)] = 21519, [SMALL_STATE(938)] = 21530, [SMALL_STATE(939)] = 21541, [SMALL_STATE(940)] = 21556, [SMALL_STATE(941)] = 21567, [SMALL_STATE(942)] = 21578, [SMALL_STATE(943)] = 21589, [SMALL_STATE(944)] = 21600, [SMALL_STATE(945)] = 21611, [SMALL_STATE(946)] = 21622, [SMALL_STATE(947)] = 21633, [SMALL_STATE(948)] = 21644, [SMALL_STATE(949)] = 21655, [SMALL_STATE(950)] = 21666, [SMALL_STATE(951)] = 21677, [SMALL_STATE(952)] = 21688, [SMALL_STATE(953)] = 21699, [SMALL_STATE(954)] = 21710, [SMALL_STATE(955)] = 21721, [SMALL_STATE(956)] = 21732, [SMALL_STATE(957)] = 21743, [SMALL_STATE(958)] = 21754, [SMALL_STATE(959)] = 21765, [SMALL_STATE(960)] = 21776, [SMALL_STATE(961)] = 21787, [SMALL_STATE(962)] = 21798, [SMALL_STATE(963)] = 21809, [SMALL_STATE(964)] = 21823, [SMALL_STATE(965)] = 21837, [SMALL_STATE(966)] = 21851, [SMALL_STATE(967)] = 21865, [SMALL_STATE(968)] = 21879, [SMALL_STATE(969)] = 21889, [SMALL_STATE(970)] = 21903, [SMALL_STATE(971)] = 21917, [SMALL_STATE(972)] = 21931, [SMALL_STATE(973)] = 21945, [SMALL_STATE(974)] = 21959, [SMALL_STATE(975)] = 21973, [SMALL_STATE(976)] = 21987, [SMALL_STATE(977)] = 22001, [SMALL_STATE(978)] = 22015, [SMALL_STATE(979)] = 22029, [SMALL_STATE(980)] = 22043, [SMALL_STATE(981)] = 22059, [SMALL_STATE(982)] = 22075, [SMALL_STATE(983)] = 22089, [SMALL_STATE(984)] = 22103, [SMALL_STATE(985)] = 22119, [SMALL_STATE(986)] = 22131, [SMALL_STATE(987)] = 22145, [SMALL_STATE(988)] = 22157, [SMALL_STATE(989)] = 22169, [SMALL_STATE(990)] = 22181, [SMALL_STATE(991)] = 22193, [SMALL_STATE(992)] = 22209, [SMALL_STATE(993)] = 22223, [SMALL_STATE(994)] = 22237, [SMALL_STATE(995)] = 22251, [SMALL_STATE(996)] = 22265, [SMALL_STATE(997)] = 22277, [SMALL_STATE(998)] = 22289, [SMALL_STATE(999)] = 22303, [SMALL_STATE(1000)] = 22313, [SMALL_STATE(1001)] = 22325, [SMALL_STATE(1002)] = 22335, [SMALL_STATE(1003)] = 22349, [SMALL_STATE(1004)] = 22363, [SMALL_STATE(1005)] = 22377, [SMALL_STATE(1006)] = 22389, [SMALL_STATE(1007)] = 22403, [SMALL_STATE(1008)] = 22417, [SMALL_STATE(1009)] = 22429, [SMALL_STATE(1010)] = 22445, [SMALL_STATE(1011)] = 22459, [SMALL_STATE(1012)] = 22473, [SMALL_STATE(1013)] = 22487, [SMALL_STATE(1014)] = 22501, [SMALL_STATE(1015)] = 22515, [SMALL_STATE(1016)] = 22525, [SMALL_STATE(1017)] = 22539, [SMALL_STATE(1018)] = 22553, [SMALL_STATE(1019)] = 22569, [SMALL_STATE(1020)] = 22583, [SMALL_STATE(1021)] = 22597, [SMALL_STATE(1022)] = 22611, [SMALL_STATE(1023)] = 22625, [SMALL_STATE(1024)] = 22639, [SMALL_STATE(1025)] = 22653, [SMALL_STATE(1026)] = 22667, [SMALL_STATE(1027)] = 22681, [SMALL_STATE(1028)] = 22695, [SMALL_STATE(1029)] = 22709, [SMALL_STATE(1030)] = 22723, [SMALL_STATE(1031)] = 22733, [SMALL_STATE(1032)] = 22749, [SMALL_STATE(1033)] = 22763, [SMALL_STATE(1034)] = 22777, [SMALL_STATE(1035)] = 22791, [SMALL_STATE(1036)] = 22807, [SMALL_STATE(1037)] = 22817, [SMALL_STATE(1038)] = 22829, [SMALL_STATE(1039)] = 22843, [SMALL_STATE(1040)] = 22853, [SMALL_STATE(1041)] = 22865, [SMALL_STATE(1042)] = 22879, [SMALL_STATE(1043)] = 22893, [SMALL_STATE(1044)] = 22907, [SMALL_STATE(1045)] = 22917, [SMALL_STATE(1046)] = 22931, [SMALL_STATE(1047)] = 22943, [SMALL_STATE(1048)] = 22955, [SMALL_STATE(1049)] = 22969, [SMALL_STATE(1050)] = 22978, [SMALL_STATE(1051)] = 22987, [SMALL_STATE(1052)] = 22996, [SMALL_STATE(1053)] = 23005, [SMALL_STATE(1054)] = 23014, [SMALL_STATE(1055)] = 23023, [SMALL_STATE(1056)] = 23032, [SMALL_STATE(1057)] = 23045, [SMALL_STATE(1058)] = 23054, [SMALL_STATE(1059)] = 23063, [SMALL_STATE(1060)] = 23072, [SMALL_STATE(1061)] = 23081, [SMALL_STATE(1062)] = 23090, [SMALL_STATE(1063)] = 23099, [SMALL_STATE(1064)] = 23108, [SMALL_STATE(1065)] = 23117, [SMALL_STATE(1066)] = 23126, [SMALL_STATE(1067)] = 23139, [SMALL_STATE(1068)] = 23148, [SMALL_STATE(1069)] = 23157, [SMALL_STATE(1070)] = 23166, [SMALL_STATE(1071)] = 23175, [SMALL_STATE(1072)] = 23184, [SMALL_STATE(1073)] = 23193, [SMALL_STATE(1074)] = 23202, [SMALL_STATE(1075)] = 23211, [SMALL_STATE(1076)] = 23220, [SMALL_STATE(1077)] = 23229, [SMALL_STATE(1078)] = 23238, [SMALL_STATE(1079)] = 23251, [SMALL_STATE(1080)] = 23260, [SMALL_STATE(1081)] = 23269, [SMALL_STATE(1082)] = 23282, [SMALL_STATE(1083)] = 23291, [SMALL_STATE(1084)] = 23300, [SMALL_STATE(1085)] = 23309, [SMALL_STATE(1086)] = 23318, [SMALL_STATE(1087)] = 23327, [SMALL_STATE(1088)] = 23336, [SMALL_STATE(1089)] = 23345, [SMALL_STATE(1090)] = 23358, [SMALL_STATE(1091)] = 23367, [SMALL_STATE(1092)] = 23376, [SMALL_STATE(1093)] = 23385, [SMALL_STATE(1094)] = 23394, [SMALL_STATE(1095)] = 23403, [SMALL_STATE(1096)] = 23412, [SMALL_STATE(1097)] = 23421, [SMALL_STATE(1098)] = 23430, [SMALL_STATE(1099)] = 23439, [SMALL_STATE(1100)] = 23448, [SMALL_STATE(1101)] = 23457, [SMALL_STATE(1102)] = 23466, [SMALL_STATE(1103)] = 23475, [SMALL_STATE(1104)] = 23484, [SMALL_STATE(1105)] = 23493, [SMALL_STATE(1106)] = 23502, [SMALL_STATE(1107)] = 23511, [SMALL_STATE(1108)] = 23520, [SMALL_STATE(1109)] = 23529, [SMALL_STATE(1110)] = 23538, [SMALL_STATE(1111)] = 23547, [SMALL_STATE(1112)] = 23560, [SMALL_STATE(1113)] = 23573, [SMALL_STATE(1114)] = 23582, [SMALL_STATE(1115)] = 23591, [SMALL_STATE(1116)] = 23600, [SMALL_STATE(1117)] = 23609, [SMALL_STATE(1118)] = 23620, [SMALL_STATE(1119)] = 23631, [SMALL_STATE(1120)] = 23640, [SMALL_STATE(1121)] = 23653, [SMALL_STATE(1122)] = 23666, [SMALL_STATE(1123)] = 23675, [SMALL_STATE(1124)] = 23684, [SMALL_STATE(1125)] = 23693, [SMALL_STATE(1126)] = 23702, [SMALL_STATE(1127)] = 23711, [SMALL_STATE(1128)] = 23720, [SMALL_STATE(1129)] = 23731, [SMALL_STATE(1130)] = 23740, [SMALL_STATE(1131)] = 23749, [SMALL_STATE(1132)] = 23758, [SMALL_STATE(1133)] = 23767, [SMALL_STATE(1134)] = 23776, [SMALL_STATE(1135)] = 23785, [SMALL_STATE(1136)] = 23794, [SMALL_STATE(1137)] = 23803, [SMALL_STATE(1138)] = 23812, [SMALL_STATE(1139)] = 23821, [SMALL_STATE(1140)] = 23830, [SMALL_STATE(1141)] = 23843, [SMALL_STATE(1142)] = 23856, [SMALL_STATE(1143)] = 23865, [SMALL_STATE(1144)] = 23874, [SMALL_STATE(1145)] = 23885, [SMALL_STATE(1146)] = 23894, [SMALL_STATE(1147)] = 23905, [SMALL_STATE(1148)] = 23918, [SMALL_STATE(1149)] = 23931, [SMALL_STATE(1150)] = 23942, [SMALL_STATE(1151)] = 23953, [SMALL_STATE(1152)] = 23962, [SMALL_STATE(1153)] = 23971, [SMALL_STATE(1154)] = 23982, [SMALL_STATE(1155)] = 23991, [SMALL_STATE(1156)] = 24002, [SMALL_STATE(1157)] = 24011, [SMALL_STATE(1158)] = 24020, [SMALL_STATE(1159)] = 24029, [SMALL_STATE(1160)] = 24040, [SMALL_STATE(1161)] = 24051, [SMALL_STATE(1162)] = 24060, [SMALL_STATE(1163)] = 24069, [SMALL_STATE(1164)] = 24078, [SMALL_STATE(1165)] = 24087, [SMALL_STATE(1166)] = 24096, [SMALL_STATE(1167)] = 24105, [SMALL_STATE(1168)] = 24116, [SMALL_STATE(1169)] = 24127, [SMALL_STATE(1170)] = 24136, [SMALL_STATE(1171)] = 24145, [SMALL_STATE(1172)] = 24154, [SMALL_STATE(1173)] = 24163, [SMALL_STATE(1174)] = 24172, [SMALL_STATE(1175)] = 24181, [SMALL_STATE(1176)] = 24190, [SMALL_STATE(1177)] = 24199, [SMALL_STATE(1178)] = 24208, [SMALL_STATE(1179)] = 24217, [SMALL_STATE(1180)] = 24228, [SMALL_STATE(1181)] = 24239, [SMALL_STATE(1182)] = 24250, [SMALL_STATE(1183)] = 24259, [SMALL_STATE(1184)] = 24268, [SMALL_STATE(1185)] = 24279, [SMALL_STATE(1186)] = 24288, [SMALL_STATE(1187)] = 24297, [SMALL_STATE(1188)] = 24306, [SMALL_STATE(1189)] = 24315, [SMALL_STATE(1190)] = 24324, [SMALL_STATE(1191)] = 24333, [SMALL_STATE(1192)] = 24342, [SMALL_STATE(1193)] = 24351, [SMALL_STATE(1194)] = 24360, [SMALL_STATE(1195)] = 24369, [SMALL_STATE(1196)] = 24378, [SMALL_STATE(1197)] = 24387, [SMALL_STATE(1198)] = 24396, [SMALL_STATE(1199)] = 24405, [SMALL_STATE(1200)] = 24414, [SMALL_STATE(1201)] = 24423, [SMALL_STATE(1202)] = 24432, [SMALL_STATE(1203)] = 24441, [SMALL_STATE(1204)] = 24450, [SMALL_STATE(1205)] = 24459, [SMALL_STATE(1206)] = 24468, [SMALL_STATE(1207)] = 24477, [SMALL_STATE(1208)] = 24486, [SMALL_STATE(1209)] = 24495, [SMALL_STATE(1210)] = 24504, [SMALL_STATE(1211)] = 24513, [SMALL_STATE(1212)] = 24522, [SMALL_STATE(1213)] = 24531, [SMALL_STATE(1214)] = 24540, [SMALL_STATE(1215)] = 24549, [SMALL_STATE(1216)] = 24558, [SMALL_STATE(1217)] = 24566, [SMALL_STATE(1218)] = 24574, [SMALL_STATE(1219)] = 24582, [SMALL_STATE(1220)] = 24590, [SMALL_STATE(1221)] = 24598, [SMALL_STATE(1222)] = 24606, [SMALL_STATE(1223)] = 24614, [SMALL_STATE(1224)] = 24622, [SMALL_STATE(1225)] = 24630, [SMALL_STATE(1226)] = 24638, [SMALL_STATE(1227)] = 24646, [SMALL_STATE(1228)] = 24656, [SMALL_STATE(1229)] = 24664, [SMALL_STATE(1230)] = 24672, [SMALL_STATE(1231)] = 24680, [SMALL_STATE(1232)] = 24688, [SMALL_STATE(1233)] = 24696, [SMALL_STATE(1234)] = 24704, [SMALL_STATE(1235)] = 24712, [SMALL_STATE(1236)] = 24720, [SMALL_STATE(1237)] = 24728, [SMALL_STATE(1238)] = 24738, [SMALL_STATE(1239)] = 24746, [SMALL_STATE(1240)] = 24756, [SMALL_STATE(1241)] = 24764, [SMALL_STATE(1242)] = 24772, [SMALL_STATE(1243)] = 24782, [SMALL_STATE(1244)] = 24792, [SMALL_STATE(1245)] = 24802, [SMALL_STATE(1246)] = 24810, [SMALL_STATE(1247)] = 24818, [SMALL_STATE(1248)] = 24826, [SMALL_STATE(1249)] = 24834, [SMALL_STATE(1250)] = 24842, [SMALL_STATE(1251)] = 24850, [SMALL_STATE(1252)] = 24858, [SMALL_STATE(1253)] = 24866, [SMALL_STATE(1254)] = 24874, [SMALL_STATE(1255)] = 24882, [SMALL_STATE(1256)] = 24890, [SMALL_STATE(1257)] = 24898, [SMALL_STATE(1258)] = 24906, [SMALL_STATE(1259)] = 24914, [SMALL_STATE(1260)] = 24922, [SMALL_STATE(1261)] = 24930, [SMALL_STATE(1262)] = 24938, [SMALL_STATE(1263)] = 24946, [SMALL_STATE(1264)] = 24954, [SMALL_STATE(1265)] = 24962, [SMALL_STATE(1266)] = 24970, [SMALL_STATE(1267)] = 24978, [SMALL_STATE(1268)] = 24986, [SMALL_STATE(1269)] = 24994, [SMALL_STATE(1270)] = 25002, [SMALL_STATE(1271)] = 25010, [SMALL_STATE(1272)] = 25018, [SMALL_STATE(1273)] = 25026, [SMALL_STATE(1274)] = 25034, [SMALL_STATE(1275)] = 25042, [SMALL_STATE(1276)] = 25050, [SMALL_STATE(1277)] = 25058, [SMALL_STATE(1278)] = 25066, [SMALL_STATE(1279)] = 25074, [SMALL_STATE(1280)] = 25082, [SMALL_STATE(1281)] = 25090, [SMALL_STATE(1282)] = 25098, [SMALL_STATE(1283)] = 25106, [SMALL_STATE(1284)] = 25114, [SMALL_STATE(1285)] = 25122, [SMALL_STATE(1286)] = 25130, [SMALL_STATE(1287)] = 25138, [SMALL_STATE(1288)] = 25146, [SMALL_STATE(1289)] = 25154, [SMALL_STATE(1290)] = 25162, [SMALL_STATE(1291)] = 25170, [SMALL_STATE(1292)] = 25178, [SMALL_STATE(1293)] = 25186, [SMALL_STATE(1294)] = 25194, [SMALL_STATE(1295)] = 25202, [SMALL_STATE(1296)] = 25210, [SMALL_STATE(1297)] = 25218, [SMALL_STATE(1298)] = 25226, [SMALL_STATE(1299)] = 25234, [SMALL_STATE(1300)] = 25244, [SMALL_STATE(1301)] = 25252, [SMALL_STATE(1302)] = 25260, [SMALL_STATE(1303)] = 25268, [SMALL_STATE(1304)] = 25276, [SMALL_STATE(1305)] = 25284, [SMALL_STATE(1306)] = 25292, [SMALL_STATE(1307)] = 25300, [SMALL_STATE(1308)] = 25308, [SMALL_STATE(1309)] = 25316, [SMALL_STATE(1310)] = 25324, [SMALL_STATE(1311)] = 25332, [SMALL_STATE(1312)] = 25340, [SMALL_STATE(1313)] = 25348, [SMALL_STATE(1314)] = 25356, [SMALL_STATE(1315)] = 25366, [SMALL_STATE(1316)] = 25374, [SMALL_STATE(1317)] = 25382, [SMALL_STATE(1318)] = 25390, [SMALL_STATE(1319)] = 25398, [SMALL_STATE(1320)] = 25406, [SMALL_STATE(1321)] = 25416, [SMALL_STATE(1322)] = 25424, [SMALL_STATE(1323)] = 25432, [SMALL_STATE(1324)] = 25440, [SMALL_STATE(1325)] = 25448, [SMALL_STATE(1326)] = 25458, [SMALL_STATE(1327)] = 25466, [SMALL_STATE(1328)] = 25474, [SMALL_STATE(1329)] = 25482, [SMALL_STATE(1330)] = 25490, [SMALL_STATE(1331)] = 25500, [SMALL_STATE(1332)] = 25508, [SMALL_STATE(1333)] = 25516, [SMALL_STATE(1334)] = 25524, [SMALL_STATE(1335)] = 25532, [SMALL_STATE(1336)] = 25540, [SMALL_STATE(1337)] = 25548, [SMALL_STATE(1338)] = 25556, [SMALL_STATE(1339)] = 25564, [SMALL_STATE(1340)] = 25572, [SMALL_STATE(1341)] = 25580, [SMALL_STATE(1342)] = 25588, [SMALL_STATE(1343)] = 25596, [SMALL_STATE(1344)] = 25604, [SMALL_STATE(1345)] = 25612, [SMALL_STATE(1346)] = 25620, [SMALL_STATE(1347)] = 25628, [SMALL_STATE(1348)] = 25636, [SMALL_STATE(1349)] = 25644, [SMALL_STATE(1350)] = 25652, [SMALL_STATE(1351)] = 25660, [SMALL_STATE(1352)] = 25668, [SMALL_STATE(1353)] = 25676, [SMALL_STATE(1354)] = 25684, [SMALL_STATE(1355)] = 25692, [SMALL_STATE(1356)] = 25700, [SMALL_STATE(1357)] = 25708, [SMALL_STATE(1358)] = 25716, [SMALL_STATE(1359)] = 25724, [SMALL_STATE(1360)] = 25734, [SMALL_STATE(1361)] = 25742, [SMALL_STATE(1362)] = 25750, [SMALL_STATE(1363)] = 25758, [SMALL_STATE(1364)] = 25766, [SMALL_STATE(1365)] = 25774, [SMALL_STATE(1366)] = 25782, [SMALL_STATE(1367)] = 25790, [SMALL_STATE(1368)] = 25798, [SMALL_STATE(1369)] = 25806, [SMALL_STATE(1370)] = 25814, [SMALL_STATE(1371)] = 25824, [SMALL_STATE(1372)] = 25832, [SMALL_STATE(1373)] = 25840, [SMALL_STATE(1374)] = 25848, [SMALL_STATE(1375)] = 25858, [SMALL_STATE(1376)] = 25866, [SMALL_STATE(1377)] = 25874, [SMALL_STATE(1378)] = 25882, [SMALL_STATE(1379)] = 25890, [SMALL_STATE(1380)] = 25898, [SMALL_STATE(1381)] = 25906, [SMALL_STATE(1382)] = 25914, [SMALL_STATE(1383)] = 25922, [SMALL_STATE(1384)] = 25930, [SMALL_STATE(1385)] = 25938, [SMALL_STATE(1386)] = 25946, [SMALL_STATE(1387)] = 25954, [SMALL_STATE(1388)] = 25962, [SMALL_STATE(1389)] = 25970, [SMALL_STATE(1390)] = 25978, [SMALL_STATE(1391)] = 25986, [SMALL_STATE(1392)] = 25994, [SMALL_STATE(1393)] = 26002, [SMALL_STATE(1394)] = 26010, [SMALL_STATE(1395)] = 26018, [SMALL_STATE(1396)] = 26026, [SMALL_STATE(1397)] = 26034, [SMALL_STATE(1398)] = 26042, [SMALL_STATE(1399)] = 26050, [SMALL_STATE(1400)] = 26058, [SMALL_STATE(1401)] = 26066, [SMALL_STATE(1402)] = 26074, [SMALL_STATE(1403)] = 26082, [SMALL_STATE(1404)] = 26090, [SMALL_STATE(1405)] = 26098, [SMALL_STATE(1406)] = 26106, [SMALL_STATE(1407)] = 26114, [SMALL_STATE(1408)] = 26122, [SMALL_STATE(1409)] = 26130, [SMALL_STATE(1410)] = 26138, [SMALL_STATE(1411)] = 26145, [SMALL_STATE(1412)] = 26152, [SMALL_STATE(1413)] = 26159, [SMALL_STATE(1414)] = 26166, [SMALL_STATE(1415)] = 26173, [SMALL_STATE(1416)] = 26180, [SMALL_STATE(1417)] = 26187, [SMALL_STATE(1418)] = 26194, [SMALL_STATE(1419)] = 26201, [SMALL_STATE(1420)] = 26208, [SMALL_STATE(1421)] = 26215, [SMALL_STATE(1422)] = 26222, [SMALL_STATE(1423)] = 26229, [SMALL_STATE(1424)] = 26236, [SMALL_STATE(1425)] = 26243, [SMALL_STATE(1426)] = 26250, [SMALL_STATE(1427)] = 26257, [SMALL_STATE(1428)] = 26264, [SMALL_STATE(1429)] = 26271, [SMALL_STATE(1430)] = 26278, [SMALL_STATE(1431)] = 26285, [SMALL_STATE(1432)] = 26292, [SMALL_STATE(1433)] = 26299, [SMALL_STATE(1434)] = 26306, [SMALL_STATE(1435)] = 26313, [SMALL_STATE(1436)] = 26320, [SMALL_STATE(1437)] = 26327, [SMALL_STATE(1438)] = 26334, [SMALL_STATE(1439)] = 26341, [SMALL_STATE(1440)] = 26348, [SMALL_STATE(1441)] = 26355, [SMALL_STATE(1442)] = 26362, [SMALL_STATE(1443)] = 26369, [SMALL_STATE(1444)] = 26376, [SMALL_STATE(1445)] = 26383, [SMALL_STATE(1446)] = 26390, [SMALL_STATE(1447)] = 26397, [SMALL_STATE(1448)] = 26404, [SMALL_STATE(1449)] = 26411, [SMALL_STATE(1450)] = 26418, [SMALL_STATE(1451)] = 26425, [SMALL_STATE(1452)] = 26432, [SMALL_STATE(1453)] = 26439, [SMALL_STATE(1454)] = 26446, [SMALL_STATE(1455)] = 26453, [SMALL_STATE(1456)] = 26460, [SMALL_STATE(1457)] = 26467, [SMALL_STATE(1458)] = 26474, [SMALL_STATE(1459)] = 26481, [SMALL_STATE(1460)] = 26488, [SMALL_STATE(1461)] = 26495, [SMALL_STATE(1462)] = 26502, [SMALL_STATE(1463)] = 26509, [SMALL_STATE(1464)] = 26516, [SMALL_STATE(1465)] = 26523, [SMALL_STATE(1466)] = 26530, [SMALL_STATE(1467)] = 26537, [SMALL_STATE(1468)] = 26544, [SMALL_STATE(1469)] = 26551, [SMALL_STATE(1470)] = 26558, [SMALL_STATE(1471)] = 26565, [SMALL_STATE(1472)] = 26572, [SMALL_STATE(1473)] = 26579, [SMALL_STATE(1474)] = 26586, [SMALL_STATE(1475)] = 26593, [SMALL_STATE(1476)] = 26600, [SMALL_STATE(1477)] = 26607, [SMALL_STATE(1478)] = 26614, [SMALL_STATE(1479)] = 26621, [SMALL_STATE(1480)] = 26628, [SMALL_STATE(1481)] = 26635, [SMALL_STATE(1482)] = 26642, [SMALL_STATE(1483)] = 26649, [SMALL_STATE(1484)] = 26656, [SMALL_STATE(1485)] = 26663, [SMALL_STATE(1486)] = 26670, [SMALL_STATE(1487)] = 26677, [SMALL_STATE(1488)] = 26684, [SMALL_STATE(1489)] = 26691, [SMALL_STATE(1490)] = 26698, [SMALL_STATE(1491)] = 26705, [SMALL_STATE(1492)] = 26712, [SMALL_STATE(1493)] = 26719, [SMALL_STATE(1494)] = 26726, [SMALL_STATE(1495)] = 26733, [SMALL_STATE(1496)] = 26740, [SMALL_STATE(1497)] = 26747, [SMALL_STATE(1498)] = 26754, [SMALL_STATE(1499)] = 26761, [SMALL_STATE(1500)] = 26768, [SMALL_STATE(1501)] = 26775, [SMALL_STATE(1502)] = 26782, [SMALL_STATE(1503)] = 26789, [SMALL_STATE(1504)] = 26796, [SMALL_STATE(1505)] = 26803, [SMALL_STATE(1506)] = 26810, [SMALL_STATE(1507)] = 26817, [SMALL_STATE(1508)] = 26824, [SMALL_STATE(1509)] = 26831, [SMALL_STATE(1510)] = 26838, [SMALL_STATE(1511)] = 26845, [SMALL_STATE(1512)] = 26852, [SMALL_STATE(1513)] = 26859, [SMALL_STATE(1514)] = 26866, [SMALL_STATE(1515)] = 26873, [SMALL_STATE(1516)] = 26880, [SMALL_STATE(1517)] = 26887, [SMALL_STATE(1518)] = 26894, [SMALL_STATE(1519)] = 26901, [SMALL_STATE(1520)] = 26908, [SMALL_STATE(1521)] = 26915, [SMALL_STATE(1522)] = 26922, [SMALL_STATE(1523)] = 26929, [SMALL_STATE(1524)] = 26936, [SMALL_STATE(1525)] = 26943, [SMALL_STATE(1526)] = 26950, [SMALL_STATE(1527)] = 26957, [SMALL_STATE(1528)] = 26964, [SMALL_STATE(1529)] = 26971, [SMALL_STATE(1530)] = 26978, [SMALL_STATE(1531)] = 26985, [SMALL_STATE(1532)] = 26992, [SMALL_STATE(1533)] = 26999, [SMALL_STATE(1534)] = 27006, [SMALL_STATE(1535)] = 27013, [SMALL_STATE(1536)] = 27020, [SMALL_STATE(1537)] = 27027, [SMALL_STATE(1538)] = 27034, [SMALL_STATE(1539)] = 27041, [SMALL_STATE(1540)] = 27048, [SMALL_STATE(1541)] = 27055, [SMALL_STATE(1542)] = 27062, [SMALL_STATE(1543)] = 27069, [SMALL_STATE(1544)] = 27076, [SMALL_STATE(1545)] = 27083, [SMALL_STATE(1546)] = 27090, [SMALL_STATE(1547)] = 27097, [SMALL_STATE(1548)] = 27104, [SMALL_STATE(1549)] = 27111, [SMALL_STATE(1550)] = 27118, [SMALL_STATE(1551)] = 27125, [SMALL_STATE(1552)] = 27132, [SMALL_STATE(1553)] = 27139, [SMALL_STATE(1554)] = 27146, [SMALL_STATE(1555)] = 27153, [SMALL_STATE(1556)] = 27160, [SMALL_STATE(1557)] = 27167, [SMALL_STATE(1558)] = 27174, [SMALL_STATE(1559)] = 27181, [SMALL_STATE(1560)] = 27188, [SMALL_STATE(1561)] = 27195, [SMALL_STATE(1562)] = 27202, [SMALL_STATE(1563)] = 27209, [SMALL_STATE(1564)] = 27216, [SMALL_STATE(1565)] = 27223, [SMALL_STATE(1566)] = 27230, [SMALL_STATE(1567)] = 27237, [SMALL_STATE(1568)] = 27244, [SMALL_STATE(1569)] = 27251, [SMALL_STATE(1570)] = 27258, [SMALL_STATE(1571)] = 27265, [SMALL_STATE(1572)] = 27272, [SMALL_STATE(1573)] = 27279, [SMALL_STATE(1574)] = 27286, [SMALL_STATE(1575)] = 27293, [SMALL_STATE(1576)] = 27300, [SMALL_STATE(1577)] = 27307, [SMALL_STATE(1578)] = 27314, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_val_itm, 1, 0, 0), [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_key_itm, 1, 0, 0), [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_key_itm, 1, 0, 0), [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_val_itm, 1, 0, 0), [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_key_itm, 1, 0, 0), [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_val_itm, 1, 0, 0), [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_seq_itm, 1, 0, 0), [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_seq_itm, 1, 0, 0), [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_seq_itm, 1, 0, 0), [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blk_imp_itm_tal, 1, 0, 0), [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp_doc, 1, 0, 0), [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_prp_val, 1, 0, 0), [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_prp_val, 1, 0, 0), [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_w_bgn_w_end_seq, 1, 0, 0), [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_wo_bgn_w_end_seq, 1, 0, 0), [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_flw_exp_par, 1, 0, 0), REDUCE(sym__r_sgl_flw_exp_par, 1, 0, 0), [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_exp_par, 1, 0, 0), [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_flw_njl_ann_par, 1, 0, 0), REDUCE(sym__r_sgl_flw_njl_ann_par, 1, 0, 0), [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_njl_ann_par, 1, 0, 0), [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_map_dat, 2, 0, 0), [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_map_dat, 2, 0, 0), [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_map_dat, 3, 0, 0), [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_map_dat, 3, 0, 0), [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_seq_dat, 2, 0, 0), [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_seq_dat, 2, 0, 0), [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_seq_dat, 3, 0, 0), [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_seq_dat, 3, 0, 0), [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_exp_par, 1, 0, 0), [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_jsl_ann_par, 1, 0, 0), [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_jsl_ann_par, 1, 0, 0), [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_njl_ann_par, 1, 0, 0), [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_prp, 1, 0, 0), [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_prp, 1, 0, 0), [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_prp, 1, 0, 0), REDUCE(sym__r_sgl_prp, 1, 0, 0), [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_prp, 1, 0, 0), SHIFT(1539), [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_prp, 1, 0, 0), [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_prp, 1, 0, 0), [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__br_prp, 1, 0, 0), REDUCE(sym__br_sgl_prp, 1, 0, 0), [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__br_prp, 1, 0, 0), SHIFT(1539), [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__br_prp, 1, 0, 0), SHIFT(109), [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_prp, 1, 0, 0), SHIFT(108), [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_acr, 2, 0, 0), [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_acr, 2, 0, 0), [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_prp, 2, 0, 0), [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_prp, 2, 0, 0), [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_prp, 2, 0, 0), REDUCE(sym__r_sgl_prp, 2, 0, 0), [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_prp, 2, 0, 0), [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_prp, 2, 0, 0), [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__br_prp, 2, 0, 0), REDUCE(sym__br_sgl_prp, 2, 0, 0), [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__br_prp, 1, 0, 0), SHIFT(1439), [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_prp, 1, 0, 0), SHIFT(1439), [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_prp, 1, 0, 0), SHIFT(1511), [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__br_prp, 1, 0, 0), SHIFT(1511), [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(6), [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(7), [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(140), [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(141), [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(970), [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(975), [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(1461), [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(405), [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), SHIFT_REPEAT(1488), [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_blk_map_repeat1, 2, 0, 0), [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_prp, 1, 0, 0), SHIFT(176), [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__br_prp, 1, 0, 0), SHIFT(169), [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_prp, 1, 0, 0), SHIFT(178), [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__br_prp, 1, 0, 0), SHIFT(179), [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_col_dat, 3, 0, 0), [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_col_dat, 2, 0, 0), [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_exp_par, 1, 0, 0), [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_njl_ann_par, 1, 0, 0), [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_jsl_ann_par, 1, 0, 0), [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__drs_doc_end, 2, 0, 0), [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_end, 1, 0, 0), [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bgn_imp_doc_end, 2, 0, 0), [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp_doc_end, 2, 0, 0), [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__imp_doc_end, 2, 0, 0), [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_prp_val, 1, 0, 0), [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blk_seq_itm_tal, 1, 0, 0), [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blk_imp_itm_tal, 2, 0, 5), [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_als_val, 1, 0, 0), [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_pln_blk_val, 2, 0, 0), [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_pln_blk_val, 1, 0, 0), [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_pln_blk_val, 2, 0, 0), [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_dqt_str, 3, 0, 0), [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_dqt_str, 3, 0, 0), [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_dqt_str, 3, 0, 0), [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_dqt_str, 3, 0, 0), [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sqt_str, 3, 0, 0), [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_sqt_str, 3, 0, 0), [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sqt_str, 3, 0, 0), [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_sqt_str, 3, 0, 0), [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_pln_blk, 1, 0, 0), [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_als, 2, 0, 0), [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_exp_itm, 1, 0, 2), [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_exp_itm, 1, 0, 2), [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_exp_itm, 1, 0, 2), [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_pln_blk, 1, 0, 0), [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_pln_blk_val, 1, 0, 0), [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_pln_blk_val, 1, 0, 0), [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_pln_blk_val, 1, 0, 0), [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_als_val, 1, 0, 0), [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flw_seq_tal, 1, 0, 0), [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sgl_flw_seq_tal, 1, 0, 0), [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flw_map_tal, 1, 0, 0), [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sgl_flw_map_tal, 1, 0, 0), [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_dqt_str, 2, 0, 0), [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_dqt_str, 2, 0, 0), [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_dqt_str, 2, 0, 0), [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_dqt_str, 2, 0, 0), [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sqt_str, 2, 0, 0), [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_sqt_str, 2, 0, 0), [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sqt_str, 2, 0, 0), [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_sqt_str, 2, 0, 0), [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_als, 2, 0, 0), [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_exp_itm, 1, 0, 3), [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_map, 3, 0, 0), [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_dqt_str, 4, 0, 0), [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_dqt_str, 4, 0, 0), [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sqt_str, 4, 0, 0), [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sqt_str, 4, 0, 0), [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_dqt_str, 5, 0, 0), [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_dqt_str_val, 2, 0, 0), [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_map, 2, 0, 0), [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_map, 2, 0, 0), [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_key_itm, 2, 0, 4), [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_val_itm, 2, 0, 5), [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_imp_itm, 2, 0, 9), [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_str, 3, 0, 0), [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_exp_itm, 2, 0, 10), [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_str, 3, 0, 0), [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_prp_val, 1, 0, 0), [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_seq_spc_val, 1, 0, 0), [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_key_itm, 2, 0, 4), [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_key_itm, 2, 0, 4), [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_imp_itm, 2, 0, 9), [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_imp_itm, 2, 0, 9), [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_val_itm, 2, 0, 5), [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_val_itm, 2, 0, 5), [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_map_itm, 1, 0, 1), [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_map_itm, 1, 0, 1), [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flw_seq_tal, 2, 0, 0), [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flw_map_tal, 2, 0, 0), [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_prp_val, 1, 0, 0), [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_map_itm, 1, 0, 1), [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_exp_itm, 1, 0, 3), [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_map_val, 2, 0, 0), [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_exp_itm, 1, 0, 3), [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_exp_itm, 2, 0, 10), [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_exp_itm, 2, 0, 10), [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_mtl_pln_blk, 1, 0, 0), [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_mtl_pln_blk, 1, 0, 0), [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_seq_spc_val, 2, 0, 0), [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_seq_spc_val, 2, 0, 0), [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_seq_r_val, 1, 0, 0), [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_seq_val, 1, 0, 0), [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_map_r_val, 1, 0, 0), [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_map_val, 1, 0, 0), [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_str_val, 1, 0, 0), [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_str_val, 1, 0, 0), [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_seq_val, 1, 0, 0), [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_seq_val, 1, 0, 0), [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_map_val, 1, 0, 0), [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_map_val, 1, 0, 0), [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_dqt_str_val, 1, 0, 0), [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_dqt_str_val, 1, 0, 0), [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sqt_str_val, 1, 0, 0), [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sqt_str_val, 1, 0, 0), [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sqt_str_val, 2, 0, 0), [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_seq, 2, 0, 0), [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_seq_spc, 2, 0, 0), [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_str, 2, 0, 0), [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_str, 2, 0, 0), [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_seq, 2, 0, 0), [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_seq, 2, 0, 0), [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_seq, 2, 0, 0), [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_map, 2, 0, 0), [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_map, 2, 0, 0), [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_seq, 3, 0, 0), [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_seq, 3, 0, 0), [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_seq_val, 2, 0, 0), [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_seq_br_val, 2, 0, 0), [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_map_br_val, 2, 0, 0), [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_str_val, 2, 0, 0), [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_seq_val, 2, 0, 0), [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_map_val, 2, 0, 0), [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_dqt_str_val, 2, 0, 0), [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sqt_str_val, 2, 0, 0), [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_map, 3, 0, 0), [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_seq_val, 2, 0, 0), [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_map_val, 2, 0, 0), [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_str_val, 2, 0, 0), [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_dqt_str, 5, 0, 0), [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_prp, 1, 0, 0), [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_acr, 2, 0, 0), [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_prp, 2, 0, 0), [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_flw_map_itm, 1, 0, 0), REDUCE(sym__r_sgl_flw_col_itm, 1, 0, 0), [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_map_itm, 1, 0, 0), [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_w_bgn_wo_end_seq, 1, 0, 0), [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_wo_bgn_wo_end_seq, 1, 0, 0), [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__br_mtl_dqt_ctn_repeat1, 2, 0, 0), SHIFT_REPEAT(481), [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__br_mtl_dqt_ctn_repeat1, 2, 0, 0), [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_mtl_dqt_ctn, 1, 0, 0), [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_map_itm, 1, 0, 0), [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_mtl_dqt_ctn, 2, 0, 0), [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_sgl_dqt_ctn, 2, 0, 0), SHIFT_REPEAT(502), [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_sgl_dqt_ctn, 2, 0, 0), [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__drs_doc_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__drs_doc_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__drs_doc_repeat1, 2, 0, 0), SHIFT_REPEAT(694), [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__drs_doc_repeat1, 2, 0, 0), [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_flw_seq_itm, 1, 0, 0), REDUCE(sym__r_sgl_flw_col_itm, 1, 0, 0), [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_seq_itm, 1, 0, 0), [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_flw_seq_dat_repeat1, 2, 0, 0), [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_flw_seq_dat_repeat1, 2, 0, 0), SHIFT_REPEAT(79), [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__flw_seq_tal, 1, 0, 0), REDUCE(sym__sgl_flw_seq_tal, 1, 0, 0), [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_pln_flw_val, 1, 0, 0), REDUCE(sym__r_sgl_pln_flw_val, 1, 0, 0), [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_pln_flw_val, 1, 0, 0), [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_pln_flw_val, 1, 0, 0), [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_dqt_str_repeat1, 2, 0, 0), SHIFT_REPEAT(486), [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_dqt_str_repeat1, 2, 0, 0), SHIFT_REPEAT(565), [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_dqt_str_repeat1, 2, 0, 0), [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_flw_map_dat_repeat1, 2, 0, 0), [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_flw_map_dat_repeat1, 2, 0, 0), SHIFT_REPEAT(78), [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__flw_map_tal, 1, 0, 0), REDUCE(sym__sgl_flw_map_tal, 1, 0, 0), [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_dqt_str, 2, 0, 0), REDUCE(sym__r_sgl_dqt_str, 2, 0, 0), [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_sqt_str, 2, 0, 0), REDUCE(sym__r_sgl_sqt_str, 2, 0, 0), [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__br_mtl_sqt_ctn_repeat1, 2, 0, 0), SHIFT_REPEAT(586), [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__br_mtl_sqt_ctn_repeat1, 2, 0, 0), [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_dqt_str, 3, 0, 0), REDUCE(sym__r_sgl_dqt_str, 3, 0, 0), [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__r_sqt_str, 3, 0, 0), REDUCE(sym__r_sgl_sqt_str, 3, 0, 0), [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_mtl_sqt_ctn, 2, 0, 0), [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_sgl_sqt_ctn, 2, 0, 0), SHIFT_REPEAT(615), [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_sgl_sqt_ctn, 2, 0, 0), [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_pln_flw_val, 2, 0, 0), [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_pln_flw_val, 2, 0, 0), [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_seq_itm, 1, 0, 0), [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_mtl_sqt_ctn, 1, 0, 0), [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_seq_dat, 1, 0, 0), [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_seq_dat, 1, 0, 0), [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_map_dat, 1, 0, 0), [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_map_dat, 1, 0, 0), [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_pln_flw, 1, 0, 0), [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_pln_flw, 1, 0, 0), [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_mtl_pln_flw, 1, 0, 0), [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_mtl_pln_flw, 1, 0, 0), [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__s_dir_rsv, 1, 0, 0), [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__s_dir_rsv_repeat1, 2, 0, 0), [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__s_dir_rsv_repeat1, 2, 0, 0), SHIFT_REPEAT(698), [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_sqt_str_repeat1, 2, 0, 0), SHIFT_REPEAT(648), [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_sqt_str_repeat1, 2, 0, 0), [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__s_dir_rsv, 2, 0, 0), [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_imp_br_par, 2, 0, 9), [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_imp_br_par, 2, 0, 9), [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_seq_itm, 1, 0, 6), [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_seq_itm, 1, 0, 6), [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_seq_itm, 1, 0, 7), [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_seq_itm, 1, 0, 7), [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_exp_par, 2, 0, 11), [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_exp_par, 2, 0, 11), [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_njl_ann_par, 2, 0, 5), [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_map_itm, 1, 0, 6), [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_map_itm, 1, 0, 6), [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_jsl_ann_par, 2, 0, 5), [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flw_seq_dat_rpt, 2, 0, 0), [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_jsl_ann_par, 2, 0, 5), [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flw_map_dat_rpt, 2, 0, 0), [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_map_itm, 1, 0, 7), [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_map_itm, 1, 0, 7), [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_mtl_dqt_ctn, 3, 0, 0), [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp_doc_tal, 1, 0, 0), [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__flw_ann_par_tal, 1, 0, 0), REDUCE(sym__sgl_flw_ann_par_tal, 1, 0, 0), [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flw_ann_par_tal, 1, 0, 0), [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_njl_ann_par, 2, 0, 5), [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_flw_imp_r_par, 2, 0, 9), [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_flw_imp_r_par, 2, 0, 9), [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__imp_doc, 1, 0, 0), [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_sgl_flw_col_dat_repeat1, 2, 0, 0), [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_sgl_flw_col_dat_repeat1, 2, 0, 0), SHIFT_REPEAT(181), [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_col_dat, 1, 0, 0), [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__s_dir_tag, 3, 0, 0), [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_col_itm, 1, 0, 0), [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9), [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_blk_seq_repeat1, 2, 0, 0), [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__s_dir_yml, 2, 0, 0), [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_sgl_dqt_ctn, 2, 0, 0), SHIFT_REPEAT(1023), [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_sgl_sqt_ctn, 2, 0, 0), SHIFT_REPEAT(1024), [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_sgl_flw_col_dat_repeat1, 2, 0, 0), SHIFT_REPEAT(182), [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_seq, 2, 0, 0), [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_seq_val, 2, 0, 0), [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_map_val, 2, 0, 0), [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_dqt_str_val, 2, 0, 0), [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_sqt_str_val, 2, 0, 0), [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__r_blk_str_repeat1, 2, 0, 0), SHIFT_REPEAT(1056), [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__r_blk_str_repeat1, 2, 0, 0), [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sgl_flw_seq_tal, 2, 0, 0), [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sgl_flw_map_tal, 2, 0, 0), [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_map, 2, 0, 0), [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_pln_flw_val, 2, 0, 0), [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__drs_doc, 2, 0, 0), [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_seq_val, 1, 0, 0), [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_map_val, 1, 0, 0), [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_dqt_str_val, 1, 0, 0), [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_sqt_str_val, 1, 0, 0), [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bgn_imp_doc, 1, 0, 0), [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_pln_flw_val, 1, 0, 0), [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp_doc, 2, 0, 0), [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_w_bgn_wo_end, 1, 0, 8), [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_wo_bgn_wo_end, 1, 0, 8), [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_col_itm, 1, 0, 6), [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_imp_par, 2, 0, 9), [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sgl_flw_col_dat_rpt, 2, 0, 0), [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_col_itm, 1, 0, 7), [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_blk_seq_itm, 2, 0, 0), [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_blk_seq_itm, 2, 0, 0), [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_exp_par, 2, 0, 11), [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_blk_seq_itm, 2, 0, 0), [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_njl_ann_par, 2, 0, 5), [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_flw_jsl_ann_par, 2, 0, 5), [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_als_val, 1, 0, 0), [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_dqt_str_val, 2, 0, 0), [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_flw_seq, 2, 0, 0), [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_sqt_str_val, 1, 0, 0), [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_sqt_str_val, 2, 0, 0), [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_pln_blk_val, 2, 0, 0), [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream, 2, 0, 8), [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), [2368] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_dqt_str, 3, 0, 0), [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_sqt_str, 3, 0, 0), [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_flw_seq, 2, 0, 0), [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_dqt_str_val, 1, 0, 0), [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_flw_map, 2, 0, 0), [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream, 3, 0, 8), [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_w_bgn_w_end_seq, 2, 0, 0), [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_pln_blk, 1, 0, 0), [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_dqt_str_val, 1, 0, 0), [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream, 1, 0, 0), [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_als, 2, 0, 0), [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_wo_bgn_w_end_seq, 2, 0, 0), [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_wo_bgn_wo_end_seq, 2, 0, 0), [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_flw_seq_val, 2, 0, 0), [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_flw_map_val, 2, 0, 0), [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_flw_seq_val, 1, 0, 0), [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_flw_map, 2, 0, 0), [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_dqt_str, 2, 0, 0), [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_sqt_str, 2, 0, 0), [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_flw_map_val, 1, 0, 0), [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_flw_map_val, 1, 0, 0), [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_sqt_str_val, 1, 0, 0), [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__doc_w_bgn_wo_end_seq, 2, 0, 0), [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__r_sgl_pln_blk_val, 2, 0, 0), [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_flw_seq_val, 2, 0, 0), [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_flw_map_val, 2, 0, 0), [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__b_sgl_pln_blk_val, 1, 0, 0), [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_dqt_str_val, 2, 0, 0), [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_sqt_str_val, 2, 0, 0), [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_pln_blk_val, 2, 0, 0), [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__br_sgl_flw_seq_val, 1, 0, 0), [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), }; enum ts_external_scanner_symbol_identifiers { ts_external_token__eof = 0, ts_external_token__s_dir_yml_bgn = 1, ts_external_token__r_dir_yml_ver = 2, ts_external_token__s_dir_tag_bgn = 3, ts_external_token__r_dir_tag_hdl = 4, ts_external_token__r_dir_tag_pfx = 5, ts_external_token__s_dir_rsv_bgn = 6, ts_external_token__r_dir_rsv_prm = 7, ts_external_token__s_drs_end = 8, ts_external_token__s_doc_end = 9, ts_external_token__r_blk_seq_bgn = 10, ts_external_token__br_blk_seq_bgn = 11, ts_external_token__b_blk_seq_bgn = 12, ts_external_token__r_blk_key_bgn = 13, ts_external_token__br_blk_key_bgn = 14, ts_external_token__b_blk_key_bgn = 15, ts_external_token__r_blk_val_bgn = 16, ts_external_token__br_blk_val_bgn = 17, ts_external_token__b_blk_val_bgn = 18, ts_external_token__r_blk_imp_bgn = 19, ts_external_token__r_blk_lit_bgn = 20, ts_external_token__br_blk_lit_bgn = 21, ts_external_token__r_blk_fld_bgn = 22, ts_external_token__br_blk_fld_bgn = 23, ts_external_token__br_blk_str_ctn = 24, ts_external_token__r_flw_seq_bgn = 25, ts_external_token__br_flw_seq_bgn = 26, ts_external_token__b_flw_seq_bgn = 27, ts_external_token__r_flw_seq_end = 28, ts_external_token__br_flw_seq_end = 29, ts_external_token__b_flw_seq_end = 30, ts_external_token__r_flw_map_bgn = 31, ts_external_token__br_flw_map_bgn = 32, ts_external_token__b_flw_map_bgn = 33, ts_external_token__r_flw_map_end = 34, ts_external_token__br_flw_map_end = 35, ts_external_token__b_flw_map_end = 36, ts_external_token__r_flw_sep_bgn = 37, ts_external_token__br_flw_sep_bgn = 38, ts_external_token__r_flw_key_bgn = 39, ts_external_token__br_flw_key_bgn = 40, ts_external_token__r_flw_jsv_bgn = 41, ts_external_token__br_flw_jsv_bgn = 42, ts_external_token__r_flw_njv_bgn = 43, ts_external_token__br_flw_njv_bgn = 44, ts_external_token__r_dqt_str_bgn = 45, ts_external_token__br_dqt_str_bgn = 46, ts_external_token__b_dqt_str_bgn = 47, ts_external_token__r_dqt_str_ctn = 48, ts_external_token__br_dqt_str_ctn = 49, ts_external_token__r_dqt_esc_nwl = 50, ts_external_token__br_dqt_esc_nwl = 51, ts_external_token__r_dqt_esc_seq = 52, ts_external_token__br_dqt_esc_seq = 53, ts_external_token__r_dqt_str_end = 54, ts_external_token__br_dqt_str_end = 55, ts_external_token__r_sqt_str_bgn = 56, ts_external_token__br_sqt_str_bgn = 57, ts_external_token__b_sqt_str_bgn = 58, ts_external_token__r_sqt_str_ctn = 59, ts_external_token__br_sqt_str_ctn = 60, ts_external_token__r_sqt_esc_sqt = 61, ts_external_token__br_sqt_esc_sqt = 62, ts_external_token__r_sqt_str_end = 63, ts_external_token__br_sqt_str_end = 64, ts_external_token__r_sgl_pln_nul_blk = 65, ts_external_token__br_sgl_pln_nul_blk = 66, ts_external_token__b_sgl_pln_nul_blk = 67, ts_external_token__r_sgl_pln_nul_flw = 68, ts_external_token__br_sgl_pln_nul_flw = 69, ts_external_token__r_sgl_pln_bol_blk = 70, ts_external_token__br_sgl_pln_bol_blk = 71, ts_external_token__b_sgl_pln_bol_blk = 72, ts_external_token__r_sgl_pln_bol_flw = 73, ts_external_token__br_sgl_pln_bol_flw = 74, ts_external_token__r_sgl_pln_int_blk = 75, ts_external_token__br_sgl_pln_int_blk = 76, ts_external_token__b_sgl_pln_int_blk = 77, ts_external_token__r_sgl_pln_int_flw = 78, ts_external_token__br_sgl_pln_int_flw = 79, ts_external_token__r_sgl_pln_flt_blk = 80, ts_external_token__br_sgl_pln_flt_blk = 81, ts_external_token__b_sgl_pln_flt_blk = 82, ts_external_token__r_sgl_pln_flt_flw = 83, ts_external_token__br_sgl_pln_flt_flw = 84, ts_external_token__r_sgl_pln_tms_blk = 85, ts_external_token__br_sgl_pln_tms_blk = 86, ts_external_token__b_sgl_pln_tms_blk = 87, ts_external_token__r_sgl_pln_tms_flw = 88, ts_external_token__br_sgl_pln_tms_flw = 89, ts_external_token__r_sgl_pln_str_blk = 90, ts_external_token__br_sgl_pln_str_blk = 91, ts_external_token__b_sgl_pln_str_blk = 92, ts_external_token__r_sgl_pln_str_flw = 93, ts_external_token__br_sgl_pln_str_flw = 94, ts_external_token__r_mtl_pln_str_blk = 95, ts_external_token__br_mtl_pln_str_blk = 96, ts_external_token__r_mtl_pln_str_flw = 97, ts_external_token__br_mtl_pln_str_flw = 98, ts_external_token__r_tag = 99, ts_external_token__br_tag = 100, ts_external_token__b_tag = 101, ts_external_token__r_acr_bgn = 102, ts_external_token__br_acr_bgn = 103, ts_external_token__b_acr_bgn = 104, ts_external_token__r_acr_ctn = 105, ts_external_token__r_als_bgn = 106, ts_external_token__br_als_bgn = 107, ts_external_token__b_als_bgn = 108, ts_external_token__r_als_ctn = 109, ts_external_token__bl = 110, ts_external_token_comment = 111, ts_external_token__err_rec = 112, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__eof] = sym__eof, [ts_external_token__s_dir_yml_bgn] = sym__s_dir_yml_bgn, [ts_external_token__r_dir_yml_ver] = sym__r_dir_yml_ver, [ts_external_token__s_dir_tag_bgn] = sym__s_dir_tag_bgn, [ts_external_token__r_dir_tag_hdl] = sym__r_dir_tag_hdl, [ts_external_token__r_dir_tag_pfx] = sym__r_dir_tag_pfx, [ts_external_token__s_dir_rsv_bgn] = sym__s_dir_rsv_bgn, [ts_external_token__r_dir_rsv_prm] = sym__r_dir_rsv_prm, [ts_external_token__s_drs_end] = sym__s_drs_end, [ts_external_token__s_doc_end] = sym__s_doc_end, [ts_external_token__r_blk_seq_bgn] = sym__r_blk_seq_bgn, [ts_external_token__br_blk_seq_bgn] = sym__br_blk_seq_bgn, [ts_external_token__b_blk_seq_bgn] = sym__b_blk_seq_bgn, [ts_external_token__r_blk_key_bgn] = sym__r_blk_key_bgn, [ts_external_token__br_blk_key_bgn] = sym__br_blk_key_bgn, [ts_external_token__b_blk_key_bgn] = sym__b_blk_key_bgn, [ts_external_token__r_blk_val_bgn] = sym__r_blk_val_bgn, [ts_external_token__br_blk_val_bgn] = sym__br_blk_val_bgn, [ts_external_token__b_blk_val_bgn] = sym__b_blk_val_bgn, [ts_external_token__r_blk_imp_bgn] = sym__r_blk_imp_bgn, [ts_external_token__r_blk_lit_bgn] = sym__r_blk_lit_bgn, [ts_external_token__br_blk_lit_bgn] = sym__br_blk_lit_bgn, [ts_external_token__r_blk_fld_bgn] = sym__r_blk_fld_bgn, [ts_external_token__br_blk_fld_bgn] = sym__br_blk_fld_bgn, [ts_external_token__br_blk_str_ctn] = sym__br_blk_str_ctn, [ts_external_token__r_flw_seq_bgn] = sym__r_flw_seq_bgn, [ts_external_token__br_flw_seq_bgn] = sym__br_flw_seq_bgn, [ts_external_token__b_flw_seq_bgn] = sym__b_flw_seq_bgn, [ts_external_token__r_flw_seq_end] = sym__r_flw_seq_end, [ts_external_token__br_flw_seq_end] = sym__br_flw_seq_end, [ts_external_token__b_flw_seq_end] = sym__b_flw_seq_end, [ts_external_token__r_flw_map_bgn] = sym__r_flw_map_bgn, [ts_external_token__br_flw_map_bgn] = sym__br_flw_map_bgn, [ts_external_token__b_flw_map_bgn] = sym__b_flw_map_bgn, [ts_external_token__r_flw_map_end] = sym__r_flw_map_end, [ts_external_token__br_flw_map_end] = sym__br_flw_map_end, [ts_external_token__b_flw_map_end] = sym__b_flw_map_end, [ts_external_token__r_flw_sep_bgn] = sym__r_flw_sep_bgn, [ts_external_token__br_flw_sep_bgn] = sym__br_flw_sep_bgn, [ts_external_token__r_flw_key_bgn] = sym__r_flw_key_bgn, [ts_external_token__br_flw_key_bgn] = sym__br_flw_key_bgn, [ts_external_token__r_flw_jsv_bgn] = sym__r_flw_jsv_bgn, [ts_external_token__br_flw_jsv_bgn] = sym__br_flw_jsv_bgn, [ts_external_token__r_flw_njv_bgn] = sym__r_flw_njv_bgn, [ts_external_token__br_flw_njv_bgn] = sym__br_flw_njv_bgn, [ts_external_token__r_dqt_str_bgn] = sym__r_dqt_str_bgn, [ts_external_token__br_dqt_str_bgn] = sym__br_dqt_str_bgn, [ts_external_token__b_dqt_str_bgn] = sym__b_dqt_str_bgn, [ts_external_token__r_dqt_str_ctn] = sym__r_dqt_str_ctn, [ts_external_token__br_dqt_str_ctn] = sym__br_dqt_str_ctn, [ts_external_token__r_dqt_esc_nwl] = sym__r_dqt_esc_nwl, [ts_external_token__br_dqt_esc_nwl] = sym__br_dqt_esc_nwl, [ts_external_token__r_dqt_esc_seq] = sym__r_dqt_esc_seq, [ts_external_token__br_dqt_esc_seq] = sym__br_dqt_esc_seq, [ts_external_token__r_dqt_str_end] = sym__r_dqt_str_end, [ts_external_token__br_dqt_str_end] = sym__br_dqt_str_end, [ts_external_token__r_sqt_str_bgn] = sym__r_sqt_str_bgn, [ts_external_token__br_sqt_str_bgn] = sym__br_sqt_str_bgn, [ts_external_token__b_sqt_str_bgn] = sym__b_sqt_str_bgn, [ts_external_token__r_sqt_str_ctn] = sym__r_sqt_str_ctn, [ts_external_token__br_sqt_str_ctn] = sym__br_sqt_str_ctn, [ts_external_token__r_sqt_esc_sqt] = sym__r_sqt_esc_sqt, [ts_external_token__br_sqt_esc_sqt] = sym__br_sqt_esc_sqt, [ts_external_token__r_sqt_str_end] = sym__r_sqt_str_end, [ts_external_token__br_sqt_str_end] = sym__br_sqt_str_end, [ts_external_token__r_sgl_pln_nul_blk] = sym__r_sgl_pln_nul_blk, [ts_external_token__br_sgl_pln_nul_blk] = sym__br_sgl_pln_nul_blk, [ts_external_token__b_sgl_pln_nul_blk] = sym__b_sgl_pln_nul_blk, [ts_external_token__r_sgl_pln_nul_flw] = sym__r_sgl_pln_nul_flw, [ts_external_token__br_sgl_pln_nul_flw] = sym__br_sgl_pln_nul_flw, [ts_external_token__r_sgl_pln_bol_blk] = sym__r_sgl_pln_bol_blk, [ts_external_token__br_sgl_pln_bol_blk] = sym__br_sgl_pln_bol_blk, [ts_external_token__b_sgl_pln_bol_blk] = sym__b_sgl_pln_bol_blk, [ts_external_token__r_sgl_pln_bol_flw] = sym__r_sgl_pln_bol_flw, [ts_external_token__br_sgl_pln_bol_flw] = sym__br_sgl_pln_bol_flw, [ts_external_token__r_sgl_pln_int_blk] = sym__r_sgl_pln_int_blk, [ts_external_token__br_sgl_pln_int_blk] = sym__br_sgl_pln_int_blk, [ts_external_token__b_sgl_pln_int_blk] = sym__b_sgl_pln_int_blk, [ts_external_token__r_sgl_pln_int_flw] = sym__r_sgl_pln_int_flw, [ts_external_token__br_sgl_pln_int_flw] = sym__br_sgl_pln_int_flw, [ts_external_token__r_sgl_pln_flt_blk] = sym__r_sgl_pln_flt_blk, [ts_external_token__br_sgl_pln_flt_blk] = sym__br_sgl_pln_flt_blk, [ts_external_token__b_sgl_pln_flt_blk] = sym__b_sgl_pln_flt_blk, [ts_external_token__r_sgl_pln_flt_flw] = sym__r_sgl_pln_flt_flw, [ts_external_token__br_sgl_pln_flt_flw] = sym__br_sgl_pln_flt_flw, [ts_external_token__r_sgl_pln_tms_blk] = sym__r_sgl_pln_tms_blk, [ts_external_token__br_sgl_pln_tms_blk] = sym__br_sgl_pln_tms_blk, [ts_external_token__b_sgl_pln_tms_blk] = sym__b_sgl_pln_tms_blk, [ts_external_token__r_sgl_pln_tms_flw] = sym__r_sgl_pln_tms_flw, [ts_external_token__br_sgl_pln_tms_flw] = sym__br_sgl_pln_tms_flw, [ts_external_token__r_sgl_pln_str_blk] = sym__r_sgl_pln_str_blk, [ts_external_token__br_sgl_pln_str_blk] = sym__br_sgl_pln_str_blk, [ts_external_token__b_sgl_pln_str_blk] = sym__b_sgl_pln_str_blk, [ts_external_token__r_sgl_pln_str_flw] = sym__r_sgl_pln_str_flw, [ts_external_token__br_sgl_pln_str_flw] = sym__br_sgl_pln_str_flw, [ts_external_token__r_mtl_pln_str_blk] = sym__r_mtl_pln_str_blk, [ts_external_token__br_mtl_pln_str_blk] = sym__br_mtl_pln_str_blk, [ts_external_token__r_mtl_pln_str_flw] = sym__r_mtl_pln_str_flw, [ts_external_token__br_mtl_pln_str_flw] = sym__br_mtl_pln_str_flw, [ts_external_token__r_tag] = sym__r_tag, [ts_external_token__br_tag] = sym__br_tag, [ts_external_token__b_tag] = sym__b_tag, [ts_external_token__r_acr_bgn] = sym__r_acr_bgn, [ts_external_token__br_acr_bgn] = sym__br_acr_bgn, [ts_external_token__b_acr_bgn] = sym__b_acr_bgn, [ts_external_token__r_acr_ctn] = sym__r_acr_ctn, [ts_external_token__r_als_bgn] = sym__r_als_bgn, [ts_external_token__br_als_bgn] = sym__br_als_bgn, [ts_external_token__b_als_bgn] = sym__b_als_bgn, [ts_external_token__r_als_ctn] = sym__r_als_ctn, [ts_external_token__bl] = sym__bl, [ts_external_token_comment] = sym_comment, [ts_external_token__err_rec] = sym__err_rec, }; static const bool ts_external_scanner_states[110][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__eof] = true, [ts_external_token__s_dir_yml_bgn] = true, [ts_external_token__r_dir_yml_ver] = true, [ts_external_token__s_dir_tag_bgn] = true, [ts_external_token__r_dir_tag_hdl] = true, [ts_external_token__r_dir_tag_pfx] = true, [ts_external_token__s_dir_rsv_bgn] = true, [ts_external_token__r_dir_rsv_prm] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__r_blk_seq_bgn] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__r_blk_key_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__r_blk_val_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__br_blk_str_ctn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_key_bgn] = true, [ts_external_token__br_flw_key_bgn] = true, [ts_external_token__r_flw_jsv_bgn] = true, [ts_external_token__br_flw_jsv_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__r_dqt_str_ctn] = true, [ts_external_token__br_dqt_str_ctn] = true, [ts_external_token__r_dqt_esc_nwl] = true, [ts_external_token__br_dqt_esc_nwl] = true, [ts_external_token__r_dqt_esc_seq] = true, [ts_external_token__br_dqt_esc_seq] = true, [ts_external_token__r_dqt_str_end] = true, [ts_external_token__br_dqt_str_end] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__r_sqt_str_ctn] = true, [ts_external_token__br_sqt_str_ctn] = true, [ts_external_token__r_sqt_esc_sqt] = true, [ts_external_token__br_sqt_esc_sqt] = true, [ts_external_token__r_sqt_str_end] = true, [ts_external_token__br_sqt_str_end] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__b_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__r_acr_ctn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__r_als_ctn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, [ts_external_token__err_rec] = true, }, [2] = { [ts_external_token__eof] = true, [ts_external_token__s_dir_yml_bgn] = true, [ts_external_token__s_dir_tag_bgn] = true, [ts_external_token__s_dir_rsv_bgn] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__r_blk_seq_bgn] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__r_blk_key_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__r_blk_val_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [3] = { [ts_external_token__r_blk_seq_bgn] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__r_blk_key_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__r_blk_val_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__b_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [4] = { [ts_external_token__r_blk_seq_bgn] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__r_blk_key_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__r_blk_val_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [5] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__b_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [6] = { [ts_external_token__eof] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [7] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_key_bgn] = true, [ts_external_token__br_flw_key_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [8] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_key_bgn] = true, [ts_external_token__br_flw_key_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [9] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__b_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [10] = { [ts_external_token__eof] = true, [ts_external_token__s_dir_yml_bgn] = true, [ts_external_token__s_dir_tag_bgn] = true, [ts_external_token__s_dir_rsv_bgn] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [11] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [12] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [13] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_key_bgn] = true, [ts_external_token__br_flw_key_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [14] = { [ts_external_token__eof] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [15] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [16] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__b_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [17] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__b_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [18] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__b_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [19] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__b_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [20] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__b_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [21] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [22] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [23] = { [ts_external_token__eof] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [24] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [25] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [26] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [27] = { [ts_external_token__eof] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [28] = { [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__b_tag] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [29] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_key_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token_comment] = true, }, [30] = { [ts_external_token__eof] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [31] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_key_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token_comment] = true, }, [32] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [33] = { [ts_external_token__eof] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [34] = { [ts_external_token__eof] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token_comment] = true, }, [35] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [36] = { [ts_external_token__br_blk_seq_bgn] = true, [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__br_blk_key_bgn] = true, [ts_external_token__br_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_blk_lit_bgn] = true, [ts_external_token__br_blk_lit_bgn] = true, [ts_external_token__r_blk_fld_bgn] = true, [ts_external_token__br_blk_fld_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__br_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__br_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__br_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__br_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__br_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__br_sgl_pln_str_blk] = true, [ts_external_token__r_mtl_pln_str_blk] = true, [ts_external_token__br_mtl_pln_str_blk] = true, [ts_external_token__br_tag] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token__br_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [37] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_key_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token_comment] = true, }, [38] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token_comment] = true, }, [39] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token_comment] = true, }, [40] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token_comment] = true, }, [41] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token_comment] = true, }, [42] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token_comment] = true, }, [43] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token_comment] = true, }, [44] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__r_als_bgn] = true, [ts_external_token_comment] = true, }, [45] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token_comment] = true, }, [46] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token_comment] = true, }, [47] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token_comment] = true, }, [48] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token__br_acr_bgn] = true, [ts_external_token_comment] = true, }, [49] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__br_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__br_flw_map_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__br_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__br_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__br_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__br_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__br_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__br_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__br_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__br_sgl_pln_str_flw] = true, [ts_external_token__r_mtl_pln_str_flw] = true, [ts_external_token__br_mtl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token__br_tag] = true, [ts_external_token_comment] = true, }, [50] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [51] = { [ts_external_token__b_blk_key_bgn] = true, [ts_external_token__b_blk_val_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__b_flw_seq_bgn] = true, [ts_external_token__b_flw_map_bgn] = true, [ts_external_token__b_dqt_str_bgn] = true, [ts_external_token__b_sqt_str_bgn] = true, [ts_external_token__b_sgl_pln_nul_blk] = true, [ts_external_token__b_sgl_pln_bol_blk] = true, [ts_external_token__b_sgl_pln_int_blk] = true, [ts_external_token__b_sgl_pln_flt_blk] = true, [ts_external_token__b_sgl_pln_tms_blk] = true, [ts_external_token__b_sgl_pln_str_blk] = true, [ts_external_token__b_tag] = true, [ts_external_token__b_acr_bgn] = true, [ts_external_token__b_als_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [52] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [53] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [54] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [55] = { [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token_comment] = true, }, [56] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token_comment] = true, }, [57] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token_comment] = true, }, [58] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token_comment] = true, }, [59] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token_comment] = true, }, [60] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token_comment] = true, }, [61] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token_comment] = true, }, [62] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token_comment] = true, }, [63] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token_comment] = true, }, [64] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token_comment] = true, }, [65] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token_comment] = true, }, [66] = { [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__r_acr_bgn] = true, [ts_external_token_comment] = true, }, [67] = { [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_flw] = true, [ts_external_token__r_sgl_pln_bol_flw] = true, [ts_external_token__r_sgl_pln_int_flw] = true, [ts_external_token__r_sgl_pln_flt_flw] = true, [ts_external_token__r_sgl_pln_tms_flw] = true, [ts_external_token__r_sgl_pln_str_flw] = true, [ts_external_token__r_tag] = true, [ts_external_token_comment] = true, }, [68] = { [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__r_flw_seq_bgn] = true, [ts_external_token__r_flw_map_bgn] = true, [ts_external_token__r_dqt_str_bgn] = true, [ts_external_token__r_sqt_str_bgn] = true, [ts_external_token__r_sgl_pln_nul_blk] = true, [ts_external_token__r_sgl_pln_bol_blk] = true, [ts_external_token__r_sgl_pln_int_blk] = true, [ts_external_token__r_sgl_pln_flt_blk] = true, [ts_external_token__r_sgl_pln_tms_blk] = true, [ts_external_token__r_sgl_pln_str_blk] = true, [ts_external_token__r_tag] = true, [ts_external_token_comment] = true, }, [69] = { [ts_external_token__r_dqt_str_ctn] = true, [ts_external_token__br_dqt_str_ctn] = true, [ts_external_token__r_dqt_esc_nwl] = true, [ts_external_token__br_dqt_esc_nwl] = true, [ts_external_token__r_dqt_esc_seq] = true, [ts_external_token__br_dqt_esc_seq] = true, [ts_external_token__r_dqt_str_end] = true, [ts_external_token__br_dqt_str_end] = true, [ts_external_token_comment] = true, }, [70] = { [ts_external_token__eof] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token_comment] = true, }, [71] = { [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token_comment] = true, }, [72] = { [ts_external_token__s_dir_yml_bgn] = true, [ts_external_token__s_dir_tag_bgn] = true, [ts_external_token__s_dir_rsv_bgn] = true, [ts_external_token__s_drs_end] = true, [ts_external_token_comment] = true, }, [73] = { [ts_external_token__r_sqt_str_ctn] = true, [ts_external_token__br_sqt_str_ctn] = true, [ts_external_token__r_sqt_esc_sqt] = true, [ts_external_token__br_sqt_esc_sqt] = true, [ts_external_token__r_sqt_str_end] = true, [ts_external_token__br_sqt_str_end] = true, [ts_external_token_comment] = true, }, [74] = { [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_jsv_bgn] = true, [ts_external_token__br_flw_jsv_bgn] = true, [ts_external_token_comment] = true, }, [75] = { [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token_comment] = true, }, [76] = { [ts_external_token__br_dqt_str_ctn] = true, [ts_external_token__br_dqt_esc_nwl] = true, [ts_external_token__br_dqt_esc_seq] = true, [ts_external_token__r_dqt_str_end] = true, [ts_external_token__br_dqt_str_end] = true, [ts_external_token_comment] = true, }, [77] = { [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token_comment] = true, }, [78] = { [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token__r_flw_jsv_bgn] = true, [ts_external_token_comment] = true, }, [79] = { [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__br_flw_sep_bgn] = true, [ts_external_token_comment] = true, }, [80] = { [ts_external_token__br_sqt_str_ctn] = true, [ts_external_token__br_sqt_esc_sqt] = true, [ts_external_token__r_sqt_str_end] = true, [ts_external_token__br_sqt_str_end] = true, [ts_external_token_comment] = true, }, [81] = { [ts_external_token__s_dir_yml_bgn] = true, [ts_external_token__s_dir_tag_bgn] = true, [ts_external_token__s_dir_rsv_bgn] = true, [ts_external_token__r_dir_rsv_prm] = true, [ts_external_token__s_drs_end] = true, [ts_external_token_comment] = true, }, [82] = { [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token__br_flw_njv_bgn] = true, [ts_external_token_comment] = true, }, [83] = { [ts_external_token__eof] = true, [ts_external_token__s_drs_end] = true, [ts_external_token__s_doc_end] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token_comment] = true, }, [84] = { [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token_comment] = true, }, [85] = { [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token_comment] = true, }, [86] = { [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [87] = { [ts_external_token__b_blk_seq_bgn] = true, [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [88] = { [ts_external_token__r_dqt_str_ctn] = true, [ts_external_token__r_dqt_esc_seq] = true, [ts_external_token__r_dqt_str_end] = true, [ts_external_token_comment] = true, }, [89] = { [ts_external_token__r_sqt_str_ctn] = true, [ts_external_token__r_sqt_esc_sqt] = true, [ts_external_token__r_sqt_str_end] = true, [ts_external_token_comment] = true, }, [90] = { [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token_comment] = true, }, [91] = { [ts_external_token__r_flw_jsv_bgn] = true, [ts_external_token__br_flw_jsv_bgn] = true, [ts_external_token_comment] = true, }, [92] = { [ts_external_token__r_flw_seq_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_jsv_bgn] = true, [ts_external_token_comment] = true, }, [93] = { [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token_comment] = true, }, [94] = { [ts_external_token__r_flw_map_end] = true, [ts_external_token__r_flw_sep_bgn] = true, [ts_external_token__r_flw_jsv_bgn] = true, [ts_external_token_comment] = true, }, [95] = { [ts_external_token__br_blk_str_ctn] = true, [ts_external_token__bl] = true, [ts_external_token_comment] = true, }, [96] = { [ts_external_token__r_flw_seq_end] = true, [ts_external_token__br_flw_seq_end] = true, [ts_external_token__b_flw_seq_end] = true, [ts_external_token_comment] = true, }, [97] = { [ts_external_token__r_flw_map_end] = true, [ts_external_token__br_flw_map_end] = true, [ts_external_token__b_flw_map_end] = true, [ts_external_token_comment] = true, }, [98] = { [ts_external_token__r_blk_imp_bgn] = true, [ts_external_token_comment] = true, }, [99] = { [ts_external_token__r_flw_njv_bgn] = true, [ts_external_token_comment] = true, }, [100] = { [ts_external_token__r_flw_jsv_bgn] = true, [ts_external_token_comment] = true, }, [101] = { [ts_external_token__r_acr_ctn] = true, [ts_external_token_comment] = true, }, [102] = { [ts_external_token_comment] = true, }, [103] = { [ts_external_token__r_dir_yml_ver] = true, [ts_external_token_comment] = true, }, [104] = { [ts_external_token__eof] = true, [ts_external_token_comment] = true, }, [105] = { [ts_external_token__r_als_ctn] = true, [ts_external_token_comment] = true, }, [106] = { [ts_external_token__r_flw_seq_end] = true, [ts_external_token_comment] = true, }, [107] = { [ts_external_token__r_flw_map_end] = true, [ts_external_token_comment] = true, }, [108] = { [ts_external_token__r_dir_tag_pfx] = true, [ts_external_token_comment] = true, }, [109] = { [ts_external_token__r_dir_tag_hdl] = true, [ts_external_token_comment] = true, }, }; #ifdef __cplusplus extern "C" { #endif void *tree_sitter_yaml_external_scanner_create(void); void tree_sitter_yaml_external_scanner_destroy(void *); bool tree_sitter_yaml_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_yaml_external_scanner_serialize(void *, char *); void tree_sitter_yaml_external_scanner_deserialize(void *, const char *, unsigned); #ifdef TREE_SITTER_HIDE_SYMBOLS #define TS_PUBLIC #elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif TS_PUBLIC const TSLanguage *tree_sitter_yaml(void) { static const TSLanguage language = { .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, .external_token_count = EXTERNAL_TOKEN_COUNT, .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], .small_parse_table = ts_small_parse_table, .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .external_scanner = { &ts_external_scanner_states[0][0], ts_external_scanner_symbol_map, tree_sitter_yaml_external_scanner_create, tree_sitter_yaml_external_scanner_destroy, tree_sitter_yaml_external_scanner_scan, tree_sitter_yaml_external_scanner_serialize, tree_sitter_yaml_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, }; return &language; } #ifdef __cplusplus } #endif tree-sitter-yaml-0.7.2/src/scanner.c000066400000000000000000001444471507122265000173310ustar00rootroot00000000000000#include "tree_sitter/array.h" #include "tree_sitter/parser.h" #define _str(x) #x #define _file(x) _str(schema.x.c) #ifndef YAML_SCHEMA #define YAML_SCHEMA core #endif #include _file(YAML_SCHEMA) // clang-format off typedef enum { END_OF_FILE, S_DIR_YML_BGN, R_DIR_YML_VER, S_DIR_TAG_BGN, R_DIR_TAG_HDL, R_DIR_TAG_PFX, S_DIR_RSV_BGN, R_DIR_RSV_PRM, S_DRS_END, S_DOC_END, R_BLK_SEQ_BGN, BR_BLK_SEQ_BGN, B_BLK_SEQ_BGN, R_BLK_KEY_BGN, BR_BLK_KEY_BGN, B_BLK_KEY_BGN, R_BLK_VAL_BGN, BR_BLK_VAL_BGN, B_BLK_VAL_BGN, R_BLK_IMP_BGN, R_BLK_LIT_BGN, BR_BLK_LIT_BGN, R_BLK_FLD_BGN, BR_BLK_FLD_BGN, BR_BLK_STR_CTN, R_FLW_SEQ_BGN, BR_FLW_SEQ_BGN, B_FLW_SEQ_BGN, R_FLW_SEQ_END, BR_FLW_SEQ_END, B_FLW_SEQ_END, R_FLW_MAP_BGN, BR_FLW_MAP_BGN, B_FLW_MAP_BGN, R_FLW_MAP_END, BR_FLW_MAP_END, B_FLW_MAP_END, R_FLW_SEP_BGN, BR_FLW_SEP_BGN, R_FLW_KEY_BGN, BR_FLW_KEY_BGN, R_FLW_JSV_BGN, BR_FLW_JSV_BGN, R_FLW_NJV_BGN, BR_FLW_NJV_BGN, R_DQT_STR_BGN, BR_DQT_STR_BGN, B_DQT_STR_BGN, R_DQT_STR_CTN, BR_DQT_STR_CTN, R_DQT_ESC_NWL, BR_DQT_ESC_NWL, R_DQT_ESC_SEQ, BR_DQT_ESC_SEQ, R_DQT_STR_END, BR_DQT_STR_END, R_SQT_STR_BGN, BR_SQT_STR_BGN, B_SQT_STR_BGN, R_SQT_STR_CTN, BR_SQT_STR_CTN, R_SQT_ESC_SQT, BR_SQT_ESC_SQT, R_SQT_STR_END, BR_SQT_STR_END, R_SGL_PLN_NUL_BLK, BR_SGL_PLN_NUL_BLK, B_SGL_PLN_NUL_BLK, R_SGL_PLN_NUL_FLW, BR_SGL_PLN_NUL_FLW, R_SGL_PLN_BOL_BLK, BR_SGL_PLN_BOL_BLK, B_SGL_PLN_BOL_BLK, R_SGL_PLN_BOL_FLW, BR_SGL_PLN_BOL_FLW, R_SGL_PLN_INT_BLK, BR_SGL_PLN_INT_BLK, B_SGL_PLN_INT_BLK, R_SGL_PLN_INT_FLW, BR_SGL_PLN_INT_FLW, R_SGL_PLN_FLT_BLK, BR_SGL_PLN_FLT_BLK, B_SGL_PLN_FLT_BLK, R_SGL_PLN_FLT_FLW, BR_SGL_PLN_FLT_FLW, R_SGL_PLN_TMS_BLK, BR_SGL_PLN_TMS_BLK, B_SGL_PLN_TMS_BLK, R_SGL_PLN_TMS_FLW, BR_SGL_PLN_TMS_FLW, R_SGL_PLN_STR_BLK, BR_SGL_PLN_STR_BLK, B_SGL_PLN_STR_BLK, R_SGL_PLN_STR_FLW, BR_SGL_PLN_STR_FLW, R_MTL_PLN_STR_BLK, BR_MTL_PLN_STR_BLK, R_MTL_PLN_STR_FLW, BR_MTL_PLN_STR_FLW, R_TAG, BR_TAG, B_TAG, R_ACR_BGN, BR_ACR_BGN, B_ACR_BGN, R_ACR_CTN, R_ALS_BGN, BR_ALS_BGN, B_ALS_BGN, R_ALS_CTN, BL, COMMENT, ERR_REC, } TokenType; // clang-format on #define SCN_SUCC 1 #define SCN_STOP 0 #define SCN_FAIL (-1) #define IND_ROT 'r' #define IND_MAP 'm' #define IND_SEQ 'q' #define IND_STR 's' #define RET_SYM(RESULT_SYMBOL) \ { \ flush(scanner); \ lexer->result_symbol = RESULT_SYMBOL; \ return true; \ } #define POP_IND() \ { \ /* incorrect status caused by error recovering */ \ if (scanner->ind_typ_stk.size == 1) { \ return false; \ } \ pop_ind(scanner); \ } #define PUSH_IND(TYP, LEN) push_ind(scanner, TYP, LEN) #define PUSH_BGN_IND(TYP) \ { \ if (has_tab_ind) \ return false; \ push_ind(scanner, TYP, bgn_col); \ } #define MAY_PUSH_IMP_IND(TYP) \ { \ if (cur_ind != scanner->blk_imp_col) { \ if (scanner->blk_imp_tab) \ return false; \ push_ind(scanner, IND_MAP, scanner->blk_imp_col); \ } \ } #define MAY_PUSH_SPC_SEQ_IND() \ { \ if (cur_ind_typ == IND_MAP) { \ push_ind(scanner, IND_SEQ, bgn_col); \ } \ } #define MAY_UPD_IMP_COL() \ { \ if (scanner->blk_imp_row != bgn_row) { \ scanner->blk_imp_row = bgn_row; \ scanner->blk_imp_col = bgn_col; \ scanner->blk_imp_tab = has_tab_ind; \ } \ } #if HAS_TIMESTAMP #define SGL_PLN_SYM(POS, CTX) \ (scanner->rlt_sch == RS_NULL ? POS##_SGL_PLN_NUL_##CTX \ : scanner->rlt_sch == RS_BOOL ? POS##_SGL_PLN_BOL_##CTX \ : scanner->rlt_sch == RS_INT ? POS##_SGL_PLN_INT_##CTX \ : scanner->rlt_sch == RS_FLOAT ? POS##_SGL_PLN_FLT_##CTX \ : scanner->rlt_sch == RS_TIMESTAMP ? POS##_SGL_PLN_TMS_##CTX \ : POS##_SGL_PLN_STR_##CTX) #else #define SGL_PLN_SYM(POS, CTX) \ (scanner->rlt_sch == RS_NULL ? POS##_SGL_PLN_NUL_##CTX \ : scanner->rlt_sch == RS_BOOL ? POS##_SGL_PLN_BOL_##CTX \ : scanner->rlt_sch == RS_INT ? POS##_SGL_PLN_INT_##CTX \ : scanner->rlt_sch == RS_FLOAT ? POS##_SGL_PLN_FLT_##CTX \ : POS##_SGL_PLN_STR_##CTX) #endif typedef struct { int16_t row; int16_t col; int16_t blk_imp_row; int16_t blk_imp_col; int16_t blk_imp_tab; Array(int16_t) ind_typ_stk; Array(int16_t) ind_len_stk; // temp int16_t end_row; int16_t end_col; int16_t cur_row; int16_t cur_col; int32_t cur_chr; int8_t sch_stt; ResultSchema rlt_sch; } Scanner; static unsigned serialize(Scanner *scanner, char *buffer) { size_t size = 0; *(int16_t *)&buffer[size] = scanner->row; size += sizeof(int16_t); *(int16_t *)&buffer[size] = scanner->col; size += sizeof(int16_t); *(int16_t *)&buffer[size] = scanner->blk_imp_row; size += sizeof(int16_t); *(int16_t *)&buffer[size] = scanner->blk_imp_col; size += sizeof(int16_t); *(int16_t *)&buffer[size] = scanner->blk_imp_tab; size += sizeof(int16_t); int16_t *typ_itr = scanner->ind_typ_stk.contents + 1; int16_t *typ_end = scanner->ind_typ_stk.contents + scanner->ind_typ_stk.size; int16_t *len_itr = scanner->ind_len_stk.contents + 1; for (; typ_itr != typ_end && size < TREE_SITTER_SERIALIZATION_BUFFER_SIZE; ++typ_itr, ++len_itr) { *(int16_t *)&buffer[size] = *typ_itr; size += sizeof(int16_t); *(int16_t *)&buffer[size] = *len_itr; size += sizeof(int16_t); } return size; } static void deserialize(Scanner *scanner, const char *buffer, unsigned length) { scanner->row = 0; scanner->col = 0; scanner->blk_imp_row = -1; scanner->blk_imp_col = -1; scanner->blk_imp_tab = 0; array_delete(&scanner->ind_typ_stk); array_push(&scanner->ind_typ_stk, IND_ROT); array_delete(&scanner->ind_len_stk); array_push(&scanner->ind_len_stk, -1); if (length > 0) { size_t size = 0; scanner->row = *(int16_t *)&buffer[size]; size += sizeof(int16_t); scanner->col = *(int16_t *)&buffer[size]; size += sizeof(int16_t); scanner->blk_imp_row = *(int16_t *)&buffer[size]; size += sizeof(int16_t); scanner->blk_imp_col = *(int16_t *)&buffer[size]; size += sizeof(int16_t); scanner->blk_imp_tab = *(int16_t *)&buffer[size]; size += sizeof(int16_t); while (size < length) { array_push(&scanner->ind_typ_stk, *(int16_t *)&buffer[size]); size += sizeof(int16_t); array_push(&scanner->ind_len_stk, *(int16_t *)&buffer[size]); size += sizeof(int16_t); } assert(size == length); } } static inline void adv(Scanner *scanner, TSLexer *lexer) { scanner->cur_col++; scanner->cur_chr = lexer->lookahead; lexer->advance(lexer, false); } static inline void adv_nwl(Scanner *scanner, TSLexer *lexer) { scanner->cur_row++; scanner->cur_col = 0; scanner->cur_chr = lexer->lookahead; lexer->advance(lexer, false); } static inline void skp(Scanner *scanner, TSLexer *lexer) { scanner->cur_col++; scanner->cur_chr = lexer->lookahead; lexer->advance(lexer, true); } static inline void skp_nwl(Scanner *scanner, TSLexer *lexer) { scanner->cur_row++; scanner->cur_col = 0; scanner->cur_chr = lexer->lookahead; lexer->advance(lexer, true); } static inline void mrk_end(Scanner *scanner, TSLexer *lexer) { scanner->end_row = scanner->cur_row; scanner->end_col = scanner->cur_col; lexer->mark_end(lexer); } static inline void init(Scanner *scanner) { scanner->cur_row = scanner->row; scanner->cur_col = scanner->col; scanner->cur_chr = 0; scanner->sch_stt = 0; scanner->rlt_sch = RS_STR; } static inline void flush(Scanner *scanner) { scanner->row = scanner->end_row; scanner->col = scanner->end_col; } static inline void pop_ind(Scanner *scanner) { array_pop(&scanner->ind_len_stk); array_pop(&scanner->ind_typ_stk); } static inline void push_ind(Scanner *scanner, int16_t typ, int16_t len) { array_push(&scanner->ind_len_stk, len); array_push(&scanner->ind_typ_stk, typ); } static inline bool is_wsp(int32_t c) { return c == ' ' || c == '\t'; } static inline bool is_nwl(int32_t c) { return c == '\r' || c == '\n'; } static inline bool is_wht(int32_t c) { return is_wsp(c) || is_nwl(c) || c == 0; } static inline bool is_ns_dec_digit(int32_t c) { return c >= '0' && c <= '9'; } static inline bool is_ns_hex_digit(int32_t c) { return is_ns_dec_digit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'); } static inline bool is_ns_word_char(int32_t c) { return c == '-' || (c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); } static inline bool is_nb_json(int32_t c) { return c == 0x09 || (c >= 0x20 && c <= 0x10ffff); } static inline bool is_nb_double_char(int32_t c) { return is_nb_json(c) && c != '\\' && c != '"'; } static inline bool is_nb_single_char(int32_t c) { return is_nb_json(c) && c != '\''; } static inline bool is_ns_char(int32_t c) { return (c >= 0x21 && c <= 0x7e) || c == 0x85 || (c >= 0xa0 && c <= 0xd7ff) || (c >= 0xe000 && c <= 0xfefe) || (c >= 0xff00 && c <= 0xfffd) || (c >= 0x10000 && c <= 0x10ffff); } static inline bool is_c_indicator(int32_t c) { return c == '-' || c == '?' || c == ':' || c == ',' || c == '[' || c == ']' || c == '{' || c == '}' || c == '#' || c == '&' || c == '*' || c == '!' || c == '|' || c == '>' || c == '\'' || c == '"' || c == '%' || c == '@' || c == '`'; } static inline bool is_c_flow_indicator(int32_t c) { return c == ',' || c == '[' || c == ']' || c == '{' || c == '}'; } static inline bool is_plain_safe_in_block(int32_t c) { return is_ns_char(c); } static inline bool is_plain_safe_in_flow(int32_t c) { return is_ns_char(c) && !is_c_flow_indicator(c); } static inline bool is_ns_uri_char(int32_t c) { return is_ns_word_char(c) || c == '#' || c == ';' || c == '/' || c == '?' || c == ':' || c == '@' || c == '&' || c == '=' || c == '+' || c == '$' || c == ',' || c == '_' || c == '.' || c == '!' || c == '~' || c == '*' || c == '\'' || c == '(' || c == ')' || c == '[' || c == ']'; } static inline bool is_ns_tag_char(int32_t c) { return is_ns_word_char(c) || c == '#' || c == ';' || c == '/' || c == '?' || c == ':' || c == '@' || c == '&' || c == '=' || c == '+' || c == '$' || c == '_' || c == '.' || c == '~' || c == '*' || c == '\'' || c == '(' || c == ')'; } static inline bool is_ns_anchor_char(int32_t c) { return is_ns_char(c) && !is_c_flow_indicator(c); } static char scn_uri_esc(Scanner *scanner, TSLexer *lexer) { if (lexer->lookahead != '%') { return SCN_STOP; } mrk_end(scanner, lexer); adv(scanner, lexer); if (!is_ns_hex_digit(lexer->lookahead)) { return SCN_FAIL; } adv(scanner, lexer); if (!is_ns_hex_digit(lexer->lookahead)) { return SCN_FAIL; } adv(scanner, lexer); return SCN_SUCC; } static char scn_ns_uri_char(Scanner *scanner, TSLexer *lexer) { if (is_ns_uri_char(lexer->lookahead)) { adv(scanner, lexer); return SCN_SUCC; } return scn_uri_esc(scanner, lexer); } static char scn_ns_tag_char(Scanner *scanner, TSLexer *lexer) { if (is_ns_tag_char(lexer->lookahead)) { adv(scanner, lexer); return SCN_SUCC; } return scn_uri_esc(scanner, lexer); } static bool scn_dir_bgn(Scanner *scanner, TSLexer *lexer) { adv(scanner, lexer); if (lexer->lookahead == 'Y') { adv(scanner, lexer); if (lexer->lookahead == 'A') { adv(scanner, lexer); if (lexer->lookahead == 'M') { adv(scanner, lexer); if (lexer->lookahead == 'L') { adv(scanner, lexer); if (is_wht(lexer->lookahead)) { mrk_end(scanner, lexer); RET_SYM(S_DIR_YML_BGN); } } } } } else if (lexer->lookahead == 'T') { adv(scanner, lexer); if (lexer->lookahead == 'A') { adv(scanner, lexer); if (lexer->lookahead == 'G') { adv(scanner, lexer); if (is_wht(lexer->lookahead)) { mrk_end(scanner, lexer); RET_SYM(S_DIR_TAG_BGN); } } } } for (;;) { if (!is_ns_char(lexer->lookahead)) { break; } adv(scanner, lexer); } if (scanner->cur_col > 1 && is_wht(lexer->lookahead)) { mrk_end(scanner, lexer); RET_SYM(S_DIR_RSV_BGN); } return false; } static bool scn_dir_yml_ver(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { uint16_t n1 = 0; uint16_t n2 = 0; while (is_ns_dec_digit(lexer->lookahead)) { adv(scanner, lexer); n1++; } if (lexer->lookahead != '.') { return false; } adv(scanner, lexer); while (is_ns_dec_digit(lexer->lookahead)) { adv(scanner, lexer); n2++; } if (n1 == 0 || n2 == 0) { return false; } mrk_end(scanner, lexer); RET_SYM(result_symbol); } static bool scn_tag_hdl_tal(Scanner *scanner, TSLexer *lexer) { if (lexer->lookahead == '!') { adv(scanner, lexer); return true; } uint16_t n = 0; while (is_ns_word_char(lexer->lookahead)) { adv(scanner, lexer); n++; } if (n == 0) { return true; } if (lexer->lookahead == '!') { adv(scanner, lexer); return true; } return false; } static bool scn_dir_tag_hdl(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (lexer->lookahead == '!') { adv(scanner, lexer); if (scn_tag_hdl_tal(scanner, lexer)) { mrk_end(scanner, lexer); RET_SYM(result_symbol); } } return false; } static bool scn_dir_tag_pfx(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (lexer->lookahead == '!') { adv(scanner, lexer); } else if (scn_ns_tag_char(scanner, lexer) == SCN_SUCC) { ; } else { return false; } for (;;) { switch (scn_ns_uri_char(scanner, lexer)) { case SCN_STOP: mrk_end(scanner, lexer); case SCN_FAIL: RET_SYM(result_symbol); default: break; } } } static bool scn_dir_rsv_prm(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (!is_ns_char(lexer->lookahead)) { return false; } adv(scanner, lexer); while (is_ns_char(lexer->lookahead)) { adv(scanner, lexer); } mrk_end(scanner, lexer); RET_SYM(result_symbol); } static bool scn_tag(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (lexer->lookahead != '!') { return false; } adv(scanner, lexer); if (is_wht(lexer->lookahead)) { mrk_end(scanner, lexer); RET_SYM(result_symbol); } if (lexer->lookahead == '<') { adv(scanner, lexer); if (scn_ns_uri_char(scanner, lexer) != SCN_SUCC) { return false; } for (;;) { switch (scn_ns_uri_char(scanner, lexer)) { case SCN_STOP: if (lexer->lookahead == '>') { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(result_symbol); } case SCN_FAIL: return false; default: break; } } } else { if (scn_tag_hdl_tal(scanner, lexer) && scn_ns_tag_char(scanner, lexer) != SCN_SUCC) { return false; } for (;;) { switch (scn_ns_tag_char(scanner, lexer)) { case SCN_STOP: mrk_end(scanner, lexer); case SCN_FAIL: RET_SYM(result_symbol); default: break; } } } return false; } static bool scn_acr_bgn(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (lexer->lookahead != '&') { return false; } adv(scanner, lexer); if (!is_ns_anchor_char(lexer->lookahead)) { return false; } mrk_end(scanner, lexer); RET_SYM(result_symbol); } static bool scn_acr_ctn(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { while (is_ns_anchor_char(lexer->lookahead)) { adv(scanner, lexer); } mrk_end(scanner, lexer); RET_SYM(result_symbol); } static bool scn_als_bgn(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (lexer->lookahead != '*') { return false; } adv(scanner, lexer); if (!is_ns_anchor_char(lexer->lookahead)) { return false; } mrk_end(scanner, lexer); RET_SYM(result_symbol); } static bool scn_als_ctn(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { while (is_ns_anchor_char(lexer->lookahead)) { adv(scanner, lexer); } mrk_end(scanner, lexer); RET_SYM(result_symbol); } static bool scn_dqt_esc_seq(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { uint16_t i; switch (lexer->lookahead) { case '0': case 'a': case 'b': case 't': case '\t': case 'n': case 'v': case 'r': case 'e': case 'f': case ' ': case '"': case '/': case '\\': case 'N': case '_': case 'L': case 'P': adv(scanner, lexer); break; case 'U': adv(scanner, lexer); for (i = 0; i < 8; i++) { if (is_ns_hex_digit(lexer->lookahead)) { adv(scanner, lexer); } else { return false; } } break; case 'u': adv(scanner, lexer); for (i = 0; i < 4; i++) { if (is_ns_hex_digit(lexer->lookahead)) { adv(scanner, lexer); } else { return false; } } break; case 'x': adv(scanner, lexer); for (i = 0; i < 2; i++) { if (is_ns_hex_digit(lexer->lookahead)) { adv(scanner, lexer); } else { return false; } } break; default: return false; } mrk_end(scanner, lexer); RET_SYM(result_symbol); } static bool scn_drs_doc_end(Scanner *scanner, TSLexer *lexer) { if (lexer->lookahead != '-' && lexer->lookahead != '.') { return false; } int32_t delimeter = lexer->lookahead; adv(scanner, lexer); if (lexer->lookahead == delimeter) { adv(scanner, lexer); if (lexer->lookahead == delimeter) { adv(scanner, lexer); if (is_wht(lexer->lookahead)) { return true; } } } mrk_end(scanner, lexer); return false; } static bool scn_dqt_str_cnt(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (!is_nb_double_char(lexer->lookahead)) { return false; } if (scanner->cur_col == 0 && scn_drs_doc_end(scanner, lexer)) { mrk_end(scanner, lexer); RET_SYM(scanner->cur_chr == '-' ? S_DRS_END : S_DOC_END); } else { adv(scanner, lexer); } while (is_nb_double_char(lexer->lookahead)) { adv(scanner, lexer); } mrk_end(scanner, lexer); RET_SYM(result_symbol); } static bool scn_sqt_str_cnt(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (!is_nb_single_char(lexer->lookahead)) { return false; } if (scanner->cur_col == 0 && scn_drs_doc_end(scanner, lexer)) { mrk_end(scanner, lexer); RET_SYM(scanner->cur_chr == '-' ? S_DRS_END : S_DOC_END); } else { adv(scanner, lexer); } while (is_nb_single_char(lexer->lookahead)) { adv(scanner, lexer); } mrk_end(scanner, lexer); RET_SYM(result_symbol); } static bool scn_blk_str_bgn(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (lexer->lookahead != '|' && lexer->lookahead != '>') { return false; } adv(scanner, lexer); int16_t cur_ind = *array_back(&scanner->ind_len_stk); int16_t ind = -1; if (lexer->lookahead >= '1' && lexer->lookahead <= '9') { ind = lexer->lookahead - '1'; adv(scanner, lexer); if (lexer->lookahead == '+' || lexer->lookahead == '-') { adv(scanner, lexer); } } else if (lexer->lookahead == '+' || lexer->lookahead == '-') { adv(scanner, lexer); if (lexer->lookahead >= '1' && lexer->lookahead <= '9') { ind = lexer->lookahead - '1'; adv(scanner, lexer); } } if (!is_wht(lexer->lookahead)) { return false; } mrk_end(scanner, lexer); if (ind != -1) { ind += cur_ind; } else { ind = cur_ind; while (is_wsp(lexer->lookahead)) { adv(scanner, lexer); } if (lexer->lookahead == '#') { adv(scanner, lexer); while (!is_nwl(lexer->lookahead) && lexer->lookahead != 0) { adv(scanner, lexer); } } if (is_nwl(lexer->lookahead)) { adv_nwl(scanner, lexer); } while (lexer->lookahead != 0) { if (lexer->lookahead == ' ') { adv(scanner, lexer); } else if (is_nwl(lexer->lookahead)) { if (scanner->cur_col - 1 < ind) { break; } ind = scanner->cur_col - 1; adv_nwl(scanner, lexer); } else { if (scanner->cur_col - 1 > ind) { ind = scanner->cur_col - 1; } break; } } } PUSH_IND(IND_STR, ind); RET_SYM(result_symbol); } static bool scn_blk_str_cnt(Scanner *scanner, TSLexer *lexer, TSSymbol result_symbol) { if (!is_ns_char(lexer->lookahead)) { return false; } if (scanner->cur_col == 0 && scn_drs_doc_end(scanner, lexer)) { POP_IND(); RET_SYM(BL); } else { adv(scanner, lexer); } mrk_end(scanner, lexer); for (;;) { if (is_ns_char(lexer->lookahead)) { adv(scanner, lexer); while (is_ns_char(lexer->lookahead)) { adv(scanner, lexer); } mrk_end(scanner, lexer); } if (is_wsp(lexer->lookahead)) { adv(scanner, lexer); while (is_wsp(lexer->lookahead)) { adv(scanner, lexer); } } else { break; } } RET_SYM(result_symbol); } static char scn_pln_cnt(Scanner *scanner, TSLexer *lexer, bool (*is_plain_safe)(int32_t)) { bool is_cur_wsp = is_wsp(scanner->cur_chr); bool is_cur_saf = is_plain_safe(scanner->cur_chr); bool is_lka_wsp = is_wsp(lexer->lookahead); bool is_lka_saf = is_plain_safe(lexer->lookahead); if (is_lka_saf || is_lka_wsp) { for (;;) { if (is_lka_saf && lexer->lookahead != '#' && lexer->lookahead != ':') { adv(scanner, lexer); mrk_end(scanner, lexer); scanner->sch_stt = adv_sch_stt(scanner->sch_stt, scanner->cur_chr, &scanner->rlt_sch); } else if (is_cur_saf && lexer->lookahead == '#') { adv(scanner, lexer); mrk_end(scanner, lexer); scanner->sch_stt = adv_sch_stt(scanner->sch_stt, scanner->cur_chr, &scanner->rlt_sch); } else if (is_lka_wsp) { adv(scanner, lexer); scanner->sch_stt = adv_sch_stt(scanner->sch_stt, scanner->cur_chr, &scanner->rlt_sch); } else if (lexer->lookahead == ':') { adv(scanner, lexer); // check later } else { break; } is_cur_wsp = is_lka_wsp; is_cur_saf = is_lka_saf; is_lka_wsp = is_wsp(lexer->lookahead); is_lka_saf = is_plain_safe(lexer->lookahead); if (scanner->cur_chr == ':') { if (is_lka_saf) { mrk_end(scanner, lexer); scanner->sch_stt = adv_sch_stt(scanner->sch_stt, scanner->cur_chr, &scanner->rlt_sch); } else { return SCN_FAIL; } } } } else { return SCN_STOP; } return SCN_SUCC; } static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { init(scanner); mrk_end(scanner, lexer); bool allow_comment = !(valid_symbols[R_DQT_STR_CTN] || valid_symbols[BR_DQT_STR_CTN] || valid_symbols[R_SQT_STR_CTN] || valid_symbols[BR_SQT_STR_CTN]); int16_t *ind_ptr = scanner->ind_len_stk.contents + scanner->ind_len_stk.size - 1; int16_t *ind_end = scanner->ind_len_stk.contents - 1; int16_t cur_ind = *ind_ptr--; int16_t prt_ind = ind_ptr == ind_end ? -1 : *ind_ptr; int16_t cur_ind_typ = *array_back(&scanner->ind_typ_stk); bool has_tab_ind = false; int16_t leading_spaces = 0; for (;;) { if (lexer->lookahead == ' ') { if (!has_tab_ind) { leading_spaces++; } skp(scanner, lexer); } else if (lexer->lookahead == '\t') { has_tab_ind = true; skp(scanner, lexer); } else if (is_nwl(lexer->lookahead)) { has_tab_ind = false; leading_spaces = 0; skp_nwl(scanner, lexer); } else if (allow_comment && lexer->lookahead == '#') { if (valid_symbols[BR_BLK_STR_CTN] && valid_symbols[BL] && scanner->cur_col <= cur_ind) { POP_IND(); RET_SYM(BL); } if (valid_symbols[BR_BLK_STR_CTN] ? scanner->cur_row == scanner->row : scanner->cur_col == 0 || scanner->cur_row != scanner->row || scanner->cur_col > scanner->col) { adv(scanner, lexer); while (!is_nwl(lexer->lookahead) && lexer->lookahead != 0) { adv(scanner, lexer); } mrk_end(scanner, lexer); RET_SYM(COMMENT); } else { break; } } else { break; } } if (lexer->lookahead == 0) { if (valid_symbols[BL]) { mrk_end(scanner, lexer); POP_IND(); RET_SYM(BL) } if (valid_symbols[END_OF_FILE]) { mrk_end(scanner, lexer); RET_SYM(END_OF_FILE) } return false; } int16_t bgn_row = scanner->cur_row; int16_t bgn_col = scanner->cur_col; int32_t bgn_chr = lexer->lookahead; if (valid_symbols[BL] && bgn_col <= cur_ind && !has_tab_ind) { if (cur_ind == prt_ind && cur_ind_typ == IND_SEQ ? bgn_col < cur_ind || lexer->lookahead != '-' : bgn_col <= prt_ind || cur_ind_typ == IND_STR) { POP_IND(); RET_SYM(BL); } } bool has_nwl = scanner->cur_row > scanner->row; bool is_r = !has_nwl; bool is_br = has_nwl && leading_spaces > cur_ind; bool is_b = has_nwl && leading_spaces == cur_ind && !has_tab_ind; bool is_s = bgn_col == 0; if (valid_symbols[R_DIR_YML_VER] && is_r) { return scn_dir_yml_ver(scanner, lexer, R_DIR_YML_VER); } if (valid_symbols[R_DIR_TAG_HDL] && is_r) { return scn_dir_tag_hdl(scanner, lexer, R_DIR_TAG_HDL); } if (valid_symbols[R_DIR_TAG_PFX] && is_r) { return scn_dir_tag_pfx(scanner, lexer, R_DIR_TAG_PFX); } if (valid_symbols[R_DIR_RSV_PRM] && is_r) { return scn_dir_rsv_prm(scanner, lexer, R_DIR_RSV_PRM); } if (valid_symbols[BR_BLK_STR_CTN] && is_br && scn_blk_str_cnt(scanner, lexer, BR_BLK_STR_CTN)) { return true; } if ((valid_symbols[R_DQT_STR_CTN] && is_r && scn_dqt_str_cnt(scanner, lexer, R_DQT_STR_CTN)) || (valid_symbols[BR_DQT_STR_CTN] && is_br && scn_dqt_str_cnt(scanner, lexer, BR_DQT_STR_CTN))) { return true; } if ((valid_symbols[R_SQT_STR_CTN] && is_r && scn_sqt_str_cnt(scanner, lexer, R_SQT_STR_CTN)) || (valid_symbols[BR_SQT_STR_CTN] && is_br && scn_sqt_str_cnt(scanner, lexer, BR_SQT_STR_CTN))) { return true; } if (valid_symbols[R_ACR_CTN] && is_r) { return scn_acr_ctn(scanner, lexer, R_ACR_CTN); } if (valid_symbols[R_ALS_CTN] && is_r) { return scn_als_ctn(scanner, lexer, R_ALS_CTN); } if (lexer->lookahead == '%') { if (valid_symbols[S_DIR_YML_BGN] && is_s) { return scn_dir_bgn(scanner, lexer); } } else if (lexer->lookahead == '*') { if (valid_symbols[R_ALS_BGN] && is_r) { MAY_UPD_IMP_COL(); return scn_als_bgn(scanner, lexer, R_ALS_BGN); } if (valid_symbols[BR_ALS_BGN] && is_br) { MAY_UPD_IMP_COL(); return scn_als_bgn(scanner, lexer, BR_ALS_BGN); } if (valid_symbols[B_ALS_BGN] && is_b) { MAY_UPD_IMP_COL(); return scn_als_bgn(scanner, lexer, B_ALS_BGN); } } else if (lexer->lookahead == '&') { if (valid_symbols[R_ACR_BGN] && is_r) { MAY_UPD_IMP_COL(); return scn_acr_bgn(scanner, lexer, R_ACR_BGN); } if (valid_symbols[BR_ACR_BGN] && is_br) { MAY_UPD_IMP_COL(); return scn_acr_bgn(scanner, lexer, BR_ACR_BGN); } if (valid_symbols[B_ACR_BGN] && is_b) { MAY_UPD_IMP_COL(); return scn_acr_bgn(scanner, lexer, B_ACR_BGN); } } else if (lexer->lookahead == '!') { if (valid_symbols[R_TAG] && is_r) { MAY_UPD_IMP_COL(); return scn_tag(scanner, lexer, R_TAG); } if (valid_symbols[BR_TAG] && is_br) { MAY_UPD_IMP_COL(); return scn_tag(scanner, lexer, BR_TAG); } if (valid_symbols[B_TAG] && is_b) { MAY_UPD_IMP_COL(); return scn_tag(scanner, lexer, B_TAG); } } else if (lexer->lookahead == '[') { if (valid_symbols[R_FLW_SEQ_BGN] && is_r) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_FLW_SEQ_BGN) } if (valid_symbols[BR_FLW_SEQ_BGN] && is_br) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_FLW_SEQ_BGN) } if (valid_symbols[B_FLW_SEQ_BGN] && is_b) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(B_FLW_SEQ_BGN) } } else if (lexer->lookahead == ']') { if (valid_symbols[R_FLW_SEQ_END] && is_r) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_FLW_SEQ_END) } if (valid_symbols[BR_FLW_SEQ_END] && is_br) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_FLW_SEQ_END) } if (valid_symbols[B_FLW_SEQ_END] && is_b) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_FLW_SEQ_END) } } else if (lexer->lookahead == '{') { if (valid_symbols[R_FLW_MAP_BGN] && is_r) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_FLW_MAP_BGN) } if (valid_symbols[BR_FLW_MAP_BGN] && is_br) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_FLW_MAP_BGN) } if (valid_symbols[B_FLW_MAP_BGN] && is_b) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(B_FLW_MAP_BGN) } } else if (lexer->lookahead == '}') { if (valid_symbols[R_FLW_MAP_END] && is_r) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_FLW_MAP_END) } if (valid_symbols[BR_FLW_MAP_END] && is_br) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_FLW_MAP_END) } if (valid_symbols[B_FLW_MAP_END] && is_b) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_FLW_MAP_END) } } else if (lexer->lookahead == ',') { if (valid_symbols[R_FLW_SEP_BGN] && is_r) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_FLW_SEP_BGN) } if (valid_symbols[BR_FLW_SEP_BGN] && is_br) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_FLW_SEP_BGN) } } else if (lexer->lookahead == '"') { if (valid_symbols[R_DQT_STR_BGN] && is_r) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_DQT_STR_BGN) } if (valid_symbols[BR_DQT_STR_BGN] && is_br) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_DQT_STR_BGN) } if (valid_symbols[B_DQT_STR_BGN] && is_b) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(B_DQT_STR_BGN) } if (valid_symbols[R_DQT_STR_END] && is_r) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_DQT_STR_END) } if (valid_symbols[BR_DQT_STR_END] && is_br) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_DQT_STR_END) } } else if (lexer->lookahead == '\'') { if (valid_symbols[R_SQT_STR_BGN] && is_r) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_SQT_STR_BGN) } if (valid_symbols[BR_SQT_STR_BGN] && is_br) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_SQT_STR_BGN) } if (valid_symbols[B_SQT_STR_BGN] && is_b) { MAY_UPD_IMP_COL(); adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(B_SQT_STR_BGN) } if (valid_symbols[R_SQT_STR_END] && is_r) { adv(scanner, lexer); if (lexer->lookahead == '\'') { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_SQT_ESC_SQT) } else { mrk_end(scanner, lexer); RET_SYM(R_SQT_STR_END) } } if (valid_symbols[BR_SQT_STR_END] && is_br) { adv(scanner, lexer); if (lexer->lookahead == '\'') { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_SQT_ESC_SQT) } else { mrk_end(scanner, lexer); RET_SYM(BR_SQT_STR_END) } } } else if (lexer->lookahead == '?') { bool is_r_blk_key_bgn = valid_symbols[R_BLK_KEY_BGN] && is_r; bool is_br_blk_key_bgn = valid_symbols[BR_BLK_KEY_BGN] && is_br; bool is_b_blk_key_bgn = valid_symbols[B_BLK_KEY_BGN] && is_b; bool is_r_flw_key_bgn = valid_symbols[R_FLW_KEY_BGN] && is_r; bool is_br_flw_key_bgn = valid_symbols[BR_FLW_KEY_BGN] && is_br; if (is_r_blk_key_bgn || is_br_blk_key_bgn || is_b_blk_key_bgn || is_r_flw_key_bgn || is_br_flw_key_bgn) { adv(scanner, lexer); if (is_wht(lexer->lookahead)) { mrk_end(scanner, lexer); if (is_r_blk_key_bgn) { PUSH_BGN_IND(IND_MAP); RET_SYM(R_BLK_KEY_BGN); } if (is_br_blk_key_bgn) { PUSH_BGN_IND(IND_MAP); RET_SYM(BR_BLK_KEY_BGN); } if (is_b_blk_key_bgn) RET_SYM(B_BLK_KEY_BGN); if (is_r_flw_key_bgn) RET_SYM(R_FLW_KEY_BGN); if (is_br_flw_key_bgn) RET_SYM(BR_FLW_KEY_BGN); } } } else if (lexer->lookahead == ':') { if (valid_symbols[R_FLW_JSV_BGN] && is_r) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(R_FLW_JSV_BGN); } if (valid_symbols[BR_FLW_JSV_BGN] && is_br) { adv(scanner, lexer); mrk_end(scanner, lexer); RET_SYM(BR_FLW_JSV_BGN); } bool is_r_blk_val_bgn = valid_symbols[R_BLK_VAL_BGN] && is_r; bool is_br_blk_val_bgn = valid_symbols[BR_BLK_VAL_BGN] && is_br; bool is_b_blk_val_bgn = valid_symbols[B_BLK_VAL_BGN] && is_b; bool is_r_blk_imp_bgn = valid_symbols[R_BLK_IMP_BGN] && is_r; bool is_r_flw_njv_bgn = valid_symbols[R_FLW_NJV_BGN] && is_r; bool is_br_flw_njv_bgn = valid_symbols[BR_FLW_NJV_BGN] && is_br; if (is_r_blk_val_bgn || is_br_blk_val_bgn || is_b_blk_val_bgn || is_r_blk_imp_bgn || is_r_flw_njv_bgn || is_br_flw_njv_bgn) { adv(scanner, lexer); bool is_lka_wht = is_wht(lexer->lookahead); if (is_lka_wht) { if (is_r_blk_val_bgn) { PUSH_BGN_IND(IND_MAP); mrk_end(scanner, lexer); RET_SYM(R_BLK_VAL_BGN); } if (is_br_blk_val_bgn) { PUSH_BGN_IND(IND_MAP); mrk_end(scanner, lexer); RET_SYM(BR_BLK_VAL_BGN); } if (is_b_blk_val_bgn) { mrk_end(scanner, lexer); RET_SYM(B_BLK_VAL_BGN); } if (is_r_blk_imp_bgn) { MAY_PUSH_IMP_IND(); mrk_end(scanner, lexer); RET_SYM(R_BLK_IMP_BGN); } } if (is_lka_wht || lexer->lookahead == ',' || lexer->lookahead == ']' || lexer->lookahead == '}') { if (is_r_flw_njv_bgn) { mrk_end(scanner, lexer); RET_SYM(R_FLW_NJV_BGN); } if (is_br_flw_njv_bgn) { mrk_end(scanner, lexer); RET_SYM(BR_FLW_NJV_BGN); } } } } else if (lexer->lookahead == '-') { bool is_r_blk_seq_bgn = valid_symbols[R_BLK_SEQ_BGN] && is_r; bool is_br_blk_seq_bgn = valid_symbols[BR_BLK_SEQ_BGN] && is_br; bool is_b_blk_seq_bgn = valid_symbols[B_BLK_SEQ_BGN] && is_b; bool is_s_drs_end = is_s; if (is_r_blk_seq_bgn || is_br_blk_seq_bgn || is_b_blk_seq_bgn || is_s_drs_end) { adv(scanner, lexer); if (is_wht(lexer->lookahead)) { if (is_r_blk_seq_bgn) { PUSH_BGN_IND(IND_SEQ); mrk_end(scanner, lexer); RET_SYM(R_BLK_SEQ_BGN) } if (is_br_blk_seq_bgn) { PUSH_BGN_IND(IND_SEQ); mrk_end(scanner, lexer); RET_SYM(BR_BLK_SEQ_BGN) } if (is_b_blk_seq_bgn) { MAY_PUSH_SPC_SEQ_IND(); mrk_end(scanner, lexer); RET_SYM(B_BLK_SEQ_BGN) } } else if (lexer->lookahead == '-' && is_s_drs_end) { adv(scanner, lexer); if (lexer->lookahead == '-') { adv(scanner, lexer); if (is_wht(lexer->lookahead)) { if (valid_symbols[BL]) { POP_IND(); RET_SYM(BL); } mrk_end(scanner, lexer); RET_SYM(S_DRS_END); } } } } } else if (lexer->lookahead == '.') { if (is_s) { adv(scanner, lexer); if (lexer->lookahead == '.') { adv(scanner, lexer); if (lexer->lookahead == '.') { adv(scanner, lexer); if (is_wht(lexer->lookahead)) { if (valid_symbols[BL]) { POP_IND(); RET_SYM(BL); } mrk_end(scanner, lexer); RET_SYM(S_DOC_END); } } } } } else if (lexer->lookahead == '\\') { bool is_r_dqt_esc_nwl = valid_symbols[R_DQT_ESC_NWL] && is_r; bool is_br_dqt_esc_nwl = valid_symbols[BR_DQT_ESC_NWL] && is_br; bool is_r_dqt_esc_seq = valid_symbols[R_DQT_ESC_SEQ] && is_r; bool is_br_dqt_esc_seq = valid_symbols[BR_DQT_ESC_SEQ] && is_br; if (is_r_dqt_esc_nwl || is_br_dqt_esc_nwl || is_r_dqt_esc_seq || is_br_dqt_esc_seq) { adv(scanner, lexer); if (is_nwl(lexer->lookahead)) { if (is_r_dqt_esc_nwl) { mrk_end(scanner, lexer); RET_SYM(R_DQT_ESC_NWL) } if (is_br_dqt_esc_nwl) { mrk_end(scanner, lexer); RET_SYM(BR_DQT_ESC_NWL) } } if (is_r_dqt_esc_seq) { return scn_dqt_esc_seq(scanner, lexer, R_DQT_ESC_SEQ); } if (is_br_dqt_esc_seq) { return scn_dqt_esc_seq(scanner, lexer, BR_DQT_ESC_SEQ); } return false; } } else if (lexer->lookahead == '|') { if (valid_symbols[R_BLK_LIT_BGN] && is_r) { return scn_blk_str_bgn(scanner, lexer, R_BLK_LIT_BGN); } if (valid_symbols[BR_BLK_LIT_BGN] && is_br) { return scn_blk_str_bgn(scanner, lexer, BR_BLK_LIT_BGN); } } else if (lexer->lookahead == '>') { if (valid_symbols[R_BLK_FLD_BGN] && is_r) { return scn_blk_str_bgn(scanner, lexer, R_BLK_FLD_BGN); } if (valid_symbols[BR_BLK_FLD_BGN] && is_br) { return scn_blk_str_bgn(scanner, lexer, BR_BLK_FLD_BGN); } } bool maybe_sgl_pln_blk = (valid_symbols[R_SGL_PLN_STR_BLK] && is_r) || (valid_symbols[BR_SGL_PLN_STR_BLK] && is_br) || (valid_symbols[B_SGL_PLN_STR_BLK] && is_b); bool maybe_sgl_pln_flw = (valid_symbols[R_SGL_PLN_STR_FLW] && is_r) || (valid_symbols[BR_SGL_PLN_STR_FLW] && is_br); bool maybe_mtl_pln_blk = (valid_symbols[R_MTL_PLN_STR_BLK] && is_r) || (valid_symbols[BR_MTL_PLN_STR_BLK] && is_br); bool maybe_mtl_pln_flw = (valid_symbols[R_MTL_PLN_STR_FLW] && is_r) || (valid_symbols[BR_MTL_PLN_STR_FLW] && is_br); if (maybe_sgl_pln_blk || maybe_sgl_pln_flw || maybe_mtl_pln_blk || maybe_mtl_pln_flw) { bool is_in_blk = maybe_sgl_pln_blk || maybe_mtl_pln_blk; bool (*is_plain_safe)(int32_t) = is_in_blk ? is_plain_safe_in_block : is_plain_safe_in_flow; if (scanner->cur_col - bgn_col == 0) { adv(scanner, lexer); } if (scanner->cur_col - bgn_col == 1) { bool is_plain_first = (is_ns_char(bgn_chr) && !is_c_indicator(bgn_chr)) || ((bgn_chr == '-' || bgn_chr == '?' || bgn_chr == ':') && is_plain_safe(lexer->lookahead)); if (!is_plain_first) { return false; } scanner->sch_stt = adv_sch_stt(scanner->sch_stt, scanner->cur_chr, &scanner->rlt_sch); } else { // no need to check the following cases: // ..X // ...X // --X // ---X // X: lookahead scanner->sch_stt = SCH_STT_FRZ; // must be RS_STR } mrk_end(scanner, lexer); for (;;) { if (!is_nwl(lexer->lookahead)) { if (scn_pln_cnt(scanner, lexer, is_plain_safe) != SCN_SUCC) { break; } } if (lexer->lookahead == 0 || !is_nwl(lexer->lookahead)) { break; } for (;;) { if (is_nwl(lexer->lookahead)) { adv_nwl(scanner, lexer); } else if (is_wsp(lexer->lookahead)) { adv(scanner, lexer); } else { break; } } if (lexer->lookahead == 0 || scanner->cur_col <= cur_ind) { break; } if (scanner->cur_col == 0 && scn_drs_doc_end(scanner, lexer)) { break; } } if (scanner->end_row == bgn_row) { if (maybe_sgl_pln_blk) { MAY_UPD_IMP_COL(); RET_SYM(is_r ? SGL_PLN_SYM(R, BLK) : is_br ? SGL_PLN_SYM(BR, BLK) : SGL_PLN_SYM(B, BLK)); } if (maybe_sgl_pln_flw) RET_SYM(is_r ? SGL_PLN_SYM(R, FLW) : SGL_PLN_SYM(BR, FLW)); } else { if (maybe_mtl_pln_blk) { MAY_UPD_IMP_COL(); RET_SYM(is_r ? R_MTL_PLN_STR_BLK : BR_MTL_PLN_STR_BLK); } if (maybe_mtl_pln_flw) RET_SYM(is_r ? R_MTL_PLN_STR_FLW : BR_MTL_PLN_STR_FLW); } return false; } return !valid_symbols[ERR_REC]; } void *tree_sitter_yaml_external_scanner_create() { Scanner *scanner = ts_calloc(1, sizeof(Scanner)); deserialize(scanner, NULL, 0); return scanner; } void tree_sitter_yaml_external_scanner_destroy(void *payload) { Scanner *scanner = (Scanner *)payload; array_delete(&scanner->ind_len_stk); array_delete(&scanner->ind_typ_stk); ts_free(scanner); } unsigned tree_sitter_yaml_external_scanner_serialize(void *payload, char *buffer) { Scanner *scanner = (Scanner *)payload; return serialize(scanner, buffer); } void tree_sitter_yaml_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { Scanner *scanner = (Scanner *)payload; deserialize(scanner, buffer, length); } bool tree_sitter_yaml_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { Scanner *scanner = (Scanner *)payload; return scan(scanner, lexer, valid_symbols); } tree-sitter-yaml-0.7.2/src/schema.core.c000066400000000000000000000147461507122265000200650ustar00rootroot00000000000000#include #include #define SCH_STT_FRZ -1 #define HAS_TIMESTAMP 0 typedef enum { RS_STR, RS_INT, RS_NULL, RS_BOOL, RS_FLOAT, } ResultSchema; static int8_t adv_sch_stt(int8_t sch_stt, int32_t cur_chr, ResultSchema *rlt_sch) { switch (sch_stt) { case SCH_STT_FRZ: break; case 0: if (cur_chr == '.') {*rlt_sch = RS_STR; return 6;} if (cur_chr == '0') {*rlt_sch = RS_INT; return 37;} if (cur_chr == 'F') {*rlt_sch = RS_STR; return 2;} if (cur_chr == 'N') {*rlt_sch = RS_STR; return 16;} if (cur_chr == 'T') {*rlt_sch = RS_STR; return 13;} if (cur_chr == 'f') {*rlt_sch = RS_STR; return 17;} if (cur_chr == 'n') {*rlt_sch = RS_STR; return 29;} if (cur_chr == 't') {*rlt_sch = RS_STR; return 26;} if (cur_chr == '~') {*rlt_sch = RS_NULL; return 35;} if (cur_chr == '+') {*rlt_sch = RS_STR; return 1;} if (cur_chr == '-') {*rlt_sch = RS_STR; return 1;} if (('1' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 38;} break; case 1: if (cur_chr == '.') {*rlt_sch = RS_STR; return 7;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 38;} break; case 2: if (cur_chr == 'A') {*rlt_sch = RS_STR; return 9;} if (cur_chr == 'a') {*rlt_sch = RS_STR; return 22;} break; case 3: if (cur_chr == 'A') {*rlt_sch = RS_STR; return 12;} if (cur_chr == 'a') {*rlt_sch = RS_STR; return 12;} break; case 4: if (cur_chr == 'E') {*rlt_sch = RS_BOOL; return 36;} break; case 5: if (cur_chr == 'F') {*rlt_sch = RS_FLOAT; return 41;} break; case 6: if (cur_chr == 'I') {*rlt_sch = RS_STR; return 11;} if (cur_chr == 'N') {*rlt_sch = RS_STR; return 3;} if (cur_chr == 'i') {*rlt_sch = RS_STR; return 24;} if (cur_chr == 'n') {*rlt_sch = RS_STR; return 18;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 42;} break; case 7: if (cur_chr == 'I') {*rlt_sch = RS_STR; return 11;} if (cur_chr == 'i') {*rlt_sch = RS_STR; return 24;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 42;} break; case 8: if (cur_chr == 'L') {*rlt_sch = RS_NULL; return 35;} break; case 9: if (cur_chr == 'L') {*rlt_sch = RS_STR; return 14;} break; case 10: if (cur_chr == 'L') {*rlt_sch = RS_STR; return 8;} break; case 11: if (cur_chr == 'N') {*rlt_sch = RS_STR; return 5;} if (cur_chr == 'n') {*rlt_sch = RS_STR; return 20;} break; case 12: if (cur_chr == 'N') {*rlt_sch = RS_FLOAT; return 41;} break; case 13: if (cur_chr == 'R') {*rlt_sch = RS_STR; return 15;} if (cur_chr == 'r') {*rlt_sch = RS_STR; return 28;} break; case 14: if (cur_chr == 'S') {*rlt_sch = RS_STR; return 4;} break; case 15: if (cur_chr == 'U') {*rlt_sch = RS_STR; return 4;} break; case 16: if (cur_chr == 'U') {*rlt_sch = RS_STR; return 10;} if (cur_chr == 'u') {*rlt_sch = RS_STR; return 23;} break; case 17: if (cur_chr == 'a') {*rlt_sch = RS_STR; return 22;} break; case 18: if (cur_chr == 'a') {*rlt_sch = RS_STR; return 25;} break; case 19: if (cur_chr == 'e') {*rlt_sch = RS_BOOL; return 36;} break; case 20: if (cur_chr == 'f') {*rlt_sch = RS_FLOAT; return 41;} break; case 21: if (cur_chr == 'l') {*rlt_sch = RS_NULL; return 35;} break; case 22: if (cur_chr == 'l') {*rlt_sch = RS_STR; return 27;} break; case 23: if (cur_chr == 'l') {*rlt_sch = RS_STR; return 21;} break; case 24: if (cur_chr == 'n') {*rlt_sch = RS_STR; return 20;} break; case 25: if (cur_chr == 'n') {*rlt_sch = RS_FLOAT; return 41;} break; case 26: if (cur_chr == 'r') {*rlt_sch = RS_STR; return 28;} break; case 27: if (cur_chr == 's') {*rlt_sch = RS_STR; return 19;} break; case 28: if (cur_chr == 'u') {*rlt_sch = RS_STR; return 19;} break; case 29: if (cur_chr == 'u') {*rlt_sch = RS_STR; return 23;} break; case 30: if (cur_chr == '+' || cur_chr == '-') {*rlt_sch = RS_STR; return 32;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 43;} break; case 31: if (('0' <= cur_chr && cur_chr <= '7')) {*rlt_sch = RS_INT; return 39;} break; case 32: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 43;} break; case 33: if (('0' <= cur_chr && cur_chr <= '9') || ('A' <= cur_chr && cur_chr <= 'F') || ('a' <= cur_chr && cur_chr <= 'f')) {*rlt_sch = RS_INT; return 40;} break; case 34: abort(); break; case 35: *rlt_sch = RS_NULL; break; case 36: *rlt_sch = RS_BOOL; break; case 37: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 42;} if (cur_chr == 'o') {*rlt_sch = RS_STR; return 31;} if (cur_chr == 'x') {*rlt_sch = RS_STR; return 33;} if (cur_chr == 'E' || cur_chr == 'e') {*rlt_sch = RS_STR; return 30;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 38;} break; case 38: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 42;} if (cur_chr == 'E' || cur_chr == 'e') {*rlt_sch = RS_STR; return 30;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 38;} break; case 39: *rlt_sch = RS_INT; if (('0' <= cur_chr && cur_chr <= '7')) {*rlt_sch = RS_INT; return 39;} break; case 40: *rlt_sch = RS_INT; if (('0' <= cur_chr && cur_chr <= '9') || ('A' <= cur_chr && cur_chr <= 'F') || ('a' <= cur_chr && cur_chr <= 'f')) {*rlt_sch = RS_INT; return 40;} break; case 41: *rlt_sch = RS_FLOAT; break; case 42: *rlt_sch = RS_FLOAT; if (cur_chr == 'E' || cur_chr == 'e') {*rlt_sch = RS_STR; return 30;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 42;} break; case 43: *rlt_sch = RS_FLOAT; if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 43;} break; default: *rlt_sch = RS_STR; return SCH_STT_FRZ; } if (cur_chr != '\r' && cur_chr != '\n' && cur_chr != ' ' && cur_chr != 0) *rlt_sch = RS_STR; return SCH_STT_FRZ; } tree-sitter-yaml-0.7.2/src/schema.json.c000066400000000000000000000057711507122265000201040ustar00rootroot00000000000000#include #include #define SCH_STT_FRZ -1 #define HAS_TIMESTAMP 0 typedef enum { RS_STR, RS_INT, RS_BOOL, RS_NULL, RS_FLOAT, } ResultSchema; static int8_t adv_sch_stt(int8_t sch_stt, int32_t cur_chr, ResultSchema *rlt_sch) { switch (sch_stt) { case SCH_STT_FRZ: break; case 0: if (cur_chr == '-') {*rlt_sch = RS_STR; return 1;} if (cur_chr == '0') {*rlt_sch = RS_INT; return 16;} if (cur_chr == 'f') {*rlt_sch = RS_STR; return 2;} if (cur_chr == 'n') {*rlt_sch = RS_STR; return 10;} if (cur_chr == 't') {*rlt_sch = RS_STR; return 7;} if (('1' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 17;} break; case 1: if (cur_chr == '0') {*rlt_sch = RS_INT; return 16;} if (('1' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 17;} break; case 2: if (cur_chr == 'a') {*rlt_sch = RS_STR; return 4;} break; case 3: if (cur_chr == 'e') {*rlt_sch = RS_BOOL; return 15;} break; case 4: if (cur_chr == 'l') {*rlt_sch = RS_STR; return 8;} break; case 5: if (cur_chr == 'l') {*rlt_sch = RS_NULL; return 14;} break; case 6: if (cur_chr == 'l') {*rlt_sch = RS_STR; return 5;} break; case 7: if (cur_chr == 'r') {*rlt_sch = RS_STR; return 9;} break; case 8: if (cur_chr == 's') {*rlt_sch = RS_STR; return 3;} break; case 9: if (cur_chr == 'u') {*rlt_sch = RS_STR; return 3;} break; case 10: if (cur_chr == 'u') {*rlt_sch = RS_STR; return 6;} break; case 11: if (cur_chr == '+' || cur_chr == '-') {*rlt_sch = RS_STR; return 12;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 19;} break; case 12: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 19;} break; case 13: abort(); break; case 14: *rlt_sch = RS_NULL; break; case 15: *rlt_sch = RS_BOOL; break; case 16: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 18;} if (cur_chr == 'E' || cur_chr == 'e') {*rlt_sch = RS_STR; return 11;} break; case 17: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 18;} if (cur_chr == 'E' || cur_chr == 'e') {*rlt_sch = RS_STR; return 11;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 17;} break; case 18: *rlt_sch = RS_FLOAT; if (cur_chr == 'E' || cur_chr == 'e') {*rlt_sch = RS_STR; return 11;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 18;} break; case 19: *rlt_sch = RS_FLOAT; if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 19;} break; default: *rlt_sch = RS_STR; return SCH_STT_FRZ; } if (cur_chr != '\r' && cur_chr != '\n' && cur_chr != ' ' && cur_chr != 0) *rlt_sch = RS_STR; return SCH_STT_FRZ; } tree-sitter-yaml-0.7.2/src/schema.legacy.c000066400000000000000000000443001507122265000203660ustar00rootroot00000000000000#include #include #define SCH_STT_FRZ -1 #define HAS_TIMESTAMP 1 typedef enum { RS_STR, RS_FLOAT, RS_INT, RS_BOOL, RS_NULL, RS_TIMESTAMP, } ResultSchema; static int8_t adv_sch_stt(int8_t sch_stt, int32_t cur_chr, ResultSchema *rlt_sch) { switch (sch_stt) { case SCH_STT_FRZ: break; case 0: if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 89;} if (cur_chr == '0') {*rlt_sch = RS_INT; return 75;} if (cur_chr == 'F') {*rlt_sch = RS_STR; return 13;} if (cur_chr == 'N') {*rlt_sch = RS_BOOL; return 70;} if (cur_chr == 'O') {*rlt_sch = RS_STR; return 17;} if (cur_chr == 'T') {*rlt_sch = RS_STR; return 24;} if (cur_chr == 'Y') {*rlt_sch = RS_BOOL; return 69;} if (cur_chr == 'f') {*rlt_sch = RS_STR; return 29;} if (cur_chr == 'n') {*rlt_sch = RS_BOOL; return 72;} if (cur_chr == 'o') {*rlt_sch = RS_STR; return 33;} if (cur_chr == 't') {*rlt_sch = RS_STR; return 40;} if (cur_chr == 'y') {*rlt_sch = RS_BOOL; return 71;} if (cur_chr == '~') {*rlt_sch = RS_NULL; return 67;} if (cur_chr == '+') {*rlt_sch = RS_STR; return 7;} if (cur_chr == '-') {*rlt_sch = RS_STR; return 7;} if (('1' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 82;} break; case 1: if (cur_chr == '-') {*rlt_sch = RS_STR; return 53;} if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (('0' <= cur_chr && cur_chr <= '9') || cur_chr == '_') {*rlt_sch = RS_STR; return 6;} break; case 2: if (cur_chr == '-') {*rlt_sch = RS_STR; return 54;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 3;} break; case 3: if (cur_chr == '-') {*rlt_sch = RS_STR; return 60;} break; case 4: if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (cur_chr == '_') {*rlt_sch = RS_STR; return 6;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 1;} break; case 5: if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (cur_chr == '_') {*rlt_sch = RS_STR; return 6;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 4;} break; case 6: if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (('0' <= cur_chr && cur_chr <= '9') || cur_chr == '_') {*rlt_sch = RS_STR; return 6;} break; case 7: if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 90;} if (cur_chr == '0') {*rlt_sch = RS_INT; return 78;} if (('1' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 83;} break; case 8: if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 93;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} break; case 9: if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 93;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 8;} break; case 10: if (cur_chr == ':') {*rlt_sch = RS_STR; return 61;} break; case 11: if (cur_chr == ':') {*rlt_sch = RS_STR; return 61;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 10;} break; case 12: if (cur_chr == ':') {*rlt_sch = RS_STR; return 62;} break; case 13: if (cur_chr == 'A') {*rlt_sch = RS_STR; return 20;} if (cur_chr == 'a') {*rlt_sch = RS_STR; return 36;} break; case 14: if (cur_chr == 'A') {*rlt_sch = RS_STR; return 22;} if (cur_chr == 'a') {*rlt_sch = RS_STR; return 22;} break; case 15: if (cur_chr == 'E') {*rlt_sch = RS_BOOL; return 68;} break; case 16: if (cur_chr == 'F') {*rlt_sch = RS_BOOL; return 68;} break; case 17: if (cur_chr == 'F') {*rlt_sch = RS_STR; return 16;} if (cur_chr == 'f') {*rlt_sch = RS_STR; return 32;} if (cur_chr == 'N' || cur_chr == 'n') {*rlt_sch = RS_BOOL; return 68;} break; case 18: if (cur_chr == 'F') {*rlt_sch = RS_FLOAT; return 88;} break; case 19: if (cur_chr == 'L') {*rlt_sch = RS_NULL; return 67;} break; case 20: if (cur_chr == 'L') {*rlt_sch = RS_STR; return 26;} break; case 21: if (cur_chr == 'L') {*rlt_sch = RS_STR; return 19;} break; case 22: if (cur_chr == 'N') {*rlt_sch = RS_FLOAT; return 88;} break; case 23: if (cur_chr == 'N') {*rlt_sch = RS_STR; return 18;} if (cur_chr == 'n') {*rlt_sch = RS_STR; return 34;} break; case 24: if (cur_chr == 'R') {*rlt_sch = RS_STR; return 27;} if (cur_chr == 'r') {*rlt_sch = RS_STR; return 43;} break; case 25: if (cur_chr == 'S') {*rlt_sch = RS_BOOL; return 68;} break; case 26: if (cur_chr == 'S') {*rlt_sch = RS_STR; return 15;} break; case 27: if (cur_chr == 'U') {*rlt_sch = RS_STR; return 15;} break; case 28: if (cur_chr == 'Z') {*rlt_sch = RS_TIMESTAMP; return 94;} if (cur_chr == '\t' || cur_chr == ' ') {*rlt_sch = RS_STR; return 28;} break; case 29: if (cur_chr == 'a') {*rlt_sch = RS_STR; return 36;} break; case 30: if (cur_chr == 'a') {*rlt_sch = RS_STR; return 38;} break; case 31: if (cur_chr == 'e') {*rlt_sch = RS_BOOL; return 68;} break; case 32: if (cur_chr == 'f') {*rlt_sch = RS_BOOL; return 68;} break; case 33: if (cur_chr == 'f') {*rlt_sch = RS_STR; return 32;} if (cur_chr == 'n') {*rlt_sch = RS_BOOL; return 68;} break; case 34: if (cur_chr == 'f') {*rlt_sch = RS_FLOAT; return 88;} break; case 35: if (cur_chr == 'l') {*rlt_sch = RS_NULL; return 67;} break; case 36: if (cur_chr == 'l') {*rlt_sch = RS_STR; return 42;} break; case 37: if (cur_chr == 'l') {*rlt_sch = RS_STR; return 35;} break; case 38: if (cur_chr == 'n') {*rlt_sch = RS_FLOAT; return 88;} break; case 39: if (cur_chr == 'n') {*rlt_sch = RS_STR; return 34;} break; case 40: if (cur_chr == 'r') {*rlt_sch = RS_STR; return 43;} break; case 41: if (cur_chr == 's') {*rlt_sch = RS_BOOL; return 68;} break; case 42: if (cur_chr == 's') {*rlt_sch = RS_STR; return 31;} break; case 43: if (cur_chr == 'u') {*rlt_sch = RS_STR; return 31;} break; case 44: if (cur_chr == '\t' || cur_chr == ' ') {*rlt_sch = RS_STR; return 47;} if (cur_chr == 'T' || cur_chr == 't') {*rlt_sch = RS_STR; return 55;} break; case 45: if (cur_chr == '\t' || cur_chr == ' ') {*rlt_sch = RS_STR; return 47;} if (cur_chr == 'T' || cur_chr == 't') {*rlt_sch = RS_STR; return 55;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 44;} break; case 46: if (cur_chr == '\t' || cur_chr == ' ') {*rlt_sch = RS_STR; return 47;} if (cur_chr == 'T' || cur_chr == 't') {*rlt_sch = RS_STR; return 55;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_TIMESTAMP; return 99;} break; case 47: if (cur_chr == '\t' || cur_chr == ' ') {*rlt_sch = RS_STR; return 47;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 11;} break; case 48: if (cur_chr == '+' || cur_chr == '-') {*rlt_sch = RS_STR; return 52;} break; case 49: if (cur_chr == '0' || cur_chr == '1' || cur_chr == '_') {*rlt_sch = RS_INT; return 86;} break; case 50: if (('6' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 8;} if (('0' <= cur_chr && cur_chr <= '5')) {*rlt_sch = RS_STR; return 9;} break; case 51: if (('6' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 84;} if (('0' <= cur_chr && cur_chr <= '5')) {*rlt_sch = RS_INT; return 85;} break; case 52: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 92;} break; case 53: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 2;} break; case 54: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 45;} break; case 55: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 11;} break; case 56: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_TIMESTAMP; return 95;} break; case 57: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_TIMESTAMP; return 94;} break; case 58: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_TIMESTAMP; return 98;} break; case 59: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_TIMESTAMP; return 97;} break; case 60: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 46;} break; case 61: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 64;} break; case 62: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 56;} break; case 63: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 57;} break; case 64: if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_STR; return 12;} break; case 65: if (('0' <= cur_chr && cur_chr <= '9') || ('A' <= cur_chr && cur_chr <= 'F') || cur_chr == '_' || ('a' <= cur_chr && cur_chr <= 'f')) {*rlt_sch = RS_INT; return 87;} break; case 66: abort(); break; case 67: *rlt_sch = RS_NULL; break; case 68: *rlt_sch = RS_BOOL; break; case 69: *rlt_sch = RS_BOOL; if (cur_chr == 'E') {*rlt_sch = RS_STR; return 25;} if (cur_chr == 'e') {*rlt_sch = RS_STR; return 41;} break; case 70: *rlt_sch = RS_BOOL; if (cur_chr == 'U') {*rlt_sch = RS_STR; return 21;} if (cur_chr == 'u') {*rlt_sch = RS_STR; return 37;} if (cur_chr == 'O' || cur_chr == 'o') {*rlt_sch = RS_BOOL; return 68;} break; case 71: *rlt_sch = RS_BOOL; if (cur_chr == 'e') {*rlt_sch = RS_STR; return 41;} break; case 72: *rlt_sch = RS_BOOL; if (cur_chr == 'o') {*rlt_sch = RS_BOOL; return 68;} if (cur_chr == 'u') {*rlt_sch = RS_STR; return 37;} break; case 73: *rlt_sch = RS_INT; if (cur_chr == '-') {*rlt_sch = RS_STR; return 53;} if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (cur_chr == '8' || cur_chr == '9') {*rlt_sch = RS_STR; return 6;} if (('0' <= cur_chr && cur_chr <= '7') || cur_chr == '_') {*rlt_sch = RS_INT; return 79;} break; case 74: *rlt_sch = RS_INT; if (cur_chr == '-') {*rlt_sch = RS_STR; return 53;} if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 51;} if (('0' <= cur_chr && cur_chr <= '9') || cur_chr == '_') {*rlt_sch = RS_INT; return 83;} break; case 75: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (cur_chr == '_') {*rlt_sch = RS_INT; return 79;} if (cur_chr == 'b') {*rlt_sch = RS_STR; return 49;} if (cur_chr == 'x') {*rlt_sch = RS_STR; return 65;} if (cur_chr == '8' || cur_chr == '9') {*rlt_sch = RS_STR; return 5;} if (('0' <= cur_chr && cur_chr <= '7')) {*rlt_sch = RS_INT; return 77;} break; case 76: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (cur_chr == '_') {*rlt_sch = RS_INT; return 79;} if (cur_chr == '8' || cur_chr == '9') {*rlt_sch = RS_STR; return 1;} if (('0' <= cur_chr && cur_chr <= '7')) {*rlt_sch = RS_INT; return 73;} break; case 77: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (cur_chr == '_') {*rlt_sch = RS_INT; return 79;} if (cur_chr == '8' || cur_chr == '9') {*rlt_sch = RS_STR; return 4;} if (('0' <= cur_chr && cur_chr <= '7')) {*rlt_sch = RS_INT; return 76;} break; case 78: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (cur_chr == 'b') {*rlt_sch = RS_STR; return 49;} if (cur_chr == 'x') {*rlt_sch = RS_STR; return 65;} if (cur_chr == '8' || cur_chr == '9') {*rlt_sch = RS_STR; return 6;} if (('0' <= cur_chr && cur_chr <= '7') || cur_chr == '_') {*rlt_sch = RS_INT; return 79;} break; case 79: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 50;} if (cur_chr == '8' || cur_chr == '9') {*rlt_sch = RS_STR; return 6;} if (('0' <= cur_chr && cur_chr <= '7') || cur_chr == '_') {*rlt_sch = RS_INT; return 79;} break; case 80: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 51;} if (cur_chr == '_') {*rlt_sch = RS_INT; return 83;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 74;} break; case 81: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 51;} if (cur_chr == '_') {*rlt_sch = RS_INT; return 83;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 80;} break; case 82: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 51;} if (cur_chr == '_') {*rlt_sch = RS_INT; return 83;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 81;} break; case 83: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 91;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 51;} if (('0' <= cur_chr && cur_chr <= '9') || cur_chr == '_') {*rlt_sch = RS_INT; return 83;} break; case 84: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 93;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 51;} break; case 85: *rlt_sch = RS_INT; if (cur_chr == '.') {*rlt_sch = RS_FLOAT; return 93;} if (cur_chr == ':') {*rlt_sch = RS_STR; return 51;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_INT; return 84;} break; case 86: *rlt_sch = RS_INT; if (cur_chr == '0' || cur_chr == '1' || cur_chr == '_') {*rlt_sch = RS_INT; return 86;} break; case 87: *rlt_sch = RS_INT; if (('0' <= cur_chr && cur_chr <= '9') || ('A' <= cur_chr && cur_chr <= 'F') || cur_chr == '_' || ('a' <= cur_chr && cur_chr <= 'f')) {*rlt_sch = RS_INT; return 87;} break; case 88: *rlt_sch = RS_FLOAT; break; case 89: *rlt_sch = RS_FLOAT; if (cur_chr == 'I') {*rlt_sch = RS_STR; return 23;} if (cur_chr == 'N') {*rlt_sch = RS_STR; return 14;} if (cur_chr == 'i') {*rlt_sch = RS_STR; return 39;} if (cur_chr == 'n') {*rlt_sch = RS_STR; return 30;} if (cur_chr == 'E' || cur_chr == 'e') {*rlt_sch = RS_STR; return 48;} if (cur_chr == '.' || ('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 91;} break; case 90: *rlt_sch = RS_FLOAT; if (cur_chr == 'I') {*rlt_sch = RS_STR; return 23;} if (cur_chr == 'i') {*rlt_sch = RS_STR; return 39;} if (cur_chr == 'E' || cur_chr == 'e') {*rlt_sch = RS_STR; return 48;} if (cur_chr == '.' || ('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 91;} break; case 91: *rlt_sch = RS_FLOAT; if (cur_chr == 'E' || cur_chr == 'e') {*rlt_sch = RS_STR; return 48;} if (cur_chr == '.' || ('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 91;} break; case 92: *rlt_sch = RS_FLOAT; if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_FLOAT; return 92;} break; case 93: *rlt_sch = RS_FLOAT; if (('0' <= cur_chr && cur_chr <= '9') || cur_chr == '_') {*rlt_sch = RS_FLOAT; return 93;} break; case 94: *rlt_sch = RS_TIMESTAMP; break; case 95: *rlt_sch = RS_TIMESTAMP; if (cur_chr == '.') {*rlt_sch = RS_STR; return 58;} if (cur_chr == 'Z') {*rlt_sch = RS_TIMESTAMP; return 94;} if (cur_chr == '\t' || cur_chr == ' ') {*rlt_sch = RS_STR; return 28;} if (cur_chr == '+' || cur_chr == '-') {*rlt_sch = RS_STR; return 59;} break; case 96: *rlt_sch = RS_TIMESTAMP; if (cur_chr == ':') {*rlt_sch = RS_STR; return 63;} break; case 97: *rlt_sch = RS_TIMESTAMP; if (cur_chr == ':') {*rlt_sch = RS_STR; return 63;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_TIMESTAMP; return 96;} break; case 98: *rlt_sch = RS_TIMESTAMP; if (cur_chr == 'Z') {*rlt_sch = RS_TIMESTAMP; return 94;} if (cur_chr == '\t' || cur_chr == ' ') {*rlt_sch = RS_STR; return 28;} if (cur_chr == '+' || cur_chr == '-') {*rlt_sch = RS_STR; return 59;} if (('0' <= cur_chr && cur_chr <= '9')) {*rlt_sch = RS_TIMESTAMP; return 98;} break; case 99: *rlt_sch = RS_TIMESTAMP; if (cur_chr == '\t' || cur_chr == ' ') {*rlt_sch = RS_STR; return 47;} if (cur_chr == 'T' || cur_chr == 't') {*rlt_sch = RS_STR; return 55;} break; default: *rlt_sch = RS_STR; return SCH_STT_FRZ; } if (cur_chr != '\r' && cur_chr != '\n' && cur_chr != ' ' && cur_chr != 0) *rlt_sch = RS_STR; return SCH_STT_FRZ; } tree-sitter-yaml-0.7.2/src/tree_sitter/000077500000000000000000000000001507122265000200475ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/src/tree_sitter/alloc.h000066400000000000000000000017311507122265000213140ustar00rootroot00000000000000#ifndef TREE_SITTER_ALLOC_H_ #define TREE_SITTER_ALLOC_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR extern void *(*ts_current_malloc)(size_t size); extern void *(*ts_current_calloc)(size_t count, size_t size); extern void *(*ts_current_realloc)(void *ptr, size_t size); extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc #endif #ifndef ts_calloc #define ts_calloc ts_current_calloc #endif #ifndef ts_realloc #define ts_realloc ts_current_realloc #endif #ifndef ts_free #define ts_free ts_current_free #endif #else #ifndef ts_malloc #define ts_malloc malloc #endif #ifndef ts_calloc #define ts_calloc calloc #endif #ifndef ts_realloc #define ts_realloc realloc #endif #ifndef ts_free #define ts_free free #endif #endif #ifdef __cplusplus } #endif #endif // TREE_SITTER_ALLOC_H_ tree-sitter-yaml-0.7.2/src/tree_sitter/array.h000066400000000000000000000242771507122265000213520ustar00rootroot00000000000000#ifndef TREE_SITTER_ARRAY_H_ #define TREE_SITTER_ARRAY_H_ #ifdef __cplusplus extern "C" { #endif #include "./alloc.h" #include #include #include #include #include #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-variable" #endif #define Array(T) \ struct { \ T *contents; \ uint32_t size; \ uint32_t capacity; \ } /// Initialize an array. #define array_init(self) \ ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) /// Create an empty array. #define array_new() \ { NULL, 0, 0 } /// Get a pointer to the element at a given `index` in the array. #define array_get(self, _index) \ (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) /// Get a pointer to the first element in the array. #define array_front(self) array_get(self, 0) /// Get a pointer to the last element in the array. #define array_back(self) array_get(self, (self)->size - 1) /// Clear the array, setting its size to zero. Note that this does not free any /// memory allocated for the array's contents. #define array_clear(self) ((self)->size = 0) /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. #define array_reserve(self, new_capacity) \ _array__reserve((Array *)(self), array_elem_size(self), new_capacity) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. #define array_delete(self) _array__delete((Array *)(self)) /// Push a new `element` onto the end of the array. #define array_push(self, element) \ (_array__grow((Array *)(self), 1, array_elem_size(self)), \ (self)->contents[(self)->size++] = (element)) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ do { \ if ((count) == 0) break; \ _array__grow((Array *)(self), count, array_elem_size(self)); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. #define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. #define array_extend(self, count, contents) \ _array__splice( \ (Array *)(self), array_elem_size(self), (self)->size, \ 0, count, contents \ ) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. #define array_splice(self, _index, old_count, new_count, new_contents) \ _array__splice( \ (Array *)(self), array_elem_size(self), _index, \ old_count, new_count, new_contents \ ) /// Insert one `element` into the array at the given `index`. #define array_insert(self, _index, element) \ _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ _array__erase((Array *)(self), array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. #define array_assign(self, other) \ _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) /// Swap one array with another #define array_swap(self, other) \ _array__swap((Array *)(self), (Array *)(other)) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) /// Search a sorted array for a given `needle` value, using the given `compare` /// callback to determine the order. /// /// If an existing element is found to be equal to `needle`, then the `index` /// out-parameter is set to the existing value's index, and the `exists` /// out-parameter is set to true. Otherwise, `index` is set to an index where /// `needle` should be inserted in order to preserve the sorting, and `exists` /// is set to false. #define array_search_sorted_with(self, compare, needle, _index, _exists) \ _array__search_sorted(self, 0, compare, , needle, _index, _exists) /// Search a sorted array for a given `needle` value, using integer comparisons /// of a given struct field (specified with a leading dot) to determine the order. /// /// See also `array_search_sorted_with`. #define array_search_sorted_by(self, field, needle, _index, _exists) \ _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) /// Insert a given `value` into a sorted array, using the given `compare` /// callback to determine the order. #define array_insert_sorted_with(self, compare, value) \ do { \ unsigned _index, _exists; \ array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ if (!_exists) array_insert(self, _index, value); \ } while (0) /// Insert a given `value` into a sorted array, using integer comparisons of /// a given struct field (specified with a leading dot) to determine the order. /// /// See also `array_search_sorted_by`. #define array_insert_sorted_by(self, field, value) \ do { \ unsigned _index, _exists; \ array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ if (!_exists) array_insert(self, _index, value); \ } while (0) // Private typedef Array(void) Array; /// This is not what you're looking for, see `array_delete`. static inline void _array__delete(Array *self) { if (self->contents) { ts_free(self->contents); self->contents = NULL; self->size = 0; self->capacity = 0; } } /// This is not what you're looking for, see `array_erase`. static inline void _array__erase(Array *self, size_t element_size, uint32_t index) { assert(index < self->size); char *contents = (char *)self->contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, (self->size - index - 1) * element_size); self->size--; } /// This is not what you're looking for, see `array_reserve`. static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { if (new_capacity > self->capacity) { if (self->contents) { self->contents = ts_realloc(self->contents, new_capacity * element_size); } else { self->contents = ts_malloc(new_capacity * element_size); } self->capacity = new_capacity; } } /// This is not what you're looking for, see `array_assign`. static inline void _array__assign(Array *self, const Array *other, size_t element_size) { _array__reserve(self, element_size, other->size); self->size = other->size; memcpy(self->contents, other->contents, self->size * element_size); } /// This is not what you're looking for, see `array_swap`. static inline void _array__swap(Array *self, Array *other) { Array swap = *other; *other = *self; *self = swap; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { uint32_t new_size = self->size + count; if (new_size > self->capacity) { uint32_t new_capacity = self->capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; _array__reserve(self, element_size, new_capacity); } } /// This is not what you're looking for, see `array_splice`. static inline void _array__splice(Array *self, size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { uint32_t new_size = self->size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; assert(old_end <= self->size); _array__reserve(self, element_size, new_size); char *contents = (char *)self->contents; if (self->size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, (self->size - old_end) * element_size ); } if (new_count > 0) { if (elements) { memcpy( (contents + index * element_size), elements, new_count * element_size ); } else { memset( (contents + index * element_size), 0, new_count * element_size ); } } self->size += new_count - old_count; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. /// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. #define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ do { \ *(_index) = start; \ *(_exists) = false; \ uint32_t size = (self)->size - *(_index); \ if (size == 0) break; \ int comparison; \ while (size > 1) { \ uint32_t half_size = size / 2; \ uint32_t mid_index = *(_index) + half_size; \ comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ if (comparison <= 0) *(_index) = mid_index; \ size -= half_size; \ } \ comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ if (comparison == 0) *(_exists) = true; \ else if (comparison < 0) *(_index) += 1; \ } while (0) /// Helper macro for the `_sorted_by` routines below. This takes the left (existing) /// parameter by reference in order to work with the generic sorting function above. #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER #pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif #ifdef __cplusplus } #endif #endif // TREE_SITTER_ARRAY_H_ tree-sitter-yaml-0.7.2/src/tree_sitter/parser.h000066400000000000000000000167101507122265000215210ustar00rootroot00000000000000#ifndef TREE_SITTER_PARSER_H_ #define TREE_SITTER_PARSER_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include #define ts_builtin_sym_error ((TSSymbol)-1) #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 #ifndef TREE_SITTER_API_H_ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; typedef struct TSLanguageMetadata { uint8_t major_version; uint8_t minor_version; uint8_t patch_version; } TSLanguageMetadata; #endif typedef struct { TSFieldId field_id; uint8_t child_index; bool inherited; } TSFieldMapEntry; // Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; } TSMapSlice; typedef struct { bool visible; bool named; bool supertype; } TSSymbolMetadata; typedef struct TSLexer TSLexer; struct TSLexer { int32_t lookahead; TSSymbol result_symbol; void (*advance)(TSLexer *, bool); void (*mark_end)(TSLexer *); uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); void (*log)(const TSLexer *, const char *, ...); }; typedef enum { TSParseActionTypeShift, TSParseActionTypeReduce, TSParseActionTypeAccept, TSParseActionTypeRecover, } TSParseActionType; typedef union { struct { uint8_t type; TSStateId state; bool extra; bool repetition; } shift; struct { uint8_t type; uint8_t child_count; TSSymbol symbol; int16_t dynamic_precedence; uint16_t production_id; } reduce; uint8_t type; } TSParseAction; typedef struct { uint16_t lex_state; uint16_t external_lex_state; } TSLexMode; typedef struct { uint16_t lex_state; uint16_t external_lex_state; uint16_t reserved_word_set_id; } TSLexerMode; typedef union { TSParseAction action; struct { uint8_t count; bool reusable; } entry; } TSParseActionEntry; typedef struct { int32_t start; int32_t end; } TSCharacterRange; struct TSLanguage { uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; uint32_t external_token_count; uint32_t state_count; uint32_t large_state_count; uint32_t production_id_count; uint32_t field_count; uint16_t max_alias_sequence_length; const uint16_t *parse_table; const uint16_t *small_parse_table; const uint32_t *small_parse_table_map; const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; struct { const bool *states; const TSSymbol *symbol_map; void *(*create)(void); void (*destroy)(void *); bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; const char *name; const TSSymbol *reserved_words; uint16_t max_reserved_word_set_size; uint32_t supertype_count; const TSSymbol *supertype_symbols; const TSMapSlice *supertype_map_slices; const TSSymbol *supertype_map_entries; TSLanguageMetadata metadata; }; static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { index = mid_index; } size -= half_size; } const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } /* * Lexer Macros */ #ifdef _MSC_VER #define UNUSED __pragma(warning(suppress : 4101)) #else #define UNUSED __attribute__((unused)) #endif #define START_LEXER() \ bool result = false; \ bool skip = false; \ UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ next_state: \ lexer->advance(lexer, skip); \ start: \ skip = false; \ lookahead = lexer->lookahead; #define ADVANCE(state_value) \ { \ state = state_value; \ goto next_state; \ } #define ADVANCE_MAP(...) \ { \ static const uint16_t map[] = { __VA_ARGS__ }; \ for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ if (map[i] == lookahead) { \ state = map[i + 1]; \ goto next_state; \ } \ } \ } #define SKIP(state_value) \ { \ skip = true; \ state = state_value; \ goto next_state; \ } #define ACCEPT_TOKEN(symbol_value) \ result = true; \ lexer->result_symbol = symbol_value; \ lexer->mark_end(lexer); #define END_STATE() return result; /* * Parse Table Macros */ #define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id #define ACTIONS(id) id #define SHIFT(state_value) \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .state = (state_value) \ } \ }} #define SHIFT_REPEAT(state_value) \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .state = (state_value), \ .repetition = true \ } \ }} #define SHIFT_EXTRA() \ {{ \ .shift = { \ .type = TSParseActionTypeShift, \ .extra = true \ } \ }} #define REDUCE(symbol_name, children, precedence, prod_id) \ {{ \ .reduce = { \ .type = TSParseActionTypeReduce, \ .symbol = symbol_name, \ .child_count = children, \ .dynamic_precedence = precedence, \ .production_id = prod_id \ }, \ }} #define RECOVER() \ {{ \ .type = TSParseActionTypeRecover \ }} #define ACCEPT_INPUT() \ {{ \ .type = TSParseActionTypeAccept \ }} #ifdef __cplusplus } #endif #endif // TREE_SITTER_PARSER_H_ tree-sitter-yaml-0.7.2/test/000077500000000000000000000000001507122265000157065ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/test/corpus/000077500000000000000000000000001507122265000172215ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/test/corpus/02_preview.txt000066400000000000000000001023671507122265000217550ustar00rootroot00000000000000============================================================================ Sequence of Scalars (ball players) ============================================================================ - Mark McGwire - Sammy Sosa - Ken Griffey ---------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))))))) ============================================================================ Mapping Scalars to Scalars (player statistics) ============================================================================ hr: 65 # Home runs avg: 0.278 # Batting average rbi: 147 # Runs Batted In ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (comment) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar)))) (comment) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (comment))))) ============================================================================ Mapping Scalars to Sequences (ball clubs in each league) ============================================================================ american: - Boston Red Sox - Detroit Tigers - New York Yankees national: - New York Mets - Chicago Cubs - Atlanta Braves ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar))))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar))))))))))) ============================================================================ Sequence of Mappings (players’ statistics) ============================================================================ - name: Mark McGwire hr: 65 avg: 0.278 - name: Sammy Sosa hr: 63 avg: 0.288 ---------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar))))))) (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar))))))))))) ============================================================================ Sequence of Sequences ============================================================================ - [name , hr, avg ] - [Mark McGwire, 65, 0.278] - [Sammy Sosa , 63, 0.288] ---------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))) (block_sequence_item (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (float_scalar)))))) (block_sequence_item (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (float_scalar)))))))))) ============================================================================ Mapping of Mappings ============================================================================ Mark McGwire: {hr: 65, avg: 0.278} Sammy Sosa: { hr: 63, avg: 0.288 } ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar))))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar))))))))))) ============================================================================ Two Documents in a Stream (each with a leading comment) ============================================================================ # Ranking of 1998 home runs --- - Mark McGwire - Sammy Sosa - Ken Griffey # Team ranking --- - Chicago Cubs - St Louis Cardinals ---------------------------------------------------------------------------- (stream (comment) (document (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (comment)))) (document (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))))))) ============================================================================ Play by Play Feed from a Game ============================================================================ --- time: 20:03:20 player: Sammy Sosa action: strike (miss) ... --- time: 20:03:47 player: Sammy Sosa action: grand slam ... ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))) (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))) ============================================================================ Single Document with Two Comments ============================================================================ --- hr: # 1998 hr ranking - Mark McGwire - Sammy Sosa rbi: # 1998 rbi ranking - Sammy Sosa - Ken Griffey ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (comment) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar))))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (comment) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar))))))))))) ============================================================================ Node for “Sammy Sosa” appears twice in this document ============================================================================ --- hr: - Mark McGwire # Following node labeled SS - &SS Sammy Sosa rbi: - *SS # Subsequent occurrence - Ken Griffey ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (comment) (block_sequence_item (flow_node (anchor (anchor_name)) (plain_scalar (string_scalar))))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_sequence (block_sequence_item (flow_node (alias (alias_name)))) (comment) (block_sequence_item (flow_node (plain_scalar (string_scalar))))))))))) ============================================================================ Mapping between Sequences ============================================================================ ? - Detroit Tigers - Chicago cubs : - 2001-07-23 ? [ New York Yankees, Atlanta Braves ] : [ 2001-07-02, 2001-08-12, 2001-08-14 ] ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))))) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar))))))) (block_mapping_pair (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))) (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))))) ============================================================================ Compact Nested Mapping ============================================================================ --- # Products purchased - item : Super Hoop quantity: 1 - item : Basketball quantity: 4 - item : Big Shoes quantity: 1 ---------------------------------------------------------------------------- (stream (document (comment) (block_node (block_sequence (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))))))) (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))))))) (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))))))))))) ============================================================================ In literals, newlines are preserved ============================================================================ # ASCII Art --- | \//||\/|| // || ||__ ---------------------------------------------------------------------------- (stream (comment) (document (block_node (block_scalar)))) ============================================================================ In the folded scalars, newlines become spaces ============================================================================ --- > Mark McGwire's year was crippled by a knee injury. ---------------------------------------------------------------------------- (stream (document (block_node (block_scalar)))) ============================================================================ Folded newlines are preserved for "more indented" and blank lines ============================================================================ > Sammy Sosa completed another fine season with great stats. 63 Home Runs 0.288 Batting Average What a year! ---------------------------------------------------------------------------- (stream (document (block_node (block_scalar)))) ============================================================================ Indentation determines scope ============================================================================ name: Mark McGwire accomplishment: > Mark set a major league home run record in 1998. stats: | 65 Home Runs 0.278 Batting Average ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))))))) ============================================================================ Quoted Scalars ============================================================================ unicode: "Sosa did fine.\u263A" control: "\b1998\t1999\t2000\n" hex esc: "\x0d\x0a is \r\n" single: '"Howdy!" he cried.' quoted: ' # Not a ''comment''.' tie-fighter: '|\-*-/|' ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar (escape_sequence)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (single_quote_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (single_quote_scalar (escape_sequence) (escape_sequence)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (single_quote_scalar))))))) ============================================================================ Multi-line Flow Scalars ============================================================================ plain: This unquoted scalar spans many lines. quoted: "So does this quoted scalar.\n" ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar (escape_sequence)))))))) ============================================================================ Integers ============================================================================ canonical: 12345 decimal: +12345 octal: 0o14 hexadecimal: 0xC ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))))))) ============================================================================ Floating Point ============================================================================ canonical: 1.23015e+3 exponential: 12.3015e+02 fixed: 1230.15 negative infinity: -.inf not a number: .NaN ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (float_scalar)))))))) ============================================================================ Miscellaneous ============================================================================ null: booleans: [ true, false ] string: '012345' ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (null_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (boolean_scalar))) (flow_node (plain_scalar (boolean_scalar)))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (single_quote_scalar))))))) ============================================================================ Timestamps ============================================================================ canonical: 2001-12-15T02:59:43.1Z iso8601: 2001-12-14t21:59:43.10-05:00 spaced: 2001-12-14 21:59:43.10 -5 date: 2002-12-14 ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))) ============================================================================ Various Explicit Tags ============================================================================ --- not-date: !!str 2002-04-28 picture: !!binary | R0lGODlhDAAMAIQAAP//9/X 17unp5WZmZgAAAOfn515eXv Pz7Y6OjuDg4J+fn5OTk6enp 56enmleECcgggoBADs= application specific tag: !something | The semantics of the tag above may be different for different documents. ---------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (tag) (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (tag) (block_scalar))))))) ============================================================================ Global Tags ============================================================================ %TAG ! tag:clarkevans.com,2002: --- !shape # Use the ! handle for presenting # tag:clarkevans.com,2002:circle - !circle center: &ORIGIN {x: 73, y: 129} radius: 7 - !line start: *ORIGIN finish: { x: 89, y: 102 } - !label start: *ORIGIN color: 0xFFEEBB text: Pretty vector drawing. ---------------------------------------------------------------------------- (stream (document (tag_directive (tag_handle) (tag_prefix)) (block_node (tag) (comment) (comment) (block_sequence (block_sequence_item (block_node (tag) (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (anchor (anchor_name)) (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))))))) (block_sequence_item (block_node (tag) (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (alias (alias_name)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))))))))) (block_sequence_item (block_node (tag) (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (alias (alias_name)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))))))) ============================================================================ Unordered Sets ============================================================================ # Sets are represented as a # Mapping where each key is # associated with a null value --- !!set ? Mark McGwire ? Sammy Sosa ? Ken Griff ---------------------------------------------------------------------------- (stream (comment) (comment) (comment) (document (block_node (tag) (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar)))))))) ============================================================================ Ordered Mappings ============================================================================ # Ordered maps are represented as # A sequence of mappings, with # each mapping having one key --- !!omap - Mark McGwire: 65 - Sammy Sosa: 63 - Ken Griffy: 58 ---------------------------------------------------------------------------- (stream (comment) (comment) (comment) (document (block_node (tag) (block_sequence (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))))))) (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))))))) (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))))))))))) tree-sitter-yaml-0.7.2/test/corpus/05_characters.txt000066400000000000000000000176121507122265000224140ustar00rootroot00000000000000================================================================================ Byte Order Mark ================================================================================ # Comment only. -------------------------------------------------------------------------------- (stream (comment)) ================================================================================ Invalid Byte Order Mark :error ================================================================================ - Invalid use of BOM  - Inside a document. -------------------------------------------------------------------------------- ================================================================================ Block Structure Indicators ================================================================================ sequence: - one - two mapping: ? sky : blue sea : green -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar))))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Flow Collection Indicators ================================================================================ sequence: [ one, two, ] mapping: { sky: blue, sea: green } -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Comment Indicator ================================================================================ # Comment only. -------------------------------------------------------------------------------- (stream (comment)) ================================================================================ Node Property Indicators ================================================================================ anchored: !local &anchor value alias: *anchor -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (anchor (anchor_name)) (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (alias (alias_name)))))))) ================================================================================ Block Scalar Indicators ================================================================================ literal: | some text folded: > some text -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))))))) ================================================================================ Quoted Scalar Indicators ================================================================================ single: 'text' double: "text" -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (single_quote_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar))))))) ================================================================================ Directive Indicator ================================================================================ %YAML 1.2 --- text -------------------------------------------------------------------------------- (stream (document (yaml_directive (yaml_version)) (flow_node (plain_scalar (string_scalar))))) ================================================================================ Invalid use of Reserved Indicators :error ================================================================================ commercial-at: @text grave-accent: `text -------------------------------------------------------------------------------- ================================================================================ Line Break Characters ================================================================================ | Line break (no glyph) Line break (glyphed) -------------------------------------------------------------------------------- (stream (document (block_node (block_scalar)))) ================================================================================ Tabs and Spaces ================================================================================ # Tabs and spaces quoted: "Quoted " block: | void main() { printf("Hello, world!\n"); } -------------------------------------------------------------------------------- (stream (comment) (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))))))) ================================================================================ Escaped Characters ================================================================================ "Fun with \\ \" \a \b \e \f \n \r \t \v \0 \ \_ \N \L \P \x41 \u0041 \U00000041" -------------------------------------------------------------------------------- (stream (document (flow_node (double_quote_scalar (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence))))) ================================================================================ Invalid Escaped Characters :error ================================================================================ Bad escapes: "\c \xq-" -------------------------------------------------------------------------------- tree-sitter-yaml-0.7.2/test/corpus/06_structures.txt000066400000000000000000000402551507122265000225200ustar00rootroot00000000000000============================================================================|||| Indentation Spaces ============================================================================|||| # Leading comment line spaces are # neither content nor indentation. Not indented: By one space: | By four spaces Flow style: [ # Leading spaces By two, # in flow style Also by two, # are neither Still by two # content nor ] # indentation. ----------------------------------------------------------------------------|||| (stream (comment) (comment) (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (comment) (flow_node (plain_scalar (string_scalar))) (comment) (flow_node (plain_scalar (string_scalar))) (comment) (flow_node (plain_scalar (string_scalar))) (comment)))) (comment)))))))) ============================================================================|||| Indentation Indicators ============================================================================|||| ? a : - b - - c - d ----------------------------------------------------------------------------|||| (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))))))))))))) ============================================================================|||| Separation Spaces ============================================================================|||| - foo: bar - - baz - baz ----------------------------------------------------------------------------|||| (stream (document (block_node (block_sequence (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))) (block_sequence_item (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar))))))))))) ============================================================================|||| Line Prefixes ============================================================================|||| plain: text lines quoted: "text lines" block: | text lines ----------------------------------------------------------------------------|||| (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))))))) ============================================================================|||| Empty Lines ============================================================================|||| Folding: "Empty line as a line feed" Chomping: | Clipped empty lines ----------------------------------------------------------------------------|||| (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))))))) ============================================================================|||| Line Folding ============================================================================|||| >- trimmed as space ----------------------------------------------------------------------------|||| (stream (document (block_node (block_scalar)))) ============================================================================|||| Block Folding ============================================================================|||| > foo bar baz ----------------------------------------------------------------------------|||| (stream (document (block_node (block_scalar)))) ============================================================================|||| Flow Folding ============================================================================|||| " foo bar baz " ----------------------------------------------------------------------------|||| (stream (document (flow_node (double_quote_scalar)))) ============================================================================|||| Separated Comment ============================================================================|||| key: # Comment value ----------------------------------------------------------------------------|||| (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (comment) (flow_node (plain_scalar (string_scalar)))))))) ============================================================================|||| Comment Lines ============================================================================|||| # Comment ----------------------------------------------------------------------------|||| (stream (comment)) ============================================================================|||| Multi-Line Comments ============================================================================|||| key: # Comment # lines value ----------------------------------------------------------------------------|||| (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (comment) (comment) (flow_node (plain_scalar (string_scalar)))))))) ============================================================================|||| Separation Spaces ============================================================================|||| { first: Sammy, last: Sosa }: # Statistics: hr: # Home runs 65 avg: # Average 0.278 ----------------------------------------------------------------------------|||| (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))) (comment) (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (comment) (flow_node (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (comment) (flow_node (plain_scalar (float_scalar))))))))))) ============================================================================|||| Reserved Directives ============================================================================|||| %FOO bar baz # Should be ignored # with a warning. --- "foo" ----------------------------------------------------------------------------|||| (stream (document (reserved_directive (directive_name) (directive_parameter) (directive_parameter)) (comment) (comment) (flow_node (double_quote_scalar)))) ============================================================================|||| “YAML” directive ============================================================================|||| %YAML 1.3 # Attempt parsing # with a warning --- "foo" ----------------------------------------------------------------------------|||| (stream (document (yaml_directive (yaml_version)) (comment) (comment) (flow_node (double_quote_scalar)))) ============================================================================|||| Invalid Repeated YAML directive :error ============================================================================|||| %YAML 1.2 %YAML 1.1 foo ----------------------------------------------------------------------------|||| ============================================================================|||| “TAG” directive ============================================================================|||| %TAG !yaml! tag:yaml.org,2002: --- !yaml!str "foo" ----------------------------------------------------------------------------|||| (stream (document (tag_directive (tag_handle) (tag_prefix)) (flow_node (tag) (double_quote_scalar)))) ============================================================================|||| Invalid Repeated TAG directive :error ============================================================================|||| %TAG ! !foo %TAG ! !foo bar ----------------------------------------------------------------------------|||| ============================================================================|||| Primary Tag Handle ============================================================================|||| # Private !foo "bar" ... # Global %TAG ! tag:example.com,2000:app/ --- !foo "bar" ----------------------------------------------------------------------------|||| (stream (comment) (document (flow_node (tag) (double_quote_scalar))) (comment) (document (tag_directive (tag_handle) (tag_prefix)) (flow_node (tag) (double_quote_scalar)))) ============================================================================|||| Secondary Tag Handle ============================================================================|||| %TAG !! tag:example.com,2000:app/ --- !!int 1 - 3 # Interval, not integer ----------------------------------------------------------------------------|||| (stream (document (tag_directive (tag_handle) (tag_prefix)) (flow_node (tag) (plain_scalar (string_scalar)))) (comment)) ============================================================================|||| Tag Handles ============================================================================|||| %TAG !e! tag:example.com,2000:app/ --- !e!foo "bar" ----------------------------------------------------------------------------|||| (stream (document (tag_directive (tag_handle) (tag_prefix)) (flow_node (tag) (double_quote_scalar)))) ============================================================================|||| Local Tag Prefix ============================================================================|||| %TAG !m! !my- --- # Bulb here !m!light fluorescent ... %TAG !m! !my- --- # Color here !m!light green ----------------------------------------------------------------------------|||| (stream (document (tag_directive (tag_handle) (tag_prefix)) (comment) (flow_node (tag) (plain_scalar (string_scalar)))) (document (tag_directive (tag_handle) (tag_prefix)) (comment) (flow_node (tag) (plain_scalar (string_scalar))))) ============================================================================|||| Global Tag Prefix ============================================================================|||| %TAG !e! tag:example.com,2000:app/ --- - !e!foo "bar" ----------------------------------------------------------------------------|||| (stream (document (tag_directive (tag_handle) (tag_prefix)) (block_node (block_sequence (block_sequence_item (flow_node (tag) (double_quote_scalar))))))) ============================================================================|||| Node Properties ============================================================================|||| !!str &a1 "foo": !!str bar &a2 baz : *a1 ----------------------------------------------------------------------------|||| (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (tag) (anchor (anchor_name)) (double_quote_scalar)) (flow_node (tag) (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (anchor (anchor_name)) (plain_scalar (string_scalar))) (flow_node (alias (alias_name)))))))) ============================================================================|||| Verbatim Tags ============================================================================|||| ! foo : ! baz ----------------------------------------------------------------------------|||| (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (tag) (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (string_scalar)))))))) ============================================================================|||| Invalid Verbatim Tags ============================================================================|||| - ! foo - !<$:?> bar ----------------------------------------------------------------------------|||| (stream (document (block_node (block_sequence (block_sequence_item (flow_node (tag) (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (tag) (plain_scalar (string_scalar)))))))) ============================================================================|||| Tag Shorthands ============================================================================|||| %TAG !e! tag:example.com,2000:app/ --- - !local foo - !!str bar - !e!tag%21 baz ----------------------------------------------------------------------------|||| (stream (document (tag_directive (tag_handle) (tag_prefix)) (block_node (block_sequence (block_sequence_item (flow_node (tag) (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (tag) (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (tag) (plain_scalar (string_scalar)))))))) ============================================================================|||| Invalid Tag Shorthands ============================================================================|||| %TAG !e! tag:example,2000:app/ --- - !e! foo - !h!bar baz ----------------------------------------------------------------------------|||| (ERROR (tag_directive (tag_handle) (tag_prefix)) (block_sequence_item)) ============================================================================|||| Non-Specific Tags ============================================================================|||| # Assuming conventional resolution: - "12" - 12 - ! 12 ----------------------------------------------------------------------------|||| (stream (comment) (document (block_node (block_sequence (block_sequence_item (flow_node (double_quote_scalar))) (block_sequence_item (flow_node (plain_scalar (integer_scalar)))) (block_sequence_item (flow_node (tag) (plain_scalar (integer_scalar)))))))) ============================================================================|||| Node Anchors ============================================================================|||| First occurrence: &anchor Value Second occurrence: *anchor ----------------------------------------------------------------------------|||| (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (anchor (anchor_name)) (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (alias (alias_name)))))))) tree-sitter-yaml-0.7.2/test/corpus/07_flows.txt000066400000000000000000000402721507122265000214270ustar00rootroot00000000000000================================================================================ Alias Nodes ================================================================================ First occurrence: &anchor Foo Second occurrence: *anchor Override anchor: &anchor Bar Reuse anchor: *anchor -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (anchor (anchor_name)) (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (alias (alias_name)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (anchor (anchor_name)) (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (alias (alias_name)))))))) ================================================================================ Empty Content ================================================================================ { foo : !!str, !!str : bar, } -------------------------------------------------------------------------------- (stream (document (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag))) (flow_pair (flow_node (tag)) (flow_node (plain_scalar (string_scalar)))))))) ================================================================================ Completely Empty Flow Nodes ================================================================================ { ? foo :, : bar, } -------------------------------------------------------------------------------- (stream (document (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar)))))))) ================================================================================ Double Quoted Implicit Keys ================================================================================ "implicit block key" : [ "implicit flow key" : value, ] -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (double_quote_scalar)) (flow_node (flow_sequence (flow_pair (flow_node (double_quote_scalar)) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Double Quoted Line Breaks ================================================================================ "folded to a space, to a line feed, or \ \ non-content" -------------------------------------------------------------------------------- (stream (document (flow_node (double_quote_scalar (escape_sequence) (escape_sequence))))) ================================================================================ Double Quoted Lines ================================================================================ " 1st non-empty 2nd non-empty 3rd non-empty " -------------------------------------------------------------------------------- (stream (document (flow_node (double_quote_scalar)))) ================================================================================ Single Quoted Characters ================================================================================ 'here''s to "quotes"' -------------------------------------------------------------------------------- (stream (document (flow_node (single_quote_scalar (escape_sequence))))) ================================================================================ Single Quoted Implicit Keys ================================================================================ 'implicit block key' : [ 'implicit flow key' : value, ] -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (single_quote_scalar)) (flow_node (flow_sequence (flow_pair (flow_node (single_quote_scalar)) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Single Quoted Lines ================================================================================ ' 1st non-empty 2nd non-empty 3rd non-empty ' -------------------------------------------------------------------------------- (stream (document (flow_node (single_quote_scalar)))) ================================================================================ Plain Characters ================================================================================ # Outside flow collection: - ::vector - ": - ()" - Up, up, and away! - -123 - http://example.com/foo#bar # Inside flow collection: - [ ::vector, ": - ()", "Up, up and away!", -123, http://example.com/foo#bar ] -------------------------------------------------------------------------------- (stream (comment) (document (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (double_quote_scalar))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (integer_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (comment) (block_sequence_item (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar)) (flow_node (double_quote_scalar)) (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (string_scalar)))))))))) ================================================================================ Plain Implicit Keys ================================================================================ implicit block key : [ implicit flow key : value, ] -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Plain Lines ================================================================================ 1st non-empty 2nd non-empty 3rd non-empty -------------------------------------------------------------------------------- (stream (document (flow_node (plain_scalar (string_scalar))))) ================================================================================ Flow Sequence ================================================================================ - [ one, two, ] - [three ,four] -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))) (block_sequence_item (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))))) ================================================================================ Flow Sequence Entries ================================================================================ [ "double quoted", 'single quoted', plain text, [ nested ], single: pair, ] -------------------------------------------------------------------------------- (stream (document (flow_node (flow_sequence (flow_node (double_quote_scalar)) (flow_node (single_quote_scalar)) (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))) ================================================================================ Flow Mappings ================================================================================ - { one : two , three: four , } - {five: six,seven : eight} -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))) (block_sequence_item (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Flow Mapping Entries ================================================================================ { ? explicit: entry, implicit: entry, ? } -------------------------------------------------------------------------------- (stream (document (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (flow_pair))))) ================================================================================ Flow Mapping Separate Values ================================================================================ { unquoted : "separate", http://foo.com, omitted value:, : omitted key, } -------------------------------------------------------------------------------- (stream (document (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar))) (flow_node (plain_scalar (string_scalar))) (flow_pair (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar)))))))) ================================================================================ Flow Mapping Adjacent Values ================================================================================ { "adjacent":value, "readable": value, "empty": } -------------------------------------------------------------------------------- (stream (document (flow_node (flow_mapping (flow_pair (flow_node (double_quote_scalar)) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (double_quote_scalar)) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (double_quote_scalar))))))) ================================================================================ Single Pair Flow Mappings ================================================================================ [ foo: bar ] -------------------------------------------------------------------------------- (stream (document (flow_node (flow_sequence (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))) ================================================================================ Single Pair Explicit Entry ================================================================================ [ ? foo bar : baz ] -------------------------------------------------------------------------------- (stream (document (flow_node (flow_sequence (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))) ================================================================================ Single Pair Implicit Entries ================================================================================ - [ YAML : separate ] - [ : empty key entry ] - [ {JSON: like}:adjacent ] -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (flow_node (flow_sequence (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))) (block_sequence_item (flow_node (flow_sequence (flow_pair (flow_node (plain_scalar (string_scalar))))))) (block_sequence_item (flow_node (flow_sequence (flow_pair (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Invalid Implicit Keys ================================================================================ [ foo bar: invalid, "foo...>1K characters...bar": invalid ] -------------------------------------------------------------------------------- (stream (document (flow_node (flow_sequence (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (double_quote_scalar)) (flow_node (plain_scalar (string_scalar)))))))) ================================================================================ Flow Content ================================================================================ - [ a, b ] - { a: b } - "a" - 'b' - c -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (flow_node (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))) (block_sequence_item (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))) (block_sequence_item (flow_node (double_quote_scalar))) (block_sequence_item (flow_node (single_quote_scalar))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))))))) ================================================================================ Flow Nodes ================================================================================ - !!str "a" - 'b' - &anchor "c" - *anchor - !!str -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (flow_node (tag) (double_quote_scalar))) (block_sequence_item (flow_node (single_quote_scalar))) (block_sequence_item (flow_node (anchor (anchor_name)) (double_quote_scalar))) (block_sequence_item (flow_node (alias (alias_name)))) (block_sequence_item (flow_node (tag))))))) tree-sitter-yaml-0.7.2/test/corpus/08_blocks.txt000066400000000000000000000417571507122265000215640ustar00rootroot00000000000000================================================================================ Block Scalar Header ================================================================================ - | # Empty header literal - >1 # Indentation indicator folded - |+ # Chomping indicator keep - >1- # Both indicators strip -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (block_node (block_scalar (comment)))) (block_sequence_item (block_node (block_scalar (comment)))) (block_sequence_item (block_node (block_scalar (comment)))) (block_sequence_item (block_node (block_scalar (comment)))))))) ================================================================================ Block Indentation Indicator ================================================================================ - | detected - > # detected - |1 explicit - > detected -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (block_node (block_scalar))) (block_sequence_item (block_node (block_scalar))) (block_sequence_item (block_node (block_scalar))) (block_sequence_item (block_node (block_scalar))))))) ================================================================================ Chomping Final Line Break ================================================================================ strip: |- text clip: | text keep: |+ text -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))))))) ================================================================================ Chomping Trailing Lines ================================================================================ # Strip # Comments: strip: |- # text ⇓ # Clip # comments: clip: | # text # Keep # comments: keep: |+ # text # Trail # comments. -------------------------------------------------------------------------------- (stream (comment) (comment) (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (comment) (comment) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (comment) (comment) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (comment) (comment))))) ================================================================================ Empty Scalar Chomping ================================================================================ strip: >- clip: > keep: |+ -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))))))) ================================================================================ Literal Scalar ================================================================================ | literal text -------------------------------------------------------------------------------- (stream (document (block_node (block_scalar)))) ================================================================================ Literal Content ================================================================================ | literal text # Comment -------------------------------------------------------------------------------- (stream (document (block_node (block_scalar))) (comment)) ================================================================================ Folded Scalar ================================================================================ > folded text -------------------------------------------------------------------------------- (stream (document (block_node (block_scalar)))) ================================================================================ Folded Lines ================================================================================ > folded line next line * bullet * list * lines last line # Comment -------------------------------------------------------------------------------- (stream (document (block_node (block_scalar))) (comment)) ================================================================================ More Indented Lines ================================================================================ > folded line next line * bullet * list * lines last line # Comment -------------------------------------------------------------------------------- (stream (document (block_node (block_scalar))) (comment)) ================================================================================ Empty Separation Lines ================================================================================ > folded line next line * bullet * list * line last line # Comment -------------------------------------------------------------------------------- (stream (document (block_node (block_scalar))) (comment)) ================================================================================ Final Empty Lines ================================================================================ > folded line next line * bullet * list * line last line # Comment -------------------------------------------------------------------------------- (stream (document (block_node (block_scalar))) (comment)) ================================================================================ Block Sequence ================================================================================ block sequence: - one - two : three -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))))))))) ================================================================================ Block Sequence Entry Types ================================================================================ - # Empty - | block node - - one # Compact - two # sequence - one: two # Compact mapping -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item) (comment) (block_sequence_item (block_node (block_scalar))) (block_sequence_item (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (comment) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (comment)))) (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (comment)))))))) ================================================================================ Block Mappings ================================================================================ block mapping: key: value -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Explicit Block Mapping Entries ================================================================================ ? explicit key # Empty value ? | block key : - one # Explicit compact - two # block value -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar)))) (comment) (block_mapping_pair (block_node (block_scalar)) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (comment) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (comment)))))))) ================================================================================ Implicit Block Mapping Entries ================================================================================ plain key: in-line value : # Both empty "quoted key": - entry -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair) (comment) (block_mapping_pair (flow_node (double_quote_scalar)) (block_node (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Compact Block Mappings ================================================================================ - sun: yellow - ? earth: blue : moon: white -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))) (block_sequence_item (block_node (block_mapping (block_mapping_pair (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))) (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))))))))) ================================================================================ Block Node Types ================================================================================ - "flow in block" - > Block scalar - !!map # Block collection foo : bar -------------------------------------------------------------------------------- (stream (document (block_node (block_sequence (block_sequence_item (flow_node (double_quote_scalar))) (block_sequence_item (block_node (block_scalar))) (block_sequence_item (block_node (tag) (comment) (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Block Scalar Nodes ================================================================================ literal: |2 value folded: !foo >1 value -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (tag) (block_scalar))))))) ================================================================================ Block Collection Nodes ================================================================================ sequence: !!seq - entry - !!seq - nested mapping: !!map foo: bar -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (tag) (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (block_node (tag) (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))))))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (tag) (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ Long string scalar (> SCHAR_MAX in length) ================================================================================ long: abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdef1234567890!@#$%^&*()_+{}|:"<>?`-=[]\;',./almostat128chars!: {} --- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_mapping)))))))))) tree-sitter-yaml-0.7.2/test/corpus/09_streams.txt000066400000000000000000000055561507122265000217630ustar00rootroot00000000000000============================================================================|||| Document Prefix ============================================================================|||| # Comment # lines Document ----------------------------------------------------------------------------|||| (stream (comment) (comment) (document (flow_node (plain_scalar (string_scalar))))) ============================================================================|||| Document Markers ============================================================================|||| %YAML 1.2 --- Document ... # Suffix ----------------------------------------------------------------------------|||| (stream (document (yaml_directive (yaml_version)) (flow_node (plain_scalar (string_scalar)))) (comment)) ============================================================================|||| Bare Documents ============================================================================|||| Bare document ... # No document ... | %!PS-Adobe-2.0 # Not the first line ----------------------------------------------------------------------------|||| (stream (document (flow_node (plain_scalar (string_scalar)))) (comment) (document) (document (block_node (block_scalar)))) ============================================================================|||| Explicit Documents ============================================================================|||| --- { matches % : 20 } ... --- # Empty ... ----------------------------------------------------------------------------|||| (stream (document (flow_node (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar))))))) (document (comment))) ============================================================================|||| Directives Documents ============================================================================|||| %YAML 1.2 --- | %!PS-Adobe-2.0 ... %YAML1.2 --- # Empty ... ----------------------------------------------------------------------------|||| (stream (document (yaml_directive (yaml_version)) (block_node (block_scalar))) (document (reserved_directive (directive_name)) (comment))) ============================================================================|||| Stream ============================================================================|||| Document --- # Empty ... %YAML 1.2 --- matches %: 20 ----------------------------------------------------------------------------|||| (stream (document (flow_node (plain_scalar (string_scalar)))) (document (comment)) (document (yaml_directive (yaml_version)) (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (integer_scalar)))))))) tree-sitter-yaml-0.7.2/test/corpus/10_schemas.txt000066400000000000000000000267471507122265000217250ustar00rootroot00000000000000================================================================================ !!map Examples ================================================================================ Block style: !!map Clark : Evans Ingy : döt Net Oren : Ben-Kiki Flow style: !!map { Clark: Evans, Ingy: döt Net, Oren: Ben-Kiki } -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (tag) (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (flow_mapping (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))) (flow_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))))))))))) ================================================================================ !!seq Examples ================================================================================ Block style: !!seq - Clark Evans - Ingy döt Net - Oren Ben-Kiki Flow style: !!seq [ Clark Evans, Ingy döt Net, Oren Ben-Kiki ] -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (tag) (block_sequence (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar)))) (block_sequence_item (flow_node (plain_scalar (string_scalar))))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (flow_sequence (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (string_scalar)))))))))) ================================================================================ !!str Examples ================================================================================ Block style: !!str |- String: just a theory. Flow style: !!str "String: just a theory." -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (block_node (tag) (block_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (double_quote_scalar))))))) ================================================================================ !!null Examples ================================================================================ !!null null: value for null key key with null value: !!null null -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (tag) (plain_scalar (null_scalar))) (flow_node (plain_scalar (string_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (null_scalar)))))))) ================================================================================ !!bool Examples ================================================================================ YAML is a superset of JSON: !!bool true Pluto is a planet: !!bool false -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (boolean_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (boolean_scalar)))))))) ================================================================================ !!int Examples ================================================================================ negative: !!int -12 zero: !!int 0 positive: !!int 34 -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (integer_scalar)))))))) ================================================================================ !!float Examples ================================================================================ negative: !!float -1 zero: !!float 0 positive: !!float 2.3e4 infinity: !!float .inf not a number: !!float .nan -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (integer_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (float_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (float_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (tag) (plain_scalar (float_scalar)))))))) ================================================================================ JSON Tag Resolution ================================================================================ A null: null Booleans: [ true, false ] Integers: [ 0, -0, 3, -19 ] Floats: [ 0., -0.0, 12e03, -2E+05 ] Invalid: [ True, Null, 0o7, 0x3A, +12.3 ] -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (null_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (boolean_scalar))) (flow_node (plain_scalar (boolean_scalar)))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (integer_scalar)))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar)))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (boolean_scalar))) (flow_node (plain_scalar (null_scalar))) (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (float_scalar)))))))))) ================================================================================ Core Tag Resolution ================================================================================ A null: null Also a null: # Empty Not a null: "" Booleans: [ true, True, false, FALSE ] Integers: [ 0, 0o7, 0x3A, -19 ] Floats: [ 0., -0.0, .5, +12e03, -2E+05 ] Also floats: [ .inf, -.Inf, +.INF, .NAN ] -------------------------------------------------------------------------------- (stream (document (block_node (block_mapping (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (plain_scalar (null_scalar)))) (block_mapping_pair (flow_node (plain_scalar (string_scalar)))) (comment) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (double_quote_scalar))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (boolean_scalar))) (flow_node (plain_scalar (boolean_scalar))) (flow_node (plain_scalar (boolean_scalar))) (flow_node (plain_scalar (boolean_scalar)))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (integer_scalar))) (flow_node (plain_scalar (integer_scalar)))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar)))))) (block_mapping_pair (flow_node (plain_scalar (string_scalar))) (flow_node (flow_sequence (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar))) (flow_node (plain_scalar (float_scalar)))))))))) tree-sitter-yaml-0.7.2/test/highlight/000077500000000000000000000000001507122265000176555ustar00rootroot00000000000000tree-sitter-yaml-0.7.2/test/highlight/core.yaml000066400000000000000000000020301507122265000214640ustar00rootroot00000000000000A null: null # <- @property # ^ @punctuation.delimiter # ^^^^ @constant.builtin Also a null: # Empty # ^^^^^^^ @comment Not a null: "" # ^^ @string Booleans: [ true, True, false, FALSE ] # ^ @punctuation.bracket # ^ @punctuation.bracket # ^ @punctuation.delimiter # ^^^^ @boolean # ^^^^ @boolean # ^^^^^ @boolean # ^^^^^ @boolean Integers: [ 0, 0o7, 0x3A, -19 ] # ^ @number # ^^^ @number # ^^^^ @number # ^^^ @number Floats: [ 0., -0.0, .5, +12e03, -2E+05 ] # ^^ @number # ^^^^ @number # ^^ @number # ^^^^^^ @number # ^^^^^^ @number Also floats: [ .inf, -.Inf, +.INF, .NAN ] # ^^^^ @number # ^^^^^ @number # ^^^^^ @number # ^^^^ @number tree-sitter-yaml-0.7.2/tree-sitter.json000066400000000000000000000015361507122265000200760ustar00rootroot00000000000000{ "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json", "grammars": [ { "name": "yaml", "camelcase": "YAML", "title": "YAML", "scope": "source.yaml", "file-types": [ "yml", "yaml" ], "highlights": "queries/highlights.scm", "class-name": "TreeSitterYAML", "injection-regex": "^yaml$" } ], "metadata": { "version": "0.7.2", "license": "MIT", "description": "YAML grammar for tree-sitter", "authors": [ { "name": "Ika", "email": "ikatyang@gmail.com", "url": "https://github.com/ikatyang" }, { "name": "Amaan Qureshi", "email": "amaanq12@gmail.com" } ], "links": { "repository": "https://github.com/tree-sitter-grammars/tree-sitter-yaml" } } }