]> git.lizzy.rs Git - micro.git/commitdiff
Merge branch 'patch-1' of https://github.com/mardukbp/micro into mardukbp-patch-1
authorZachary Yedidia <zyedidia@gmail.com>
Sun, 24 Jul 2022 20:59:12 +0000 (13:59 -0700)
committerZachary Yedidia <zyedidia@gmail.com>
Sun, 24 Jul 2022 20:59:12 +0000 (13:59 -0700)
130 files changed:
.gitignore
.gitmodules
Makefile
README.md
assets/micro-logo-drop.svg [new file with mode: 0644]
assets/packaging/deb/micro.postinst [new file with mode: 0755]
assets/packaging/deb/micro.prerm [new file with mode: 0755]
cmd/micro/clean.go
cmd/micro/initlua.go
cmd/micro/micro.go
cmd/micro/micro_test.go
data/com.github.zyedidia.micro.metainfo.xml
go.mod
go.sum
internal/action/actions.go
internal/action/bindings.go
internal/action/bufpane.go
internal/action/command.go
internal/action/defaults_darwin.go
internal/action/defaults_other.go
internal/action/globals.go
internal/action/infopane.go
internal/action/keytree.go
internal/action/pane.go
internal/buffer/backup.go
internal/buffer/buffer.go
internal/buffer/cursor.go
internal/buffer/line_array.go
internal/buffer/message.go
internal/buffer/search.go
internal/buffer/settings.go
internal/clipboard/clipboard.go
internal/config/colorscheme.go
internal/config/rtfiles.go
internal/config/runtime.go [deleted file]
internal/config/settings.go
internal/display/bufwindow.go
internal/display/infowindow.go
internal/display/softwrap.go [new file with mode: 0644]
internal/display/statusline.go
internal/display/tabwindow.go
internal/display/window.go
internal/info/infobuffer.go
internal/lua/lua.go
internal/shell/job.go
internal/util/util.go
pkg/highlight/highlighter.go
runtime/colorschemes/atom-dark.micro
runtime/colorschemes/bubblegum.micro
runtime/colorschemes/cmc-16.micro
runtime/colorschemes/cmc-tc.micro
runtime/colorschemes/darcula.micro
runtime/colorschemes/default.micro
runtime/colorschemes/dracula-tc.micro [new file with mode: 0644]
runtime/colorschemes/dukedark-tc.micro
runtime/colorschemes/dukelight-tc.micro
runtime/colorschemes/dukeubuntu-tc.micro
runtime/colorschemes/geany.micro
runtime/colorschemes/gotham.micro
runtime/colorschemes/gruvbox-tc.micro
runtime/colorschemes/gruvbox.micro
runtime/colorschemes/material-tc.micro
runtime/colorschemes/monokai-dark.micro
runtime/colorschemes/monokai.micro
runtime/colorschemes/one-dark.micro
runtime/colorschemes/railscast.micro
runtime/colorschemes/simple.micro
runtime/colorschemes/solarized-tc.micro
runtime/colorschemes/solarized.micro
runtime/colorschemes/sunny-day.micro
runtime/colorschemes/twilight.micro
runtime/colorschemes/zenburn.micro
runtime/help/colors.md
runtime/help/commands.md
runtime/help/copypaste.md
runtime/help/defaultkeys.md
runtime/help/keybindings.md
runtime/help/options.md
runtime/help/plugins.md
runtime/help/tutorial.md
runtime/plugins/comment/comment.lua
runtime/plugins/linter/help/linter.md
runtime/plugins/linter/linter.lua
runtime/runtime.go [new file with mode: 0644]
runtime/syntax/c.yaml
runtime/syntax/conf.yaml [deleted file]
runtime/syntax/cpp.yaml
runtime/syntax/d.yaml
runtime/syntax/erlang.yaml
runtime/syntax/fortran.yaml
runtime/syntax/freebsd-kernel.yaml [new file with mode: 0644]
runtime/syntax/gemini.yaml [new file with mode: 0644]
runtime/syntax/git-commit.yaml
runtime/syntax/git-rebase-todo.yaml
runtime/syntax/gnuplot.yaml [new file with mode: 0644]
runtime/syntax/groovy.yaml [changed mode: 0755->0644]
runtime/syntax/hc.yaml [new file with mode: 0644]
runtime/syntax/javascript.yaml
runtime/syntax/julia.yaml
runtime/syntax/lisp.yaml
runtime/syntax/lua.yaml
runtime/syntax/make_headers.go
runtime/syntax/markdown.yaml
runtime/syntax/nim.yaml
runtime/syntax/nix.yaml [new file with mode: 0644]
runtime/syntax/nu.yaml [new file with mode: 0644]
runtime/syntax/odin.yaml [new file with mode: 0644]
runtime/syntax/patch.yaml
runtime/syntax/perl.yaml
runtime/syntax/perl6.yaml [deleted file]
runtime/syntax/php.yaml
runtime/syntax/python2.yaml
runtime/syntax/python3.yaml
runtime/syntax/raku.yaml [new file with mode: 0644]
runtime/syntax/ruby.yaml
runtime/syntax/rust.yaml
runtime/syntax/scala.yaml
runtime/syntax/sh.yaml
runtime/syntax/syntax_checker.go [deleted file]
runtime/syntax/syntax_converter.go
runtime/syntax/typescript.yaml
runtime/syntax/v.yaml
runtime/syntax/vue.yaml
tools/build-date.go
tools/build-version.go
tools/go-bindata [deleted submodule]
tools/info-plist.go
tools/package-deb.sh
tools/remove-nightly-assets.go
tools/testgen.go

index 62f97acf877bf0544432994cba3d5068d3e46c1f..2adb8d5fd895bf246edfc97c9beca9a6aeb83efe 100644 (file)
@@ -15,6 +15,5 @@ benchmark_results*
 tools/build-version
 tools/build-date
 tools/info-plist
-tools/bindata
 tools/vscode-tests/
 *.hdr
index dbbdf7b775e30ae77651441880a0d4990dc09798..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,3 +0,0 @@
-[submodule "tools/go-bindata"]
-       path = tools/go-bindata
-       url = https://github.com/zyedidia/go-bindata
index 91f84bae16bf3b23fa1d0f65f4dca1fdbc813353..fc9601aa5c4de5d24a00a15d6c7e643deac6c77d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: runtime
+.PHONY: runtime build generate build-quick
 
 VERSION = $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \
        go run tools/build-version.go)
@@ -7,52 +7,35 @@ DATE = $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \
        go run tools/build-date.go)
 ADDITIONAL_GO_LINKER_FLAGS = $(shell GOOS=$(shell go env GOHOSTOS) \
        GOARCH=$(shell go env GOHOSTARCH) \
-       go run tools/info-plist.go "$(VERSION)")
+       go run tools/info-plist.go "$(shell go env GOOS)" "$(VERSION)")
 GOBIN ?= $(shell go env GOPATH)/bin
 GOVARS = -X github.com/zyedidia/micro/v2/internal/util.Version=$(VERSION) -X github.com/zyedidia/micro/v2/internal/util.CommitHash=$(HASH) -X 'github.com/zyedidia/micro/v2/internal/util.CompileDate=$(DATE)'
 DEBUGVAR = -X github.com/zyedidia/micro/v2/internal/util.Debug=ON
 VSCODE_TESTS_BASE_URL = 'https://raw.githubusercontent.com/microsoft/vscode/e6a45f4242ebddb7aa9a229f85555e8a3bd987e2/src/vs/editor/test/common/model/'
 
-# Builds micro after checking dependencies but without updating the runtime
-build:
+build: generate build-quick
+
+build-quick:
        go build -trimpath -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
 
 build-dbg:
        go build -trimpath -ldflags "-s -w $(ADDITIONAL_GO_LINKER_FLAGS) $(DEBUGVAR)" ./cmd/micro
 
-build-tags: fetch-tags
+build-tags: fetch-tags generate
        go build -trimpath -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
 
-# Builds micro after building the runtime and checking dependencies
-build-all: runtime build
-
-# Builds micro without checking for dependencies
-build-quick:
-       go build -trimpath -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
+build-all: build
 
-# Same as 'build' but installs to $GOBIN afterward
-install:
+install: generate
        go install -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
 
-# Same as 'build-all' but installs to $GOBIN afterward
-install-all: runtime install
-
-# Same as 'build-quick' but installs to $GOBIN afterward
-install-quick:
-       go install -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)"  ./cmd/micro
+install-all: install
 
 fetch-tags:
        git fetch --tags
 
-# Builds the runtime
-runtime:
-       git submodule update --init
-       rm -f runtime/syntax/*.hdr
-       go run runtime/syntax/make_headers.go runtime/syntax
-       go build -o tools/bindata ./tools/go-bindata
-       tools/bindata -pkg config -nomemcopy -nometadata -o runtime.go runtime/...
-       mv runtime.go internal/config
-       gofmt -w internal/config/runtime.go
+generate:
+       GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) go generate ./runtime
 
 testgen:
        mkdir -p tools/vscode-tests
index 4f976ff017474ea5e4654d4eddb694e9688bfc7c..72f3e62cfe751783f676546ac188f8c76f95ae22 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
-<img alt="micro logo" src="./assets/micro-logo.svg" width="500px"/>
+<img alt="micro logo" src="./assets/micro-logo-drop.svg" width="500px"/>
 
 [![Build Status](https://travis-ci.org/zyedidia/micro.svg?branch=master)](https://travis-ci.org/zyedidia/micro)
 [![Go Report Card](https://goreportcard.com/badge/github.com/zyedidia/micro)](https://goreportcard.com/report/github.com/zyedidia/micro)
 [![Release](https://img.shields.io/github/release/zyedidia/micro.svg?label=Release)](https://github.com/zyedidia/micro/releases)
 [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/zyedidia/micro/blob/master/LICENSE)
 [![Join the chat at https://gitter.im/zyedidia/micro](https://badges.gitter.im/zyedidia/micro.svg)](https://gitter.im/zyedidia/micro?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
-[![Snap Status](https://build.snapcraft.io/badge/zyedidia/micro.svg)](https://build.snapcraft.io/user/zyedidia/micro)
+[![Snap Status](https://snapcraft.io/micro/badge.svg)](https://snapcraft.io/micro)
 
 **micro** is a terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the capabilities
 of modern terminals. It comes as a single, batteries-included, static binary with no dependencies; you can download and use it right now!
@@ -17,7 +17,7 @@ Here is a picture of micro editing its source code.
 
 ![Screenshot](./assets/micro-solarized.png)
 
-To see more screenshots of micro, showcasing some of the default color schemes, see [here](http://zbyedidia.webfactional.com/micro/screenshots.html).
+To see more screenshots of micro, showcasing some of the default color schemes, see [here](https://micro-editor.github.io).
  
 You can also check out the website for Micro at https://micro-editor.github.io.
 
@@ -25,7 +25,7 @@ You can also check out the website for Micro at https://micro-editor.github.io.
 
 - [Features](#features)
 - [Installation](#installation)
-  - [Prebuilt binaries](#prebuilt-binaries)
+  - [Prebuilt binaries](#pre-built-binaries)
   - [Package Managers](#package-managers)
   - [Building from source](#building-from-source)
   - [Fully static binary](#fully-static-binary)
@@ -81,17 +81,13 @@ stable version if you install from the prebuilt binaries, Homebrew, or Snap.
 
 A desktop entry file and man page can be found in the [assets/packaging](https://github.com/zyedidia/micro/tree/master/assets/packaging) directory.
 
-### Prebuilt binaries
+### Pre-built binaries
 
-All you need to install micro is one file, the binary itself. It's as simple as that!
+Pre-built binaries are distributed with [releases](https://github.com/zyedidia/micro/releases).
 
-Download the binary from the [releases](https://github.com/zyedidia/micro/releases) page.
-
-### Installation script
-
-There is a script which can install micro for you by downloading the latest prebuilt binary. You can find it at <https://getmic.ro>.
+To uninstall micro, simply remove the binary, and the configuration directory at `~/.config/micro`.
 
-You can easily install micro by running
+#### Quick-install script
 
 ```bash
 curl https://getmic.ro | bash
@@ -99,7 +95,24 @@ curl https://getmic.ro | bash
 
 The script will place the micro binary in the current directory. From there, you can move it to a directory on your path of your choosing (e.g. `sudo mv micro /usr/bin`). See its [GitHub repository](https://github.com/benweissmann/getmic.ro) for more information.
 
-To uninstall micro, simply remove the binary, and the configuration directory at `~/.config/micro`.
+#### Eget
+
+With [Eget](https://github.com/zyedidia/eget) installed, you can easily get a pre-built binary:
+
+```
+eget zyedidia/micro
+```
+
+Use `--tag VERSION` to download a specific tagged version.
+
+```
+eget --tag nightly zyedidia/micro # download the nightly version (compiled every day at midnight UTC)
+eget --tag v2.0.8 zyedidia/micro  # download version 2.0.8 rather than the latest release
+```
+
+You can install `micro` by adding `--to /usr/local/bin` to the `eget` command, or move the binary manually to a directory on your `$PATH` after the download completes.
+
+See [Eget](https://github.com/zyedidia/eget) for more information.
 
 ### Package managers
 
@@ -123,13 +136,14 @@ snap install micro --classic
 must be installed. Please see the section on [Linux clipboard support](https://github.com/zyedidia/micro#linux-clipboard-support)
 further below.
 
-Micro is also available through other package managers on Linux such as apt, dnf, AUR, Nix, and package managers
+Micro is also available through other package managers on Linux such dnf, AUR, Nix, and package managers
 for other operating systems. These packages are not guaranteed to be up-to-date.
 
+<!-- * `apt install micro` (Ubuntu 20.04 `focal`, and Debian `unstable | testing | buster-backports`). At the moment, this package (2.0.1-1) is outdated and has a known bug where debug mode is enabled. -->
+
 * Linux: Available in distro-specific package managers.
-    * `apt install micro` (Ubuntu 20.04 `focal`, and Debian `unstable | testing | buster-backports`). At the moment, this package (2.0.1-1) is outdated and has a known bug where debug mode is enabled.
     * `dnf install micro` (Fedora).
-    * `yay -S micro` (Arch Linux).
+    * `pacman -S micro` (Arch Linux).
     * `eopkg install micro` (Solus).
     * See [wiki](https://github.com/zyedidia/micro/wiki/Installing-Micro) for details about CRUX, Termux.
 * Windows: [Chocolatey](https://chocolatey.org) and [Scoop](https://github.com/lukesampson/scoop).
@@ -139,12 +153,14 @@ for other operating systems. These packages are not guaranteed to be up-to-date.
     * `pkd_add -v micro`.
 * NetBSD, macOS, Linux, Illumos, etc. with [pkgsrc](http://www.pkgsrc.org/)-current:
     * `pkg_add micro`
+* macOS with [MacPorts](https://www.macports.org):
+    * `sudo port install micro`
 
 ### Building from source
 
 If your operating system does not have a binary release, but does run Go, you can build from source.
 
-Make sure that you have Go version 1.11 or greater and Go modules are enabled.
+Make sure that you have Go version 1.16 or greater and Go modules are enabled.
 
 ```
 git clone https://github.com/zyedidia/micro
@@ -246,6 +262,8 @@ view the help files here:
 I also recommend reading the [tutorial](https://github.com/zyedidia/micro/tree/master/runtime/help/tutorial.md) for
 a brief introduction to the more powerful configuration features micro offers.
 
+There is also an unofficial Discord, which you can join at https://discord.gg/nhWR6armnR.
+
 ## Contributing
 
 If you find any bugs, please report them! I am also happy to accept pull requests from anyone.
@@ -253,6 +271,6 @@ If you find any bugs, please report them! I am also happy to accept pull request
 You can use the [GitHub issue tracker](https://github.com/zyedidia/micro/issues)
 to report bugs, ask questions, or suggest new features.
 
-For a more informal setting to discuss the editor, you can join the [Gitter chat](https://gitter.im/zyedidia/micro).
+For a more informal setting to discuss the editor, you can join the [Gitter chat](https://gitter.im/zyedidia/micro) or the [Discord](https://discord.gg/nhWR6armnR). You can also use the [Discussions](https://github.com/zyedidia/micro/discussions) section on Github for a forum-like setting or for Q&A.
 
 Sometimes I am unresponsive, and I apologize! If that happens, please ping me.
diff --git a/assets/micro-logo-drop.svg b/assets/micro-logo-drop.svg
new file mode 100644 (file)
index 0000000..3b4dc8f
--- /dev/null
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 304.70001 103.2"
+   enable-background="new 0 0 960 560"
+   xml:space="preserve"
+   inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
+   sodipodi:docname="micro-logo-drop.svg"
+   width="304.70001"
+   height="103.2"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
+     id="metadata21"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs19"><filter
+       style="color-interpolation-filters:sRGB"
+       inkscape:label="Blur"
+       id="filter1040"
+       x="-0.028037383"
+       y="-0.10549451"
+       width="1.0560748"
+       height="1.210989"><feGaussianBlur
+         stdDeviation="2 2"
+         result="blur"
+         id="feGaussianBlur1038" /></filter></defs><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1043"
+     id="namedview17"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:zoom="2.5161345"
+     inkscape:cx="158.97401"
+     inkscape:cy="109.69207"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="Layer_1"
+     inkscape:pagecheckerboard="0" /><g
+     id="g838"
+     transform="translate(-178,-172.8)"
+     style="fill:#ffffff;fill-opacity:1;filter:url(#filter1040)"><path
+       d="m 306.8,213.8 v -2.6 c 1.6,-0.1 2.9,-0.4 4.1,-0.8 1.2,-0.4 2.5,-1 4,-1.8 h 2.3 v 5.2 c 2.4,-1.9 4.2,-3.1 5.5,-3.8 2,-1 4,-1.5 5.8,-1.5 1.3,0 2.5,0.2 3.7,0.7 1.2,0.5 2.2,1 2.9,1.7 0.7,0.7 1.4,1.6 1.9,2.8 2.2,-1.9 4.2,-3.3 6,-4 1.9,-0.8 3.7,-1.2 5.6,-1.2 1.8,0 3.4,0.4 4.8,1.1 1.4,0.8 2.4,1.7 3,2.8 0.6,1.1 0.9,2.8 0.9,5 v 14.4 c 0,1.5 0,2.4 0.1,2.6 0.1,0.4 0.3,0.8 0.7,1.1 0.3,0.4 0.7,0.6 1.2,0.7 0.4,0.1 1.2,0.2 2.4,0.2 h 1 v 2.6 h -15.5 v -2.6 c 1.8,0 2.9,-0.1 3.5,-0.4 0.5,-0.2 0.9,-0.6 1.2,-1.2 0.3,-0.6 0.4,-1.6 0.4,-3.2 v -13.7 c 0,-1.7 -0.2,-2.9 -0.5,-3.6 -0.3,-0.7 -0.9,-1.2 -1.7,-1.7 -0.8,-0.4 -1.8,-0.7 -3,-0.7 -1.5,0 -3,0.4 -4.6,1.2 -2.2,1.1 -3.9,2.3 -5.1,3.6 v 14.8 c 0,1.4 0.1,2.4 0.2,2.8 0.1,0.4 0.4,0.8 0.7,1.1 0.3,0.3 0.7,0.5 1.1,0.6 0.4,0.1 1.5,0.2 3.1,0.2 v 2.6 h -15.3 v -2.6 h 0.9 c 1.2,0 2.1,-0.1 2.6,-0.4 0.5,-0.3 0.9,-0.7 1.2,-1.3 0.2,-0.5 0.3,-1.5 0.3,-2.9 v -13.2 c 0,-1.9 -0.2,-3.3 -0.5,-3.9 -0.3,-0.7 -0.9,-1.3 -1.7,-1.7 -0.8,-0.5 -1.8,-0.7 -3,-0.7 -1.3,0 -2.7,0.3 -4.1,1 -2,1 -3.9,2.2 -5.6,3.8 v 15.9 c 0,1 0.1,1.6 0.4,2.1 0.3,0.4 0.7,0.8 1.2,1.1 0.6,0.3 1.3,0.4 2.3,0.4 h 1.1 v 2.6 h -15.6 v -2.6 h 0.8 c 1.4,0 2.4,-0.1 2.8,-0.3 0.7,-0.3 1.1,-0.8 1.4,-1.5 0.2,-0.4 0.2,-1.3 0.2,-2.9 v -18.1 h -5.1 z"
+       id="path828"
+       inkscape:connector-curvature="0"
+       style="fill:#ffffff;fill-opacity:1" /><path
+       d="m 366.4,213.7 v -2.6 c 1.7,-0.2 3.2,-0.5 4.3,-0.9 1.2,-0.4 2.5,-1 4,-1.7 h 2.3 v 24.9 c 0,0.9 0.1,1.5 0.4,2 0.2,0.4 0.6,0.8 1,0.9 0.4,0.2 1.3,0.3 2.4,0.3 h 1.5 v 2.6 h -15.9 v -2.6 h 1.3 c 1.4,0 2.3,-0.1 2.8,-0.4 0.5,-0.2 0.8,-0.6 1,-1.1 0.2,-0.5 0.3,-1.5 0.3,-3.2 v -18.3 h -5.4 z m 7.9,-19.2 c 1,0 1.8,0.3 2.5,1 0.7,0.7 1.1,1.5 1.1,2.5 0,1 -0.4,1.8 -1.1,2.5 -0.7,0.7 -1.6,1.1 -2.5,1.1 -1,0 -1.8,-0.4 -2.5,-1.1 -0.7,-0.7 -1.1,-1.6 -1.1,-2.5 0,-1 0.4,-1.8 1.1,-2.5 0.6,-0.6 1.5,-1 2.5,-1 z"
+       id="path830"
+       inkscape:connector-curvature="0"
+       style="fill:#ffffff;fill-opacity:1" /><path
+       d="m 413.1,230.6 2,1.6 c -3.9,5.2 -8.6,7.8 -14,7.8 -4.2,0 -7.8,-1.5 -10.7,-4.5 -2.9,-3 -4.4,-6.8 -4.4,-11.3 0,-3 0.7,-5.7 2,-8.1 1.3,-2.4 3.2,-4.2 5.6,-5.6 2.4,-1.3 5.2,-2 8.3,-2 3.6,0 6.5,0.9 8.9,2.6 2.4,1.7 3.6,3.5 3.6,5.3 0,1 -0.3,1.7 -0.8,2.2 -0.5,0.5 -1.2,0.8 -1.9,0.8 -0.4,0 -0.7,-0.1 -1.1,-0.3 -0.4,-0.2 -0.7,-0.5 -1.1,-0.9 -0.2,-0.2 -0.5,-0.8 -0.9,-1.7 -0.6,-1.2 -1,-2 -1.3,-2.4 -0.6,-0.8 -1.4,-1.5 -2.4,-2 -0.9,-0.5 -2,-0.7 -3.1,-0.7 -1.8,0 -3.4,0.5 -4.9,1.5 -1.5,1 -2.7,2.4 -3.6,4.3 -0.9,1.9 -1.3,4.2 -1.3,6.8 0,4.1 1.1,7.3 3.3,9.7 1.9,2.1 4.1,3.1 6.7,3.1 1.2,0 2.4,-0.2 3.6,-0.6 1.2,-0.4 2.4,-1 3.5,-1.8 0.9,-0.6 2.2,-1.8 4,-3.8 z"
+       id="path832"
+       inkscape:connector-curvature="0"
+       style="fill:#ffffff;fill-opacity:1" /><path
+       d="m 418.7,213.7 v -2.6 c 1.5,-0.1 2.8,-0.4 4,-0.8 1.2,-0.4 2.5,-1 4,-1.9 h 2.3 v 5.9 c 1.5,-1.8 3.2,-3.2 5.1,-4.3 1.9,-1.1 3.7,-1.6 5.2,-1.6 1.5,0 2.7,0.4 3.6,1.1 0.9,0.7 1.3,1.6 1.3,2.6 0,0.7 -0.3,1.4 -0.9,2 -0.6,0.6 -1.3,0.9 -2.1,0.9 -0.4,0 -0.7,-0.1 -1,-0.2 -0.3,-0.1 -0.7,-0.3 -1.2,-0.7 -1.1,-0.7 -2.1,-1.1 -2.9,-1.1 -1,0 -2.2,0.4 -3.4,1.3 -1.6,1.1 -2.8,2.2 -3.7,3.3 V 232 c 0,1.2 0.1,2.1 0.2,2.5 0.1,0.4 0.4,0.8 0.7,1.1 0.3,0.3 0.7,0.6 1.1,0.7 0.5,0.1 1.3,0.2 2.4,0.2 h 1 v 2.6 h -16 v -2.6 h 1.3 c 1.3,0 2.1,-0.1 2.5,-0.3 0.5,-0.3 0.9,-0.7 1.2,-1.3 0.3,-0.5 0.4,-1.5 0.4,-3 v -18.3 h -5.1 z"
+       id="path834"
+       inkscape:connector-curvature="0"
+       style="fill:#ffffff;fill-opacity:1" /><path
+       d="m 462.8,208.5 c 3,0 5.7,0.6 7.9,1.9 2.2,1.3 4,3.1 5.3,5.5 1.3,2.4 1.9,5.2 1.9,8.3 0,3.1 -0.7,5.9 -2,8.3 -1.3,2.4 -3.1,4.3 -5.4,5.5 -2.3,1.3 -5,1.9 -8.1,1.9 -5,0 -8.8,-1.6 -11.3,-4.7 -2.5,-3.1 -3.8,-6.8 -3.8,-11 0,-3.1 0.7,-5.8 2,-8.2 1.3,-2.4 3.1,-4.2 5.5,-5.6 2.4,-1.2 5.1,-1.9 8,-1.9 z m -0.2,3 c -2.4,0 -4.4,0.9 -6,2.8 -2.1,2.3 -3.1,5.7 -3.1,10.1 0,4.3 0.9,7.5 2.6,9.7 1.6,2 3.8,3 6.5,3 1.8,0 3.3,-0.5 4.7,-1.4 1.4,-0.9 2.5,-2.4 3.3,-4.5 0.8,-2 1.3,-4.4 1.3,-7.2 0,-2.7 -0.5,-5.1 -1.4,-7.2 -0.7,-1.7 -1.8,-3 -3.2,-4 -1.3,-0.8 -2.9,-1.3 -4.7,-1.3 z"
+       id="path836"
+       inkscape:connector-curvature="0"
+       style="fill:#ffffff;fill-opacity:1" /></g><g
+     id="g3"
+     transform="translate(-178,-172.8)"><path
+       d="m 306.8,213.8 v -2.6 c 1.6,-0.1 2.9,-0.4 4.1,-0.8 1.2,-0.4 2.5,-1 4,-1.8 h 2.3 v 5.2 c 2.4,-1.9 4.2,-3.1 5.5,-3.8 2,-1 4,-1.5 5.8,-1.5 1.3,0 2.5,0.2 3.7,0.7 1.2,0.5 2.2,1 2.9,1.7 0.7,0.7 1.4,1.6 1.9,2.8 2.2,-1.9 4.2,-3.3 6,-4 1.9,-0.8 3.7,-1.2 5.6,-1.2 1.8,0 3.4,0.4 4.8,1.1 1.4,0.8 2.4,1.7 3,2.8 0.6,1.1 0.9,2.8 0.9,5 v 14.4 c 0,1.5 0,2.4 0.1,2.6 0.1,0.4 0.3,0.8 0.7,1.1 0.3,0.4 0.7,0.6 1.2,0.7 0.4,0.1 1.2,0.2 2.4,0.2 h 1 v 2.6 h -15.5 v -2.6 c 1.8,0 2.9,-0.1 3.5,-0.4 0.5,-0.2 0.9,-0.6 1.2,-1.2 0.3,-0.6 0.4,-1.6 0.4,-3.2 v -13.7 c 0,-1.7 -0.2,-2.9 -0.5,-3.6 -0.3,-0.7 -0.9,-1.2 -1.7,-1.7 -0.8,-0.4 -1.8,-0.7 -3,-0.7 -1.5,0 -3,0.4 -4.6,1.2 -2.2,1.1 -3.9,2.3 -5.1,3.6 v 14.8 c 0,1.4 0.1,2.4 0.2,2.8 0.1,0.4 0.4,0.8 0.7,1.1 0.3,0.3 0.7,0.5 1.1,0.6 0.4,0.1 1.5,0.2 3.1,0.2 v 2.6 h -15.3 v -2.6 h 0.9 c 1.2,0 2.1,-0.1 2.6,-0.4 0.5,-0.3 0.9,-0.7 1.2,-1.3 0.2,-0.5 0.3,-1.5 0.3,-2.9 v -13.2 c 0,-1.9 -0.2,-3.3 -0.5,-3.9 -0.3,-0.7 -0.9,-1.3 -1.7,-1.7 -0.8,-0.5 -1.8,-0.7 -3,-0.7 -1.3,0 -2.7,0.3 -4.1,1 -2,1 -3.9,2.2 -5.6,3.8 v 15.9 c 0,1 0.1,1.6 0.4,2.1 0.3,0.4 0.7,0.8 1.2,1.1 0.6,0.3 1.3,0.4 2.3,0.4 h 1.1 v 2.6 h -15.6 v -2.6 h 0.8 c 1.4,0 2.4,-0.1 2.8,-0.3 0.7,-0.3 1.1,-0.8 1.4,-1.5 0.2,-0.4 0.2,-1.3 0.2,-2.9 v -18.1 h -5.1 z"
+       id="path5"
+       inkscape:connector-curvature="0" /><path
+       d="m 366.4,213.7 v -2.6 c 1.7,-0.2 3.2,-0.5 4.3,-0.9 1.2,-0.4 2.5,-1 4,-1.7 h 2.3 v 24.9 c 0,0.9 0.1,1.5 0.4,2 0.2,0.4 0.6,0.8 1,0.9 0.4,0.2 1.3,0.3 2.4,0.3 h 1.5 v 2.6 h -15.9 v -2.6 h 1.3 c 1.4,0 2.3,-0.1 2.8,-0.4 0.5,-0.2 0.8,-0.6 1,-1.1 0.2,-0.5 0.3,-1.5 0.3,-3.2 v -18.3 h -5.4 z m 7.9,-19.2 c 1,0 1.8,0.3 2.5,1 0.7,0.7 1.1,1.5 1.1,2.5 0,1 -0.4,1.8 -1.1,2.5 -0.7,0.7 -1.6,1.1 -2.5,1.1 -1,0 -1.8,-0.4 -2.5,-1.1 -0.7,-0.7 -1.1,-1.6 -1.1,-2.5 0,-1 0.4,-1.8 1.1,-2.5 0.6,-0.6 1.5,-1 2.5,-1 z"
+       id="path7"
+       inkscape:connector-curvature="0" /><path
+       d="m 413.1,230.6 2,1.6 c -3.9,5.2 -8.6,7.8 -14,7.8 -4.2,0 -7.8,-1.5 -10.7,-4.5 -2.9,-3 -4.4,-6.8 -4.4,-11.3 0,-3 0.7,-5.7 2,-8.1 1.3,-2.4 3.2,-4.2 5.6,-5.6 2.4,-1.3 5.2,-2 8.3,-2 3.6,0 6.5,0.9 8.9,2.6 2.4,1.7 3.6,3.5 3.6,5.3 0,1 -0.3,1.7 -0.8,2.2 -0.5,0.5 -1.2,0.8 -1.9,0.8 -0.4,0 -0.7,-0.1 -1.1,-0.3 -0.4,-0.2 -0.7,-0.5 -1.1,-0.9 -0.2,-0.2 -0.5,-0.8 -0.9,-1.7 -0.6,-1.2 -1,-2 -1.3,-2.4 -0.6,-0.8 -1.4,-1.5 -2.4,-2 -0.9,-0.5 -2,-0.7 -3.1,-0.7 -1.8,0 -3.4,0.5 -4.9,1.5 -1.5,1 -2.7,2.4 -3.6,4.3 -0.9,1.9 -1.3,4.2 -1.3,6.8 0,4.1 1.1,7.3 3.3,9.7 1.9,2.1 4.1,3.1 6.7,3.1 1.2,0 2.4,-0.2 3.6,-0.6 1.2,-0.4 2.4,-1 3.5,-1.8 0.9,-0.6 2.2,-1.8 4,-3.8 z"
+       id="path9"
+       inkscape:connector-curvature="0" /><path
+       d="m 418.7,213.7 v -2.6 c 1.5,-0.1 2.8,-0.4 4,-0.8 1.2,-0.4 2.5,-1 4,-1.9 h 2.3 v 5.9 c 1.5,-1.8 3.2,-3.2 5.1,-4.3 1.9,-1.1 3.7,-1.6 5.2,-1.6 1.5,0 2.7,0.4 3.6,1.1 0.9,0.7 1.3,1.6 1.3,2.6 0,0.7 -0.3,1.4 -0.9,2 -0.6,0.6 -1.3,0.9 -2.1,0.9 -0.4,0 -0.7,-0.1 -1,-0.2 -0.3,-0.1 -0.7,-0.3 -1.2,-0.7 -1.1,-0.7 -2.1,-1.1 -2.9,-1.1 -1,0 -2.2,0.4 -3.4,1.3 -1.6,1.1 -2.8,2.2 -3.7,3.3 V 232 c 0,1.2 0.1,2.1 0.2,2.5 0.1,0.4 0.4,0.8 0.7,1.1 0.3,0.3 0.7,0.6 1.1,0.7 0.5,0.1 1.3,0.2 2.4,0.2 h 1 v 2.6 h -16 v -2.6 h 1.3 c 1.3,0 2.1,-0.1 2.5,-0.3 0.5,-0.3 0.9,-0.7 1.2,-1.3 0.3,-0.5 0.4,-1.5 0.4,-3 v -18.3 h -5.1 z"
+       id="path11"
+       inkscape:connector-curvature="0" /><path
+       d="m 462.8,208.5 c 3,0 5.7,0.6 7.9,1.9 2.2,1.3 4,3.1 5.3,5.5 1.3,2.4 1.9,5.2 1.9,8.3 0,3.1 -0.7,5.9 -2,8.3 -1.3,2.4 -3.1,4.3 -5.4,5.5 -2.3,1.3 -5,1.9 -8.1,1.9 -5,0 -8.8,-1.6 -11.3,-4.7 -2.5,-3.1 -3.8,-6.8 -3.8,-11 0,-3.1 0.7,-5.8 2,-8.2 1.3,-2.4 3.1,-4.2 5.5,-5.6 2.4,-1.2 5.1,-1.9 8,-1.9 z m -0.2,3 c -2.4,0 -4.4,0.9 -6,2.8 -2.1,2.3 -3.1,5.7 -3.1,10.1 0,4.3 0.9,7.5 2.6,9.7 1.6,2 3.8,3 6.5,3 1.8,0 3.3,-0.5 4.7,-1.4 1.4,-0.9 2.5,-2.4 3.3,-4.5 0.8,-2 1.3,-4.4 1.3,-7.2 0,-2.7 -0.5,-5.1 -1.4,-7.2 -0.7,-1.7 -1.8,-3 -3.2,-4 -1.3,-0.8 -2.9,-1.3 -4.7,-1.3 z"
+       id="path13"
+       inkscape:connector-curvature="0" /></g><path
+     d="M 51.6,0 C 23.1,0 0,23.1 0,51.6 c 0,28.5 23.1,51.6 51.6,51.6 28.5,0 51.6,-23.1 51.6,-51.6 C 103.2,23.1 80.1,0 51.6,0 Z m 24.5,58.6 c -0.5,2 -1.3,3.6 -2.4,4.9 -1,1.3 -2,2.1 -3.1,2.5 -1.1,0.4 -2.2,0.6 -3.4,0.6 -1.2,0 -2.2,-0.2 -3,-0.7 C 63.4,65.5 62.8,64.8 62.3,64 61.8,63.2 61.5,62.2 61.3,61.1 61.1,60 61,58.8 61,57.5 c 0,-0.5 0,-1 0.1,-1.7 0.1,-0.7 0.2,-1.6 0.3,-1.6 h -0.2 c -1.6,4 -3.8,6.9 -6.6,9.2 -2.8,2.3 -5.9,3.4 -9.3,3.4 -2.3,0 -4.2,-0.9 -5.5,-2.6 -1.4,-1.7 -2.1,-4.3 -2.1,-7.7 0,-0.5 0,-1 0.1,-1.6 0.1,-0.5 0.1,-0.7 0.2,-1.7 h -0.7 c -0.9,2 -1.7,4.8 -2.3,7.3 -0.6,2.5 -1.1,4.8 -1.4,6.9 -0.4,2.1 -0.6,4 -0.8,5.6 -0.2,1.6 -0.3,2.7 -0.4,3.3 0.1,0.5 0.2,1 0.3,1.6 0.2,0.6 0.3,1.2 0.5,1.7 0.2,0.5 0.3,1.1 0.4,1.6 0.1,0.5 0.2,0.9 0.2,1.2 0,1.4 -0.3,2.5 -0.9,3.2 -0.6,0.7 -1.3,1.1 -2,1.1 -0.9,0 -1.7,-0.3 -2.3,-0.8 -0.7,-0.6 -1,-1.5 -1,-2.7 0,-1.7 0.3,-3.9 0.9,-6.5 0.6,-2.6 1.5,-5.9 2.6,-9.8 0.6,-1.8 1.1,-3.6 1.7,-5.4 0.6,-1.8 1.1,-3.5 1.6,-5 0.5,-1.5 0.9,-2.9 1.3,-4.1 0.4,-1.2 0.6,-2.1 0.7,-2.8 0.1,-0.3 0.2,-1 0.3,-2 0.1,-1 0.2,-2.1 0.4,-3.4 0.2,-1.3 0.3,-2.7 0.5,-4.1 0.2,-1.5 0.4,-2.8 0.5,-4 0.2,-0.9 0.3,-1.9 0.5,-3 0.2,-1.1 0.5,-2.2 0.9,-3.1 0.4,-1 1,-1.8 1.7,-2.5 0.7,-0.7 1.6,-1 2.7,-1 1.2,0 2,0.4 2.4,1.1 0.4,0.7 0.6,1.6 0.5,2.6 -0.1,1 -0.2,2.1 -0.5,3.2 -0.3,1.1 -0.6,2.1 -0.9,2.9 -0.8,2.5 -1.6,4.8 -2.5,6.7 -0.9,1.9 -1.7,4 -2.4,6.2 -0.6,1.5 -0.8,2.9 -0.8,4.1 0,2.2 0.7,3.8 2,5 1.4,1.2 3,1.7 4.9,1.7 1.5,0 3,-0.5 4.4,-1.6 1.4,-1.1 2.7,-2.4 3.9,-3.9 1.2,-1.5 2.2,-3.1 3,-4.9 0.8,-1.7 1.4,-3.3 1.8,-4.6 0.1,-0.2 0.2,-0.6 0.3,-1.4 0.2,-0.8 0.3,-1.7 0.5,-2.7 0.2,-1 0.4,-2 0.6,-3.1 0.2,-1.1 0.4,-2 0.5,-2.7 0.2,-0.8 0.3,-1.6 0.5,-2.6 0.2,-1 0.5,-1.9 0.9,-2.8 0.4,-0.9 1,-1.6 1.6,-2.2 0.7,-0.6 1.5,-0.9 2.6,-0.9 1.3,0 2.1,0.4 2.6,1.1 0.4,0.7 0.6,1.6 0.6,2.6 -0.1,1 -0.2,2 -0.5,3 -0.3,1 -0.5,1.8 -0.7,2.4 -0.8,2.5 -1.6,4.7 -2.4,6.7 -0.8,2 -1.5,3.8 -2.2,5.2 -0.6,1.5 -1.1,2.6 -1.5,3.5 -0.4,0.9 -0.6,1.5 -0.6,1.8 0,2.6 0.6,4.5 1.7,5.6 1.1,1.1 2.3,1.7 3.6,1.7 2.2,0 3.9,-0.7 5.2,-2 1.3,-1.4 2.3,-3.9 2.9,-6.9 h 0.8 c 0.2,2.9 -0.1,5.3 -0.6,7.3 z"
+     id="path15"
+     inkscape:connector-curvature="0"
+     style="fill:#2e3192" /></svg>
diff --git a/assets/packaging/deb/micro.postinst b/assets/packaging/deb/micro.postinst
new file mode 100755 (executable)
index 0000000..5a24444
--- /dev/null
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
+    update-alternatives --install /usr/bin/editor editor /usr/bin/micro 40 \
+      --slave /usr/share/man/man1/editor.1 editor.1 \
+      /usr/share/man/man1/micro.1
+fi
diff --git a/assets/packaging/deb/micro.prerm b/assets/packaging/deb/micro.prerm
new file mode 100755 (executable)
index 0000000..9999d9e
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+set -e
+
+if [ "$1" != "upgrade" ]; then
+    update-alternatives --remove editor /usr/bin/micro
+fi
index 6ec5455f5ae303ea740c5ce5968c60935a42e9aa..e4aa72402150f133a4379216aaa3de90632c94d7 100644 (file)
@@ -23,12 +23,9 @@ func shouldContinue() bool {
                return false
        }
 
-       if len(text) <= 1 {
-               // default continue
-               return true
-       }
+       text = strings.TrimRight(text, "\r\n")
 
-       return strings.ToLower(text)[0] == 'y'
+       return len(text) == 0 || strings.ToLower(text)[0] == 'y'
 }
 
 // CleanConfig performs cleanup in the user's configuration directory
index 9d90b48239f4de2a5aa42ffa9d26f4507b7f37e0..dcb608309f3f7dde26bc21df59c0ed3f006cbfdf 100644 (file)
@@ -118,6 +118,9 @@ func luaImportMicroBuffer() *lua.LTable {
        ulua.L.SetField(pkg, "Loc", luar.New(ulua.L, func(x, y int) buffer.Loc {
                return buffer.Loc{x, y}
        }))
+       ulua.L.SetField(pkg, "SLoc", luar.New(ulua.L, func(line, row int) display.SLoc {
+               return display.SLoc{line, row}
+       }))
        ulua.L.SetField(pkg, "BTDefault", luar.New(ulua.L, buffer.BTDefault.Kind))
        ulua.L.SetField(pkg, "BTHelp", luar.New(ulua.L, buffer.BTHelp.Kind))
        ulua.L.SetField(pkg, "BTLog", luar.New(ulua.L, buffer.BTLog.Kind))
@@ -144,6 +147,9 @@ func luaImportMicroUtil() *lua.LTable {
        ulua.L.SetField(pkg, "GetLeadingWhitespace", luar.New(ulua.L, util.LuaGetLeadingWhitespace))
        ulua.L.SetField(pkg, "IsWordChar", luar.New(ulua.L, util.LuaIsWordChar))
        ulua.L.SetField(pkg, "String", luar.New(ulua.L, util.String))
+       ulua.L.SetField(pkg, "Unzip", luar.New(ulua.L, util.Unzip))
+       ulua.L.SetField(pkg, "Version", luar.New(ulua.L, util.Version))
+       ulua.L.SetField(pkg, "SemVersion", luar.New(ulua.L, util.SemVersion))
        ulua.L.SetField(pkg, "CharacterCountInString", luar.New(ulua.L, util.CharacterCountInString))
        ulua.L.SetField(pkg, "RuneStr", luar.New(ulua.L, func(r rune) string {
                return string(r)
index 0a2a55aa8dc4f51481c7b2bde6493d17ee3048b1..e05902440ba2148c20459edb7d343c1eb1b3b122 100644 (file)
@@ -4,6 +4,7 @@ import (
        "flag"
        "fmt"
        "io/ioutil"
+       "log"
        "os"
        "os/signal"
        "regexp"
@@ -39,6 +40,9 @@ var (
        flagPlugin    = flag.String("plugin", "", "Plugin command")
        flagClean     = flag.Bool("clean", false, "Clean configuration directory")
        optionFlags   map[string]*string
+
+       sigterm chan os.Signal
+       sighup  chan os.Signal
 )
 
 func InitFlags() {
@@ -270,25 +274,6 @@ func main() {
                fmt.Println("Fatal: Micro could not initialize a Screen.")
                os.Exit(1)
        }
-
-       c := make(chan os.Signal, 1)
-       signal.Notify(c, syscall.SIGTERM)
-
-       go func() {
-               <-c
-
-               for _, b := range buffer.OpenBuffers {
-                       if !b.Modified() {
-                               b.Fini()
-                       }
-               }
-
-               if screen.Screen != nil {
-                       screen.Screen.Fini()
-               }
-               os.Exit(0)
-       }()
-
        m := clipboard.SetMethod(config.GetGlobalOption("clipboard").(string))
        clipErr := clipboard.Initialize(m)
 
@@ -328,6 +313,8 @@ func main() {
                screen.TermMessage(err)
        }
 
+       action.InitGlobals()
+       buffer.SetMessager(action.InfoBar)
        args := flag.Args()
        b := LoadInput(args)
 
@@ -338,7 +325,6 @@ func main() {
        }
 
        action.InitTabs(b)
-       action.InitGlobals()
 
        err = config.RunPluginFn("init")
        if err != nil {
@@ -351,7 +337,7 @@ func main() {
        }
 
        if clipErr != nil {
-               action.InfoBar.Error(clipErr, " or change 'clipboard' option")
+               log.Println(clipErr, " or change 'clipboard' option")
        }
 
        if a := config.GetGlobalOption("autosave").(float64); a > 0 {
@@ -361,6 +347,11 @@ func main() {
 
        screen.Events = make(chan tcell.Event)
 
+       sigterm = make(chan os.Signal, 1)
+       sighup = make(chan os.Signal, 1)
+       signal.Notify(sigterm, syscall.SIGTERM, syscall.SIGINT, syscall.SIGQUIT)
+       signal.Notify(sighup, syscall.SIGHUP)
+
        // Here is the event loop which runs in a separate thread
        go func() {
                for {
@@ -426,6 +417,24 @@ func DoEvent() {
                for len(screen.DrawChan()) > 0 {
                        <-screen.DrawChan()
                }
+       case <-sighup:
+               for _, b := range buffer.OpenBuffers {
+                       if !b.Modified() {
+                               b.Fini()
+                       }
+               }
+               os.Exit(0)
+       case <-sigterm:
+               for _, b := range buffer.OpenBuffers {
+                       if !b.Modified() {
+                               b.Fini()
+                       }
+               }
+
+               if screen.Screen != nil {
+                       screen.Screen.Fini()
+               }
+               os.Exit(0)
        }
 
        ulua.Lock.Lock()
index c5b64ef9d77af83fdd5f0f58e540b897c2404877..ba5c9a24b865bf9a76cd11979fceba8ebcd67ace 100644 (file)
@@ -60,7 +60,6 @@ func startup(args []string) (tcell.SimulationScreen, error) {
                        }
                        // Print the stack trace too
                        log.Fatalf(errors.Wrap(err, 2).ErrorStack())
-                       os.Exit(1)
                }
        }()
 
@@ -171,7 +170,6 @@ func TestMain(m *testing.M) {
        sim, err = startup([]string{})
        if err != nil {
                log.Fatalln(err)
-               os.Exit(1)
        }
 
        retval := m.Run()
index 17d8d66edc25faa29badbeba6d07d0f4b3e5179e..83794b23567e3a94cbe52be070b11352d4224a3a 100644 (file)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <component>
        <id>com.github.zyedidia.micro</id>
+       <launchable type="desktop-id">micro.desktop</launchable>
        <name>Micro Text Editor</name>
        <summary>A modern and intuitive terminal-based text editor</summary>
        <metadata_license>MIT</metadata_license>
diff --git a/go.mod b/go.mod
index c0f07db7e4d5ec458d80827785e919be08eceae1..57a2d0c272b510739479df048401f78643079251 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -8,25 +8,24 @@ require (
        github.com/mattn/go-isatty v0.0.11
        github.com/mattn/go-runewidth v0.0.7
        github.com/mitchellh/go-homedir v1.1.0
-       github.com/robertkrimen/otto v0.0.0-20191219234010-c382bd3c16ff
        github.com/sergi/go-diff v1.1.0
        github.com/stretchr/testify v1.4.0
        github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb
-       github.com/zyedidia/clipboard v1.0.3
+       github.com/zyedidia/clipper v0.1.0
        github.com/zyedidia/glob v0.0.0-20170209203856-dd4023a66dc3
-       github.com/zyedidia/highlight v0.0.0-20170330143449-201131ce5cf5
        github.com/zyedidia/json5 v0.0.0-20200102012142-2da050b1a98d
-       github.com/zyedidia/pty v2.0.0+incompatible // indirect
-       github.com/zyedidia/tcell/v2 v2.0.6
+       github.com/zyedidia/pty v1.1.20 // indirect
+       github.com/zyedidia/tcell/v2 v2.0.9
        github.com/zyedidia/terminal v0.0.0-20180726154117-533c623e2415
        golang.org/x/text v0.3.2
-       gopkg.in/sourcemap.v1 v1.0.5 // indirect
-       gopkg.in/yaml.v2 v2.2.7
+       gopkg.in/yaml.v2 v2.2.8
        layeh.com/gopher-luar v1.0.7
 )
 
 replace github.com/kballard/go-shellquote => github.com/zyedidia/go-shellquote v0.0.0-20200613203517-eccd813c0655
 
-replace github.com/mattn/go-runewidth => github.com/p-e-w/go-runewidth v0.0.10-0.20200613030200-3e1705c5c059
+replace github.com/mattn/go-runewidth => github.com/zyedidia/go-runewidth v0.0.12
 
-go 1.11
+replace layeh.com/gopher-luar => github.com/layeh/gopher-luar v1.0.7
+
+go 1.16
diff --git a/go.sum b/go.sum
index a1ebfccc04cbf66734e18fe87470161a7badedfe..4e40732d684a2f660d178e34a5bbd11f01abbd8e 100644 (file)
--- a/go.sum
+++ b/go.sum
@@ -17,21 +17,20 @@ github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORN
 github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
 github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
 github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
+github.com/layeh/gopher-luar v1.0.7 h1:wnfZhYiJM748y1A4qYBfcFeMY9HWbdERny+ZL0f/jWc=
+github.com/layeh/gopher-luar v1.0.7/go.mod h1:TPnIVCZ2RJBndm7ohXyaqfhzjlZ+OA2SZR/YwL8tECk=
 github.com/lucasb-eyer/go-colorful v1.0.3 h1:QIbQXiugsb+q10B+MI+7DI1oQLdmnep86tWFlaaUAac=
 github.com/lucasb-eyer/go-colorful v1.0.3/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
 github.com/mattn/go-isatty v0.0.11 h1:FxPOTFNqGkuDUGi3H/qkUbQO4ZiBa2brKq5r0l8TGeM=
 github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE=
 github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
 github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
-github.com/p-e-w/go-runewidth v0.0.10-0.20200613030200-3e1705c5c059 h1:/+h2b6i15wh4EWsFkfdNdBE1jjGA872tpXEyhPM5aYg=
-github.com/p-e-w/go-runewidth v0.0.10-0.20200613030200-3e1705c5c059/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
 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/robertkrimen/otto v0.0.0-20191219234010-c382bd3c16ff h1:+6NUiITWwE5q1KO6SAfUX918c+Tab0+tGAM/mtdlUyA=
-github.com/robertkrimen/otto v0.0.0-20191219234010-c382bd3c16ff/go.mod h1:xvqspoSXJTIpemEonrMDFq6XzwHYYgToXWj5eRX1OtY=
+github.com/rivo/uniseg v0.1.0 h1:+2KBaVoUmb9XzDsrx/Ct0W/EYOSFf/nWTauy++DprtY=
+github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
 github.com/sergi/go-diff v1.1.0 h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0=
 github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
-github.com/stretchr/objx v0.1.0 h1:4G4v2dO3VZwixGIRoQ5Lfboy6nUhCyYzaqnIAPPhYs4=
 github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
 github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=
 github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
@@ -40,22 +39,28 @@ github.com/xo/terminfo v0.0.0-20200218205459-454e5b68f9e8/go.mod h1:6Yhx5ZJl5942
 github.com/yuin/gopher-lua v0.0.0-20190206043414-8bfc7677f583/go.mod h1:gqRgreBUhTSL0GeU64rtZ3Uq3wtjOa/TB2YfrtkCbVQ=
 github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb h1:ZkM6LRnq40pR1Ox0hTHlnpkcOTuFIDQpZ1IN8rKKhX0=
 github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb/go.mod h1:gqRgreBUhTSL0GeU64rtZ3Uq3wtjOa/TB2YfrtkCbVQ=
-github.com/zyedidia/clipboard v1.0.3 h1:F/nCDVYMdbDWTmY8s8cJl0tnwX32q96IF09JHM14bUI=
-github.com/zyedidia/clipboard v1.0.3/go.mod h1:zykFnZUXX0ErxqvYLUFEq7QDJKId8rmh2FgD0/Y8cjA=
+github.com/zyedidia/clipper v0.0.0-20220613212750-517cd4a6c524 h1:sWYUMHs1EAlsPERKLkaLCxLM0misLylZMEc9Ip5Csjw=
+github.com/zyedidia/clipper v0.0.0-20220613212750-517cd4a6c524/go.mod h1:7YApPNiiTZTXdKKZG92G50qj6mnWEX975Sdu65J7YpQ=
+github.com/zyedidia/clipper v0.1.0 h1:e16nhM1RgL3HYcugcHRUpMya1K830TS5uo6LlPJHySg=
+github.com/zyedidia/clipper v0.1.0/go.mod h1:7YApPNiiTZTXdKKZG92G50qj6mnWEX975Sdu65J7YpQ=
 github.com/zyedidia/glob v0.0.0-20170209203856-dd4023a66dc3 h1:oMHjjTLfGXVuyOQBYj5/td9WC0mw4g1xDBPovIqmHew=
 github.com/zyedidia/glob v0.0.0-20170209203856-dd4023a66dc3/go.mod h1:YKbIYP//Eln8eDgAJGI3IDvR3s4Tv9Z9TGIOumiyQ5c=
+github.com/zyedidia/go-runewidth v0.0.12 h1:aHWj8qL3aH7caRzoPBJXe1pEaZBXHpKtfTuiBo5p74Q=
+github.com/zyedidia/go-runewidth v0.0.12/go.mod h1:vF8djYdLmG8BJaUZ4CznFYCJ3pFR8m4B4VinTvTTarU=
 github.com/zyedidia/go-shellquote v0.0.0-20200613203517-eccd813c0655 h1:Z3RhH6hvcSx7eX6Q/pP6YVsgea/1eMDG99vtWwi3nK4=
 github.com/zyedidia/go-shellquote v0.0.0-20200613203517-eccd813c0655/go.mod h1:1sTqqO+kcYzZp43M5VsJe1tns9IzlSeC9jB6c2+o/5Y=
-github.com/zyedidia/highlight v0.0.0-20170330143449-201131ce5cf5 h1:Zs6mpwXvlqpF9zHl5XaN0p5V4J9XvP+WBuiuXyIgqvc=
-github.com/zyedidia/highlight v0.0.0-20170330143449-201131ce5cf5/go.mod h1:c1r+Ob9tUTPB0FKWO1+x+Hsc/zNa45WdGq7Y38Ybip0=
 github.com/zyedidia/json5 v0.0.0-20200102012142-2da050b1a98d h1:zmDMkh22zXOB7gz8jFaI4GpI7llsPgzm38/jG0UgxjE=
 github.com/zyedidia/json5 v0.0.0-20200102012142-2da050b1a98d/go.mod h1:NDJSTTYWivnza6zkRapeX2/LwhKPEMQ7bJxqgDVT78I=
 github.com/zyedidia/poller v1.0.1 h1:Tt9S3AxAjXwWGNiC2TUdRJkQDZSzCBNVQ4xXiQ7440s=
 github.com/zyedidia/poller v1.0.1/go.mod h1:vZXJOHGDcuK08GXhF6IAY0ZFd2WcgOR5DOTp84Uk5eE=
-github.com/zyedidia/pty v2.0.0+incompatible h1:Ou5vXL6tvjst+RV8sUFISbuKDnUJPhnpygApMFGweqw=
-github.com/zyedidia/pty v2.0.0+incompatible/go.mod h1:4y9l9yJZNxRa7GB/fB+mmDmGkG3CqmzLf4vUxGGotEA=
-github.com/zyedidia/tcell/v2 v2.0.6 h1:v0GoNpPYJ+Wbd1RiSL09SUFzoq4eVKTuT5awbW6aqGs=
-github.com/zyedidia/tcell/v2 v2.0.6/go.mod h1:i4NNlquIQXFeNecrOgxDQQJdu+7LmTi3g62asvmwUws=
+github.com/zyedidia/pty v1.1.15 h1:XlxMFph7HDvTn4sDG8Klgmb/g4ATGiSj4655vAETp1U=
+github.com/zyedidia/pty v1.1.15/go.mod h1:HWbpfrLoVM9FmU+/9NV+PzVQV8jSxgnQLk8fvx0q/i8=
+github.com/zyedidia/pty v1.1.19 h1:GouvvD/u+uml5EPFUAt5N3rFQKPBmZuuUXHvzAJhVA0=
+github.com/zyedidia/pty v1.1.19/go.mod h1:HWbpfrLoVM9FmU+/9NV+PzVQV8jSxgnQLk8fvx0q/i8=
+github.com/zyedidia/pty v1.1.20 h1:mkZ5/UiEjZVMFzoXp8oyJAlbn3b380m5lvFrbx/NL/g=
+github.com/zyedidia/pty v1.1.20/go.mod h1:HWbpfrLoVM9FmU+/9NV+PzVQV8jSxgnQLk8fvx0q/i8=
+github.com/zyedidia/tcell/v2 v2.0.9 h1:FxXRkE62N0GPHES7EMLtp2rteYqC9r1kVid8vJN1kOE=
+github.com/zyedidia/tcell/v2 v2.0.9/go.mod h1:i4NNlquIQXFeNecrOgxDQQJdu+7LmTi3g62asvmwUws=
 github.com/zyedidia/terminal v0.0.0-20180726154117-533c623e2415 h1:752dTQ5OatJ9M5ULK2+9lor+nzyZz+LYDo3WGngg3Rc=
 github.com/zyedidia/terminal v0.0.0-20180726154117-533c623e2415/go.mod h1:8leT8G0Cm8NoJHdrrKHyR9MirWoF4YW7pZh06B6H+1E=
 golang.org/x/sys v0.0.0-20190204203706-41f3e6584952/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
@@ -69,11 +74,7 @@ golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGm
 gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
 gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=
 gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
-gopkg.in/sourcemap.v1 v1.0.5 h1:inv58fC9f9J3TK2Y2R1NPntXEn3/wjWHkonhIUODNTI=
-gopkg.in/sourcemap.v1 v1.0.5/go.mod h1:2RlvNNSMglmRrcvhfuzp4hQHwOtjxlbjX7UPY/GXb78=
 gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
 gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.7 h1:VUgggvou5XRW9mHwD/yXxIYSMtY0zoKQf/v226p2nyo=
-gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-layeh.com/gopher-luar v1.0.7 h1:53iv6CCkRs5wyofZ+qVXcyAYQOIG52s6pt4xkqZdq7k=
-layeh.com/gopher-luar v1.0.7/go.mod h1:TPnIVCZ2RJBndm7ohXyaqfhzjlZ+OA2SZR/YwL8tECk=
+gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=
+gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
index b69ac2d0dc0ea6b25942f92444c7fd6311b80c1a..9c76d6018e6b2b3988b270d0ca08fbf2414c0341 100644 (file)
@@ -1,6 +1,9 @@
 package action
 
 import (
+       "errors"
+       "fmt"
+       "io/fs"
        "regexp"
        "runtime"
        "strings"
@@ -10,6 +13,7 @@ import (
        "github.com/zyedidia/micro/v2/internal/buffer"
        "github.com/zyedidia/micro/v2/internal/clipboard"
        "github.com/zyedidia/micro/v2/internal/config"
+       "github.com/zyedidia/micro/v2/internal/display"
        "github.com/zyedidia/micro/v2/internal/screen"
        "github.com/zyedidia/micro/v2/internal/shell"
        "github.com/zyedidia/micro/v2/internal/util"
@@ -19,21 +23,26 @@ import (
 // ScrollUp is not an action
 func (h *BufPane) ScrollUp(n int) {
        v := h.GetView()
-       if v.StartLine >= n {
-               v.StartLine -= n
-               h.SetView(v)
-       } else {
-               v.StartLine = 0
-       }
+       v.StartLine = h.Scroll(v.StartLine, -n)
+       h.SetView(v)
 }
 
 // ScrollDown is not an action
 func (h *BufPane) ScrollDown(n int) {
        v := h.GetView()
-       if v.StartLine <= h.Buf.LinesNum()-1-n {
-               v.StartLine += n
-               h.SetView(v)
+       v.StartLine = h.Scroll(v.StartLine, n)
+       h.SetView(v)
+}
+
+// ScrollAdjust can be used to shift the view so that the last line is at the
+// bottom if the user has scrolled past the last line.
+func (h *BufPane) ScrollAdjust() {
+       v := h.GetView()
+       end := h.SLocFromLoc(h.Buf.End())
+       if h.Diff(v.StartLine, end) < h.BufView().Height-1 {
+               v.StartLine = h.Scroll(end, -h.BufView().Height+1)
        }
+       h.SetView(v)
 }
 
 // MousePress is the event that should happen when a normal click happens
@@ -111,22 +120,55 @@ func (h *BufPane) ScrollDownAction() bool {
 // Center centers the view on the cursor
 func (h *BufPane) Center() bool {
        v := h.GetView()
-       v.StartLine = h.Cursor.Y - v.Height/2
-       if v.StartLine+v.Height > h.Buf.LinesNum() {
-               v.StartLine = h.Buf.LinesNum() - v.Height
-       }
-       if v.StartLine < 0 {
-               v.StartLine = 0
-       }
+       v.StartLine = h.Scroll(h.SLocFromLoc(h.Cursor.Loc), -h.BufView().Height/2)
        h.SetView(v)
-       h.Relocate()
+       h.ScrollAdjust()
        return true
 }
 
+// MoveCursorUp is not an action
+func (h *BufPane) MoveCursorUp(n int) {
+       if !h.Buf.Settings["softwrap"].(bool) {
+               h.Cursor.UpN(n)
+       } else {
+               vloc := h.VLocFromLoc(h.Cursor.Loc)
+               sloc := h.Scroll(vloc.SLoc, -n)
+               if sloc == vloc.SLoc {
+                       // we are at the beginning of buffer
+                       h.Cursor.Loc = h.Buf.Start()
+                       h.Cursor.LastVisualX = 0
+               } else {
+                       vloc.SLoc = sloc
+                       vloc.VisualX = h.Cursor.LastVisualX
+                       h.Cursor.Loc = h.LocFromVLoc(vloc)
+               }
+       }
+}
+
+// MoveCursorDown is not an action
+func (h *BufPane) MoveCursorDown(n int) {
+       if !h.Buf.Settings["softwrap"].(bool) {
+               h.Cursor.DownN(n)
+       } else {
+               vloc := h.VLocFromLoc(h.Cursor.Loc)
+               sloc := h.Scroll(vloc.SLoc, n)
+               if sloc == vloc.SLoc {
+                       // we are at the end of buffer
+                       h.Cursor.Loc = h.Buf.End()
+                       vloc = h.VLocFromLoc(h.Cursor.Loc)
+                       h.Cursor.LastVisualX = vloc.VisualX
+               } else {
+                       vloc.SLoc = sloc
+                       vloc.VisualX = h.Cursor.LastVisualX
+                       h.Cursor.Loc = h.LocFromVLoc(vloc)
+               }
+       }
+}
+
 // CursorUp moves the cursor up
 func (h *BufPane) CursorUp() bool {
        h.Cursor.Deselect(true)
-       h.Cursor.Up()
+       h.MoveCursorUp(1)
        h.Relocate()
        return true
 }
@@ -134,7 +176,7 @@ func (h *BufPane) CursorUp() bool {
 // CursorDown moves the cursor down
 func (h *BufPane) CursorDown() bool {
        h.Cursor.Deselect(true)
-       h.Cursor.Down()
+       h.MoveCursorDown(1)
        h.Relocate()
        return true
 }
@@ -212,7 +254,7 @@ func (h *BufPane) SelectUp() bool {
        if !h.Cursor.HasSelection() {
                h.Cursor.OrigSelection[0] = h.Cursor.Loc
        }
-       h.Cursor.Up()
+       h.MoveCursorUp(1)
        h.Cursor.SelectTo(h.Cursor.Loc)
        h.Relocate()
        return true
@@ -223,7 +265,7 @@ func (h *BufPane) SelectDown() bool {
        if !h.Cursor.HasSelection() {
                h.Cursor.OrigSelection[0] = h.Cursor.Loc
        }
-       h.Cursor.Down()
+       h.MoveCursorDown(1)
        h.Cursor.SelectTo(h.Cursor.Loc)
        h.Relocate()
        return true
@@ -768,7 +810,7 @@ func (h *BufPane) SaveAs() bool {
 func (h *BufPane) saveBufToFile(filename string, action string, callback func()) bool {
        err := h.Buf.SaveAs(filename)
        if err != nil {
-               if strings.HasSuffix(err.Error(), "permission denied") {
+               if errors.Is(err, fs.ErrPermission) {
                        saveWithSudo := func() {
                                err = h.Buf.SaveAsWithSudo(filename)
                                if err != nil {
@@ -785,12 +827,15 @@ func (h *BufPane) saveBufToFile(filename string, action string, callback func())
                        if h.Buf.Settings["autosu"].(bool) {
                                saveWithSudo()
                        } else {
-                               InfoBar.YNPrompt("Permission denied. Do you want to save this file using sudo? (y,n)", func(yes, canceled bool) {
-                                       if yes && !canceled {
-                                               saveWithSudo()
-                                               h.completeAction(action)
-                                       }
-                               })
+                               InfoBar.YNPrompt(
+                                       fmt.Sprintf("Permission denied. Do you want to save this file using %s? (y,n)", config.GlobalSettings["sucmd"].(string)),
+                                       func(yes, canceled bool) {
+                                               if yes && !canceled {
+                                                       saveWithSudo()
+                                                       h.completeAction(action)
+                                               }
+                                       },
+                               )
                                return false
                        }
                } else {
@@ -819,8 +864,10 @@ func (h *BufPane) FindLiteral() bool {
 
 // Search searches for a given string/regex in the buffer and selects the next
 // match if a match is found
-// This function affects lastSearch and lastSearchRegex (saved searches) for
-// use with FindNext and FindPrevious
+// This function behaves the same way as Find and FindLiteral actions:
+// it affects the buffer's LastSearch and LastSearchRegex (saved searches)
+// for use with FindNext and FindPrevious, and turns HighlightSearch on or off
+// according to hlsearch setting
 func (h *BufPane) Search(str string, useRegex bool, searchDown bool) error {
        match, found, err := h.Buf.FindNext(str, h.Buf.Start(), h.Buf.End(), h.Cursor.Loc, searchDown, useRegex)
        if err != nil {
@@ -832,8 +879,9 @@ func (h *BufPane) Search(str string, useRegex bool, searchDown bool) error {
                h.Cursor.OrigSelection[0] = h.Cursor.CurSelection[0]
                h.Cursor.OrigSelection[1] = h.Cursor.CurSelection[1]
                h.Cursor.GotoLoc(h.Cursor.CurSelection[1])
-               h.lastSearch = str
-               h.lastSearchRegex = useRegex
+               h.Buf.LastSearch = str
+               h.Buf.LastSearchRegex = useRegex
+               h.Buf.HighlightSearch = h.Buf.Settings["hlsearch"].(bool)
                h.Relocate()
        } else {
                h.Cursor.ResetSelection()
@@ -847,21 +895,24 @@ func (h *BufPane) find(useRegex bool) bool {
        if useRegex {
                prompt = "Find (regex): "
        }
-       InfoBar.Prompt(prompt, "", "Find", func(resp string) {
-               // Event callback
-               match, found, _ := h.Buf.FindNext(resp, h.Buf.Start(), h.Buf.End(), h.searchOrig, true, useRegex)
-               if found {
-                       h.Cursor.SetSelectionStart(match[0])
-                       h.Cursor.SetSelectionEnd(match[1])
-                       h.Cursor.OrigSelection[0] = h.Cursor.CurSelection[0]
-                       h.Cursor.OrigSelection[1] = h.Cursor.CurSelection[1]
-                       h.Cursor.GotoLoc(match[1])
-               } else {
-                       h.Cursor.GotoLoc(h.searchOrig)
-                       h.Cursor.ResetSelection()
+       var eventCallback func(resp string)
+       if h.Buf.Settings["incsearch"].(bool) {
+               eventCallback = func(resp string) {
+                       match, found, _ := h.Buf.FindNext(resp, h.Buf.Start(), h.Buf.End(), h.searchOrig, true, useRegex)
+                       if found {
+                               h.Cursor.SetSelectionStart(match[0])
+                               h.Cursor.SetSelectionEnd(match[1])
+                               h.Cursor.OrigSelection[0] = h.Cursor.CurSelection[0]
+                               h.Cursor.OrigSelection[1] = h.Cursor.CurSelection[1]
+                               h.Cursor.GotoLoc(match[1])
+                       } else {
+                               h.Cursor.GotoLoc(h.searchOrig)
+                               h.Cursor.ResetSelection()
+                       }
+                       h.Relocate()
                }
-               h.Relocate()
-       }, func(resp string, canceled bool) {
+       }
+       findCallback := func(resp string, canceled bool) {
                // Finished callback
                if !canceled {
                        match, found, err := h.Buf.FindNext(resp, h.Buf.Start(), h.Buf.End(), h.searchOrig, true, useRegex)
@@ -874,8 +925,9 @@ func (h *BufPane) find(useRegex bool) bool {
                                h.Cursor.OrigSelection[0] = h.Cursor.CurSelection[0]
                                h.Cursor.OrigSelection[1] = h.Cursor.CurSelection[1]
                                h.Cursor.GotoLoc(h.Cursor.CurSelection[1])
-                               h.lastSearch = resp
-                               h.lastSearchRegex = useRegex
+                               h.Buf.LastSearch = resp
+                               h.Buf.LastSearchRegex = useRegex
+                               h.Buf.HighlightSearch = h.Buf.Settings["hlsearch"].(bool)
                        } else {
                                h.Cursor.ResetSelection()
                                InfoBar.Message("No matches found")
@@ -884,8 +936,27 @@ func (h *BufPane) find(useRegex bool) bool {
                        h.Cursor.ResetSelection()
                }
                h.Relocate()
-       })
+       }
+       pattern := string(h.Cursor.GetSelection())
+       if eventCallback != nil && pattern != "" {
+               eventCallback(pattern)
+       }
+       InfoBar.Prompt(prompt, pattern, "Find", eventCallback, findCallback)
+       if pattern != "" {
+               InfoBar.SelectAll()
+       }
+       return true
+}
 
+// ToggleHighlightSearch toggles highlighting all instances of the last used search term
+func (h *BufPane) ToggleHighlightSearch() bool {
+       h.Buf.HighlightSearch = !h.Buf.HighlightSearch
+       return true
+}
+
+// UnhighlightSearch unhighlights all instances of the last used search term
+func (h *BufPane) UnhighlightSearch() bool {
+       h.Buf.HighlightSearch = false
        return true
 }
 
@@ -899,7 +970,7 @@ func (h *BufPane) FindNext() bool {
        if h.Cursor.HasSelection() {
                searchLoc = h.Cursor.CurSelection[1]
        }
-       match, found, err := h.Buf.FindNext(h.lastSearch, h.Buf.Start(), h.Buf.End(), searchLoc, true, h.lastSearchRegex)
+       match, found, err := h.Buf.FindNext(h.Buf.LastSearch, h.Buf.Start(), h.Buf.End(), searchLoc, true, h.Buf.LastSearchRegex)
        if err != nil {
                InfoBar.Error(err)
        }
@@ -926,7 +997,7 @@ func (h *BufPane) FindPrevious() bool {
        if h.Cursor.HasSelection() {
                searchLoc = h.Cursor.CurSelection[0]
        }
-       match, found, err := h.Buf.FindNext(h.lastSearch, h.Buf.Start(), h.Buf.End(), searchLoc, false, h.lastSearchRegex)
+       match, found, err := h.Buf.FindNext(h.Buf.LastSearch, h.Buf.Start(), h.Buf.End(), searchLoc, false, h.Buf.LastSearchRegex)
        if err != nil {
                InfoBar.Error(err)
        }
@@ -970,16 +1041,16 @@ func (h *BufPane) Copy() bool {
        return true
 }
 
-// Copy the current line to the clipboard
+// CopyLine copies the current line to the clipboard
 func (h *BufPane) CopyLine() bool {
        if h.Cursor.HasSelection() {
                return false
-       } else {
-               h.Cursor.SelectLine()
-               h.Cursor.CopySelection(clipboard.ClipboardReg)
-               h.freshClip = true
-               InfoBar.Message("Copied line")
        }
+       h.Cursor.SelectLine()
+       h.Cursor.CopySelection(clipboard.ClipboardReg)
+       h.freshClip = true
+       InfoBar.Message("Copied line")
+
        h.Cursor.Deselect(true)
        h.Relocate()
        return true
@@ -1022,14 +1093,15 @@ func (h *BufPane) Cut() bool {
 
                h.Relocate()
                return true
-       } else {
-               return h.CutLine()
        }
+       return h.CutLine()
 }
 
 // DuplicateLine duplicates the current line or selection
 func (h *BufPane) DuplicateLine() bool {
+       var infoMessage = "Duplicated line"
        if h.Cursor.HasSelection() {
+               infoMessage = "Duplicated selection"
                h.Buf.Insert(h.Cursor.CurSelection[1], string(h.Cursor.GetSelection()))
        } else {
                h.Cursor.End()
@@ -1037,7 +1109,7 @@ func (h *BufPane) DuplicateLine() bool {
                // h.Cursor.Right()
        }
 
-       InfoBar.Message("Duplicated line")
+       InfoBar.Message(infoMessage)
        h.Relocate()
        return true
 }
@@ -1166,7 +1238,7 @@ func (h *BufPane) paste(clip string) {
        if h.Buf.Settings["smartpaste"].(bool) {
                if h.Cursor.X > 0 && len(util.GetLeadingWhitespace([]byte(strings.TrimLeft(clip, "\r\n")))) == 0 {
                        leadingWS := util.GetLeadingWhitespace(h.Buf.LineBytes(h.Cursor.Y))
-                       clip = strings.Replace(clip, "\n", "\n"+string(leadingWS), -1)
+                       clip = strings.ReplaceAll(clip, "\n", "\n"+string(leadingWS))
                }
        }
 
@@ -1195,6 +1267,7 @@ func (h *BufPane) JumpToMatchingBrace() bool {
                                } else {
                                        h.Cursor.GotoLoc(matchingBrace.Move(1, h.Buf))
                                }
+                               break
                        } else {
                                return false
                        }
@@ -1239,45 +1312,29 @@ func (h *BufPane) JumpLine() bool {
 // Start moves the viewport to the start of the buffer
 func (h *BufPane) Start() bool {
        v := h.GetView()
-       v.StartLine = 0
+       v.StartLine = display.SLoc{0, 0}
        h.SetView(v)
        return true
 }
 
 // End moves the viewport to the end of the buffer
 func (h *BufPane) End() bool {
-       // TODO: softwrap problems?
        v := h.GetView()
-       if v.Height > h.Buf.LinesNum() {
-               v.StartLine = 0
-               h.SetView(v)
-       } else {
-               v.StartLine = h.Buf.LinesNum() - v.Height
-               h.SetView(v)
-       }
+       v.StartLine = h.Scroll(h.SLocFromLoc(h.Buf.End()), -h.BufView().Height+1)
+       h.SetView(v)
        return true
 }
 
 // PageUp scrolls the view up a page
 func (h *BufPane) PageUp() bool {
-       v := h.GetView()
-       if v.StartLine > v.Height {
-               h.ScrollUp(v.Height)
-       } else {
-               v.StartLine = 0
-       }
-       h.SetView(v)
+       h.ScrollUp(h.BufView().Height)
        return true
 }
 
 // PageDown scrolls the view down a page
 func (h *BufPane) PageDown() bool {
-       v := h.GetView()
-       if h.Buf.LinesNum()-(v.StartLine+v.Height) > v.Height {
-               h.ScrollDown(v.Height)
-       } else if h.Buf.LinesNum() >= v.Height {
-               v.StartLine = h.Buf.LinesNum() - v.Height
-       }
+       h.ScrollDown(h.BufView().Height)
+       h.ScrollAdjust()
        return true
 }
 
@@ -1286,7 +1343,7 @@ func (h *BufPane) SelectPageUp() bool {
        if !h.Cursor.HasSelection() {
                h.Cursor.OrigSelection[0] = h.Cursor.Loc
        }
-       h.Cursor.UpN(h.GetView().Height)
+       h.MoveCursorUp(h.BufView().Height)
        h.Cursor.SelectTo(h.Cursor.Loc)
        h.Relocate()
        return true
@@ -1297,7 +1354,7 @@ func (h *BufPane) SelectPageDown() bool {
        if !h.Cursor.HasSelection() {
                h.Cursor.OrigSelection[0] = h.Cursor.Loc
        }
-       h.Cursor.DownN(h.GetView().Height)
+       h.MoveCursorDown(h.BufView().Height)
        h.Cursor.SelectTo(h.Cursor.Loc)
        h.Relocate()
        return true
@@ -1312,7 +1369,7 @@ func (h *BufPane) CursorPageUp() bool {
                h.Cursor.ResetSelection()
                h.Cursor.StoreVisualX()
        }
-       h.Cursor.UpN(h.GetView().Height)
+       h.MoveCursorUp(h.BufView().Height)
        h.Relocate()
        return true
 }
@@ -1326,34 +1383,21 @@ func (h *BufPane) CursorPageDown() bool {
                h.Cursor.ResetSelection()
                h.Cursor.StoreVisualX()
        }
-       h.Cursor.DownN(h.GetView().Height)
+       h.MoveCursorDown(h.BufView().Height)
        h.Relocate()
        return true
 }
 
 // HalfPageUp scrolls the view up half a page
 func (h *BufPane) HalfPageUp() bool {
-       v := h.GetView()
-       if v.StartLine > v.Height/2 {
-               h.ScrollUp(v.Height / 2)
-       } else {
-               v.StartLine = 0
-       }
-       h.SetView(v)
+       h.ScrollUp(h.BufView().Height / 2)
        return true
 }
 
 // HalfPageDown scrolls the view down half a page
 func (h *BufPane) HalfPageDown() bool {
-       v := h.GetView()
-       if h.Buf.LinesNum()-(v.StartLine+v.Height) > v.Height/2 {
-               h.ScrollDown(v.Height / 2)
-       } else {
-               if h.Buf.LinesNum() >= v.Height {
-                       v.StartLine = h.Buf.LinesNum() - v.Height
-               }
-       }
-       h.SetView(v)
+       h.ScrollDown(h.BufView().Height / 2)
+       h.ScrollAdjust()
        return true
 }
 
@@ -1452,39 +1496,43 @@ func (h *BufPane) ClearInfo() bool {
        return true
 }
 
+// ForceQuit closes the current tab or view even if there are unsaved changes
+// (no prompt)
+func (h *BufPane) ForceQuit() bool {
+       h.Buf.Close()
+       if len(MainTab().Panes) > 1 {
+               h.Unsplit()
+       } else if len(Tabs.List) > 1 {
+               Tabs.RemoveTab(h.splitID)
+       } else {
+               screen.Screen.Fini()
+               InfoBar.Close()
+               runtime.Goexit()
+       }
+       return true
+}
+
 // Quit this will close the current tab or view that is open
 func (h *BufPane) Quit() bool {
-       quit := func() {
-               h.Buf.Close()
-               if len(MainTab().Panes) > 1 {
-                       h.Unsplit()
-               } else if len(Tabs.List) > 1 {
-                       Tabs.RemoveTab(h.splitID)
-               } else {
-                       screen.Screen.Fini()
-                       InfoBar.Close()
-                       runtime.Goexit()
-               }
-       }
        if h.Buf.Modified() {
                if config.GlobalSettings["autosave"].(float64) > 0 {
                        // autosave on means we automatically save when quitting
                        h.SaveCB("Quit", func() {
-                               quit()
+                               h.ForceQuit()
                        })
                } else {
                        InfoBar.YNPrompt("Save changes to "+h.Buf.GetName()+" before closing? (y,n,esc)", func(yes, canceled bool) {
                                if !canceled && !yes {
-                                       quit()
+                                       h.ForceQuit()
                                } else if !canceled && yes {
                                        h.SaveCB("Quit", func() {
-                                               quit()
+                                               h.ForceQuit()
                                        })
                                }
                        })
                }
        } else {
-               quit()
+               h.ForceQuit()
        }
        return true
 }
@@ -1607,12 +1655,12 @@ func (h *BufPane) PreviousSplit() bool {
 }
 
 var curmacro []interface{}
-var recording_macro bool
+var recordingMacro bool
 
 // ToggleMacro toggles recording of a macro
 func (h *BufPane) ToggleMacro() bool {
-       recording_macro = !recording_macro
-       if recording_macro {
+       recordingMacro = !recordingMacro
+       if recordingMacro {
                curmacro = []interface{}{}
                InfoBar.Message("Recording")
        } else {
@@ -1624,7 +1672,7 @@ func (h *BufPane) ToggleMacro() bool {
 
 // PlayMacro plays back the most recently recorded macro
 func (h *BufPane) PlayMacro() bool {
-       if recording_macro {
+       if recordingMacro {
                return false
        }
        for _, action := range curmacro {
@@ -1684,10 +1732,9 @@ func (h *BufPane) SpawnMultiCursor() bool {
 func (h *BufPane) SpawnMultiCursorUp() bool {
        if h.Cursor.Y == 0 {
                return false
-       } else {
-               h.Cursor.GotoLoc(buffer.Loc{h.Cursor.X, h.Cursor.Y - 1})
-               h.Cursor.Relocate()
        }
+       h.Cursor.GotoLoc(buffer.Loc{h.Cursor.X, h.Cursor.Y - 1})
+       h.Cursor.Relocate()
 
        c := buffer.NewCursor(h.Buf, buffer.Loc{h.Cursor.X, h.Cursor.Y + 1})
        h.Buf.AddCursor(c)
@@ -1702,10 +1749,9 @@ func (h *BufPane) SpawnMultiCursorUp() bool {
 func (h *BufPane) SpawnMultiCursorDown() bool {
        if h.Cursor.Y+1 == h.Buf.LinesNum() {
                return false
-       } else {
-               h.Cursor.GotoLoc(buffer.Loc{h.Cursor.X, h.Cursor.Y + 1})
-               h.Cursor.Relocate()
        }
+       h.Cursor.GotoLoc(buffer.Loc{h.Cursor.X, h.Cursor.Y + 1})
+       h.Cursor.Relocate()
 
        c := buffer.NewCursor(h.Buf, buffer.Loc{h.Cursor.X, h.Cursor.Y - 1})
        h.Buf.AddCursor(c)
index 76f29e3bfef026d3869abe3677c7233bed4c76fe..c4a6964bc9467421733eae4c1e0e3f1f26c93eae 100644 (file)
@@ -3,6 +3,7 @@ package action
 import (
        "encoding/json"
        "errors"
+       "fmt"
        "io/ioutil"
        "os"
        "path/filepath"
@@ -61,7 +62,11 @@ func InitBindings() {
                case string:
                        BindKey(k, val, Binder["buffer"])
                case map[string]interface{}:
-                       bind := Binder[k]
+                       bind, ok := Binder[k]
+                       if !ok || bind == nil {
+                               screen.TermMessage(fmt.Sprintf("%s is not a valid pane type", k))
+                               continue
+                       }
                        for e, a := range val {
                                s, ok := a.(string)
                                if !ok {
@@ -238,7 +243,7 @@ func findEvent(k string) (Event, error) {
 // Returns true if the keybinding already existed and a possible error
 func TryBindKey(k, v string, overwrite bool) (bool, error) {
        var e error
-       var parsed map[string]string
+       var parsed map[string]interface{}
 
        filename := filepath.Join(config.ConfigDir, "bindings.json")
        createBindingsIfNotExist(filename)
@@ -288,7 +293,7 @@ func TryBindKey(k, v string, overwrite bool) (bool, error) {
 // UnbindKey removes the binding for a key from the bindings.json file
 func UnbindKey(k string) error {
        var e error
-       var parsed map[string]string
+       var parsed map[string]interface{}
 
        filename := filepath.Join(config.ConfigDir, "bindings.json")
        createBindingsIfNotExist(filename)
index 40b55f56c3e7a35bf0f8503b670594d2e1e70f12..583e46ced95a1ebc07ce4912f6898890fef47ba8 100644 (file)
@@ -16,17 +16,23 @@ import (
        "github.com/zyedidia/tcell/v2"
 )
 
+// BufKeyAction represents an action bound to a key.
 type BufKeyAction func(*BufPane) bool
+
+// BufMouseAction is an action that must be bound to a mouse event.
 type BufMouseAction func(*BufPane, *tcell.EventMouse) bool
 
+// BufBindings stores the bindings for the buffer pane type.
 var BufBindings *KeyTree
 
+// BufKeyActionGeneral makes a general pane action from a BufKeyAction.
 func BufKeyActionGeneral(a BufKeyAction) PaneKeyAction {
        return func(p Pane) bool {
                return a(p.(*BufPane))
        }
 }
 
+// BufMouseActionGeneral makes a general pane mouse action from a BufKeyAction.
 func BufMouseActionGeneral(a BufMouseAction) PaneMouseAction {
        return func(p Pane, me *tcell.EventMouse) bool {
                return a(p.(*BufPane), me)
@@ -37,6 +43,7 @@ func init() {
        BufBindings = NewKeyTree()
 }
 
+// LuaAction makes a BufKeyAction from a lua function.
 func LuaAction(fn string) func(*BufPane) bool {
        luaFn := strings.Split(fn, ".")
        if len(luaFn) <= 1 {
@@ -219,9 +226,6 @@ type BufPane struct {
        // Same here, just to keep track for mouse move events
        tripleClick bool
 
-       // Last search stores the last successful search for FindNext and FindPrev
-       lastSearch      string
-       lastSearchRegex bool
        // Should the current multiple cursor selection search based on word or
        // based on selection (false for selection, true for word)
        multiWord bool
@@ -233,6 +237,7 @@ type BufPane struct {
        searchOrig buffer.Loc
 }
 
+// NewBufPane creates a new buffer pane with the given window.
 func NewBufPane(buf *buffer.Buffer, win display.BWindow, tab *Tab) *BufPane {
        h := new(BufPane)
        h.Buf = buf
@@ -247,15 +252,19 @@ func NewBufPane(buf *buffer.Buffer, win display.BWindow, tab *Tab) *BufPane {
        return h
 }
 
+// NewBufPaneFromBuf constructs a new pane from the given buffer and automatically
+// creates a buf window.
 func NewBufPaneFromBuf(buf *buffer.Buffer, tab *Tab) *BufPane {
        w := display.NewBufWindow(0, 0, 0, 0, buf)
        return NewBufPane(buf, w, tab)
 }
 
+// SetTab sets this pane's tab.
 func (h *BufPane) SetTab(t *Tab) {
        h.tab = t
 }
 
+// Tab returns this pane's tab.
 func (h *BufPane) Tab() *Tab {
        return h.tab
 }
@@ -266,9 +275,8 @@ func (h *BufPane) ResizePane(size int) {
        h.tab.Resize()
 }
 
-// PluginCB calls all plugin callbacks with a certain name and
-// displays an error if there is one and returns the aggregrate
-// boolean response
+// PluginCB calls all plugin callbacks with a certain name and displays an
+// error if there is one and returns the aggregrate boolean response
 func (h *BufPane) PluginCB(cb string) bool {
        b, err := config.RunPluginFnBool(cb, luar.New(ulua.L, h))
        if err != nil {
@@ -277,8 +285,7 @@ func (h *BufPane) PluginCB(cb string) bool {
        return b
 }
 
-// PluginCBRune is the same as PluginCB but also passes a rune to
-// the plugins
+// PluginCBRune is the same as PluginCB but also passes a rune to the plugins
 func (h *BufPane) PluginCBRune(cb string, r rune) bool {
        b, err := config.RunPluginFnBool(cb, luar.New(ulua.L, h), luar.New(ulua.L, string(r)))
        if err != nil {
@@ -287,6 +294,7 @@ func (h *BufPane) PluginCBRune(cb string, r rune) bool {
        return b
 }
 
+// OpenBuffer opens the given buffer in this pane.
 func (h *BufPane) OpenBuffer(b *buffer.Buffer) {
        h.Buf.Close()
        h.Buf = b
@@ -294,23 +302,26 @@ func (h *BufPane) OpenBuffer(b *buffer.Buffer) {
        h.Cursor = b.GetActiveCursor()
        h.Resize(h.GetView().Width, h.GetView().Height)
        h.Relocate()
-       // Set mouseReleased to true because we assume the mouse is not being pressed when
-       // the editor is opened
+       // Set mouseReleased to true because we assume the mouse is not being
+       // pressed when the editor is opened
        h.mouseReleased = true
-       // Set isOverwriteMode to false, because we assume we are in the default mode when editor
-       // is opened
+       // Set isOverwriteMode to false, because we assume we are in the default
+       // mode when editor is opened
        h.isOverwriteMode = false
        h.lastClickTime = time.Time{}
 }
 
+// ID returns this pane's split id.
 func (h *BufPane) ID() uint64 {
        return h.splitID
 }
 
+// SetID sets the split ID of this pane.
 func (h *BufPane) SetID(i uint64) {
        h.splitID = i
 }
 
+// Name returns the BufPane's name.
 func (h *BufPane) Name() string {
        n := h.Buf.GetName()
        if h.Buf.Modified() {
@@ -421,6 +432,7 @@ func (h *BufPane) HandleEvent(event tcell.Event) {
        }
 }
 
+// Bindings returns the current bindings tree for this buffer.
 func (h *BufPane) Bindings() *KeyTree {
        if h.bindings != nil {
                return h.bindings
@@ -455,7 +467,7 @@ func (h *BufPane) execAction(action func(*BufPane) bool, name string, cursor int
                        success = success && h.PluginCB("on"+name)
 
                        if isMulti {
-                               if recording_macro {
+                               if recordingMacro {
                                        if name != "ToggleMacro" && name != "PlayMacro" {
                                                curmacro = append(curmacro, action)
                                        }
@@ -527,7 +539,7 @@ func (h *BufPane) DoRuneInsert(r rune) {
                } else {
                        h.Buf.Insert(c.Loc, string(r))
                }
-               if recording_macro {
+               if recordingMacro {
                        curmacro = append(curmacro, r)
                }
                h.Relocate()
@@ -535,6 +547,7 @@ func (h *BufPane) DoRuneInsert(r rune) {
        }
 }
 
+// VSplitIndex opens the given buffer in a vertical split on the given side.
 func (h *BufPane) VSplitIndex(buf *buffer.Buffer, right bool) *BufPane {
        e := NewBufPaneFromBuf(buf, h.tab)
        e.splitID = MainTab().GetNode(h.splitID).VSplit(right)
@@ -543,6 +556,8 @@ func (h *BufPane) VSplitIndex(buf *buffer.Buffer, right bool) *BufPane {
        MainTab().SetActive(len(MainTab().Panes) - 1)
        return e
 }
+
+// HSplitIndex opens the given buffer in a horizontal split on the given side.
 func (h *BufPane) HSplitIndex(buf *buffer.Buffer, bottom bool) *BufPane {
        e := NewBufPaneFromBuf(buf, h.tab)
        e.splitID = MainTab().GetNode(h.splitID).HSplit(bottom)
@@ -552,16 +567,22 @@ func (h *BufPane) HSplitIndex(buf *buffer.Buffer, bottom bool) *BufPane {
        return e
 }
 
+// VSplitBuf opens the given buffer in a new vertical split.
 func (h *BufPane) VSplitBuf(buf *buffer.Buffer) *BufPane {
        return h.VSplitIndex(buf, h.Buf.Settings["splitright"].(bool))
 }
+
+// HSplitBuf opens the given buffer in a new horizontal split.
 func (h *BufPane) HSplitBuf(buf *buffer.Buffer) *BufPane {
        return h.HSplitIndex(buf, h.Buf.Settings["splitbottom"].(bool))
 }
+
+// Close this pane.
 func (h *BufPane) Close() {
        h.Buf.Close()
 }
 
+// SetActive marks this pane as active.
 func (h *BufPane) SetActive(b bool) {
        h.BWindow.SetActive(b)
        if b {
@@ -659,6 +680,8 @@ var BufKeyActions = map[string]BufKeyAction{
        "ToggleKeyMenu":             (*BufPane).ToggleKeyMenu,
        "ToggleDiffGutter":          (*BufPane).ToggleDiffGutter,
        "ToggleRuler":               (*BufPane).ToggleRuler,
+       "ToggleHighlightSearch":     (*BufPane).ToggleHighlightSearch,
+       "UnhighlightSearch":         (*BufPane).UnhighlightSearch,
        "ClearStatus":               (*BufPane).ClearStatus,
        "ShellMode":                 (*BufPane).ShellMode,
        "CommandMode":               (*BufPane).CommandMode,
@@ -666,6 +689,7 @@ var BufKeyActions = map[string]BufKeyAction{
        "Escape":                    (*BufPane).Escape,
        "Quit":                      (*BufPane).Quit,
        "QuitAll":                   (*BufPane).QuitAll,
+       "ForceQuit":                 (*BufPane).ForceQuit,
        "AddTab":                    (*BufPane).AddTab,
        "PreviousTab":               (*BufPane).PreviousTab,
        "NextTab":                   (*BufPane).NextTab,
index 28e8bfd6673663f381ea5857bf166a7fcf166a57..6e0c795cc3011c3c03781a9fb344fd107b5f3c39 100644 (file)
@@ -820,7 +820,7 @@ func (h *BufPane) ReplaceCmd(args []string) {
                searchLoc := h.Cursor.Loc
                var doReplacement func()
                doReplacement = func() {
-                       locs, found, err := h.Buf.FindNext(search, start, end, searchLoc, true, !noRegex)
+                       locs, found, err := h.Buf.FindNext(search, start, end, searchLoc, true, true)
                        if err != nil {
                                InfoBar.Error(err)
                                return
@@ -835,6 +835,9 @@ func (h *BufPane) ReplaceCmd(args []string) {
                        h.Cursor.SetSelectionStart(locs[0])
                        h.Cursor.SetSelectionEnd(locs[1])
                        h.Cursor.GotoLoc(locs[0])
+                       h.Buf.LastSearch = search
+                       h.Buf.LastSearchRegex = true
+                       h.Buf.HighlightSearch = h.Buf.Settings["hlsearch"].(bool)
 
                        h.Relocate()
 
index c04d717e8d82d8308417661b255198582b458327..bae699100f75c4d5f5b6ad76f7d99e40c625ce64 100644 (file)
@@ -38,6 +38,7 @@ var bufdefaults = map[string]string{
        "Ctrl-o":         "OpenFile",
        "Ctrl-s":         "Save",
        "Ctrl-f":         "Find",
+       "Alt-F":          "FindLiteral",
        "Ctrl-n":         "FindNext",
        "Ctrl-p":         "FindPrevious",
        "Ctrl-z":         "Undo",
@@ -86,7 +87,7 @@ var bufdefaults = map[string]string{
        "F4":  "Quit",
        "F7":  "Find",
        "F10": "Quit",
-       "Esc": "Escape,Deselect,ClearInfo,RemoveAllMultiCursors",
+       "Esc": "Escape,Deselect,ClearInfo,RemoveAllMultiCursors,UnhighlightSearch",
 
        // Mouse bindings
        "MouseWheelUp":   "ScrollUp",
index d0290e403178dafdee3b0b4b5fc08dc3547b28fa..39a9e0e3ddb87bc49be094603d9694c147aa2987 100644 (file)
@@ -40,6 +40,7 @@ var bufdefaults = map[string]string{
        "Ctrl-o":         "OpenFile",
        "Ctrl-s":         "Save",
        "Ctrl-f":         "Find",
+       "Alt-F":          "FindLiteral",
        "Ctrl-n":         "FindNext",
        "Ctrl-p":         "FindPrevious",
        "Ctrl-z":         "Undo",
@@ -88,7 +89,7 @@ var bufdefaults = map[string]string{
        "F4":  "Quit",
        "F7":  "Find",
        "F10": "Quit",
-       "Esc": "Escape,Deselect,ClearInfo,RemoveAllMultiCursors",
+       "Esc": "Escape,Deselect,ClearInfo,RemoveAllMultiCursors,UnhighlightSearch",
 
        // Mouse bindings
        "MouseWheelUp":   "ScrollUp",
index 4a3b8375a91f8f732f71066b6dd2e4946fda214b..c4869c11662d3a9d6faa9c5ba48033284dd9dd5c 100644 (file)
@@ -2,7 +2,10 @@ package action
 
 import "github.com/zyedidia/micro/v2/internal/buffer"
 
+// InfoBar is the global info bar.
 var InfoBar *InfoPane
+
+// LogBufPane is a global log buffer.
 var LogBufPane *BufPane
 
 // InitGlobals initializes the log buffer and the info bar
@@ -21,13 +24,6 @@ func WriteLog(s string) {
        buffer.WriteLog(s)
        if LogBufPane != nil {
                LogBufPane.CursorEnd()
-               v := LogBufPane.GetView()
-               endY := buffer.LogBuf.End().Y
-
-               if endY > v.StartLine+v.Height {
-                       v.StartLine = buffer.LogBuf.End().Y - v.Height + 2
-                       LogBufPane.SetView(v)
-               }
        }
 }
 
@@ -37,12 +33,4 @@ func WriteLog(s string) {
 func (h *BufPane) OpenLogBuf() {
        LogBufPane = h.HSplitBuf(buffer.LogBuf)
        LogBufPane.CursorEnd()
-
-       v := LogBufPane.GetView()
-       endY := buffer.LogBuf.End().Y
-
-       if endY > v.StartLine+v.Height {
-               v.StartLine = buffer.LogBuf.End().Y - v.Height + 2
-               LogBufPane.SetView(v)
-       }
 }
index b85a49b34a75f677568f9500f9337ae95f7d3692..7fad9ad6bebb0282d58f486d58a845b55b5a31ea 100644 (file)
@@ -93,10 +93,10 @@ func (h *InfoPane) HandleEvent(event tcell.Event) {
                done := h.DoKeyEvent(ke)
                hasYN := h.HasYN
                if e.Key() == tcell.KeyRune && hasYN {
-                       if e.Rune() == 'y' && hasYN {
+                       if (e.Rune() == 'y' || e.Rune() == 'Y') && hasYN {
                                h.YNResp = true
                                h.DonePrompt(false)
-                       } else if e.Rune() == 'n' && hasYN {
+                       } else if (e.Rune() == 'n' || e.Rune() == 'N') && hasYN {
                                h.YNResp = false
                                h.DonePrompt(false)
                        }
index d507eb11163321c224f652c05aa8049379ec78ab..895a88bae01fbee82268e3d77cf1a51e105e967c 100644 (file)
@@ -229,7 +229,7 @@ func (k *KeyTree) ResetEvents() {
        k.cursor.mouseInfo = nil
 }
 
-// CurrentEventsStr returns the list of recorded events as a string
+// RecordedEventsStr returns the list of recorded events as a string
 func (k *KeyTree) RecordedEventsStr() string {
        buf := &bytes.Buffer{}
        for _, e := range k.cursor.recordedEvents {
index 4c9194791f5633363932e25f09957ba8576e98b4..261215ca661f70207c21cc7db1f6978329baf0ad 100644 (file)
@@ -4,6 +4,7 @@ import (
        "github.com/zyedidia/micro/v2/internal/display"
 )
 
+// A Pane is a general interface for a window in the editor.
 type Pane interface {
        Handler
        display.Window
index 7ea9dbb2a39bc103ea3823c417c9b0d43bfe6432..a043651eba6cd847ca0c9cd22231d08665e2eb0b 100644 (file)
@@ -26,8 +26,9 @@ The backup was created on %s, and the file is
   When the buffer is closed, the backup will be removed.
 * 'ignore' will ignore the backup, discarding its changes. The backup file
   will be removed.
+* 'abort' will abort the open operation, and instead open an empty buffer.
 
-Options: [r]ecover, [i]gnore: `
+Options: [r]ecover, [i]gnore, [a]bort: `
 
 var backupRequestChan chan *Buffer
 
@@ -118,7 +119,7 @@ func (b *Buffer) RemoveBackup() {
 
 // ApplyBackup applies the corresponding backup file to this buffer (if one exists)
 // Returns true if a backup was applied
-func (b *Buffer) ApplyBackup(fsize int64) bool {
+func (b *Buffer) ApplyBackup(fsize int64) (bool, bool) {
        if b.Settings["backup"].(bool) && !b.Settings["permbackup"].(bool) && len(b.Path) > 0 && b.Type == BTDefault {
                backupfile := filepath.Join(config.ConfigDir, "backups", util.EscapePath(b.AbsPath))
                if info, err := os.Stat(backupfile); err == nil {
@@ -127,20 +128,22 @@ func (b *Buffer) ApplyBackup(fsize int64) bool {
                                defer backup.Close()
                                t := info.ModTime()
                                msg := fmt.Sprintf(backupMsg, t.Format("Mon Jan _2 at 15:04, 2006"), util.EscapePath(b.AbsPath))
-                               choice := screen.TermPrompt(msg, []string{"r", "i", "recover", "ignore"}, true)
+                               choice := screen.TermPrompt(msg, []string{"r", "i", "a", "recover", "ignore", "abort"}, true)
 
-                               if choice%2 == 0 {
+                               if choice%3 == 0 {
                                        // recover
                                        b.LineArray = NewLineArray(uint64(fsize), FFAuto, backup)
                                        b.isModified = true
-                                       return true
-                               } else if choice%2 == 1 {
+                                       return true, true
+                               } else if choice%3 == 1 {
                                        // delete
                                        os.Remove(backupfile)
+                               } else if choice%3 == 2 {
+                                       return false, false
                                }
                        }
                }
        }
 
-       return false
+       return false, true
 }
index 387b041ca769f80bda406dd03cbc668ccda95179..56302e9dc5f3404575400e5d78b1ee4f414ae1f4 100644 (file)
@@ -146,18 +146,20 @@ func (b *SharedBuffer) remove(start, end Loc) []byte {
 func (b *SharedBuffer) MarkModified(start, end int) {
        b.ModifiedThisFrame = true
 
-       if !b.Settings["syntax"].(bool) || b.SyntaxDef == nil {
-               return
-       }
-
        start = util.Clamp(start, 0, len(b.lines)-1)
        end = util.Clamp(end, 0, len(b.lines)-1)
 
-       l := -1
+       if b.Settings["syntax"].(bool) && b.SyntaxDef != nil {
+               l := -1
+               for i := start; i <= end; i++ {
+                       l = util.Max(b.Highlighter.ReHighlightStates(b, i), l)
+               }
+               b.Highlighter.HighlightMatches(b, start, l)
+       }
+
        for i := start; i <= end; i++ {
-               l = util.Max(b.Highlighter.ReHighlightStates(b, i), l)
+               b.LineArray.invalidateSearchMatches(i)
        }
-       b.Highlighter.HighlightMatches(b, start, l)
 }
 
 // DisableReload disables future reloads of this sharedbuffer
@@ -181,6 +183,7 @@ type DiffStatus byte
 // The syntax highlighting info must be stored with the buffer because the syntax
 // highlighter attaches information to each line of the buffer for optimization
 // purposes so it doesn't have to rehighlight everything on every update.
+// Likewise for the search highlighting.
 type Buffer struct {
        *EventHandler
        *SharedBuffer
@@ -189,6 +192,25 @@ type Buffer struct {
        cursors     []*Cursor
        curCursor   int
        StartCursor Loc
+
+       // OptionCallback is called after a buffer option value is changed.
+       // The display module registers its OptionCallback to ensure the buffer window
+       // is properly updated when needed. This is a workaround for the fact that
+       // the buffer module cannot directly call the display's API (it would mean
+       // a circular dependency between packages).
+       OptionCallback func(option string, nativeValue interface{})
+
+       // The display module registers its own GetVisualX function for getting
+       // the correct visual x location of a cursor when softwrap is used.
+       // This is hacky. Maybe it would be better to move all the visual x logic
+       // from buffer to display, but it would require rewriting a lot of code.
+       GetVisualX func(loc Loc) int
+
+       // Last search stores the last successful search
+       LastSearch      string
+       LastSearchRegex bool
+       // HighlightSearch enables highlighting all instances of the last successful search
+       HighlightSearch bool
 }
 
 // NewBufferFromFileAtLoc opens a new buffer with a given cursor location
@@ -212,21 +234,39 @@ func NewBufferFromFileAtLoc(path string, btype BufType, cursorLoc Loc) (*Buffer,
                return nil, err
        }
 
-       file, err := os.Open(filename)
-       fileInfo, _ := os.Stat(filename)
+       f, err := os.OpenFile(filename, os.O_WRONLY, 0)
+       readonly := os.IsPermission(err)
+       f.Close()
 
-       if err == nil && fileInfo.IsDir() {
+       fileInfo, serr := os.Stat(filename)
+       if serr != nil && !os.IsNotExist(serr) {
+               return nil, serr
+       }
+       if serr == nil && fileInfo.IsDir() {
                return nil, errors.New("Error: " + filename + " is a directory and cannot be opened")
        }
 
-       defer file.Close()
+       file, err := os.Open(filename)
+       if err == nil {
+               defer file.Close()
+       }
 
        var buf *Buffer
-       if err != nil {
+       if os.IsNotExist(err) {
                // File does not exist -- create an empty buffer with that name
                buf = NewBufferFromString("", filename, btype)
+       } else if err != nil {
+               return nil, err
        } else {
                buf = NewBuffer(file, util.FSize(file), filename, cursorLoc, btype)
+               if buf == nil {
+                       return nil, errors.New("could not open file")
+               }
+       }
+
+       if readonly && prompt != nil {
+               prompt.Message(fmt.Sprintf("Warning: file is readonly - %s will be attempted when saving", config.GlobalSettings["sucmd"].(string)))
+               // buf.SetOptionNative("readonly", true)
        }
 
        return buf, nil
@@ -256,7 +296,10 @@ func NewBufferFromString(text, path string, btype BufType) *Buffer {
 // Places the cursor at startcursor. If startcursor is -1, -1 places the
 // cursor at an autodetected location (based on savecursor or :LINE:COL)
 func NewBuffer(r io.Reader, size int64, path string, startcursor Loc, btype BufType) *Buffer {
-       absPath, _ := filepath.Abs(path)
+       absPath, err := filepath.Abs(path)
+       if err != nil {
+               absPath = path
+       }
 
        b := new(Buffer)
 
@@ -279,23 +322,38 @@ func NewBuffer(r io.Reader, size int64, path string, startcursor Loc, btype BufT
                b.AbsPath = absPath
                b.Path = path
 
+               // this is a little messy since we need to know some settings to read
+               // the file properly, but some settings depend on the filetype, which
+               // we don't know until reading the file. We first read the settings
+               // into a local variable and then use that to determine the encoding,
+               // readonly, and fileformat necessary for reading the file and
+               // assigning the filetype.
+               settings := config.DefaultCommonSettings()
                b.Settings = config.DefaultCommonSettings()
                for k, v := range config.GlobalSettings {
                        if _, ok := config.DefaultGlobalOnlySettings[k]; !ok {
                                // make sure setting is not global-only
+                               settings[k] = v
                                b.Settings[k] = v
                        }
                }
-               config.InitLocalSettings(b.Settings, path)
+               config.InitLocalSettings(settings, absPath)
+               b.Settings["readonly"] = settings["readonly"]
+               b.Settings["filetype"] = settings["filetype"]
+               b.Settings["syntax"] = settings["syntax"]
 
-               enc, err := htmlindex.Get(b.Settings["encoding"].(string))
+               enc, err := htmlindex.Get(settings["encoding"].(string))
                if err != nil {
                        enc = unicode.UTF8
                        b.Settings["encoding"] = "utf-8"
                }
 
-               hasBackup = b.ApplyBackup(size)
+               var ok bool
+               hasBackup, ok = b.ApplyBackup(size)
 
+               if !ok {
+                       return NewBufferFromString("", "", btype)
+               }
                if !hasBackup {
                        reader := bufio.NewReader(transform.NewReader(r, enc.NewDecoder()))
 
@@ -304,7 +362,7 @@ func NewBuffer(r io.Reader, size int64, path string, startcursor Loc, btype BufT
                        if size == 0 {
                                // for empty files, use the fileformat setting instead of
                                // autodetection
-                               switch b.Settings["fileformat"] {
+                               switch settings["fileformat"] {
                                case "unix":
                                        ff = FFUnix
                                case "dos":
@@ -341,12 +399,10 @@ func NewBuffer(r io.Reader, size int64, path string, startcursor Loc, btype BufT
 
        if startcursor.X != -1 && startcursor.Y != -1 {
                b.StartCursor = startcursor
-       } else {
-               if b.Settings["savecursor"].(bool) || b.Settings["saveundo"].(bool) {
-                       err := b.Unserialize()
-                       if err != nil {
-                               screen.TermMessage(err)
-                       }
+       } else if b.Settings["savecursor"].(bool) || b.Settings["saveundo"].(bool) {
+               err := b.Unserialize()
+               if err != nil {
+                       screen.TermMessage(err)
                }
        }
 
@@ -364,7 +420,7 @@ func NewBuffer(r io.Reader, size int64, path string, startcursor Loc, btype BufT
                }
        }
 
-       err := config.RunPluginFn("onBufferOpen", luar.New(ulua.L, b))
+       err = config.RunPluginFn("onBufferOpen", luar.New(ulua.L, b))
        if err != nil {
                screen.TermMessage(err)
        }
@@ -522,6 +578,27 @@ func (b *Buffer) RuneAt(loc Loc) rune {
        return '\n'
 }
 
+// WordAt returns the word around a given location in the buffer
+func (b *Buffer) WordAt(loc Loc) []byte {
+       if len(b.LineBytes(loc.Y)) == 0 || !util.IsWordChar(b.RuneAt(loc)) {
+               return []byte{}
+       }
+
+       start := loc
+       end := loc.Move(1, b)
+
+       for start.X > 0 && util.IsWordChar(b.RuneAt(start.Move(-1, b))) {
+               start.X--
+       }
+
+       lineLen := util.CharacterCount(b.LineBytes(loc.Y))
+       for end.X < lineLen && util.IsWordChar(b.RuneAt(end)) {
+               end.X++
+       }
+
+       return b.Substr(start, end)
+}
+
 // Modified returns if this buffer has been modified since
 // being opened
 func (b *Buffer) Modified() bool {
@@ -989,9 +1066,9 @@ func (b *Buffer) Retab() {
                ws := util.GetLeadingWhitespace(l)
                if len(ws) != 0 {
                        if toSpaces {
-                               ws = bytes.Replace(ws, []byte{'\t'}, bytes.Repeat([]byte{' '}, tabsize), -1)
+                               ws = bytes.ReplaceAll(ws, []byte{'\t'}, bytes.Repeat([]byte{' '}, tabsize))
                        } else {
-                               ws = bytes.Replace(ws, bytes.Repeat([]byte{' '}, tabsize), []byte{'\t'}, -1)
+                               ws = bytes.ReplaceAll(ws, bytes.Repeat([]byte{' '}, tabsize), []byte{'\t'})
                        }
                }
 
@@ -1134,6 +1211,12 @@ func (b *Buffer) DiffStatus(lineN int) DiffStatus {
        return b.diff[lineN]
 }
 
+// SearchMatch returns true if the given location is within a match of the last search.
+// It is used for search highlighting
+func (b *Buffer) SearchMatch(pos Loc) bool {
+       return b.LineArray.SearchMatch(b, pos)
+}
+
 // WriteLog writes a string to the log buffer
 func WriteLog(s string) {
        LogBuf.EventHandler.Insert(LogBuf.End(), s)
index aa3daf023463c27d80a687db66e64958f64ac669..12fc5db2962c3b620a286f23958ac15eacfbc05c 100644 (file)
@@ -67,6 +67,10 @@ func (c *Cursor) GotoLoc(l Loc) {
 
 // GetVisualX returns the x value of the cursor in visual spaces
 func (c *Cursor) GetVisualX() int {
+       if c.buf.GetVisualX != nil {
+               return c.buf.GetVisualX(c.Loc)
+       }
+
        if c.X <= 0 {
                c.X = 0
                return 0
index a764ad23466cf780e3ffcad4c0ce53f91cddb272..b16fb0a0e45d549367f29506ed1313e0d1a882f7 100644 (file)
@@ -32,6 +32,15 @@ func runeToByteIndex(n int, txt []byte) int {
        return count
 }
 
+// A searchState contains the search match info for a single line
+type searchState struct {
+       search     string
+       useRegex   bool
+       ignorecase bool
+       match      [][2]int
+       done       bool
+}
+
 // A Line contains the data in bytes as well as a highlight state, match
 // and a flag for whether the highlighting needs to be updated
 type Line struct {
@@ -41,6 +50,14 @@ type Line struct {
        match       highlight.LineMatch
        rehighlight bool
        lock        sync.Mutex
+
+       // The search states for the line, used for highlighting of search matches,
+       // separately from the syntax highlighting.
+       // A map is used because the line array may be shared between multiple buffers
+       // (multiple instances of the same file opened in different edit panes)
+       // which have distinct searches, so in the general case there are multiple
+       // searches per a line, one search per a Buffer containing this line.
+       search map[*Buffer]*searchState
 }
 
 const (
@@ -356,3 +373,79 @@ func (la *LineArray) SetRehighlight(lineN int, on bool) {
        defer la.lines[lineN].lock.Unlock()
        la.lines[lineN].rehighlight = on
 }
+
+// SearchMatch returns true if the location `pos` is within a match
+// of the last search for the buffer `b`.
+// It is used for efficient highlighting of search matches (separately
+// from the syntax highlighting).
+// SearchMatch searches for the matches if it is called first time
+// for the given line or if the line was modified. Otherwise the
+// previously found matches are used.
+//
+// The buffer `b` needs to be passed because the line array may be shared
+// between multiple buffers (multiple instances of the same file opened
+// in different edit panes) which have distinct searches, so SearchMatch
+// needs to know which search to match against.
+func (la *LineArray) SearchMatch(b *Buffer, pos Loc) bool {
+       if b.LastSearch == "" {
+               return false
+       }
+
+       lineN := pos.Y
+       if la.lines[lineN].search == nil {
+               la.lines[lineN].search = make(map[*Buffer]*searchState)
+       }
+       s, ok := la.lines[lineN].search[b]
+       if !ok {
+               // Note: here is a small harmless leak: when the buffer `b` is closed,
+               // `s` is not deleted from the map. It means that the buffer
+               // will not be garbage-collected until the line array is garbage-collected,
+               // i.e. until all the buffers sharing this file are closed.
+               s = new(searchState)
+               la.lines[lineN].search[b] = s
+       }
+       if !ok || s.search != b.LastSearch || s.useRegex != b.LastSearchRegex ||
+               s.ignorecase != b.Settings["ignorecase"].(bool) {
+               s.search = b.LastSearch
+               s.useRegex = b.LastSearchRegex
+               s.ignorecase = b.Settings["ignorecase"].(bool)
+               s.done = false
+       }
+
+       if !s.done {
+               s.match = nil
+               start := Loc{0, lineN}
+               end := Loc{util.CharacterCount(la.lines[lineN].data), lineN}
+               for start.X < end.X {
+                       m, found, _ := b.FindNext(b.LastSearch, start, end, start, true, b.LastSearchRegex)
+                       if !found {
+                               break
+                       }
+                       s.match = append(s.match, [2]int{m[0].X, m[1].X})
+
+                       start.X = m[1].X
+                       if m[1].X == m[0].X {
+                               start.X = m[1].X + 1
+                       }
+               }
+
+               s.done = true
+       }
+
+       for _, m := range s.match {
+               if pos.X >= m[0] && pos.X < m[1] {
+                       return true
+               }
+       }
+       return false
+}
+
+// invalidateSearchMatches marks search matches for the given line as outdated.
+// It is called when the line is modified.
+func (la *LineArray) invalidateSearchMatches(lineN int) {
+       if la.lines[lineN].search != nil {
+               for _, s := range la.lines[lineN].search {
+                       s.done = false
+               }
+       }
+}
index 31c963265792b62cf1a1475349c83e37aa7087f3..dfff37b5f0e2b16c3190b0cb7b3f4432e1220e2b 100644 (file)
@@ -82,3 +82,13 @@ func (b *Buffer) ClearMessages(owner string) {
 func (b *Buffer) ClearAllMessages() {
        b.Messages = make([]*Message, 0)
 }
+
+type Messager interface {
+       Message(msg ...interface{})
+}
+
+var prompt Messager
+
+func SetMessager(m Messager) {
+       prompt = m
+}
index ffe1e196495bce2264ecccbf89eefb6e0946585c..0ab6d0c8fde49aca3b6bbbf0f13f6b0715352075 100644 (file)
@@ -91,9 +91,10 @@ func (b *Buffer) findUp(r *regexp.Regexp, start, end Loc) ([2]Loc, bool) {
                        l = util.SliceStart(l, end.X)
                }
 
-               match := r.FindIndex(l)
+               allMatches := r.FindAllIndex(l, -1)
 
-               if match != nil {
+               if allMatches != nil {
+                       match := allMatches[len(allMatches)-1]
                        start := Loc{charpos + util.RunePos(l, match[0]), i}
                        end := Loc{charpos + util.RunePos(l, match[1]), i}
                        return [2]Loc{start, end}, true
index e04d7061ef3b0878f346c6dea63287f6d42dcb90..d1672b00d2caa75bc1a1eef5ddbf991a0a70f93f 100644 (file)
@@ -39,6 +39,16 @@ func (b *Buffer) SetOptionNative(option string, nativeValue interface{}) error {
                b.isModified = true
        } else if option == "readonly" && b.Type.Kind == BTDefault.Kind {
                b.Type.Readonly = nativeValue.(bool)
+       } else if option == "hlsearch" {
+               for _, buf := range OpenBuffers {
+                       if b.SharedBuffer == buf.SharedBuffer {
+                               buf.HighlightSearch = nativeValue.(bool)
+                       }
+               }
+       }
+
+       if b.OptionCallback != nil {
+               b.OptionCallback(option, nativeValue)
        }
 
        return nil
index 6c68c40f9438b121290dfefce199cee24ac3a9b8..3a57caf431b0f6b82f02a21bd194c2f27d21eb12 100644 (file)
@@ -3,7 +3,7 @@ package clipboard
 import (
        "errors"
 
-       "github.com/zyedidia/clipboard"
+       "github.com/zyedidia/clipper"
 )
 
 type Method int
@@ -35,12 +35,22 @@ const (
        PrimaryReg = -2
 )
 
+var clipboard clipper.Clipboard
+
 // Initialize attempts to initialize the clipboard using the given method
 func Initialize(m Method) error {
        var err error
        switch m {
        case External:
-               err = clipboard.Initialize()
+               clips := make([]clipper.Clipboard, 0, len(clipper.Clipboards)+1)
+               clips = append(clips, &clipper.Custom{
+                       Name: "micro-clip",
+               })
+               clips = append(clips, clipper.Clipboards...)
+               clipboard, err = clipper.GetClipboard(clips...)
+       }
+       if err != nil {
+               CurrentMethod = Internal
        }
        return err
 }
@@ -101,9 +111,11 @@ func read(r Register, m Method) (string, error) {
        case External:
                switch r {
                case ClipboardReg:
-                       return clipboard.ReadAll("clipboard")
+                       b, e := clipboard.ReadAll(clipper.RegClipboard)
+                       return string(b), e
                case PrimaryReg:
-                       return clipboard.ReadAll("primary")
+                       b, e := clipboard.ReadAll(clipper.RegPrimary)
+                       return string(b), e
                default:
                        return internal.read(r), nil
                }
@@ -129,9 +141,9 @@ func write(text string, r Register, m Method) error {
        case External:
                switch r {
                case ClipboardReg:
-                       return clipboard.WriteAll(text, "clipboard")
+                       return clipboard.WriteAll(clipper.RegClipboard, []byte(text))
                case PrimaryReg:
-                       return clipboard.WriteAll(text, "primary")
+                       return clipboard.WriteAll(clipper.RegPrimary, []byte(text))
                default:
                        internal.write(text, r)
                }
index 96bcb1ff7412f3a949caa0a2abc604c37bdc1365..703a1d69fbff323b0c48efe20304c868af9582c1 100644 (file)
@@ -9,10 +9,10 @@ import (
        "github.com/zyedidia/tcell/v2"
 )
 
-// Micro's default style
+// DefStyle is Micro's default style
 var DefStyle tcell.Style = tcell.StyleDefault
 
-// The current colorscheme
+// Colorscheme is the current colorscheme
 var Colorscheme map[string]tcell.Style
 
 // GetColor takes in a syntax group and returns the colorscheme's style for that group
@@ -131,15 +131,22 @@ func StringToStyle(str string) tcell.Style {
        bg = strings.TrimSpace(bg)
 
        var fgColor, bgColor tcell.Color
-       if fg == "" {
+       var ok bool
+       if fg == "" || fg == "default" {
                fgColor, _, _ = DefStyle.Decompose()
        } else {
-               fgColor = StringToColor(fg)
+               fgColor, ok = StringToColor(fg)
+               if !ok {
+                       fgColor, _, _ = DefStyle.Decompose()
+               }
        }
-       if bg == "" {
+       if bg == "" || bg == "default" {
                _, bgColor, _ = DefStyle.Decompose()
        } else {
-               bgColor = StringToColor(bg)
+               bgColor, ok = StringToColor(bg)
+               if !ok {
+                       _, bgColor, _ = DefStyle.Decompose()
+               }
        }
 
        style := DefStyle.Foreground(fgColor).Background(bgColor)
@@ -160,49 +167,52 @@ func StringToStyle(str string) tcell.Style {
 
 // StringToColor returns a tcell color from a string representation of a color
 // We accept either bright... or light... to mean the brighter version of a color
-func StringToColor(str string) tcell.Color {
+func StringToColor(str string) (tcell.Color, bool) {
        switch str {
        case "black":
-               return tcell.ColorBlack
+               return tcell.ColorBlack, true
        case "red":
-               return tcell.ColorMaroon
+               return tcell.ColorMaroon, true
        case "green":
-               return tcell.ColorGreen
+               return tcell.ColorGreen, true
        case "yellow":
-               return tcell.ColorOlive
+               return tcell.ColorOlive, true
        case "blue":
-               return tcell.ColorNavy
+               return tcell.ColorNavy, true
        case "magenta":
-               return tcell.ColorPurple
+               return tcell.ColorPurple, true
        case "cyan":
-               return tcell.ColorTeal
+               return tcell.ColorTeal, true
        case "white":
-               return tcell.ColorSilver
+               return tcell.ColorSilver, true
        case "brightblack", "lightblack":
-               return tcell.ColorGray
+               return tcell.ColorGray, true
        case "brightred", "lightred":
-               return tcell.ColorRed
+               return tcell.ColorRed, true
        case "brightgreen", "lightgreen":
-               return tcell.ColorLime
+               return tcell.ColorLime, true
        case "brightyellow", "lightyellow":
-               return tcell.ColorYellow
+               return tcell.ColorYellow, true
        case "brightblue", "lightblue":
-               return tcell.ColorBlue
+               return tcell.ColorBlue, true
        case "brightmagenta", "lightmagenta":
-               return tcell.ColorFuchsia
+               return tcell.ColorFuchsia, true
        case "brightcyan", "lightcyan":
-               return tcell.ColorAqua
+               return tcell.ColorAqua, true
        case "brightwhite", "lightwhite":
-               return tcell.ColorWhite
+               return tcell.ColorWhite, true
        case "default":
-               return tcell.ColorDefault
+               return tcell.ColorDefault, true
        default:
                // Check if this is a 256 color
                if num, err := strconv.Atoi(str); err == nil {
-                       return GetColor256(num)
+                       return GetColor256(num), true
+               }
+               // Check if this is a truecolor hex value
+               if len(str) == 7 && str[0] == '#' {
+                       return tcell.GetColor(str), true
                }
-               // Probably a truecolor hex value
-               return tcell.GetColor(str)
+               return tcell.ColorDefault, false
        }
 }
 
index 1c31cbc15744b3f2e7cebb3024a014c6ce501cef..397a85398dc049624b653c2d622e347c0a483625 100644 (file)
@@ -9,6 +9,8 @@ import (
        "path/filepath"
        "regexp"
        "strings"
+
+       rt "github.com/zyedidia/micro/v2/runtime"
 )
 
 const (
@@ -90,7 +92,7 @@ func (af assetFile) Name() string {
 }
 
 func (af assetFile) Data() ([]byte, error) {
-       return Asset(string(af))
+       return rt.Asset(string(af))
 }
 
 func (nf namedFile) Name() string {
@@ -123,7 +125,7 @@ func AddRuntimeFilesFromDirectory(fileType RTFiletype, directory, pattern string
 // AddRuntimeFilesFromAssets registers each file from the given asset-directory for
 // the filetype which matches the file-pattern
 func AddRuntimeFilesFromAssets(fileType RTFiletype, directory, pattern string) {
-       files, err := AssetDir(directory)
+       files, err := rt.AssetDir(directory)
        if err != nil {
                return
        }
@@ -214,9 +216,9 @@ func InitRuntimeFiles() {
        }
 
        plugdir = filepath.Join("runtime", "plugins")
-       if files, err := AssetDir(plugdir); err == nil {
+       if files, err := rt.AssetDir(plugdir); err == nil {
                for _, d := range files {
-                       if srcs, err := AssetDir(filepath.Join(plugdir, d)); err == nil {
+                       if srcs, err := rt.AssetDir(filepath.Join(plugdir, d)); err == nil {
                                p := new(Plugin)
                                p.Name = d
                                p.DirName = d
@@ -225,7 +227,7 @@ func InitRuntimeFiles() {
                                        if strings.HasSuffix(f, ".lua") {
                                                p.Srcs = append(p.Srcs, assetFile(filepath.Join(plugdir, d, f)))
                                        } else if strings.HasSuffix(f, ".json") {
-                                               data, err := Asset(filepath.Join(plugdir, d, f))
+                                               data, err := rt.Asset(filepath.Join(plugdir, d, f))
                                                if err != nil {
                                                        continue
                                                }
diff --git a/internal/config/runtime.go b/internal/config/runtime.go
deleted file mode 100644 (file)
index 37ff7c6..0000000
+++ /dev/null
@@ -1,7602 +0,0 @@
-// Code generated by go-bindata.
-// sources:
-// runtime/README.md
-// runtime/colorschemes/atom-dark.micro
-// runtime/colorschemes/bubblegum.micro
-// runtime/colorschemes/cmc-16.micro
-// runtime/colorschemes/cmc-tc.micro
-// runtime/colorschemes/darcula.micro
-// runtime/colorschemes/default.micro
-// runtime/colorschemes/dukedark-tc.micro
-// runtime/colorschemes/dukelight-tc.micro
-// runtime/colorschemes/dukeubuntu-tc.micro
-// runtime/colorschemes/geany.micro
-// runtime/colorschemes/gotham.micro
-// runtime/colorschemes/gruvbox-tc.micro
-// runtime/colorschemes/gruvbox.micro
-// runtime/colorschemes/material-tc.micro
-// runtime/colorschemes/monokai-dark.micro
-// runtime/colorschemes/monokai.micro
-// runtime/colorschemes/one-dark.micro
-// runtime/colorschemes/railscast.micro
-// runtime/colorschemes/simple.micro
-// runtime/colorschemes/solarized-tc.micro
-// runtime/colorschemes/solarized.micro
-// runtime/colorschemes/sunny-day.micro
-// runtime/colorschemes/twilight.micro
-// runtime/colorschemes/zenburn.micro
-// runtime/help/colors.md
-// runtime/help/commands.md
-// runtime/help/copypaste.md
-// runtime/help/defaultkeys.md
-// runtime/help/help.md
-// runtime/help/keybindings.md
-// runtime/help/options.md
-// runtime/help/plugins.md
-// runtime/help/tutorial.md
-// runtime/plugins/autoclose/autoclose.lua
-// runtime/plugins/comment/comment.lua
-// runtime/plugins/comment/help/comment.md
-// runtime/plugins/diff/diff.lua
-// runtime/plugins/ftoptions/ftoptions.lua
-// runtime/plugins/linter/help/linter.md
-// runtime/plugins/linter/linter.lua
-// runtime/plugins/literate/README.md
-// runtime/plugins/literate/literate.lua
-// runtime/plugins/status/help/status.md
-// runtime/plugins/status/status.lua
-// runtime/syntax/LICENSE
-// runtime/syntax/PowerShell.hdr
-// runtime/syntax/PowerShell.yaml
-// runtime/syntax/README.md
-// runtime/syntax/ada.hdr
-// runtime/syntax/ada.yaml
-// runtime/syntax/apacheconf.hdr
-// runtime/syntax/apacheconf.yaml
-// runtime/syntax/arduino.hdr
-// runtime/syntax/arduino.yaml
-// runtime/syntax/asciidoc.hdr
-// runtime/syntax/asciidoc.yaml
-// runtime/syntax/asm.hdr
-// runtime/syntax/asm.yaml
-// runtime/syntax/ats.hdr
-// runtime/syntax/ats.yaml
-// runtime/syntax/awk.hdr
-// runtime/syntax/awk.yaml
-// runtime/syntax/bat.hdr
-// runtime/syntax/bat.yaml
-// runtime/syntax/c.hdr
-// runtime/syntax/c.yaml
-// runtime/syntax/caddyfile.hdr
-// runtime/syntax/caddyfile.yaml
-// runtime/syntax/clojure.hdr
-// runtime/syntax/clojure.yaml
-// runtime/syntax/cmake.hdr
-// runtime/syntax/cmake.yaml
-// runtime/syntax/coffeescript.hdr
-// runtime/syntax/coffeescript.yaml
-// runtime/syntax/colortest.hdr
-// runtime/syntax/colortest.yaml
-// runtime/syntax/conf.hdr
-// runtime/syntax/conf.yaml
-// runtime/syntax/conky.hdr
-// runtime/syntax/conky.yaml
-// runtime/syntax/cpp.hdr
-// runtime/syntax/cpp.yaml
-// runtime/syntax/crontab.hdr
-// runtime/syntax/crontab.yaml
-// runtime/syntax/crystal.hdr
-// runtime/syntax/crystal.yaml
-// runtime/syntax/csharp.hdr
-// runtime/syntax/csharp.yaml
-// runtime/syntax/css.hdr
-// runtime/syntax/css.yaml
-// runtime/syntax/csx.hdr
-// runtime/syntax/csx.yaml
-// runtime/syntax/cython.hdr
-// runtime/syntax/cython.yaml
-// runtime/syntax/d.hdr
-// runtime/syntax/d.yaml
-// runtime/syntax/dart.hdr
-// runtime/syntax/dart.yaml
-// runtime/syntax/dockerfile.hdr
-// runtime/syntax/dockerfile.yaml
-// runtime/syntax/dot.hdr
-// runtime/syntax/dot.yaml
-// runtime/syntax/elixir.hdr
-// runtime/syntax/elixir.yaml
-// runtime/syntax/elm.hdr
-// runtime/syntax/elm.yaml
-// runtime/syntax/erb.hdr
-// runtime/syntax/erb.yaml
-// runtime/syntax/erlang.hdr
-// runtime/syntax/erlang.yaml
-// runtime/syntax/fish.hdr
-// runtime/syntax/fish.yaml
-// runtime/syntax/forth.hdr
-// runtime/syntax/forth.yaml
-// runtime/syntax/fortran.hdr
-// runtime/syntax/fortran.yaml
-// runtime/syntax/fsharp.hdr
-// runtime/syntax/fsharp.yaml
-// runtime/syntax/gdscript.hdr
-// runtime/syntax/gdscript.yaml
-// runtime/syntax/gentoo-ebuild.hdr
-// runtime/syntax/gentoo-ebuild.yaml
-// runtime/syntax/gentoo-etc-portage.hdr
-// runtime/syntax/gentoo-etc-portage.yaml
-// runtime/syntax/git-commit.hdr
-// runtime/syntax/git-commit.yaml
-// runtime/syntax/git-config.hdr
-// runtime/syntax/git-config.yaml
-// runtime/syntax/git-rebase-todo.hdr
-// runtime/syntax/git-rebase-todo.yaml
-// runtime/syntax/glsl.hdr
-// runtime/syntax/glsl.yaml
-// runtime/syntax/go.hdr
-// runtime/syntax/go.yaml
-// runtime/syntax/godoc.hdr
-// runtime/syntax/godoc.yaml
-// runtime/syntax/golo.hdr
-// runtime/syntax/golo.yaml
-// runtime/syntax/graphql.hdr
-// runtime/syntax/graphql.yaml
-// runtime/syntax/groff.hdr
-// runtime/syntax/groff.yaml
-// runtime/syntax/groovy.hdr
-// runtime/syntax/groovy.yaml
-// runtime/syntax/haml.hdr
-// runtime/syntax/haml.yaml
-// runtime/syntax/haskell.hdr
-// runtime/syntax/haskell.yaml
-// runtime/syntax/html.hdr
-// runtime/syntax/html.yaml
-// runtime/syntax/html4.hdr
-// runtime/syntax/html4.yaml
-// runtime/syntax/html5.hdr
-// runtime/syntax/html5.yaml
-// runtime/syntax/ini.hdr
-// runtime/syntax/ini.yaml
-// runtime/syntax/inputrc.hdr
-// runtime/syntax/inputrc.yaml
-// runtime/syntax/java.hdr
-// runtime/syntax/java.yaml
-// runtime/syntax/javascript.hdr
-// runtime/syntax/javascript.yaml
-// runtime/syntax/jinja2.hdr
-// runtime/syntax/jinja2.yaml
-// runtime/syntax/json.hdr
-// runtime/syntax/json.yaml
-// runtime/syntax/jsonnet.hdr
-// runtime/syntax/jsonnet.yaml
-// runtime/syntax/julia.hdr
-// runtime/syntax/julia.yaml
-// runtime/syntax/keymap.hdr
-// runtime/syntax/keymap.yaml
-// runtime/syntax/kickstart.hdr
-// runtime/syntax/kickstart.yaml
-// runtime/syntax/kotlin.hdr
-// runtime/syntax/kotlin.yaml
-// runtime/syntax/ledger.hdr
-// runtime/syntax/ledger.yaml
-// runtime/syntax/lfe.hdr
-// runtime/syntax/lfe.yaml
-// runtime/syntax/lilypond.hdr
-// runtime/syntax/lilypond.yaml
-// runtime/syntax/lisp.hdr
-// runtime/syntax/lisp.yaml
-// runtime/syntax/lua.hdr
-// runtime/syntax/lua.yaml
-// runtime/syntax/mail.hdr
-// runtime/syntax/mail.yaml
-// runtime/syntax/make_headers.go
-// runtime/syntax/makefile.hdr
-// runtime/syntax/makefile.yaml
-// runtime/syntax/man.hdr
-// runtime/syntax/man.yaml
-// runtime/syntax/markdown.hdr
-// runtime/syntax/markdown.yaml
-// runtime/syntax/mc.hdr
-// runtime/syntax/mc.yaml
-// runtime/syntax/micro.hdr
-// runtime/syntax/micro.yaml
-// runtime/syntax/mpdconf.hdr
-// runtime/syntax/mpdconf.yaml
-// runtime/syntax/nanorc.hdr
-// runtime/syntax/nanorc.yaml
-// runtime/syntax/nginx.hdr
-// runtime/syntax/nginx.yaml
-// runtime/syntax/nim.hdr
-// runtime/syntax/nim.yaml
-// runtime/syntax/objc.hdr
-// runtime/syntax/objc.yaml
-// runtime/syntax/ocaml.hdr
-// runtime/syntax/ocaml.yaml
-// runtime/syntax/octave.hdr
-// runtime/syntax/octave.yaml
-// runtime/syntax/pascal.hdr
-// runtime/syntax/pascal.yaml
-// runtime/syntax/patch.hdr
-// runtime/syntax/patch.yaml
-// runtime/syntax/peg.hdr
-// runtime/syntax/peg.yaml
-// runtime/syntax/perl.hdr
-// runtime/syntax/perl.yaml
-// runtime/syntax/perl6.hdr
-// runtime/syntax/perl6.yaml
-// runtime/syntax/php.hdr
-// runtime/syntax/php.yaml
-// runtime/syntax/pkg-config.hdr
-// runtime/syntax/pkg-config.yaml
-// runtime/syntax/po.hdr
-// runtime/syntax/po.yaml
-// runtime/syntax/pony.hdr
-// runtime/syntax/pony.yaml
-// runtime/syntax/pov.hdr
-// runtime/syntax/pov.yaml
-// runtime/syntax/privoxy-action.hdr
-// runtime/syntax/privoxy-action.yaml
-// runtime/syntax/privoxy-config.hdr
-// runtime/syntax/privoxy-config.yaml
-// runtime/syntax/privoxy-filter.hdr
-// runtime/syntax/privoxy-filter.yaml
-// runtime/syntax/proto.hdr
-// runtime/syntax/proto.yaml
-// runtime/syntax/puppet.hdr
-// runtime/syntax/puppet.yaml
-// runtime/syntax/python2.hdr
-// runtime/syntax/python2.yaml
-// runtime/syntax/python3.hdr
-// runtime/syntax/python3.yaml
-// runtime/syntax/r.hdr
-// runtime/syntax/r.yaml
-// runtime/syntax/reST.hdr
-// runtime/syntax/reST.yaml
-// runtime/syntax/renpy.hdr
-// runtime/syntax/renpy.yaml
-// runtime/syntax/rpmspec.hdr
-// runtime/syntax/rpmspec.yaml
-// runtime/syntax/ruby.hdr
-// runtime/syntax/ruby.yaml
-// runtime/syntax/rust.hdr
-// runtime/syntax/rust.yaml
-// runtime/syntax/sage.hdr
-// runtime/syntax/sage.yaml
-// runtime/syntax/scala.hdr
-// runtime/syntax/scala.yaml
-// runtime/syntax/sed.hdr
-// runtime/syntax/sed.yaml
-// runtime/syntax/sh.hdr
-// runtime/syntax/sh.yaml
-// runtime/syntax/sls.hdr
-// runtime/syntax/sls.yaml
-// runtime/syntax/solidity.hdr
-// runtime/syntax/solidity.yaml
-// runtime/syntax/sql.hdr
-// runtime/syntax/sql.yaml
-// runtime/syntax/stata.hdr
-// runtime/syntax/stata.yaml
-// runtime/syntax/svelte.hdr
-// runtime/syntax/svelte.yaml
-// runtime/syntax/swift.hdr
-// runtime/syntax/swift.yaml
-// runtime/syntax/syntax_checker.go
-// runtime/syntax/syntax_converter.go
-// runtime/syntax/systemd.hdr
-// runtime/syntax/systemd.yaml
-// runtime/syntax/tcl.hdr
-// runtime/syntax/tcl.yaml
-// runtime/syntax/tex.hdr
-// runtime/syntax/tex.yaml
-// runtime/syntax/toml.hdr
-// runtime/syntax/toml.yaml
-// runtime/syntax/twig.hdr
-// runtime/syntax/twig.yaml
-// runtime/syntax/typescript.hdr
-// runtime/syntax/typescript.yaml
-// runtime/syntax/v.hdr
-// runtime/syntax/v.yaml
-// runtime/syntax/vala.hdr
-// runtime/syntax/vala.yaml
-// runtime/syntax/verilog.hdr
-// runtime/syntax/verilog.yaml
-// runtime/syntax/vhdl.hdr
-// runtime/syntax/vhdl.yaml
-// runtime/syntax/vi.hdr
-// runtime/syntax/vi.yaml
-// runtime/syntax/vue.hdr
-// runtime/syntax/vue.yaml
-// runtime/syntax/xml.hdr
-// runtime/syntax/xml.yaml
-// runtime/syntax/xresources.hdr
-// runtime/syntax/xresources.yaml
-// runtime/syntax/yaml.hdr
-// runtime/syntax/yaml.yaml
-// runtime/syntax/yum.hdr
-// runtime/syntax/yum.yaml
-// runtime/syntax/zig.hdr
-// runtime/syntax/zig.yaml
-// runtime/syntax/zscript.hdr
-// runtime/syntax/zscript.yaml
-// runtime/syntax/zsh.hdr
-// runtime/syntax/zsh.yaml
-// DO NOT EDIT!
-
-package config
-
-import (
-       "bytes"
-       "compress/gzip"
-       "fmt"
-       "io"
-       "io/ioutil"
-       "os"
-       "path/filepath"
-       "strings"
-       "time"
-)
-
-func bindataRead(data, name string) ([]byte, error) {
-       gz, err := gzip.NewReader(strings.NewReader(data))
-       if err != nil {
-               return nil, fmt.Errorf("Read %q: %v", name, err)
-       }
-
-       var buf bytes.Buffer
-       _, err = io.Copy(&buf, gz)
-       clErr := gz.Close()
-
-       if err != nil {
-               return nil, fmt.Errorf("Read %q: %v", name, err)
-       }
-       if clErr != nil {
-               return nil, err
-       }
-
-       return buf.Bytes(), nil
-}
-
-type asset struct {
-       bytes []byte
-       info  os.FileInfo
-}
-
-type bindataFileInfo struct {
-       name    string
-       size    int64
-       mode    os.FileMode
-       modTime time.Time
-}
-
-func (fi bindataFileInfo) Name() string {
-       return fi.name
-}
-func (fi bindataFileInfo) Size() int64 {
-       return fi.size
-}
-func (fi bindataFileInfo) Mode() os.FileMode {
-       return fi.mode
-}
-func (fi bindataFileInfo) ModTime() time.Time {
-       return fi.modTime
-}
-func (fi bindataFileInfo) IsDir() bool {
-       return false
-}
-func (fi bindataFileInfo) Sys() interface{} {
-       return nil
-}
-
-var _runtimeReadmeMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbd\x4e\xc5\x30\x0c\x46\xf7\x3e\xc5\x27\xb1\x5e\xb5\x8f\x81\x18\x58\x10\x0f\xd0\xfc\xb8\xd4\xdc\x24\xae\x1c\x87\x92\x85\x67\x47\x6d\x17\x24\xee\x6a\xfb\x9c\x23\x3f\xe1\xad\x15\xe3\x4c\x58\x38\x51\xc5\x22\x8a\x57\x0e\x2a\xc3\xf0\xbe\x72\x45\x64\xa5\x60\xa2\x1d\x3b\xa7\x04\x4f\xa0\xec\x29\x46\x8a\xe0\x02\x5b\x09\xcf\x02\xcf\xc5\x69\x3f\xd9\x4d\xd4\x9c\xe7\xc4\xd6\x6f\xf0\xcd\xc0\x86\xec\x3a\x3e\x5b\x35\xb8\x8a\x9d\x2e\xcb\x76\xac\x0a\xe6\x9f\x69\x0c\x52\x16\xfe\x98\xf2\x51\x9d\x47\xbc\x2c\xe8\xd2\xb0\x4b\x4b\x11\x89\xef\x04\x13\x64\x77\xa7\x63\xac\x90\xbd\x20\x48\x12\xad\x61\xa5\x4c\x75\x70\x25\xa2\xf6\x62\xee\xfb\x7a\xe1\x76\xe2\xc1\x95\xb3\x61\x2b\xe5\x47\xa1\xe9\xaf\x63\xc6\x21\xf9\x77\x72\x59\x67\x28\xd5\x8d\x82\xf1\x17\xa5\x3e\x0e\xc3\x6f\x00\x00\x00\xff\xff\x99\x17\xe0\x13\x33\x01\x00\x00"
-
-func runtimeReadmeMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeReadmeMd,
-               "runtime/README.md",
-       )
-}
-
-func runtimeReadmeMd() (*asset, error) {
-       bytes, err := runtimeReadmeMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/README.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesAtomDarkMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x94\xc1\x8e\xdb\x20\x18\x84\xef\x79\x0a\x04\x97\x56\x8a\x23\x07\xc7\xd8\x39\x66\x1d\x73\xac\xfa\x0a\x18\xfe\x6c\xd1\x62\x88\x30\xa8\xdd\xb7\xaf\x70\xdc\xee\x66\x43\x2c\x2e\x48\x7c\xcc\xa0\x7f\xc6\x96\xce\x38\x5f\x18\x6d\xdf\x90\x82\x8b\x88\x26\x20\x4c\xba\xba\x6b\x3b\xb6\x25\xfb\xf3\x9e\xd3\x3d\xde\x7c\x82\xa4\x1b\x47\xb0\x09\x6a\xba\xb4\xb2\x90\x56\x60\x83\xbe\x68\xf0\x08\x13\x7e\xec\xfb\x63\xfb\x44\xcc\x4e\x41\xcc\x6a\x9c\x37\x15\x3f\xaf\x52\xbb\x29\x78\x6d\x5f\x11\x26\xa7\x96\x73\x56\x66\xe1\x29\x88\x00\xcb\x0b\x8f\xac\x7b\xe1\x7d\x1e\x7b\x1f\x07\x67\xd6\x99\xab\x87\xab\x77\x12\x61\xc2\xe8\xcb\xfe\x09\x14\xde\xaf\x90\x26\xc6\xba\xfa\x99\xd5\x15\xa4\x16\xc9\xeb\xc4\x7a\x4a\xf3\x50\xb4\x0a\xbc\xd1\x16\x14\xc2\xe4\x5c\x55\xac\xa5\x59\x0e\xbc\x77\x1e\xe1\xc1\x19\x85\x08\xe7\x87\xc3\xe1\x90\x7f\x96\x53\xee\x03\x6b\xdb\x27\x58\x9a\x56\x9c\x92\x2f\xc2\xcb\xf9\x76\x49\xff\x5e\x4e\x0c\x83\xf0\xeb\x8c\xb6\x29\xf5\x42\xfe\x9a\xc1\xba\x4c\x2b\x6b\x9a\xec\x0a\x1b\xc7\x61\xae\x07\xab\x59\xcb\xd8\x96\xd0\x8a\xd6\xf4\x5e\x51\x46\xef\x93\x64\xfe\x42\x46\x59\xe9\xcb\xa5\x10\x4a\xcd\x53\x2c\xcb\x13\x2f\xcb\xc7\xf3\xd1\xa9\x54\x4d\x35\x97\x2e\x8f\x28\x30\x10\x6e\x51\x34\x65\xf9\x85\x78\x8d\x21\x80\x2f\x96\x24\xd6\x42\x58\xc8\xdf\xc2\xdb\x5b\x6f\xfb\xbe\xef\x9b\x26\x5f\xf2\xe8\xa7\xdb\x3e\x45\x41\xcf\x94\x57\x5f\xbf\x82\xb4\x95\xce\xc4\xd1\x7e\x22\xc8\x43\xa9\x77\x83\x17\xf2\x0d\xc2\x94\x69\x37\xf9\xe1\x10\xfc\x09\x60\xd3\x88\x52\x75\x27\xf4\x6d\x70\xce\x20\x6d\x51\xb7\x45\x10\xe4\xee\xfb\x9d\x64\x62\x76\xff\x6f\xe0\xe5\x17\x81\x37\xe4\xa7\x11\xda\xa2\x7f\x56\x9b\xbf\x01\x00\x00\xff\xff\x59\x38\xd4\xa1\x47\x04\x00\x00"
-
-func runtimeColorschemesAtomDarkMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesAtomDarkMicro,
-               "runtime/colorschemes/atom-dark.micro",
-       )
-}
-
-func runtimeColorschemesAtomDarkMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesAtomDarkMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/atom-dark.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesBubblegumMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xc1\x6e\xc3\x20\x0c\x86\xef\x7b\x0a\x8b\x49\xd3\x26\x35\x51\x49\xba\x6c\x3b\xef\xbe\x77\x20\xe0\x54\xa8\x04\x22\x03\xda\xfa\xf6\x13\x49\x5a\xb5\x81\xde\x2c\x7d\xbf\x89\x7f\xfb\x8f\x74\xc6\x51\x65\xb4\x3d\x81\xc2\x41\x44\x13\x80\x35\x07\xbe\x6b\x5a\xce\x9e\x6e\xa0\x74\xe3\x88\x76\x86\x5d\x01\x5a\x1f\x44\xa2\xbc\xdd\x3f\xa4\xb5\x0f\xa4\xed\x31\x89\x1e\x3f\x51\xdb\x38\xf6\x48\x49\x94\x0f\xa1\x15\xda\xa0\x07\xbd\xf0\x36\xe3\x3e\x88\x80\xcb\x98\x6d\x93\xd3\xf3\xd8\x3b\x53\x44\x13\xe1\x44\x4e\x02\x6b\x3e\x33\x16\xce\x13\x02\xeb\xf2\x69\xfc\x84\x52\x0b\x03\x8c\x77\x1f\x19\x44\x22\x47\xc0\x9a\x96\xef\x80\x77\xfb\x3b\x16\xad\x42\x32\xda\xa2\x02\x76\xad\xa1\xb4\xf5\xe0\x94\x2b\xaf\x3c\x59\x8d\x7e\x6e\x5c\xee\xf5\x7e\xb8\xef\x14\x7d\x2f\xa8\xcc\x94\x1e\x86\x4a\x28\x95\xbe\xdf\x16\xd0\xe8\x54\x5a\xb2\x02\xd6\xf0\x02\x56\x68\x30\x24\xba\xf5\x75\x8c\x21\x20\x55\xab\x75\xfe\x95\x6f\x65\x55\xfc\x0a\xb2\x6b\x12\x0e\x99\x26\x79\xaa\x2e\x29\x98\xad\x6f\xc6\x97\x91\xfc\x52\x27\xef\x5b\x38\x97\xd2\x99\x38\xda\x95\x3e\xff\x38\xc0\xbf\x80\x36\x19\x4e\xd7\xf4\xf0\xda\x3b\x67\x40\x5b\xf8\xde\xc1\x8b\xac\xdf\x40\x58\x05\x93\x11\xda\x42\x4f\x42\x9e\x30\xf8\x6d\x04\xea\xeb\x13\xc5\xff\x63\x09\x57\x7d\xe9\xbe\x11\xfd\x07\x00\x00\xff\xff\x4b\x76\x35\x97\x62\x03\x00\x00"
-
-func runtimeColorschemesBubblegumMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesBubblegumMicro,
-               "runtime/colorschemes/bubblegum.micro",
-       )
-}
-
-func runtimeColorschemesBubblegumMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesBubblegumMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/bubblegum.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesCmc16Micro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x94\x41\xb2\xda\x30\x0c\x86\xf7\x9c\xc2\x63\x16\xdd\x80\x67\xba\xe9\x05\x58\xf7\x10\xb2\x2d\x82\x07\xc5\xce\xc8\x32\x94\xdb\x77\xec\x86\x57\x42\x1c\xde\x8e\x91\x3e\x2b\xbf\xa4\x1f\xed\x4f\x30\x09\x84\xf8\xdb\x9d\x08\x89\x20\xfe\xc8\x6a\x42\xce\x29\x02\x29\x97\x28\xb1\xca\xee\x82\x23\x9a\xdd\xfe\xe7\xaf\x16\x29\xac\x6e\xc8\x39\xa4\x68\x76\x8d\x38\x52\x88\x57\xe5\xd2\x38\x62\x14\xa5\x6d\x22\xaf\x2c\x81\xbb\xea\x65\x3e\x66\x81\x0a\xb8\x07\xc4\x6e\xca\xd8\x94\x68\x2e\xf0\x19\x32\xc2\x05\x67\x72\x60\xc4\x4f\xe8\x19\x28\x3f\x59\x46\xdf\x27\xb3\x70\x88\x83\xd2\x0f\x24\x4a\xf7\x4f\x8c\x29\x4c\x4a\x97\xe8\x91\x29\x44\x54\x96\x0a\x1e\xd4\xfd\x12\x04\xf5\x6e\xdf\x7b\x17\xcb\x68\x91\x95\x7e\x06\x36\xaa\x4f\xe8\x02\xd0\xe9\x02\x3c\x8b\x1d\x61\xc0\x28\xb0\xc0\x83\xc7\x28\xe1\x1c\x90\x37\x3a\xfa\x0f\x98\x11\x1c\xa7\xef\xb1\xdb\xd7\x07\x6b\x2b\xcb\x1e\x5e\x30\x47\x90\xf3\xe6\xc8\x37\xc0\x79\x2c\x2f\x60\x16\x10\x7c\x31\x4a\x67\xe0\xf9\x31\xda\xea\x83\x77\xcd\xff\xe2\xc6\x32\xb8\x2b\x4a\xfd\x44\xd3\xbb\x26\x04\x86\x45\x47\x5d\xc2\xe0\x1f\xc1\xe8\xd1\x6f\xf6\x34\x31\x4e\x9c\xdc\x96\x21\xe5\x31\xa1\xd2\xeb\x67\x35\x6e\xae\xf8\xb8\x27\xde\xae\x3d\x6f\x5b\xe9\xee\x92\x87\x98\x18\x95\xf6\x78\x86\x42\x4b\xbf\x20\x73\x7a\xee\xeb\x60\x39\x0c\x17\x79\x9f\x93\x24\x9f\x96\x0e\x05\x77\x9d\xd9\xce\xb8\x43\xac\xbb\x3b\xba\x66\xbc\x19\x5b\x0b\xae\x95\x8e\x4f\x27\x7f\x4c\x9b\xec\x38\x11\x59\xe8\x82\x75\xff\x25\x37\x5d\xba\xb9\xe3\xb0\xda\x91\x80\x6d\x8f\x37\xd2\xae\x30\x57\xc1\x0b\x45\xab\x3f\xf6\x1a\x9a\x75\xf5\x68\x1f\xce\xe7\x23\xf8\x66\x86\xb5\xe4\x96\x1d\x93\xaf\xf6\xf6\xdd\x13\xd1\x08\x8f\x84\x52\x81\xf7\xea\x43\x11\x41\x3e\xce\x9b\x3b\x6c\xa4\xef\xc0\xb1\x9d\xa0\xf5\x8d\xaa\x3f\x5d\xa2\x32\xc6\xce\xf1\xfc\xda\xb3\xff\x78\x99\x16\x6a\x6f\xc1\xb7\x03\xd2\x46\xfb\x37\x00\x00\xff\xff\xde\xb1\x39\x83\x03\x06\x00\x00"
-
-func runtimeColorschemesCmc16MicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesCmc16Micro,
-               "runtime/colorschemes/cmc-16.micro",
-       )
-}
-
-func runtimeColorschemesCmc16Micro() (*asset, error) {
-       bytes, err := runtimeColorschemesCmc16MicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/cmc-16.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesCmcTcMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xcd\xb2\xe2\x2c\x10\x86\xf7\xe7\x2a\x28\x58\x7c\x9b\x98\x8a\xf9\x31\xb8\xfc\xca\x29\x77\x73\x11\xfc\x34\x1e\x4a\x02\x29\x20\x73\xca\xbb\x9f\x22\x1a\x35\x1e\x9c\x19\x56\x9a\x7e\x68\x5e\xfa\xed\x86\x1c\xd8\x18\x99\xb6\x3f\xc5\xc1\x80\x31\xcc\xfe\x17\xd0\x08\x3e\x38\xcb\x0c\x12\xce\xb8\xc9\xa3\x20\x3e\x61\x80\xf2\x83\x1c\x27\x73\xff\x08\x52\x47\xed\x6c\xf9\x91\xfe\xfb\x8d\xd1\xf6\x8c\x24\x28\x36\x99\x88\x30\x61\xf3\x2a\xc8\x16\xea\x6d\xdd\xe2\x67\x48\xb8\x61\x00\x1b\x11\xe6\xce\x48\x44\xba\x79\xbd\x10\x36\x44\x96\x10\x52\x55\x94\x52\x8a\x3f\x48\x26\x5c\x86\xe8\xb5\x3d\x21\x4c\x12\x53\x55\xd9\x1c\x0f\x88\xd1\xae\x7f\x0b\x8d\x20\x34\x33\x87\x4f\xe6\x17\x5d\x42\x08\xa1\xd4\x0a\xd7\x12\x6c\xd4\x4a\xc3\x1d\x82\xa6\xad\x9b\xf6\x0d\x54\x0e\x4c\x78\xf7\x6f\xe8\xaf\xc7\xc1\x5d\xdf\xf5\x6f\x0f\x2e\x85\x61\x21\x2c\xa8\x9a\xd7\x0a\x0d\x91\x45\x78\xae\x6f\x22\x5e\xea\x1b\x2e\x03\x77\x06\x61\xd2\xd7\xb5\x6a\xfa\x4c\xac\xe4\x9e\x89\x33\xc4\x80\x30\x69\xb7\xbb\x3d\x6c\x73\x50\x64\xa9\xae\x19\xbd\xa3\x87\xd1\x3b\xf1\xb0\xf8\x9b\xcc\x78\x19\x01\x61\xd2\x00\x6f\xe9\xfe\x5b\xa4\x3c\xc3\xe5\xcb\x79\xb9\x24\xe0\x12\x04\xdf\xad\x25\x5c\x1d\x43\x98\xf0\xae\x07\x29\xd6\xf5\x3a\x59\xe7\x01\xe1\x5b\x3f\xae\x62\xe0\xbd\x5b\x6a\x5d\xe4\x5c\x89\x4e\x2e\xa6\x4d\x56\x82\x37\xda\x02\x9a\x5b\x8c\xd2\x82\xa8\x7a\xd7\xd5\xf5\xfa\x34\x9b\xec\xd9\x88\xb9\x79\x8a\x9c\xd8\x94\x62\x63\xa7\x81\xa7\xce\xb9\x01\x05\x69\x76\xcd\xbe\x81\x77\x60\x19\x84\x77\xc6\xf0\x94\x34\x57\xa7\x64\xf4\x14\x66\x71\x8f\x71\xa3\xac\xdd\xef\xf8\xfa\x3a\x8c\x5f\x73\xfc\x81\x11\x93\xf7\xe9\x0a\x2b\x9d\xcf\x6d\x5b\x90\xb6\x6e\xbb\x76\xff\xb7\x5d\x37\xd1\x69\xbb\x07\xb9\xa2\xa5\x56\x6a\xc3\xa4\x04\x39\x8f\xf5\xff\xc7\x97\x59\x9c\xe3\x83\x93\xa9\xcd\x13\x72\x3c\xe6\x11\x09\x06\xe2\x4c\xfc\xe8\xab\xea\x85\x38\x4d\x31\x82\xdf\xdc\x3c\xce\xda\x7b\x43\xbe\x98\xb7\xd7\x77\x21\xc3\x5c\x7f\x0a\x67\xa6\xc1\x22\x9c\xf3\xfc\xfe\x72\x70\x97\x26\xe9\x6d\x9f\xaf\xb8\x32\xfa\x09\x16\x98\x76\x4a\xd1\xfc\xbb\x77\x85\x15\x33\x01\x1e\x53\x4c\xbb\x44\xff\x0e\x00\x00\xff\xff\x08\x55\xbf\x07\xaf\x05\x00\x00"
-
-func runtimeColorschemesCmcTcMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesCmcTcMicro,
-               "runtime/colorschemes/cmc-tc.micro",
-       )
-}
-
-func runtimeColorschemesCmcTcMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesCmcTcMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/cmc-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesDarculaMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xd1\x6e\xdb\x20\x14\x86\xef\xfb\x14\x08\x6e\x63\xcb\x4d\x3d\x27\xd5\xae\x12\x27\xbe\x9c\xf6\x0a\xd8\x9c\x74\xa8\x18\xac\x03\x68\xeb\xdb\x4f\x60\x77\x72\x6b\xc2\xea\x73\x83\xc4\xc7\x7f\xe0\xfc\x7f\x32\x18\x65\xb0\x50\x52\xbf\x12\x01\x37\xee\x95\x23\x94\xb5\xf1\xdb\xb1\x7d\x1d\x8a\x3e\xac\xa0\xc1\x8c\x23\xe8\x00\x1d\xaa\x50\x49\x48\x0a\xd0\x4e\xde\x24\x20\xa1\xac\xeb\xda\xa6\xb9\xdc\x11\xd3\xd6\xf1\x59\xed\xf4\x7c\x6d\xf7\x59\xaa\xb4\x0e\xa5\x7e\x21\x94\x35\xa7\xe3\xe1\xdb\xf3\x57\xe0\x72\xf8\xc5\x31\x7f\xc2\x3a\xee\x60\x79\x53\xdb\x1e\xf7\x75\xfa\x16\xf6\x6d\xec\x8d\xca\x0f\x67\x42\x98\xd0\x0c\x79\x21\xf7\x36\xc1\x7f\x5a\x4d\x30\x48\xae\xf2\x90\xd7\x02\x50\x49\x0d\x82\x50\x76\x79\x7a\x6a\x8e\x69\x0e\x10\x0d\x12\xda\x1b\x25\x08\x6b\xcf\xf5\xf9\xb1\x49\x5f\xcb\x08\xf3\x8e\x65\xe4\xc2\xb4\xbc\x0d\x7d\x09\x5d\xf6\x77\xcb\x48\x3e\xca\xf1\xbe\x8f\x93\xcf\x30\x52\x87\x9c\x14\x8b\x45\x75\x17\x2a\xd9\x34\xb4\x2b\xb4\x1f\xfb\x18\xa8\x26\x7e\x3b\xb6\x6f\x43\x7d\x74\xdf\x23\x06\xc9\x3b\x07\xb6\xca\x42\xde\x6e\x05\x17\x22\x4e\xb1\xaa\x4e\x5d\x55\x6d\xf7\x47\x23\x42\x98\x45\x0c\x73\x1a\x11\xa0\xc0\xcd\x56\x1c\xaa\xea\x13\xf1\xe2\x9d\x03\x2c\x16\x27\x72\x26\x2c\xe4\x6f\x8e\x7a\x4e\xfa\xb5\xb9\x9c\x0f\x75\x3a\xe9\x1e\xed\xbc\x8e\x56\x24\x86\x11\x97\x83\x51\x7e\xd4\x2b\x82\xfd\x30\x04\xfe\x38\xd0\xe1\xd1\x21\x8c\xf6\x3b\xf9\xa9\xb8\xd4\xa4\x47\x3e\xbc\x82\xb3\xe5\xe7\xb8\x96\xff\x78\xba\xfc\x49\xd0\x07\xb6\xf9\x6d\x94\xef\xe7\x57\xd4\x16\x72\x3c\xbc\xeb\x74\x3d\x3e\x76\x2b\xb3\xff\x06\x00\x00\xff\xff\xe8\x30\xf6\xcd\x87\x04\x00\x00"
-
-func runtimeColorschemesDarculaMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesDarculaMicro,
-               "runtime/colorschemes/darcula.micro",
-       )
-}
-
-func runtimeColorschemesDarculaMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesDarculaMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/darcula.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesDefaultMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xc1\x8e\xdb\x20\x10\x86\xef\xfb\x14\x08\xae\xb1\xe5\x38\x1b\xdb\xab\x9e\x92\xda\x1c\xab\xbe\x02\x36\x93\x14\x2d\x06\x6b\xc0\x6a\xf7\xed\xab\xf1\x3a\x55\x76\x43\xdd\x9a\x0b\x12\x1f\x03\xf3\xff\x3f\x1e\xbc\xf5\x98\x59\xe3\x5e\x99\x86\x8b\x9a\x6d\x64\x5c\xc8\x46\x36\xb2\xdc\x89\xb2\xa1\xc1\x9f\xee\xa0\xc1\x8f\x23\x38\x82\xea\x63\xbd\x3f\x76\x49\xc8\x68\x70\xd1\x5c\x0c\x20\xe3\xa2\xaa\xda\x97\x4e\xfe\xa5\x98\x0b\x51\x2d\xd5\x4e\x5d\xb3\x97\xdb\x54\x1e\x22\x1a\x77\x65\x5c\x74\x55\x7b\xae\x9f\xff\x07\xce\x87\x1f\x8a\x2e\x71\x6e\xbb\xea\xd4\x26\x77\x84\xa8\x22\xac\x3d\xc9\x97\xb2\xaa\xd3\x8d\x87\xb7\xb1\xf7\x36\xf7\x13\xa0\x8a\x1e\x6f\xf0\x3e\x09\x4f\x08\x13\xfa\x81\x71\xf1\xf5\xfc\x7c\xde\x57\x49\x28\xbe\x4d\xb0\xad\x4f\x98\x60\x30\xca\x92\x3c\x55\x57\x96\x69\xb1\x67\xa7\x01\xad\x71\xa0\x19\x17\xed\xe1\x50\x35\xe9\x06\x00\x91\xae\xdd\x7b\xab\xd9\xe6\xb5\xbc\xf6\x37\x6c\xa3\x1c\xc9\x36\x07\x3a\x97\xf1\x75\x7d\xb7\x06\xe7\x63\x39\xd5\xf7\x8b\x05\x1b\x8c\x71\x14\x98\x6c\xf5\xea\x58\xd0\x48\x1e\x4a\xc7\x65\x6e\x1e\xfb\x25\x59\xa7\xe5\xdb\x89\x43\x49\xe3\x63\x0c\x66\x44\x2a\x99\xde\x90\xa8\xac\xcd\xe5\x92\x29\xad\x17\x15\x8b\xe2\x24\x8b\xe2\x71\x7d\xf4\x9a\x52\x4d\x88\x94\x69\x44\x83\x85\xf8\x6e\x45\x5d\x14\x9f\x88\xeb\x1c\x23\x60\xb6\x3a\xb1\x65\xc2\x4a\xfe\x54\xe8\xfe\x1d\xf9\x19\xc3\xfb\x9c\xac\x48\x89\xb1\x4c\x07\x6f\xe7\xd1\xdd\x11\xe2\x9b\x67\xf0\x2b\x82\xa3\xa6\x29\x8c\xe1\x0b\xfb\x6e\x95\x71\xac\x47\x35\xbc\x42\x0c\xf9\xe7\xb8\xe6\x7f\x78\xbe\xfe\x2d\xf8\x93\x78\x7c\x24\xb7\xfd\x77\xd4\x23\x14\xd5\x35\xf1\xee\x7f\x07\x00\x00\xff\xff\x45\x24\xca\x18\x90\x04\x00\x00"
-
-func runtimeColorschemesDefaultMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesDefaultMicro,
-               "runtime/colorschemes/default.micro",
-       )
-}
-
-func runtimeColorschemesDefaultMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesDefaultMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/default.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesDukedarkTcMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\xdd\x72\x9b\x30\x10\x85\xef\xfb\x14\x0c\xdc\x06\x06\xff\xd4\xc1\x8f\xb3\xd2\x2e\x2e\x63\x21\x79\x56\xab\xa6\x7e\xfb\x0e\x92\xd3\x84\x8c\x22\x53\xeb\x46\x1e\x3e\x2d\x7b\x8e\xce\xa2\x9d\x71\xdc\x9a\xc9\x5e\xab\xb4\xd5\xce\x84\xd9\x56\x75\xd3\xf7\x3b\xda\x0f\xf5\x8f\x15\x31\xcf\x64\xa5\xaa\x9b\x53\x3f\xa8\x23\xbd\xe4\x21\xeb\x05\xac\x74\xca\x39\x53\xd5\xcd\x88\xe7\xd7\xdd\x58\x44\xb7\x51\x9d\x17\x9e\xec\xa5\xaa\x1b\xe8\xc7\xbe\xef\xb7\xc0\x9d\xfe\x05\xfc\x7f\x27\x02\x9b\x27\x07\x02\x33\x59\x59\xfe\x50\x6b\xc3\xac\x88\xab\x5a\x39\x83\x55\x51\x45\x60\x9f\xf6\x94\xcc\x3d\xef\x0f\x2b\x00\x69\x84\x60\xa2\x17\xf1\x97\xad\x82\xd3\x38\xb6\x80\x48\x18\x8b\xe8\x01\xf2\x3d\x46\x6e\x76\x38\x8d\x53\x44\x0b\x8d\x45\x14\xc9\x90\x44\x52\xab\xa3\xda\x9d\xbe\x21\x7f\x4f\xb8\x88\x7d\x3c\x7c\x69\xb0\x5f\xd6\x0a\x22\x66\xc7\xe5\x3a\x97\x20\x42\xdc\x6e\x27\xdf\x80\x6d\xba\xf9\x51\xd3\xf9\x98\xd7\x31\x21\x59\x59\xf4\x72\xd9\x9a\x0f\xae\xd3\x06\xbc\x7f\x42\xdb\x05\x6f\xff\xc5\x68\x59\x59\x70\x95\x86\xcf\xe0\xd7\x7b\xbe\x31\xdd\xd8\xe9\xf7\xc8\xfc\x04\x00\xca\xab\xf7\x37\xd2\x13\xc4\x34\x9e\x68\xbf\xcf\x8f\x9b\x17\x10\x4a\x53\xf9\xbc\xa0\x80\x04\xff\x88\xe0\x47\xca\x5e\x07\xfd\x85\xbb\xcf\x2a\xce\x6e\xc1\x98\xc4\x74\x8a\x41\x5f\x49\x7c\x39\xb6\x0f\x58\xe0\xb2\xa1\x4b\x01\xa5\xe0\x73\xca\x52\xe1\x35\xe3\xd0\x95\xe3\x20\xf7\x1b\xbd\xbf\xec\xa0\xf5\x70\xd0\xdf\x62\xdd\x95\xee\x6f\x8e\x71\x4b\x6f\x0b\x4e\x7f\x84\x6c\x1a\xc1\x82\xe6\x60\x91\x78\xf1\x1a\x33\xdf\xcb\xbf\x01\x00\x00\xff\xff\x4d\x1f\x3a\xbc\x77\x05\x00\x00"
-
-func runtimeColorschemesDukedarkTcMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesDukedarkTcMicro,
-               "runtime/colorschemes/dukedark-tc.micro",
-       )
-}
-
-func runtimeColorschemesDukedarkTcMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesDukedarkTcMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/dukedark-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesDukelightTcMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\xdd\x6e\x83\x20\x14\xc7\xef\xf7\x14\x44\x6f\xab\x61\x99\x6d\x7d\x1d\x84\x43\x47\x8a\x60\x0e\x87\x75\x7d\xfb\x05\xb5\xcb\x4c\xfc\x60\x72\x83\xf1\x77\xbe\xff\x47\xe9\xad\xc7\xca\x1a\x77\x67\xd3\x55\x7a\x1b\x7b\xc7\x8a\x52\xf3\x74\x8a\xb7\x05\xd1\xf7\xe0\x88\x15\xe5\x87\xbe\xea\xb3\x3e\xad\x43\x2e\x90\x70\x54\x77\xde\x5b\x56\x94\x97\xe6\x1d\x38\xdf\x45\xf3\xa8\x3a\x10\x1a\x77\x63\x45\xc9\x39\xe7\xfa\x20\xfa\x04\xd7\xf2\x53\xe0\xff\x2c\x22\xda\x03\x83\x88\x08\x8e\xd2\x0b\x54\x2e\xf6\x1d\x20\x2b\x3a\x6f\x15\x2b\x39\x6f\x78\xbb\x51\x45\xc4\x30\xdd\x81\x15\x25\x5c\xd2\x59\x00\x0a\xb4\x88\x96\xe6\xd8\x1b\xbd\x50\x46\xeb\x4a\x28\x05\x6a\xe4\x5a\xde\xec\x70\xbd\x57\x46\x9b\x11\xdd\x69\xef\x88\x2a\xb0\x40\x23\x79\xde\x0b\xfe\x65\x54\x2a\x76\xfe\x78\x9a\xeb\x5d\x40\x80\xe8\x71\xdf\xcf\x2d\x12\x01\x56\xf9\xe4\x43\xa0\x9b\x26\xaf\xa4\x6c\x37\x58\xa3\xc0\x51\xaa\xf7\xcf\x34\xae\xad\x38\x82\x6b\x69\x45\x08\x39\x26\x2e\xd9\x54\xb3\xa0\x1a\xde\x6c\xf5\x7e\xa1\x8b\x5f\x70\x65\xe2\x03\xc2\x80\x5e\xbe\x62\x5f\x5b\xce\xcf\xeb\x2e\xc3\x00\xd2\x08\x9b\x91\x65\x20\x41\x30\x2d\xe9\xb1\x57\x12\x14\xc3\xac\x48\x3d\x3e\xa7\xd1\xb7\x6c\x97\xdc\xb3\xef\x7c\x56\xf0\x11\xac\x3b\x14\xf2\x0e\x14\xf6\xa5\x3c\xc3\x24\x6e\x19\xa9\x92\xe8\x3a\x71\xa0\x3c\xf2\xca\xef\x4b\x84\x9e\x03\x64\xac\x6a\xc2\xea\x3b\x3c\x1f\x1e\x55\x4e\x6e\x09\x87\x6f\x02\xf7\x5a\xcb\xcd\x9a\xa3\x53\x80\xa9\xe1\x6a\xe5\x1f\xfa\x13\x00\x00\xff\xff\x5a\x37\xb6\x9d\x8b\x05\x00\x00"
-
-func runtimeColorschemesDukelightTcMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesDukelightTcMicro,
-               "runtime/colorschemes/dukelight-tc.micro",
-       )
-}
-
-func runtimeColorschemesDukelightTcMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesDukelightTcMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/dukelight-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesDukeubuntuTcMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\xdd\x92\x9b\x30\x0c\x85\xef\xfb\x14\x0c\xdc\x2e\x8c\xf3\xd3\x2c\x79\x1c\xd9\x12\x29\x13\x63\x67\x84\xdc\x6d\xde\xbe\x63\x93\x74\xcb\xd4\xeb\xd0\xf8\xc6\x19\x3e\x0b\x9d\xe3\x23\x8c\xb7\x9e\x5b\x3b\xba\x6b\xb5\x6c\x8d\xb7\x61\x72\x55\xdd\xec\x51\xa9\xfd\xa1\xfe\xb6\x22\xa6\x89\x9c\x54\x75\xd3\xf7\xa7\x63\x7f\x7c\xcb\x43\x6e\x16\x70\xd2\x69\xef\x6d\x55\x37\x03\x9e\xdf\x77\x43\x11\xdd\x46\x75\xb3\xf0\xe8\x2e\x55\xdd\x80\x1a\x94\x52\x5b\xe0\xce\xfc\x00\xfe\xbf\x13\x81\xed\x8b\x03\x81\x99\x9c\xc4\x3f\xd4\xba\x30\x69\xe2\xaa\xd6\xde\x62\x55\x54\x11\x78\x5e\xf6\x14\xcd\x3d\x28\xb5\x3b\xaf\x00\xa4\x01\x82\x4d\x5e\xa4\x5f\xb6\x0a\x8e\xc3\xd0\x02\x22\x61\x55\x37\x4a\x99\x1e\xf2\x3d\x26\x6e\xf2\x38\x0e\x63\x42\x0b\x8d\x25\x14\xc9\x92\x24\xd2\xe8\xa3\xde\x9d\xbe\x20\x7f\x8e\x18\xc5\x3e\x1e\xbe\x35\xa8\xe2\x5a\x41\xc4\xec\xb9\x5c\xe7\x12\x44\x88\xdb\xed\xe4\x07\xb0\x5b\x6e\x7e\x30\x74\x3e\xe6\x75\x8c\x48\x4e\xa2\x5e\x2e\x5b\xf3\xc9\x75\xc6\xc2\x3c\xbf\xa0\x5d\xc4\xdb\x3f\x31\x8a\x2b\x0b\xae\xd2\xf0\x09\xfe\x7b\xcf\x37\xa6\x1b\x7b\xf3\x8c\xcc\x77\x00\xa0\xbc\xfa\xf9\x46\x66\x84\x94\xc6\x13\xed\xf7\x94\x87\x04\x84\x96\xa9\x7c\x5d\x50\x40\xc2\xfc\x88\xe0\x33\x65\x4a\xbd\xf7\xa6\x5f\x73\xf7\x49\xa7\xd9\x2d\x18\xb3\x30\x9d\x66\x30\x57\x92\xb9\x1c\xdb\x07\x2c\x70\xd9\xd0\xa5\x80\xd6\xf0\x77\xca\x96\xc2\x6b\xc6\xa3\x2f\xc7\x41\xee\x37\x7a\xbe\xec\x60\x4c\x7f\x30\x5f\x62\xdd\x95\xee\x1f\x9e\x71\x4b\x6f\x11\xa7\x5f\x42\x6e\x19\xc1\x82\xe6\xe0\x90\x38\x7a\x8d\x99\xef\xe5\xef\x00\x00\x00\xff\xff\x28\xb5\x47\xb8\x77\x05\x00\x00"
-
-func runtimeColorschemesDukeubuntuTcMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesDukeubuntuTcMicro,
-               "runtime/colorschemes/dukeubuntu-tc.micro",
-       )
-}
-
-func runtimeColorschemesDukeubuntuTcMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesDukeubuntuTcMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/dukeubuntu-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesGeanyMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x5d\x8e\xab\x30\x0c\x85\xdf\xef\x2a\x22\xee\x6b\xe9\x36\x66\x1d\x26\x36\x34\xaa\x63\x23\xe3\xa8\xc3\xee\x47\xa1\x9d\x91\x52\xd2\x37\xc4\x77\xfc\x73\x4e\xfc\xff\x8b\x40\xf6\x7f\x51\x59\x6d\xe4\x24\xf7\x10\x35\x67\x12\x0f\x83\x11\x0e\x2d\x90\xcd\xa1\x12\xa4\x19\x0a\x7b\x97\x5e\x37\xb7\x24\x4b\x18\x26\x65\x0c\x3b\x31\xeb\xa3\x11\x26\x24\xf1\x34\x27\xb2\x7e\xa3\xd5\x68\x35\x8d\x61\x88\x3b\x48\x43\xb6\x95\x62\x02\x0e\xc3\xc4\x85\x5a\xe2\xe0\xf4\xdc\xfa\xcc\xf6\x3c\x29\xf7\x67\x3d\xd9\xd5\xe1\x77\xdf\x53\xb5\xef\x2b\x75\x9a\xd6\xdf\x57\xfa\x76\x12\x24\xec\xf7\x26\x33\xb5\x73\x8a\xae\xa8\xaf\x61\x27\x83\x49\x6a\x36\x63\xbc\x81\xfd\xed\x03\xf1\xde\x68\x38\x09\x8d\x52\xf2\x54\xf3\x6b\x5f\xa0\x98\xd5\xf2\xcf\x8a\x1a\x53\xd9\x2a\xaf\x96\x20\xde\x2f\x8f\x5b\xf2\x37\x67\x30\x4d\xc7\xf8\x0f\xfc\xf9\x19\x95\x4b\x96\xd7\x92\x0b\x19\xb5\x46\x30\xcd\xf3\x08\x78\x64\xb3\x18\xf5\x68\x56\xac\x47\x80\x61\xe8\xdc\xc8\xa1\x40\x62\xf2\x2a\x78\x8f\x70\x29\xee\x64\xe3\x2b\xe0\xcb\x07\xfc\x00\x93\xe3\x10\x0f\xfe\x13\x00\x00\xff\xff\xb9\x4e\x59\x20\xe8\x02\x00\x00"
-
-func runtimeColorschemesGeanyMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesGeanyMicro,
-               "runtime/colorschemes/geany.micro",
-       )
-}
-
-func runtimeColorschemesGeanyMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesGeanyMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/geany.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesGothamMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\xcb\x8e\xa3\x30\x10\x45\xf7\xf3\x15\x96\xd9\x86\xc8\xe6\x91\xc0\x92\xf0\xf8\x0f\x82\x8b\x8c\x35\xc6\x46\x7e\x68\x94\xbf\x6f\x99\x40\x77\x27\xed\xa0\x16\x1b\x4b\x9c\xba\xae\xba\x75\x3d\x28\xa1\x74\x2c\xb8\xfc\x87\x18\x8c\xbd\x13\x16\xe1\xa8\x2c\x1b\x5a\xb7\x87\x88\xd4\x94\xd0\x0c\xff\xf9\x06\x0d\x6a\x9a\x40\x7a\x28\xc9\xf2\xf4\x44\x83\x10\x67\x20\x2d\x1f\x39\x68\x84\xa3\xbc\x2c\xeb\xea\xf2\x46\x4c\x1a\xdb\x2f\x6a\x4d\x72\x2a\xd3\xf3\x2e\x75\x34\x56\x73\x79\xf3\x57\x57\x55\x51\x94\xbf\x81\x8f\xc3\xdf\xde\x37\xd1\xa4\xed\xa5\x0d\x57\x18\xdb\x5b\x58\x67\xda\xe9\x75\xd6\x30\x6b\x35\x20\x1c\xd5\x49\x4a\x93\x70\xab\xf6\x3e\xc3\xfe\x30\x66\x86\x81\xf7\x62\x1f\x72\x92\x81\x16\x5c\x02\x43\x38\x6a\x9b\x4b\x96\xa5\x41\x0e\xb4\x56\x1a\xe1\xab\x12\x0c\xed\xb6\xa5\x98\xda\xb0\xa2\x28\xea\xea\xf4\xd6\x09\x67\xfc\xbd\x08\x47\xa4\xa4\x5d\xd2\x1e\x56\x4b\x9e\xd7\x2b\xfd\x7e\xe3\xd5\xda\x9c\xf8\x2f\x28\xe8\xa5\x62\xe9\xa6\xeb\x12\x84\x2d\x30\x94\xd2\x9c\xd6\xcf\x5b\x73\x5a\x7b\xc9\xe7\x82\x6d\x1b\x81\x02\xc6\xc7\x31\xee\x19\x5b\x1c\x22\xa4\xea\x08\xf9\xf9\x7f\x52\xcc\x87\xd0\x23\x5d\x17\x46\x18\x08\xb0\x0b\xd1\x9c\x09\x79\x21\x6e\xce\x5a\xd0\xf1\xea\xf2\xa7\xc1\x81\x76\x56\xf2\x7f\xaf\xe5\x23\xa1\xdb\xd2\xc2\xb3\x9a\xc7\xf9\xcb\xe6\x97\x08\xfb\xe3\xa0\x84\x9b\x24\xc2\x21\x09\x73\x9f\xae\x4a\x04\x1e\xea\x47\x00\x00\x00\xff\xff\x37\xe7\xc6\xb2\xce\x03\x00\x00"
-
-func runtimeColorschemesGothamMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesGothamMicro,
-               "runtime/colorschemes/gotham.micro",
-       )
-}
-
-func runtimeColorschemesGothamMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesGothamMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/gotham.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesGruvboxTcMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\xcd\x6e\x83\x30\x10\x84\xef\x7d\x0a\x84\xaf\x21\x72\x31\x01\x7c\xac\x54\xe5\x3d\xfc\xb3\xa4\x56\x8d\x8d\x16\x5b\x55\xde\xbe\x32\x49\xda\x92\xb8\xb4\xe2\xb2\x12\x9f\x47\x9e\xd9\xb1\xf2\xd6\x63\x65\x8d\x7b\x2f\x34\x0c\x22\xda\x50\x94\x04\xa4\x96\xb2\xde\x91\xba\x4f\x5f\xf9\xf4\x03\x52\x7e\x1c\xc1\x25\x88\xd7\x3d\xeb\x9a\x2c\x34\x9f\x47\xe9\x6d\x51\x12\xdd\x71\x5e\x3f\xff\x22\xe4\xe6\x20\x16\x25\xcd\xfa\x96\xcb\x4d\x6a\x3f\x07\x34\xee\x54\x94\x44\xf6\x52\xd6\xed\x7f\xe0\xbd\x7a\x13\xb8\x7d\xc2\x68\x70\xc1\x0c\x06\x12\xd7\x83\xa2\x9d\xca\x1b\x0a\x22\xc0\xd5\xf7\x20\x1b\xce\xf2\xbe\x27\x84\x09\xbd\xfa\x86\x6a\x76\x58\x01\xe1\x3c\xc1\xb6\xc4\x3c\x81\x32\xe2\x8f\xec\xa2\xd3\x80\xd6\x38\xd0\x45\xf9\x35\x17\x39\x12\x10\x7d\xf2\xc6\x35\xa5\x34\x9f\x81\x36\xc3\x50\x09\xad\x93\x18\xa1\xf4\xe5\x48\xe9\xe3\xff\xd1\xeb\x14\x53\x42\x8e\xc7\x3c\xa2\xc1\x42\x58\x88\xd7\x8e\xd2\x3b\xe2\x14\x43\x00\xac\x6e\xd7\xd9\x08\xe0\x4a\x7e\x08\x74\x97\x85\x6f\xe4\x90\x6c\x57\x2e\x8e\x72\xd9\x5f\xdb\x1e\xd4\xa1\xd9\x11\xa6\x58\xcf\xda\x75\x33\x22\x22\xb8\x50\xad\x0f\x6c\xb5\x33\xe2\x7c\x99\xd3\xbe\x72\x8a\xcb\xa8\xbc\x8d\xa3\x2b\x4a\xd2\xf1\xae\xa1\xf0\xd0\x99\x38\x5f\x15\x6e\x2f\xea\x72\xc7\x75\x27\x84\x94\x4b\x4f\xef\x99\xcf\x00\x00\x00\xff\xff\x4f\x4f\xf3\x6a\x9b\x03\x00\x00"
-
-func runtimeColorschemesGruvboxTcMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesGruvboxTcMicro,
-               "runtime/colorschemes/gruvbox-tc.micro",
-       )
-}
-
-func runtimeColorschemesGruvboxTcMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesGruvboxTcMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/gruvbox-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesGruvboxMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\x6e\xf4\x20\x0c\x84\xef\xff\x53\x58\x9c\x37\xbf\x16\x92\x34\xea\xe3\x10\xec\x54\xa8\x80\x23\x07\x0e\xfb\xf6\x15\x9b\xaa\xda\x14\x7a\xb3\xf4\xd9\x9e\xd1\x8c\xe3\xc0\x32\x04\x9f\x3e\x01\x69\xb3\x25\x64\x50\xc6\x8c\x37\x33\xce\xea\xdf\x0b\x74\x1c\x23\xa5\x0a\xa7\x1e\x4c\x47\xb6\x95\xea\x65\xfe\x93\xfe\x3f\xb2\xf8\xf4\x01\x4a\x4f\xa6\x59\xf2\x48\x29\xfb\xcd\x93\x80\xd2\xf7\xf7\x86\x1f\xd9\x66\x3a\x1d\x68\x33\xb5\xf8\x11\x57\x0e\x7d\xb6\x0b\xed\xc2\x0e\xd4\xd2\xca\xe6\xc7\x4e\xa0\x8c\xee\x7c\xdc\xc9\x79\x5b\x5f\x76\xce\x4a\x42\x92\xe0\x13\x21\xa8\x9f\x19\x7a\xbe\x49\x84\x05\x94\x19\xe7\x9b\x36\xd3\x55\x9b\x91\x41\xad\x1c\x10\x7a\x89\xa3\xdf\xb6\xc1\x22\x56\x8d\x71\x6a\x51\x64\xac\x79\xe1\xd3\x7e\x8b\x91\x02\xe5\x4a\xf5\xdb\xfd\x42\xab\xd5\x21\x95\xb8\xd6\xa8\xcf\x36\x97\x6b\x5f\x45\x84\x52\x1e\x2e\x8b\xbd\x14\x5c\x91\xe3\x9c\x6b\x86\xbf\xbf\x3c\x47\xc7\xa1\xc4\xd4\xd2\x5a\x67\x39\xbe\x2f\x4d\xeb\x21\xdb\x75\xb5\xf2\xc2\xbe\x02\x00\x00\xff\xff\x98\xd4\x69\x4c\xa8\x02\x00\x00"
-
-func runtimeColorschemesGruvboxMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesGruvboxMicro,
-               "runtime/colorschemes/gruvbox.micro",
-       )
-}
-
-func runtimeColorschemesGruvboxMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesGruvboxMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/gruvbox.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesMaterialTcMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xd3\x51\x8f\xa3\x20\x10\x07\xf0\xf7\xfb\x14\xc4\xbe\xd6\x86\xd5\x16\xe9\x63\xab\xf2\x3d\x50\xa6\x7b\x66\x15\xcc\x08\x77\xd9\x6f\x7f\x01\x5d\x2f\xa6\xd4\xa6\x2f\x34\xfd\x41\x87\xff\x0c\xad\xe9\x0d\xa6\x7d\xa7\xbf\xc8\xbc\x6c\x4d\xef\x06\x4d\x92\x43\xc6\xf2\x2c\xe7\xc9\xaf\x8d\x18\x06\xd0\x96\x24\x87\xb3\x60\xbc\xb8\x1c\xe3\x48\x4f\x56\x06\x25\x68\xf1\x51\xf0\x5d\x75\xd2\x6e\x68\x00\x3d\x2e\x78\xc9\x6e\xfb\x78\x1a\xa1\xed\x64\x5f\xfe\x96\x7e\x07\xbf\x56\x95\xc8\xdf\xec\xb0\xd8\xe9\x4f\x92\x1c\xca\xbc\xe6\xbc\x8a\x63\x87\x08\xda\xfa\x2f\x90\xae\xf5\x70\x5a\xd5\xf5\x8b\x7a\x1c\x4e\xf3\x1a\x7c\x50\x3c\xbf\x9e\xb3\x0d\x50\xf0\x90\xae\xf7\x11\xd4\xb5\x10\x42\x44\x4f\x51\xdd\xe3\x91\x4a\xa5\x40\x91\xe4\x40\xe9\x4d\x50\xfa\xfc\xfb\x60\x54\xf7\xe8\x02\x11\x22\x4e\x14\xf4\x60\x83\xa8\x0a\x4a\x9f\xc4\x9f\x4e\x85\xfb\xcc\x15\x1c\x97\x7b\x6d\x10\x20\x1a\x24\x49\x63\x7a\x45\x56\x37\x37\x6f\xe3\x3e\x9d\xb5\x80\xe9\xc2\xd7\xbb\xbd\x96\x7f\x25\xea\x39\xfe\xd5\x0a\xf1\x51\xb0\x8d\xed\x14\x68\xeb\x2f\x19\x52\xcf\x6e\xb7\x17\x79\xfd\x77\xa7\x41\xb6\x68\x42\x24\xe5\x9d\xdd\xe3\x5a\x7b\x9e\xb6\xf3\xa8\x5c\xa8\xff\x44\xe1\xb6\xeb\xec\xc2\x38\x63\xc7\x58\x53\x47\x84\x11\x4d\xeb\x67\xa9\xb8\x66\x2f\x46\x63\x99\xd0\x37\xc8\x4a\x0b\xcb\x4b\x7a\xc3\xdc\xb4\x4c\xd9\xcf\x38\xe6\xcd\x59\x5d\xb6\x01\x4e\xdf\x43\x63\xfc\x5f\x5e\x59\x79\x17\x75\xfc\xac\x60\x4e\x0d\xca\xf6\x0b\xec\xb4\xff\x7a\x16\x6c\x46\x40\x69\x43\xab\x77\xaa\xb4\xb2\x69\x24\xee\x57\x68\x8d\x32\x3f\xf3\xb5\x77\xd4\xf7\x08\xfb\x5d\x75\x5a\x01\xfa\x44\x14\x49\xd6\x35\x79\x7a\x65\xff\x02\x00\x00\xff\xff\x9e\x8f\x9c\x09\xd6\x04\x00\x00"
-
-func runtimeColorschemesMaterialTcMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesMaterialTcMicro,
-               "runtime/colorschemes/material-tc.micro",
-       )
-}
-
-func runtimeColorschemesMaterialTcMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesMaterialTcMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/material-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesMonokaiDarkMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xd1\xae\xa3\x20\x10\x86\xef\xf7\x29\x88\xde\xd6\x46\x6d\x45\x7b\xa9\x8b\xbc\x87\x05\xec\x92\x45\x30\x23\x64\xb3\x6f\x7f\x32\xd6\x93\x94\x1e\xce\x91\x1b\x92\xff\xfb\x67\x9c\x9f\x11\xce\x38\x28\x8c\xb6\x7f\x89\x54\xf3\x14\x8c\x27\x59\xce\x1a\xd6\x31\x7a\xca\x2b\x56\x96\x65\x99\xfd\x7a\x81\x84\x5b\x16\x65\x11\x6a\x9b\xb6\x6a\xc6\x48\xd4\x52\x59\xaf\x67\xad\x80\x64\x39\xa5\xec\x36\xf2\x37\xb3\xdd\xfc\xb4\xbb\xfb\xb1\xab\x78\x5a\x3d\x6f\x1e\xb4\x7d\x90\x2c\x1f\x29\x1b\xda\xeb\x4f\xd0\x59\xfc\x99\xb0\xd9\xc0\x46\xda\xb3\x88\xdc\xfc\xe4\xd5\xf1\xaf\xfc\x56\xd3\xb6\x8e\xe4\x15\xd4\x0a\x4e\x90\x2c\xff\x3d\x5c\x87\x8a\x46\xa2\xff\xbf\xaa\xf4\x08\xdb\xaa\x84\x9e\x0c\x4e\x40\xc7\xba\x8e\xe7\x0f\x56\x2a\x30\xda\x2a\x89\x21\x5e\x2e\xb4\x8b\x7b\x2a\x00\x07\x24\xbb\x3b\x23\x49\xb2\xad\x93\xee\x53\x4e\xd8\x71\xa2\xb0\x61\x7d\x92\xe5\x75\x87\xe7\x94\xf3\x8e\x77\x3c\xe6\xb4\xc5\x77\x28\x8e\x68\x9a\x12\xcf\xe9\x30\x44\x20\x96\x2a\x6c\x58\xee\xfb\x83\xf5\xfb\x97\x04\x45\x00\xc0\x92\x69\x43\x62\x4d\xa4\x9e\xe7\x62\x92\x72\x4f\xa2\x2c\x7b\x9e\xd2\x17\x27\x71\x59\x10\xe1\x3c\x8d\x48\x65\x94\x7f\xc6\xd9\x7e\x69\xf2\x08\xde\x2b\x28\x8e\x54\x53\x81\x1e\xc4\xbf\x09\xec\xf7\x1b\x15\x60\x7b\xde\x31\xd6\x4b\x8d\xe7\x6d\xe5\xf0\x2a\x9c\x09\x8b\x7d\x21\x3e\x02\x00\x00\xff\xff\xe5\xd4\xef\xf1\x3a\x03\x00\x00"
-
-func runtimeColorschemesMonokaiDarkMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesMonokaiDarkMicro,
-               "runtime/colorschemes/monokai-dark.micro",
-       )
-}
-
-func runtimeColorschemesMonokaiDarkMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesMonokaiDarkMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/monokai-dark.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesMonokaiMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xc1\x8e\xdb\x20\x10\x86\xef\xfb\x14\x08\xae\xb1\xe5\x38\x1b\xdb\xab\x9e\x92\xda\x1c\xab\xbe\x02\x36\x93\x14\x2d\x06\x6b\xc0\x6a\xf7\xed\xab\xf1\x7a\xab\x6c\x42\xdd\x9a\x0b\x12\x1f\xc3\xf0\xff\x3f\x1e\xbc\xf5\x98\x59\xe3\x5e\x99\x86\x8b\x9a\x6d\x64\x5c\xc8\x46\x36\xb2\xdc\x89\xb2\xa1\xc1\x9f\x6e\xa0\xc1\x8f\x23\x38\x82\xea\x63\xbd\x3f\x76\x49\xc8\x68\x70\xd1\x5c\x0c\x20\xe3\xa2\xaa\xda\x97\x4e\xfe\xa5\x98\x0b\x51\x2d\xd5\x4e\x5d\xb3\x97\xdb\x54\x1e\x22\x1a\x77\x65\x5c\x74\x55\x7b\xae\x9f\xff\x07\xce\x87\x1f\x8a\x9a\x38\xb7\x5d\x75\x6a\x93\x3b\x42\x54\x11\xd6\x3b\xc9\x97\xb2\xaa\xd3\x17\x0f\x6f\x63\xef\x6d\xee\x27\x40\x15\x3d\x6e\xc3\x13\xc2\x84\x7e\x60\x5c\x7c\x3d\x3f\x9f\xf7\x55\x12\x8a\x6f\x13\x6c\xeb\x13\x26\x18\x8c\xb2\x24\x4f\xd5\x95\x65\x5a\xec\xd9\x69\x40\x6b\x1c\x68\xc6\x45\x7b\x38\x54\x4d\xba\x27\x40\xa4\xb6\x7b\x6f\x35\xdb\x6c\xcb\x6b\xff\x81\x6d\x94\x23\xd9\xe6\x40\xe7\x32\xbe\xae\xef\xd6\xe0\x7c\x2e\xa7\xfa\x7e\xb1\x60\x83\x31\x8e\x02\x93\xad\x5e\x1d\x0b\x1a\xc9\x43\xe9\xb8\xcc\xcd\x63\xbf\x24\xeb\xb4\x7c\x3b\x71\x28\x69\x7c\x8e\xc1\x8c\x48\x25\xd3\x1b\x12\x95\xb5\xb9\x5c\x32\xa5\xf5\xa2\x62\x51\x9c\x64\x51\x3c\xae\x8f\x5e\x53\xaa\x09\x91\x32\x8d\x68\xb0\x10\xdf\xad\xa8\x8b\xe2\x8e\xb8\xce\x31\x02\x66\xab\x13\x5b\x26\xac\xe4\x4f\x85\xee\xdf\x91\x9f\x31\xbc\xcf\xc9\x8a\x94\x18\xcb\x74\xf0\x76\x1e\xdd\x0d\x21\xbe\x79\x06\xbf\x22\x38\xba\x34\x85\x31\x7c\x61\xdf\xad\x32\x8e\xf5\xa8\x86\x57\x88\x21\xbf\x8f\x6b\xfe\x87\xe7\xeb\xdf\x82\x3f\x89\xc7\x47\xf2\xb1\xff\x86\x7a\x84\xa2\xba\x26\xde\xfd\xef\x00\x00\x00\xff\xff\x73\xbe\xe8\x5f\x90\x04\x00\x00"
-
-func runtimeColorschemesMonokaiMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesMonokaiMicro,
-               "runtime/colorschemes/monokai.micro",
-       )
-}
-
-func runtimeColorschemesMonokaiMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesMonokaiMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/monokai.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesOneDarkMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xd1\x92\xa3\x2c\x10\x85\xef\xe7\x29\x2c\xbd\x8d\x16\xc1\x5f\xc4\x4b\x84\xf8\x1e\x28\x9d\xfc\x56\x14\x2c\xc4\x99\xca\xdb\x6f\x61\xdc\xdd\xd1\xc1\x2d\x6e\xb4\xce\x47\x77\xd3\xe7\x74\x66\x30\x36\x1d\x7a\xfd\x8c\x14\xdc\xe5\x32\xb8\x28\x4e\x58\x5d\xe3\xba\xb9\x24\xf8\x8a\x0b\xcc\xe3\x8f\x6f\xd0\xfb\xb3\x33\xc3\x32\xea\x28\x4e\x30\xc5\x3c\xff\xef\x40\x8c\x23\x68\x5f\xa6\xe0\x24\x2f\xd1\x41\xd4\xb3\x93\xab\xca\x49\x49\x85\x08\xaa\x99\x5e\xc6\x16\x6c\x14\x27\xb7\x82\xa3\xb2\x0e\x43\xb3\xb3\xbd\x7e\x44\x71\x52\x51\x9e\x97\xd5\xbf\xa0\xac\xfb\x5f\xfa\x72\xb5\xb8\x11\x76\xd2\x73\x9e\xa0\xeb\xe5\xc0\xdf\xa4\x10\x0d\x66\x87\x87\x2d\xd6\x82\x76\xfe\x07\xd2\x3f\x13\x72\xe2\x4f\x78\x57\x8b\x9d\xdf\xdf\x10\x5e\x95\xea\x3f\x7b\xb5\x56\x79\x6f\x7c\x27\x82\xb5\x66\x9d\x04\x33\xca\xae\x87\x7b\xf7\x7b\x2a\x95\x02\x15\xc5\x09\x42\xac\x41\xe8\xa7\x3e\x1a\xd5\xdf\xfb\x15\x69\x9a\x30\xa2\x60\x00\xb7\x12\xa2\x44\xe8\x40\x3c\x16\xe7\xc0\xa6\xbf\xc7\xa8\x6a\x5a\x54\x22\x44\x7c\x49\xab\x37\x23\x7e\x32\xbd\x02\xed\xfc\x1c\xbe\x06\xb9\xb2\xe6\xd6\x9c\xe8\x59\x37\xc8\x79\x0e\x07\xe3\x1b\xf5\x29\xed\x09\xa3\x3d\x94\x6e\x4e\x17\x57\x7f\x76\xc0\xde\x37\x92\x13\x41\xf3\x4b\xc8\x96\xc9\xc2\x64\x4d\xe7\xe3\x87\x78\x41\xf7\xc9\xda\x62\x72\x22\x3a\xe9\x60\x4b\x7f\x60\x44\x2f\x2f\xf3\xdf\x3c\x50\x4c\x2f\x21\xeb\xe7\xd7\xd8\x1a\xdf\x82\x71\x4a\x8b\x3a\xa0\x65\xad\x95\xdd\x13\xdc\x1c\xce\xce\x06\x99\x09\xac\x74\xe6\x64\x61\x1b\xe4\xe4\x23\xdc\xc9\xc9\xb6\x5d\x77\xd9\xe0\x06\xdd\xf8\x25\xc1\xc2\x9f\x3d\x63\x94\x89\xe2\x84\xd6\x15\x65\x87\xdb\xaf\xc9\xbf\x92\x10\x51\x1d\x2c\xf7\x4a\xf6\x84\xd7\x97\xb1\x2a\x3c\xd9\xa2\x15\x58\xbf\x26\xaf\xd3\xaa\x22\x8c\xc6\x1f\xbf\x02\x00\x00\xff\xff\xbd\xd3\x85\x46\xaa\x04\x00\x00"
-
-func runtimeColorschemesOneDarkMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesOneDarkMicro,
-               "runtime/colorschemes/one-dark.micro",
-       )
-}
-
-func runtimeColorschemesOneDarkMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesOneDarkMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/one-dark.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesRailscastMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xcd\x6e\xdb\x30\x10\x84\xef\x79\x8a\xad\x74\x8d\x03\xc9\x8e\xec\xf8\x58\xa4\xf0\xb9\x87\xbe\x00\x7f\xd6\x16\x11\x8a\x2b\x2c\x97\x70\xfd\xf6\x05\x55\xc1\xb0\x13\x99\x2d\xe6\x42\x40\x9f\x46\xe4\xec\x50\x86\x3c\xf1\xca\xbb\xf0\x01\x16\x8f\x2a\x79\x81\xaa\xc6\x2d\xb6\xd6\x3c\xd7\x6b\x9d\x55\x3d\xdd\x40\x86\x86\x01\x43\x86\xb4\xd9\xbf\x76\x6f\x8b\x50\x14\x25\x38\x63\xc6\xec\xde\x36\x9b\x07\x5e\x21\x8a\x9a\x28\xd5\x99\xf5\xb6\x2d\x52\x2f\x9a\xc8\x43\x55\x6f\xed\xde\x68\x2c\xa3\x71\x44\xe3\x94\x7f\xef\x15\x43\x55\xbf\x76\xfb\xf5\x66\xd9\x5c\x2e\x23\x96\x3d\x47\xc6\x91\xc9\x94\x4f\x32\x7f\xaf\x0c\xa5\x60\x91\xbd\x0b\x68\xcb\x9c\x90\x25\xa8\x34\x79\x0b\x25\x0c\x99\x89\xff\x83\x3b\x25\x11\xe4\xd5\x8c\x5f\xc9\xb6\x6d\xbb\xf6\xfd\x8e\x74\xc1\x62\x90\x95\x99\x53\x6b\xb3\x16\x2d\xf3\x21\x56\x21\x0d\x1a\x33\xa8\xda\xac\xe7\x7a\xbd\xc9\xba\x1f\x48\x62\xce\x96\xf7\x2f\x14\xea\x65\xdd\xf1\xb8\x52\xd6\x4e\x19\x35\xcd\xf7\x43\xd3\x7c\x7d\x3e\x90\x75\x47\x37\x21\x87\xc3\x32\x62\xd1\xa3\x4c\xc4\x8f\x5d\xd3\x7c\x22\xe6\x44\xce\x8a\x83\x0b\xa7\x9b\xf6\x2d\x64\x12\x2f\x83\x9e\x6a\x87\x56\xef\xba\x07\xd3\x9f\x98\x17\x1a\x91\x95\xdc\x85\xfc\x18\xd6\xac\xcc\x07\x4a\x2c\xc3\x2e\x0f\x24\x9f\x95\xff\xb1\x03\x51\x92\x62\x4e\x39\x5f\xcc\x36\x6b\x71\x1e\xa2\xb4\x56\xd7\xd2\x14\x40\x93\x38\xfe\x5d\x67\xc7\x4d\x97\xf5\xe9\xaa\xe5\xa5\x21\x9f\x86\xb0\x4c\xc4\x51\x19\x84\xea\xda\x7a\xf8\x32\xf7\xa7\x5a\x7a\x84\x9f\x17\xe9\x29\x40\xbc\x04\x51\xbf\xf3\x4f\xc8\x05\x27\x8e\x02\x28\x46\x38\x33\x85\xd3\x0b\xfc\xea\x5d\x04\x17\x21\x90\x40\x4f\x67\xb8\x50\x82\xd8\x53\xf2\x16\x2c\x81\x45\x43\x53\xf2\xf1\xdb\xed\x06\x34\xbb\x53\x2f\x27\x46\x0c\x0b\xe9\xfd\x09\x00\x00\xff\xff\xc6\x60\xf7\x7f\xf9\x04\x00\x00"
-
-func runtimeColorschemesRailscastMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesRailscastMicro,
-               "runtime/colorschemes/railscast.micro",
-       )
-}
-
-func runtimeColorschemesRailscastMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesRailscastMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/railscast.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesSimpleMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x41\xae\xdb\x30\x0c\x44\xf7\x39\x05\xa1\xbf\x69\x81\x6f\x5f\x22\x5d\xf7\x0e\xb2\x44\xcb\x44\x64\x32\xa0\x28\xa4\xbe\x7d\xa1\xc4\x4d\x2b\x7f\x77\x67\xe0\xcd\x50\xe2\x68\x1c\x24\x8b\x0e\x99\xf8\x06\x41\xd6\x15\xd9\xc0\x4d\xb9\xa2\xbb\x74\x84\x8b\xf9\x86\x14\x63\x47\x28\x22\x1b\xcd\x84\x0a\x2e\x6c\x9e\x3b\x58\xcc\x1b\xbe\x46\x6e\x98\xb3\x3c\x7a\xba\xad\x93\xe4\x53\x74\x57\xbc\xab\x04\x70\xab\x4f\xc8\xe6\x3b\x68\xdb\x1d\xc1\x25\x45\x3c\x9c\x76\xc7\x40\x3e\x9f\x9b\x28\xb1\x28\x82\x8b\x38\xfb\x9a\xad\x63\xa8\x2a\x0a\xee\x73\x52\x4a\x8b\x1d\x37\x34\x89\xf2\x86\x27\x77\x25\x6e\x11\x0c\x61\xf1\xda\x92\xf3\xe1\xd6\xe1\x4c\x8c\x03\xd7\x75\x6a\x09\x9d\xd8\x43\x55\x6d\xfe\x4e\x77\xbc\x43\xa4\x79\x1e\x7c\x8c\x18\xcf\x16\x7f\xd2\x55\x62\x7b\x86\x78\x7a\xc8\x53\x11\x31\xa3\x35\xc1\x71\x7a\xaa\x66\xa8\xc3\x9f\x18\xfe\x83\x1f\x5e\x99\x38\xed\xf6\x8f\x6b\xd5\x22\xfa\x5c\x0f\x82\xaf\x05\x0b\x28\xfa\xe8\x27\xca\x64\x1b\x50\x29\x15\xcb\x08\x3f\xa8\xf8\x29\x63\x84\x59\x14\x58\x1e\xe3\xe5\xa3\x5f\xbe\xbc\xbe\x11\xdc\x63\x21\xc3\xcf\xaf\x09\xbe\x3e\x83\xe4\xba\xf2\xae\x72\x97\x8f\x9f\x02\xf8\xcb\x90\x5b\x26\xad\x11\x65\x84\x6f\x93\x48\x06\x62\xb8\x7e\x3f\xf6\x65\x7c\x6b\xff\x36\xa0\x8d\x98\xd4\x87\x1b\x1a\x2c\x94\x96\xdc\x1e\x98\x38\x8d\x5f\x4b\x3a\xee\xba\xf2\xaf\xfd\xda\x54\x50\x16\x9c\x3c\xa7\x02\xb6\xe0\xfb\x0f\x7a\x0e\x38\x29\xf4\xb8\xab\xc1\xed\x4a\x77\xf9\x1d\x00\x00\xff\xff\x7c\x27\xfd\x5a\x80\x03\x00\x00"
-
-func runtimeColorschemesSimpleMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesSimpleMicro,
-               "runtime/colorschemes/simple.micro",
-       )
-}
-
-func runtimeColorschemesSimpleMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesSimpleMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/simple.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesSolarizedTcMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\xd1\x92\x82\x20\x18\x85\xef\xf7\x29\x18\xbd\xcd\x86\x34\x0d\x2f\xb3\xd6\xf7\x40\xf8\x2d\x26\x04\x07\x61\x76\x7b\xfb\x1d\xb4\xdd\xb6\x22\xee\x9c\xf1\xe3\xfc\x3f\xe7\x1c\x98\x96\xda\x64\x52\xa8\x0b\xe2\xd0\x53\x27\x2d\x4a\x52\x52\xd4\xdb\xba\x5a\xa5\x18\xe7\xa4\x28\x92\x8f\x7f\x10\xd3\xc3\x00\xca\x43\x25\xa9\x3e\x77\x65\x10\x12\x1c\x94\x15\xbd\x00\x83\x92\x34\xaf\x48\x73\xcc\xdf\x88\xa9\xc9\xd2\x59\x2d\xdf\xef\x37\x35\x89\x52\xeb\x69\x04\x26\xa8\x3c\x9c\xa9\xd7\x3d\x1e\x8a\x3c\x6f\x83\x27\x26\x4b\x2d\xdc\xd6\x24\x65\x5d\x63\x1c\xc6\xae\x43\xa7\x65\x9c\x19\x0d\x8c\x46\x33\x94\xa4\x87\x66\xdb\x6c\xc2\xa6\xd8\xeb\x08\x28\x49\x9b\x92\xbc\x1d\xb5\xac\x1e\xb7\xc3\x29\x0e\x46\x0a\x05\xdc\x5f\xaf\x28\x2a\x12\xe6\xc0\x18\x6d\x50\xd2\x69\xc9\x51\x74\x2d\xcd\xf5\x2f\x16\x91\xf3\x6e\xb9\xc9\xcf\x45\x49\x8a\x71\x51\x6e\x37\xab\x5b\x05\x1e\xe5\x68\xd7\xcd\xce\x47\x18\xa1\x7c\xf4\x19\x3b\x3f\x80\x81\xa1\x7e\x5c\xa6\xdc\xd0\xcd\x1d\xb9\x77\xc9\x1f\x78\x4c\xdf\x19\xe3\x25\xdf\x1d\x78\x51\xe6\xa2\xef\x33\xca\xf9\xec\x22\xc6\xfb\x16\xe3\xd7\xff\x83\xe6\xbe\x9f\x1e\x69\xdb\x30\xc2\x41\x82\x5d\xa2\xd8\x61\xfc\x44\x9c\x9c\xb5\x60\xb2\x5b\x12\x7f\x17\x5d\xc2\x08\x91\x5f\xd4\x28\xa1\x4e\xf1\x1e\x31\x67\xa6\xe5\xfb\x1e\xc5\xd3\x53\xf0\x9f\x4c\x4b\x37\xa8\x30\xe1\xab\xb8\x86\x6f\x0b\x6a\x31\x20\xf2\x94\x97\xfa\xaf\x3b\x43\xd9\x05\xec\x14\x80\x7f\x02\x00\x00\xff\xff\xac\x27\xa6\x53\x1d\x04\x00\x00"
-
-func runtimeColorschemesSolarizedTcMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesSolarizedTcMicro,
-               "runtime/colorschemes/solarized-tc.micro",
-       )
-}
-
-func runtimeColorschemesSolarizedTcMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesSolarizedTcMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/solarized-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesSolarizedMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x51\x8e\x23\x21\x0c\x44\xff\xf7\x14\x88\xef\x74\x2e\xb1\x27\x31\xd8\xdd\x41\x01\xd3\x32\x46\xd9\xbe\xfd\x8a\x30\x33\x0a\x69\x66\xe6\x0f\xa9\x1e\xae\xa2\x8c\xcf\x31\xcb\x12\x03\xdf\x8d\xcf\x29\x11\xab\xb1\x2e\x47\x34\x4e\xc2\x76\xd3\x4d\x88\xd8\xfe\x19\x28\x2e\x0a\x0d\xf3\x07\xcc\xa5\x6b\xd9\xc9\x07\x88\x7f\x6f\x20\xc6\x0a\xe1\x40\x05\x24\xd6\xb0\x06\x12\x63\x5d\xac\x34\x88\x45\x41\xa9\xa7\x38\x5b\x97\x23\xb9\x1c\x67\xca\x2e\xb4\x4b\xf6\xc6\xf6\xd4\xef\x96\x7a\xec\x64\xec\x41\x31\xe6\xc7\x38\xb1\x07\x9d\x04\xa9\x8c\x24\x31\x30\xa1\xb1\x09\x36\x62\x85\x41\x27\x91\x2c\x43\x55\x27\xd3\x8c\xf9\x03\x98\x0d\x68\x2f\xad\xa5\x39\x34\x77\xf0\xf7\x4b\x1f\x73\x4a\xa2\xe0\x1c\xc8\x2f\x50\xe0\xd6\xea\xe2\x6f\x5f\xe4\x20\x37\x9b\x85\x6b\x72\x24\xe7\xf5\x5e\xce\xbc\xaf\x22\x6d\xde\xcf\xf7\x90\x56\xa8\x51\x87\x9b\x18\xd6\x75\x01\xc4\xd6\xdb\x79\x4f\x4f\x35\x65\x6c\xeb\xc7\xe9\x46\x9e\x04\x52\x24\x6d\xc0\x7b\xa7\x5b\x55\x25\x59\x3e\xcb\x7f\x69\xe4\x1b\xf2\x01\xc2\x81\xb7\x97\x8f\x31\x4d\xed\xab\x94\x7e\xa6\x59\x7d\xfd\xe8\x73\xac\x89\x67\x7a\xfb\x5f\x57\xfa\xa7\xc4\xcf\x77\xcf\x1c\xfa\xdf\xbd\x3a\x01\x7f\x27\x2d\x2f\xd0\xff\x00\x00\x00\xff\xff\x3e\xc2\x1a\x0a\x82\x03\x00\x00"
-
-func runtimeColorschemesSolarizedMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesSolarizedMicro,
-               "runtime/colorschemes/solarized.micro",
-       )
-}
-
-func runtimeColorschemesSolarizedMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesSolarizedMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/solarized.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesSunnyDayMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\xc1\x6e\xc3\x20\x0c\x86\xef\x7d\x0a\xe4\x5d\x9b\xa9\x21\x55\xd6\x3e\x0e\x01\xa7\x43\x23\x26\x32\x46\x53\xdf\x7e\x22\xed\x61\x81\xdc\xac\x7c\xce\x6f\xff\x3f\xb6\x31\x44\xee\x82\xa7\x1f\xe5\x70\x36\x39\x88\x82\xcb\x59\x0f\x17\x38\xfd\x43\x36\x2e\x0b\x92\x28\xd0\xd7\x6b\x05\x28\x89\x21\xf9\x4c\xc2\x9e\x1e\x0a\xfa\xaf\x43\xae\xe0\x76\xdb\x01\xef\x90\xc4\xcf\x1e\x59\x81\xd6\x3b\x94\xc4\x08\xbe\xc6\xb5\x9b\xa4\xe7\x32\xc5\xa0\xe0\x76\xdf\x7d\x5e\x19\x57\x8e\xb6\xd1\x92\xe7\x8a\xcd\xec\xb4\xa2\xf5\x26\x34\xcd\x99\x1c\x72\xf0\x84\x4e\xc1\xd8\x37\xa3\x91\x39\x72\x23\x26\xd1\x45\x05\xba\xbf\x34\x1e\x72\x2a\x5a\x0a\xf4\x30\x9c\xb5\xde\xef\x2b\x66\x9a\x0c\x1f\x33\x4f\x25\x9b\xce\x7e\x6f\x0d\x15\x2c\x92\x1d\xe5\x65\xda\x82\xab\x5e\xc3\xf9\x79\xee\x8c\x73\xc5\xc0\x70\x80\x96\xe8\x4a\xe4\xae\xec\x7b\x80\x1d\x06\x94\x42\xfb\x71\xef\xe6\x91\x45\x90\xbb\xe3\x00\xde\xf0\xd7\x30\x6d\x17\x50\x61\x9b\x39\xbd\x6a\x7c\xbb\xf9\xd8\xdd\x47\x29\x6d\x0c\x79\x21\x05\xfd\x7d\xac\xff\xe5\x12\x45\x65\x7a\x84\xd3\x5f\x00\x00\x00\xff\xff\x47\x95\x4b\x8e\xb7\x02\x00\x00"
-
-func runtimeColorschemesSunnyDayMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesSunnyDayMicro,
-               "runtime/colorschemes/sunny-day.micro",
-       )
-}
-
-func runtimeColorschemesSunnyDayMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesSunnyDayMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/sunny-day.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesTwilightMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\xd1\x8e\xab\x20\x10\x86\xef\xfb\x14\x46\x6f\xdb\x06\x7b\x56\x8b\x97\x54\xe5\x09\xce\x0b\xa0\x4c\x5b\x52\x05\x83\xb8\x4d\xdf\xfe\x64\xb0\xbb\x59\x2d\x3d\xc9\xe6\xbf\xd1\xfc\x1f\xf0\x33\x33\x24\xd1\xdf\xbb\xea\xd4\xe5\xea\xa2\xd6\x74\xc6\x46\x63\x7b\x85\x1e\x36\xfe\x67\xd7\x29\x7d\x8b\x24\x9c\xc5\xd4\xb9\x28\x4e\x38\x45\x6d\x93\xf4\x03\x15\xff\x84\xe6\xcf\xd6\x74\x53\xaf\xa3\x38\x49\x4f\xa8\x15\xd1\xf7\xa0\x71\x9b\x8c\x67\x2c\x27\x2b\x53\x8f\x4e\x78\xb7\xe4\x39\xfb\x28\xe3\x4d\x12\xb0\xf7\x7a\xea\x1b\xb0\x3f\xa8\x10\x34\x0e\xd0\x2a\xd1\x95\x57\x81\x64\x55\xf1\x03\x5b\x87\xfd\x22\x9d\x55\xfa\x12\xc5\x09\xe5\x45\x95\xb3\x25\x34\x59\x0b\xda\xe1\x0f\xec\xbe\xcf\xa5\x39\x6a\x1b\xbc\xe0\x64\xc7\xf9\x1b\xc2\x15\x90\xea\x53\x49\xbf\x4b\x5a\xa3\x16\x26\x58\x6b\x7c\xdc\x03\xa3\x2c\x5d\xad\x3b\x9f\x77\x42\x4a\x90\x51\x9c\x10\xc2\x38\x21\xaf\x7e\x6f\xa4\x3a\x2b\x8f\x70\x1e\x46\x24\x74\xe0\x3c\x51\x1d\x09\x59\x11\x97\xc9\x39\xb0\xbb\xaf\x18\xc5\x89\x66\x45\x15\x22\xee\xc2\xea\xb9\x68\x01\x46\x49\xd0\x0e\x73\xcc\x7b\x1c\xc9\x1f\xfe\xc6\xdf\xb7\x9d\x18\x47\xcc\xc2\x2a\x42\xb3\x77\xd4\xa7\xef\xe1\x31\xa3\x47\x96\x2f\x19\x8d\xd0\xae\x9d\x9b\x9c\xa5\xa8\x05\xf0\x9b\xbe\xfd\xaf\xd1\xaf\xb3\x3e\x58\x18\xac\x69\xa3\x38\xa9\x49\x99\xd1\x62\x61\x3e\x87\xef\x8d\xe9\x84\x83\xe7\x2b\x28\x2b\x46\xf3\x57\x7b\x1a\x9f\x03\x34\x5f\x69\x1b\x9a\x95\xf1\xd1\x37\x06\x8f\x60\x25\xa5\xd9\x29\xe0\xed\x1b\x2b\xda\x1b\xb8\xf1\xfb\xd5\x86\x20\x33\x80\x15\xce\xf7\x3b\x94\x66\x86\x9c\xb8\x84\x4f\x72\xa2\x69\x7c\xf1\xf9\x81\x93\xba\xdc\x26\x87\x0a\xb5\x64\x8c\x34\x58\xcc\x53\x41\xd9\x6a\xf5\x63\xc0\x5b\xf2\xa2\xae\x0b\xfa\xe2\xec\x6f\xf0\xb8\x1b\x2b\xc3\xc9\x26\x2d\xc1\x62\x99\xd0\xa7\x45\x91\x33\x1a\x6f\xfe\x05\x00\x00\xff\xff\x6d\x4b\x0d\xb4\xca\x04\x00\x00"
-
-func runtimeColorschemesTwilightMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesTwilightMicro,
-               "runtime/colorschemes/twilight.micro",
-       )
-}
-
-func runtimeColorschemesTwilightMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesTwilightMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/twilight.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeColorschemesZenburnMicro = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xd1\x6e\xf3\x20\x0c\x85\xef\xff\xa7\x40\xb9\x6e\x7e\x15\x92\x26\x7d\x1d\x82\x9d\x0e\x0d\x4c\xe4\x80\xa6\xbe\xfd\xe4\x76\x9b\x96\x41\xef\x90\xbe\xc3\xe1\xf8\x18\x97\x42\xe2\x3e\x78\x7a\x57\x80\xab\x2d\x21\xab\x4e\x5f\xaf\x27\x33\xcc\xdd\xbf\x5f\xd0\xa5\x18\x91\x04\x9e\x5b\x90\xf6\x6c\x29\xff\xdf\x33\x7b\xba\xa9\x4e\xcf\xe3\x6b\x11\x95\xb8\x20\xab\x4e\xeb\xe9\xa5\x48\x42\xe8\x8a\x7a\x40\xca\x7e\xf5\x72\xdb\x98\xa1\xe2\x7b\xb6\x19\x9f\x31\x9b\xf8\x1e\x97\x14\xda\x6c\x63\xdc\x38\xb9\x36\xcc\xf7\x0d\x25\xd1\x5c\x5b\x6e\xe8\xbc\x0d\xed\xb8\x85\x00\x39\x78\x42\x68\x77\x8a\xcc\xe9\xd1\xc3\xe5\x64\x86\xe9\xf8\x62\x82\xa4\xba\x25\x05\x50\xe6\x52\x77\x29\x83\x96\x5d\xac\xc5\x79\xaa\xaf\xdb\x65\xb1\xdc\x66\x9e\xa4\xc5\xde\xbd\x89\xc0\x0c\x75\x2c\xb1\xed\xbf\x97\x64\x46\x11\x5c\x0f\x02\xf0\xeb\xda\x5b\x00\x99\x6b\x18\x6b\x14\x13\xc8\x92\x40\x75\x46\x37\x30\x60\xc0\xfc\xe8\x64\x3a\x1f\xe8\xad\xe4\x8c\xdc\x7f\xd5\x62\x86\xf9\xa4\xe7\xb1\xa5\xf8\xb0\x4c\xaf\xff\x59\xe1\xfd\x79\xc6\xc7\x7c\x7f\xfe\x97\x1c\x5d\x0a\x25\x52\x83\x16\x66\xe9\xe6\xd0\xc0\xcf\xe6\x3e\x03\x00\x00\xff\xff\x98\xa3\xbd\xf2\x2b\x03\x00\x00"
-
-func runtimeColorschemesZenburnMicroBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeColorschemesZenburnMicro,
-               "runtime/colorschemes/zenburn.micro",
-       )
-}
-
-func runtimeColorschemesZenburnMicro() (*asset, error) {
-       bytes, err := runtimeColorschemesZenburnMicroBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/colorschemes/zenburn.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeHelpColorsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x7a\x6d\x6f\xe4\x36\x92\xff\x7b\x7e\x8a\x5a\x27\x7f\xb8\x3d\xff\x6e\x79\x9c\xdd\xcd\xed\x19\xc1\x06\xb3\x93\xa7\x01\x32\x19\x20\x3b\x01\xb2\x18\x0f\x4e\x94\x54\xdd\xcd\x35\x45\xea\x48\xca\xed\x4e\x9c\xfb\xec\x87\x2a\x92\x12\xd5\xf6\x4c\x76\xef\x55\xb7\x24\xaa\x58\x8f\xbf\x7a\xa0\x3e\x81\x97\x56\x5b\xe7\x85\x78\xbb\x57\x1e\xf6\xa8\x07\x18\xe4\x0e\x41\xaa\xde\x43\xb0\xd0\xda\x3b\x74\x10\x0e\x16\xa4\x1f\xb0\x0d\x1e\xec\x16\x7a\xd5\x3a\x7b\xee\xc1\x1f\x4d\x90\xf7\xb0\x57\xbb\xbd\x56\xbb\x7d\x50\x66\x07\x68\x76\xca\xe0\xb5\x10\xcf\xe0\x3b\x7b\x60\x12\x0e\x65\x40\x68\x79\xa3\x76\x8f\x3d\x7a\x90\xa6\x83\xd1\x23\x84\x3d\xf6\xd5\xa3\xa5\x89\xee\x56\x69\x64\x26\x64\xd7\xd1\x4f\xd8\x23\x68\xe5\x03\xb1\xa0\xa5\xd9\x8d\x72\x87\x3e\x32\x03\xad\x34\x02\x66\x4e\x2a\x21\x3e\xc9\xb2\xc5\x2d\x85\x78\x6b\xa1\xdd\x4b\xb3\x43\x38\xda\xd1\x95\xfc\xac\x61\x70\xe8\x3d\xbc\x0c\x4e\x6f\x10\x94\x49\x44\x83\x85\xc6\x91\x50\xe3\xc0\x9b\xb7\xb6\xef\xa5\xe9\xc4\xe0\x6c\x3f\x84\x35\x4b\x11\x8e\x03\x49\x5b\xd7\xb5\xf0\x18\x4a\xaa\x10\x0e\x8a\x99\xe1\x87\x62\x65\x1d\x1c\xf6\xaa\xdd\x23\x69\xb4\x5c\x77\xb4\x23\xb4\x7b\x6b\x3d\x5e\x54\x42\xbc\x8e\xf2\x58\x52\xd3\x41\x85\x3d\x48\x30\x63\xdf\xa0\x23\xb1\x17\x4a\x6c\x8e\xd0\xe1\x56\x8e\x3a\x54\xf0\x76\x7f\xa2\xe1\xb0\x97\x81\x28\x8b\x56\x1a\xe8\x94\x1f\xb4\x3c\xc2\x41\x69\x0d\x1d\x0e\x68\x3a\xb0\x06\x0e\xb4\xe6\x56\xd1\x45\x22\x0d\x7e\x1c\x06\xeb\x42\x54\x51\x40\xd7\x2b\x23\x35\xec\xa5\xaf\x84\x78\xd3\xab\x24\xe0\x46\x2b\x73\x9b\x37\x87\xb3\x77\xdb\x5d\xbc\xff\x7e\xfd\xae\xc9\x7f\xcf\xe2\x6e\xbd\xbc\x65\x33\x43\x23\xdb\xdb\x9d\xb3\xa3\xe9\xd2\x56\xbd\x0c\xed\x9e\x1f\xe5\x7d\xce\x7d\xd2\xa9\x93\xc6\x0f\xd2\xa1\x69\x8f\xa0\xb6\xe0\x91\x0c\xfa\xda\x76\xe8\xcc\xb4\xd8\x43\x20\x31\x82\x85\xbd\xbc\x43\x90\x30\x48\x8d\x21\x20\xc9\x72\xf5\x39\x79\x97\xdb\xb4\xd6\x6c\xd5\x6e\x74\xb2\xd1\x59\x3d\xb0\x0a\x7b\xf4\x28\xd2\x15\x69\xc7\x6e\x03\x1a\x68\x68\x45\x5c\x8e\x1d\xf9\x40\xc9\x19\x39\xc8\x16\x89\x21\xf4\x17\x91\x49\xd9\x75\x2a\x28\x6b\xa4\x16\x4b\xd5\x45\xd3\x31\x01\x87\x08\x5b\x2d\xef\xac\x23\xfd\x3d\x83\xab\xcf\x37\xbc\xf6\x1a\x5e\x2c\x3d\x85\x0c\x31\x7a\x36\x1b\x12\xf7\x59\xb5\x89\x4b\xd6\xa4\xd4\x07\x79\xf4\x70\xb0\xee\x16\x9a\x31\x08\x88\xb7\xad\xd1\x47\xd0\xd6\xde\xc2\xce\xda\x8e\xd4\xf5\x34\x0d\xd6\x52\x83\x68\x4a\x31\x63\x54\x09\x60\x75\x9d\x7b\xd0\xea\x56\x99\x5d\x05\x3f\x79\x72\x7b\xf9\x98\x49\xde\xad\xe4\x34\x51\xdf\x3a\xdb\x27\x52\xb3\xce\x92\x41\x12\xf7\xde\x72\x98\xa1\xbb\xc3\x13\xab\x33\x0c\x60\xa4\x61\xc3\x1e\x9d\x00\x90\xc3\xa0\x55\x2b\x49\xc3\x1e\xbc\x32\xed\xf2\xa5\x24\x3b\x5b\x2e\x02\x89\xf5\x08\x5e\xf6\x93\x9d\xb7\xd6\x3d\x49\xac\x82\xaf\x16\x8a\x49\xf1\x62\x49\x6f\xca\x73\x3c\x83\x32\xad\x1e\x3b\x84\xda\xab\x7e\xd0\x58\x93\xc1\x05\x40\xed\xad\x96\x4e\xfd\x82\x5d\xcd\xe6\xfc\xec\xcf\xb3\x3d\x75\x6f\x7d\x00\xa9\x75\xe1\xa0\xd9\x23\x52\xf8\xb1\x4a\x4d\xe1\x38\xf0\xd9\x9f\x9e\x27\x2e\x04\x50\x40\x06\x3b\x44\x46\xf0\xe3\x2e\xcc\x38\x49\xe4\x3e\xfb\xf3\x64\x81\x60\x83\xd4\x17\x95\x80\x05\xec\x45\xc8\x61\x15\x4d\xdc\x82\x74\x08\xc4\x18\xd3\x6c\xb0\x95\x09\x8a\x13\x40\xb0\x33\x45\x5b\xb2\x42\x1d\xee\xa4\xeb\x34\x21\x64\x62\xae\xf0\xa0\xec\xd2\xd9\xda\x15\x61\x39\x41\xdc\x3a\xad\xd4\x96\x2c\xe0\x18\x78\x95\x87\xad\x54\x8e\x1c\x56\xf5\x2a\x60\x07\xdd\x88\x19\xda\x7d\x4f\xda\x3b\xc5\x3a\x90\x77\x52\x69\xe2\x94\x44\xcb\xa6\x9b\x65\x59\x18\x71\xb2\x5b\x6f\x8d\xbd\x95\xaa\x5e\x43\x9d\x51\x98\xfe\xff\x82\xa6\x19\x9d\xa9\xd7\x64\xcc\x4e\xba\x76\xd4\x92\x8d\x0b\xbd\x75\xc8\x36\x0d\x6e\xc4\x6c\xd4\xbf\xdb\x1e\x3f\x6e\xce\x33\x5a\x1e\x79\x38\x8b\x68\x7d\xf5\x39\xf4\x4a\x6b\x65\x29\x1f\x25\x11\x46\x8e\x26\x1f\xa4\xe9\xa4\xeb\xe0\xc7\x6f\xff\x06\x77\x52\x8f\xe8\x09\xb7\x95\x87\xde\x76\x29\x4a\x1a\x04\x36\x4a\xb0\x79\x37\x01\x4b\xf7\x39\x2e\x13\x57\x33\x06\x50\x01\xfc\xde\x8e\xba\xa3\xd7\x8d\x25\xb5\x72\xac\x92\x52\x17\x3e\x84\xe4\xc4\xa7\x06\x23\xa3\xa8\x9d\xb1\x64\xcc\xc3\x9e\xc3\x89\x76\x9a\xf5\x10\xd9\x5b\x71\x74\xf4\x28\x8d\x4f\xbe\x91\xb1\x69\xaf\x34\xe6\x97\xca\x08\xc5\x7e\xd4\x32\x50\xd6\x4b\x92\x79\xb6\x83\x3e\x82\xdd\x6e\x2f\x2a\xf8\xc1\x72\xbc\x14\x88\x31\xab\x78\x56\x2b\x4b\xc8\xc2\x28\x0f\x83\x55\x26\x00\x47\x5a\x67\x2b\x78\x3b\xad\x22\x57\x4d\xaf\x4e\xd9\x5b\x91\xbb\x6e\x8b\x2c\xc9\xa4\x08\xf0\x1b\x04\x34\xa4\xe7\x8e\x9e\x7a\x0c\x21\x31\x2f\x00\xd0\xdc\x29\x67\x4d\x8f\x26\xc0\x9d\x74\x8a\xcd\x51\xbf\x7e\xf5\xf2\xc7\x37\xff\xf5\xf6\xc7\x9f\xbe\x7e\xf9\xe6\xfb\x37\x3f\xd6\x64\xa0\xab\x0a\xe0\xd5\x1c\xce\xcb\x94\x29\x00\xfa\xd1\x87\x99\xab\x00\xab\xd1\x8f\x52\xeb\x23\x28\xd3\x11\x18\x2d\x77\xaf\x3f\x65\xca\x6f\xbf\xfe\xf1\x35\x53\xaf\x49\x05\x2c\x5b\xcd\x41\xfd\x76\xb6\xc7\x89\xcb\xe7\x62\xe5\x38\xa8\x96\xe9\x53\x5a\x64\x5f\xac\x37\xa1\xad\xd7\xe0\xc7\x76\x0f\xd2\x2f\x00\x2c\x3e\xa9\x65\xb0\xfd\xa6\x93\xee\x36\x5d\xf7\x32\xa0\x53\x52\xc7\x4b\x0c\x6d\x55\x55\xf0\x6a\x5b\xda\x43\x79\xf2\x31\xd6\x54\x52\x21\x19\xa8\x5c\x51\x26\x0d\x45\xde\x8f\xdd\x3a\x31\x19\x0b\x10\x0b\x2a\x78\x68\xd0\x07\x08\x36\xc2\xb3\xb3\xf7\x8a\x36\x9f\x41\xc3\x67\x5c\x98\x00\xa0\x40\xbb\x4a\x88\xef\xd0\x31\xf9\xb2\x2a\x2c\x35\x73\x4d\x25\xe0\x27\xf3\x3b\x54\xe2\x22\xe5\x88\x18\x2a\x9c\x46\x29\xf2\x19\xed\x8c\x6a\x63\xdd\x47\xae\x35\xb9\x63\x05\xaf\xc0\x21\x55\x7d\x5c\x69\x70\xdd\x10\x72\x79\x85\xbc\x98\x31\x63\x82\x1b\x58\x71\x9a\xa3\x87\x75\x72\xba\xba\x64\xea\x82\x16\x67\x10\xa2\xff\x3b\x37\xde\x35\xf6\x9e\xff\x67\x3c\xa2\xff\x13\x68\xd1\x85\x93\x4a\xfb\x56\xfa\x78\xd5\x8c\x4d\xa3\x71\x37\xf6\x75\x14\xf0\xea\x44\xbe\x5e\x1e\xc9\x71\x09\xcb\x3b\xd4\x47\x68\xa4\x47\xae\xf6\x96\x09\xdb\xa3\xc6\x96\x7c\x90\xf2\xe4\xc2\x75\xa3\x48\x29\xf3\xf1\xdf\x29\xeb\xc1\x8a\x9d\x9a\x4b\x09\x86\xec\xfc\x04\x4e\x20\xe5\x24\x1a\xc8\x94\xa3\xa7\xf0\x8a\x71\x5c\x7a\xc8\xe0\xec\x80\x4e\x1f\x59\x37\x6d\xdf\x6e\xae\x3e\xaf\xf3\xdf\x41\x0e\xe8\xa2\xa2\x50\x9a\x63\x92\xb8\x08\x7b\x31\xff\x07\x87\xff\x3d\x2a\x87\xfe\xf1\xd6\x73\x10\x66\xc0\x4d\x30\x16\x41\x52\x3c\x1d\xf3\x45\x3c\x26\x9f\x99\xe4\x66\xf4\x2e\x43\x74\x0d\xf5\x67\x7f\x6a\x54\xa8\xd7\xc2\x3a\xfa\xbf\xa1\x8b\xaa\xc4\x87\x35\x71\x12\x63\x66\x11\x4e\x29\x7e\x63\xba\x2c\x38\x11\x1f\x41\x1f\xb6\x02\x21\x2a\x86\x88\x44\x62\x61\x27\x8a\xde\xeb\xa8\xe9\x14\x20\x27\x86\x4a\xaa\x27\xd3\xcf\xac\x50\x1f\xb6\x04\x84\xeb\xc7\xd6\x52\x3e\x3b\xd4\x76\x4b\x11\xf7\x22\xd8\xfe\xdc\xc3\x19\xbd\x72\x56\xae\xac\xb2\x0d\x99\xce\x8b\x79\x9f\xd1\x45\x1d\x9b\x30\x55\x13\x7d\x1b\x2b\x40\x02\xd4\x30\xdb\xb1\xd0\x12\xc3\x04\x47\x6a\x46\x0e\xaa\x51\xf9\xd5\xcd\xd5\xe7\x54\xf4\x2e\x8d\xde\x59\xf4\xe6\x3c\x3c\x91\x4f\xaa\x22\xec\x22\x6f\xd4\x3a\x15\x5b\xdd\xa1\xf3\x04\xe7\x89\xb9\xb4\xb4\x14\x8d\x29\xa8\xb0\x1f\x9b\x7f\x85\xc0\xb7\xbc\xf2\xf4\xfd\x12\x68\xaf\xcb\x8a\x6d\xa9\xde\x6f\xad\xdd\x69\x3c\xf7\xf0\x3a\xad\x87\xaf\xd0\xab\x9d\xc9\x91\x16\xdb\xdc\x5c\x0d\xca\x92\x50\xea\x24\xcf\xfd\x49\xe7\xed\x30\xd6\xe2\x78\x1f\x1c\xf6\x84\x10\x31\xd4\xe7\xfe\x3b\x76\x93\x39\x69\x5a\x83\xdc\x26\x89\x86\x1c\x66\x34\x9d\x78\xb7\x47\x87\xef\x57\xfb\x10\x06\x7f\x7d\x79\x19\x55\x51\xb5\xb6\xbf\xfc\xe5\x88\x9d\xea\x94\xbc\x64\x97\xbe\x0c\x0e\xf1\xb2\x97\x3e\xa0\xbb\x74\xa3\x09\xaa\xc7\xcb\x92\x19\x6a\x77\x5f\x8e\x3e\xd8\x7e\xc9\xe3\x5c\xcd\x0c\x5a\xb6\x73\x37\x56\xff\xcf\x65\x15\x6b\x99\xb4\x41\xf9\x56\x2d\x3a\xe5\xb0\x0d\xd6\x1d\x2b\x21\x5e\x94\x85\x64\xdc\x22\x3e\x56\x77\x49\x09\x33\x69\x09\x75\xc5\xf4\x6a\x1e\x39\x54\xcb\x02\x9a\xd6\x8a\x39\xb9\x72\x03\x74\xf5\x97\xcd\x1f\x9f\x83\x56\x26\x35\x7a\x54\x7a\x57\x71\xc2\x10\x27\x18\x61\xd9\x8e\x73\x8b\x6f\x30\x36\x5c\xdc\x3b\x4f\x93\x0a\xa0\x9e\x78\x88\xad\xbe\x90\x6d\x18\xa5\xce\x39\x2e\x62\x95\xf2\xd0\x59\x53\x56\x58\xf5\xdc\x83\xd7\x79\x26\x51\x09\xf1\x8d\x75\x80\xf7\x92\x6c\xc9\x58\x33\x6f\x41\x75\x75\xcc\x62\x81\xf9\xdd\x39\x44\xb3\x66\xa6\x0e\xac\xe9\x54\xff\x67\x62\x69\x9e\x51\xb4\xfa\xe9\x6d\x38\xe3\x57\xcf\xe2\x44\xe3\x6f\x27\x1d\x7d\xec\xa6\xd9\xb9\x08\x9b\x06\x6c\xd5\x56\x61\x97\xa7\x18\x4c\xfc\xf7\x48\xaf\x1b\x3d\x62\xa2\xcf\xe2\x73\xc5\xb0\x53\x77\x33\x83\x2c\x85\x04\x5a\x58\x0c\x15\x2a\x21\x5e\x6d\x0b\x91\xb4\xba\xa5\x62\x98\x30\x0e\x13\x93\x3c\x67\x91\x06\xfe\x49\xe8\x49\x22\x27\x9e\x22\x83\xc6\x86\x3d\x69\x58\x19\x6a\x44\x4d\xf8\x08\xa7\x25\x93\xff\x48\x44\x63\x7f\x3b\x06\x68\xac\xee\xd6\xa0\x82\xd4\xaa\x5d\x83\x75\x30\x9a\x0e\x1d\xf9\xca\x44\x7a\x6e\xa3\xa8\xcd\xf8\xf0\x3e\x44\x0a\x1c\x76\x69\xab\xcd\x66\xc3\x49\x9e\x22\xd8\x61\x1a\x2f\x74\x6a\xcb\x83\x89\x00\x3c\x1d\xa0\x6c\xc7\x8a\x3f\xce\x3b\x50\x94\x45\x14\x9d\xea\xec\x5c\x8a\x72\x46\x9b\x8b\x02\xce\x88\x1c\x1c\xd4\xa8\x07\xaa\x4f\x73\x13\x51\x66\x4e\x91\x87\x4b\x24\xb9\xb1\xa1\x18\x29\xc5\x3e\x3c\xb7\x6e\x71\x62\xd1\x60\xf6\x5c\x6a\x27\x2b\xc8\x2a\x9b\xfa\x76\x31\x8d\x39\x42\x1c\x08\x19\x49\x91\x57\x37\x5a\xb6\xb7\x6b\xd2\xc0\x7a\xf2\x59\xd4\xda\x1e\xd6\x6c\xfd\x35\xf4\x72\x87\x26\xc8\x35\xb4\x47\x69\xd6\xd4\x8a\x04\xac\x85\x8c\xc5\x1a\x34\x8e\xbd\x3f\x65\x1b\x6e\x5e\x51\xb6\x7b\x42\x34\x58\xc5\x87\x69\x87\x78\xe1\xb0\xab\xaa\x8a\x40\xe9\x2d\xf5\x41\xc7\x05\x9b\x65\x23\x58\x74\xdd\xcd\x71\x0e\x4c\xe5\x12\xe8\x78\xb8\xda\xd0\x9a\x55\xba\x14\x57\x94\xa4\xd8\x93\x79\x8c\x94\x2b\x5b\x12\x33\xc7\xce\x45\x74\xe0\xac\xee\x73\x3f\x27\xb3\x94\xc4\xca\x84\xc8\xd5\xc2\xcc\x22\x3b\x5f\xb6\x7b\x1a\x28\xe0\xbd\x6c\x83\x5e\xb2\xb7\x47\x4a\x64\x1d\x35\x9e\x69\xaf\x69\x93\x58\xd6\x9f\x36\x5e\xb9\x93\x12\x81\x5c\x31\x56\x71\x1f\x29\xf6\x43\x9a\xf5\x84\x80\xfd\xc0\xa5\x49\x2f\x87\x27\x4a\x7a\xf1\x81\x9a\xfe\x5b\x34\xe8\xd8\x31\xdb\xc7\x33\x8c\x54\x17\x2c\xca\x82\x79\x16\x68\x8b\x19\x98\x74\x28\x7a\xe9\x6e\x67\xec\xe1\x4e\x08\xfc\xb8\xdd\xaa\x7b\xae\xfa\x9f\xa0\x4f\x6a\xd6\x47\x90\xd1\x8d\xca\x79\xe5\x53\xf4\x62\x69\x9a\x48\x56\x29\x38\x73\x4f\x22\xa7\x8e\xe4\x34\x11\x24\xb4\x2f\x03\x88\x74\xca\xf3\xf2\x9c\x71\x57\x51\xb8\xf4\x76\xc9\x87\xe9\x4a\x3c\xdb\x32\xb8\x4c\x30\x4f\xd9\x05\xef\x03\xd5\xd1\x09\x41\xc4\x33\x50\x1d\x9a\x40\x30\xec\xf8\xb6\xf1\x41\xf2\x7d\x1f\x64\xc0\xb4\xc6\x1f\xfb\xc6\x6a\xf1\x8c\xa2\x7e\x70\xb6\x15\xcf\x78\x0a\x46\x4f\xc8\xa5\x24\x3d\x9a\x40\xac\x13\xcf\x00\x9d\xb3\x44\x2f\xd8\xce\x26\x5a\xa3\x67\x84\x5b\xbd\x2c\x59\x9f\x1f\x10\x53\x41\x36\x8d\x74\x27\x4b\xd2\x4d\xd6\x07\xe9\xcc\x83\x1d\xd0\xc4\xd1\x3f\xbd\xa4\x0c\x09\xb0\x69\xf7\x8f\xde\xa4\x5b\xb2\x0d\x98\xa6\xea\x53\x57\xed\x89\xa6\xcf\x73\x50\x3b\x70\x6f\xae\xfc\xdc\xb0\x12\x59\xe2\x69\x13\xa3\x53\x3c\x83\xdd\x18\x02\xba\x4d\x16\x2b\x5d\x1e\xa4\x33\xca\xec\x48\x6f\xa3\xf3\x11\x9c\x31\x5e\x11\xde\x6e\x96\x34\x22\x7e\xb7\x56\x8f\xbd\x21\xbe\x79\xa2\x42\x46\x55\x77\xaa\xc3\x53\xe6\xf3\xdd\x06\xc3\x01\xd1\x50\xcd\x18\xa8\xc0\x00\x3f\x68\x15\xfc\x45\x42\xec\xec\xa0\xb9\xde\xff\x77\xca\x21\x98\xca\x21\xaa\x9e\x1b\x86\x95\x2e\x3b\x6a\x39\xb7\x48\x31\xd9\x4b\x65\x9e\x70\x55\x46\x9a\x94\x71\xfc\xd8\x3c\xe1\xbf\x22\x03\x4f\x73\x64\xa2\x66\x07\x75\x95\x97\xd6\x99\x3c\x5f\x31\xec\x1c\xed\x78\xee\x10\xa6\x19\x26\x57\xee\xf6\x60\x52\x9d\x26\xca\xd3\x9f\xf5\x14\x24\x7c\x8e\x40\xe8\x63\xb7\xf3\x1b\x13\x43\x11\x3c\xa7\xa3\xa0\xf3\x50\x9c\x2e\xe4\x45\x94\x94\xcf\xf9\xfc\x23\x86\x59\x62\xcc\x59\x9b\x8a\xb0\x35\x78\x0b\xb4\xc8\x0b\x2f\xb7\xc8\xe1\x36\xb5\xff\x38\xc1\xdf\xac\x85\xdc\xe6\xa6\x02\xb3\x64\x7c\x59\x8f\x91\x37\xd6\x39\xfa\x2a\x1f\x9c\x32\xbb\x9a\xa7\xa1\x1c\xc8\x13\x9d\x72\xb2\x57\x0c\x4c\xc6\x94\x71\x29\xe0\x17\x87\x6d\x91\x52\x44\x73\xe2\x9b\x21\x9c\x69\xae\x27\x30\x1e\x39\x1f\xc7\xad\x41\x19\x1f\x50\x76\x55\x3a\x65\x0a\x4e\xc5\x13\xb6\x59\x5b\x5a\xba\x1d\xfa\xc0\xad\xa5\xdd\x66\xbc\x52\x71\x70\xb6\x55\x66\xf2\xbe\xb2\xa1\xe9\x70\xab\x0c\x7b\x93\x67\x25\xaa\xed\x9a\x99\x25\xf1\x35\x16\xa2\x37\xd6\xea\x8a\x00\xbc\x90\x9e\x33\xd9\x2c\xad\x88\xf9\x56\x06\x96\xea\x43\xaf\x4e\x82\x72\x9a\x5a\xae\x9a\x69\x8b\x85\x12\x4f\x19\xa9\x79\x07\x63\x03\x2b\x8b\x0f\x35\xa6\x05\x75\x05\x11\xce\xcf\x4b\x34\x9f\x4d\x4f\xc1\x34\xf5\xee\xe7\x1e\x9a\x51\xe9\xb0\x51\xe6\xd4\x09\x26\x2c\xae\x52\x35\xb2\xe2\xa1\x32\x3d\x26\x8c\x4d\xc7\x32\x9d\xf2\x41\x99\x36\x1e\x76\x64\x4c\x88\xcf\x79\xaa\x15\x8b\xde\x8b\x02\xc2\x59\x80\xd3\x6b\x56\xcf\xa3\x9b\x5b\xa9\xfd\xe2\x6e\xea\x8c\xca\x5b\x09\xe8\x5f\xee\xa5\x5b\xdc\x66\xff\x7a\x7c\xa7\x1a\x9d\x86\x45\x76\xa9\x5a\x2d\xbd\x87\xd5\x0b\xaa\x44\x58\x39\x64\xff\xed\x98\x84\xba\x58\x2e\xee\x65\xeb\xec\xf2\xd6\x1d\xef\x9c\x32\x50\xe5\xf7\xd8\x48\xb3\x83\x15\x75\xa2\x9f\xfc\x01\xd2\x34\xbb\xc1\x9d\x32\x04\xca\xa4\x16\xc9\x5a\x4c\x53\x1c\xd4\x3a\x4e\x3a\xac\xe7\x63\x4d\x01\xe0\x5b\xa7\x06\x72\xf9\x80\x6e\x70\x18\x62\xdd\x35\x7a\x4e\x46\x31\xe7\x55\x8d\x93\xed\x2d\x06\x0f\xab\xfa\xd7\xdf\x56\x17\xef\xde\xc7\xd3\x00\x6f\x7b\xa4\x6e\xd5\x43\xfd\xc5\x5f\xeb\x62\xbd\x1d\xd0\xf1\x4c\x3b\xc3\x79\xbe\x8e\xcf\xfd\x5c\x8e\xc7\x81\x56\x7a\x2d\xc8\x1d\xac\x08\x0f\xf6\xa1\xd7\x10\xe4\xce\xaf\x41\xf6\x96\xe4\x20\x74\x05\xee\x3c\x58\x49\x64\xf4\xea\x16\x8f\x07\xeb\x3a\x58\xe5\x8e\x86\x42\x57\xe6\x6c\x5c\x34\x76\xa4\xe3\xb4\xd8\xc7\x8e\xa7\x1e\x9c\xba\x93\x01\xeb\x0b\x06\x79\xd2\xc8\x76\x0c\xa3\xc3\x35\x0c\x7a\xdc\x29\xe3\x79\x40\x98\x9b\xb4\x7c\xd8\x30\xe6\xa2\x3d\x07\x3c\x51\xf6\xe1\xa8\xc9\xd8\x82\xa7\x0c\x7f\x2f\x1c\x9b\x2b\xe4\xe5\x31\x3d\xe5\x87\x83\x53\x21\xa0\x61\x3c\x93\xbd\xde\x6c\xad\xeb\xa9\xa1\x20\x8d\xa6\x1c\xb1\x8f\x07\xfd\x93\x08\x62\x3a\xc8\xaf\xe6\x81\x05\x07\xd3\x1c\x4b\x0b\xc8\x8b\x90\x75\x87\x8e\x9a\x17\xc7\xa0\x4c\xcd\xa6\x34\xb8\x06\x8f\xc6\x2b\x92\x28\x1d\xd2\x53\x8e\x85\x08\xc0\xfc\x1d\x83\xdc\x61\x4e\xc0\xd4\xc7\x28\xb3\xdb\x8e\x1a\x50\x63\xec\x29\xd9\xa7\x32\x3f\x15\x44\x88\xdc\x4b\xbf\xc8\x48\x91\x39\x6e\xe5\xc8\xfe\x77\xe8\xe0\xea\xf9\xf3\xe2\x7b\x04\x63\x0f\x7f\x58\x9c\x81\xb9\x38\x93\x6d\x10\x84\x57\x61\x4c\x47\x9a\x07\x7e\x40\xd6\x65\x50\xcd\xa2\x2f\x65\x65\xd9\x94\xe1\x22\xb3\x55\xd4\xe4\x59\x17\xcb\x74\x2b\x38\x63\xe4\xf3\x5a\x32\x07\x97\xbe\x06\x0f\x69\xe8\x57\x14\x98\x69\x28\x31\xa7\xcd\x45\x86\x65\x65\x51\x61\xc1\x43\x38\x92\xec\x71\x65\x11\xdf\x88\xc1\xf1\x7a\x89\xa9\xb1\xe3\x9b\x12\x0b\x4f\x68\xbf\x49\xf0\x06\x73\x62\x88\x9d\x72\x3c\x13\x09\xd2\xc5\x78\x2e\x18\x89\xe7\x34\xad\x96\x2e\x37\x8b\x19\x23\x53\x83\x3c\x5d\xc2\xce\xc6\x7e\x98\x76\xfa\x0a\x03\xb6\x61\xb1\xcf\xd4\xbc\xf1\x66\xd9\x0d\x94\x89\xde\x48\x15\x8f\x6c\xec\x18\xb2\x2b\x76\x91\xc2\x13\x3b\xc6\x27\xd7\x02\x00\xf8\x11\xb5\x6b\xd7\x70\x76\x73\x53\xed\xec\xa7\xa9\x27\x2f\x94\x91\x73\xa8\xf2\xe0\x70\x87\xf7\x20\x77\x92\xd4\x02\x92\xe7\x17\x66\xa2\xf1\x81\x5d\xab\xa8\xa1\x1c\x9d\x93\xff\x9a\x54\xc4\x4a\x0d\xf5\x1e\x65\x47\x6d\x47\xdc\x80\x8d\xcc\x7b\xb7\x7b\x6c\x6f\x13\x35\xe7\x03\xd7\xb7\x22\xb9\x7a\x9c\x69\x15\xd5\xc8\xef\x8a\x77\x94\x5f\xf6\xfa\xd3\x33\x7e\x12\x77\xbc\x86\xb3\xff\xf7\x8f\x17\xaf\xbf\x3f\x9b\x35\x9f\xf0\xc0\x8d\x8c\x07\x3f\xe0\x7d\x78\xac\xf4\xc2\xc6\x0b\xc7\xe6\x97\xd8\x6b\xf3\x2c\xe3\x60\xa7\x7c\x27\xf8\xe9\x35\x0c\xd4\x46\x3a\xe3\x53\x1d\xb6\x8b\x87\xf7\x2f\xf2\x7d\xf2\x72\x56\x79\x3c\xdd\x90\x40\x7d\xae\x46\x16\x3d\x7d\x5f\xc4\x33\x0e\x31\x3d\x61\x4c\x95\x1e\x0e\xa8\x35\x11\x8a\x34\x67\xce\x8a\xd4\x7b\xb0\xf3\xf6\x1c\xe3\xfd\xa8\x83\x1a\x34\x8a\x38\xf4\xe3\x23\x63\x99\xe6\x27\xcc\x2f\xa1\x87\x22\x10\x39\x10\xfe\xf9\x2c\x7d\xdc\x23\x1f\x57\x71\x11\x4d\xf9\x3f\xd7\x85\xd3\x26\xca\xc0\xb7\x36\x19\x26\xca\xcf\xda\xdf\x64\xd0\x67\xc3\x34\xab\xc6\xa1\xbc\x7d\x68\xa5\xc7\x87\xd6\x9a\xa0\xcc\x88\x0f\xa9\x9e\x7d\xd8\xd9\x87\x9d\x0d\xf6\x81\x8f\xda\x1f\x1c\x86\xd1\x99\x8b\x9b\x9b\xe6\x2c\x53\xca\x2d\x5f\xa2\x85\xda\xe3\xc3\xd6\xba\x07\xb5\x7d\xf0\x07\x15\xda\x7d\xb9\x3a\x65\xe2\xb4\x76\x90\xed\xad\xdc\xe1\x83\xea\x07\xeb\xc2\x03\x97\x03\x0f\x77\xd2\x3d\x90\xd1\x1e\x7c\x70\x63\x1b\x1e\x28\xdb\x13\x17\x1d\x6e\xd1\x3d\x28\x1b\x64\x24\x98\x86\x79\x08\xd6\x75\x71\x22\x3b\x89\xdd\x59\x64\x2b\x52\x72\x96\x7e\xbe\xaf\xed\x01\x5d\xae\x34\x19\x1e\xe2\xf7\x1e\x77\xe8\x28\xc9\xf0\x31\x5c\x9c\x4c\x73\xe4\x63\x47\x31\x7d\x97\xbf\x27\x13\x2f\x4c\x07\xfb\x27\x15\x9e\xfc\x88\xc1\x7b\x52\xf8\xe6\xb4\xbe\x89\xca\x67\x9c\x22\x05\x9c\x45\xa5\xa0\xe9\x8a\xab\xc2\x4a\x51\x63\x4f\x15\x53\x14\x37\xd5\xd9\xef\x2f\xba\xb9\xb9\xb9\x79\x27\x9b\xad\x71\xe1\xee\xfc\xe6\xe6\x86\x6f\xbc\xff\x17\x5f\x5c\xbd\x7b\xbe\xf9\x8f\xf7\xbf\xfe\xf1\xb7\x87\xfb\x77\x2f\x36\xdf\xc8\xcd\xf6\xf9\xe6\x3f\xdf\xff\xfa\xd9\x6f\x0f\x63\x79\xfd\xa7\xdf\x1e\x7e\x2a\xaf\xff\xf2\xdb\xc5\x99\x60\xd9\xb9\xbc\x5c\xca\x7c\x79\x59\xca\xfc\xe9\x07\x44\x0e\xb6\xb3\xd7\x70\xb6\x7a\xfb\xe6\xab\x37\x0f\x3f\xff\xfc\xf3\xc3\x37\xaf\x7e\x7e\xfd\xf5\xc5\xf5\x97\x1f\x21\x7c\x73\xf3\x6c\xa1\xce\x9b\x67\x97\xff\x3e\x75\x76\xa9\x1f\x6c\x50\x2d\x46\x1c\xdf\xcf\xa6\xa5\xb8\xa4\xe0\xa0\x7e\x36\x86\x66\x8a\xc7\x88\x87\x7d\x05\x2f\xcc\x11\x94\x31\xe8\xd2\x73\xc2\x51\x21\x39\x4f\x47\x3c\x89\xe3\x55\x34\xe0\x6f\xd5\x30\xe4\x0f\x23\x3c\x4a\xd7\xf2\x8c\x98\x0f\xce\xf8\xb8\xae\xcb\x05\x45\x0a\x74\xc2\x59\x31\x4d\xe1\xf9\xb5\x05\xf2\xd5\x67\x5b\x6b\xe1\xe6\x0c\x1a\xe9\xce\xea\x75\xfa\xb2\xa9\xbe\x39\xab\x4b\x3c\xa3\x4e\xda\x44\x16\x19\x0d\x72\x24\xc4\x4d\xb8\x5d\x51\x3e\x33\x57\xc1\xf7\xea\x16\x0f\xca\xc7\x03\xbd\xb4\x43\xdc\xa2\xd8\xe1\x86\x76\x10\x4f\xec\xc0\x4a\x38\xa1\x99\xbe\xc3\x23\xf6\x79\xd2\x70\x56\xf4\x6b\xe9\x89\x88\xa1\x42\x3a\xf0\xb9\x3e\x6f\xad\x73\x94\xd6\xb8\x9c\xa8\xc4\x32\xa1\xe1\xfd\xa0\x55\xab\x82\x3e\x42\x2f\xdd\x2d\x6f\x15\x13\x19\xfa\x74\x82\x07\x9d\xa5\xde\x9d\xeb\x5d\x2e\x46\xb8\x02\x12\xc5\x88\xeb\xa9\x44\xf6\x7f\x0a\x5f\xda\x3d\x66\xbb\xd2\xfb\xe0\xdd\xfb\x29\xc3\x7d\x02\xaf\xe2\xe7\x44\xfe\x44\x90\xfc\x95\x51\x74\x9e\xf9\xab\xb5\x93\x82\xd8\x03\xf6\x0d\x76\x1d\x76\x73\x75\x78\xe2\x1f\x8c\x6e\x56\x6b\x7b\xe0\x93\x07\x0f\x83\xf5\xb1\x82\xdd\xa6\x66\x61\x12\x31\xa1\xfc\x52\xb4\x2f\x62\x8f\x53\x3d\xfb\xf2\xaf\xa5\x8c\x5f\x5c\x9e\xde\x7f\x14\x5b\x49\x86\x6b\x38\xfb\xa7\xbc\x93\x71\x39\x07\xed\x07\xf6\x09\x47\x8d\x4f\x6c\xb3\xbc\xfd\x91\x5d\x5a\xef\xa7\xda\xa1\x6c\x25\x52\x7d\xe1\x85\x78\xe2\x66\x3c\xac\x8c\xf5\x4f\xaf\x7e\x49\xc5\x9b\xe9\x92\xaf\x52\xc3\xa3\x8f\xc9\x6f\xb8\x2c\x4e\x47\x6c\xe2\x60\x9d\x3b\xa6\x32\x2f\xa5\x84\x0f\x91\x4f\x1f\x19\x53\x25\x95\x41\x83\x8f\xf8\xca\xca\x2c\xbb\x7c\xaa\xda\xa8\xca\x74\xb8\x1b\xb5\x24\x4f\xe4\x4f\x87\xa7\x9c\x92\x6b\xbd\xc2\x15\xb8\xce\x39\xe6\xaf\x54\xeb\x6a\xdf\xb9\xc5\x28\x5a\x3a\x14\xdc\x31\x17\x5f\x2a\x31\x0b\x19\x65\x06\x87\x1b\x2a\x24\xa5\xd6\xd8\x2d\x07\x0c\xf0\x1d\x8b\x92\x5d\x8e\x3c\x49\x4c\xdf\x2e\x0f\xd2\x79\x3c\xad\xb3\x3d\xf4\x63\xbb\x87\x2d\x9f\xca\x46\x80\xe2\xe2\xf1\xb4\xea\xe6\x6e\x48\xb4\xe8\x58\x25\xe9\x5c\xf4\xf1\x9c\x8b\xa3\x22\x97\x7b\xfb\x92\x19\x65\xc4\x87\xdb\x88\x58\x84\xe5\xaf\xd7\xd2\x3c\xc7\x60\x8b\xde\x4b\x77\x84\x15\xcb\xdf\xd9\xf4\x0d\x03\x63\x83\x60\x05\xf6\xd2\x1c\x61\x75\xf5\xfc\xf9\xff\xbf\x78\x6a\xec\xc6\x0a\x8d\xf0\x61\x41\xf5\xc4\x18\xc2\x80\x8e\x6b\x7f\xd3\xe2\x45\x25\xfe\x37\x00\x00\xff\xff\x05\x1b\x68\x3e\xf3\x2e\x00\x00"
-
-func runtimeHelpColorsMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpColorsMd,
-               "runtime/help/colors.md",
-       )
-}
-
-func runtimeHelpColorsMd() (*asset, error) {
-       bytes, err := runtimeHelpColorsMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/colors.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeHelpCommandsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x58\xcd\x8e\xe4\xb8\x0d\x3e\xc7\x4f\x41\x20\x07\x77\xcf\x54\x79\x81\x3d\xd6\x61\x07\xc1\x04\x01\x16\xc8\x26\x8b\xcc\x00\x39\x04\x01\xa4\xb2\xe9\xb2\xd2\xb2\xe8\x91\xe4\xaa\x76\x9e\x3e\x20\x29\xbb\x5c\xdd\x7d\xc9\x65\xa6\x6d\x53\xe4\xc7\xbf\x8f\x54\xfd\x11\xbe\xd2\x38\xda\xd0\xc1\xd9\xc6\xaa\xfa\x3e\x20\xb4\xf7\x17\xe0\x12\xd0\x84\x01\x3b\x38\x2f\x30\x45\x4c\xc9\x85\x0b\x7c\xcd\xd1\x1f\xb1\x81\x5f\x33\x0b\x58\xe0\x97\x1e\x8f\xde\x05\x84\xf3\xdc\xf7\x18\x0f\xd5\x88\x36\xb0\x6c\x1e\x6c\x06\xeb\x3d\xbc\xe0\x72\x76\xa1\x73\xe1\x92\xa0\x8f\x34\x82\x85\x40\x71\xb4\xbe\x1c\x01\x1b\x11\xd2\x3c\x4d\x14\x33\x76\xf0\x64\x13\xdc\xd0\xfb\xca\x26\x18\x69\x4e\x08\x8c\x29\xa1\xc7\x36\x3b\x0a\xcf\x4d\x55\xfd\x73\xc0\x00\x71\x0e\x62\xc7\xae\xb8\x0f\xb0\xd0\x0c\xad\x0d\xc0\x87\xf0\x35\x47\x0b\x69\x09\xd9\xbe\x2a\x96\xd1\xb5\x91\xe0\xe6\xbc\x07\x7c\x9d\xc4\x51\xec\x29\x62\xb5\x6a\xca\xf7\x18\x34\xf0\x9d\x40\x6d\x83\x8d\x97\x79\xc4\x90\xe1\xe6\xf2\xc0\x4e\x4f\xb6\x45\x70\x01\x5c\x3e\xc0\x34\x67\x70\x19\x5c\xa8\x7e\xcc\x94\x31\x35\xf0\x36\x92\x93\x8d\x09\x23\x2b\x4b\x62\x21\xd9\x11\x21\xce\x1e\x13\xf4\xa4\x9f\xc5\x8d\x62\x25\x09\xd8\xca\xfc\x74\x76\xe1\xa7\x34\x18\xb8\xd1\xec\x3b\xc1\xf2\xa4\xe1\x06\xb5\x74\x80\x8e\xe6\xf3\xee\x11\x53\x6b\x27\x17\x2e\xcf\xef\x30\x54\x1d\x61\x82\x40\x19\x3c\xd1\x0b\xcc\x13\x60\xb8\xba\x48\x41\xdc\xba\xda\xe8\xec\xd9\x63\x6a\xaa\x6a\xab\x8a\x54\x55\xbf\x49\xbc\xa6\x48\x57\xd7\x15\xec\x3d\x79\x4f\x37\x86\x5b\xb4\x2b\x5a\x09\xfa\x99\x63\x8e\xed\xcc\x39\xb4\x79\x1f\xcc\x23\x43\xd8\x97\x91\xd1\x3a\x32\x92\x59\x0c\x19\xe3\xbb\xf0\xff\x69\x0b\x07\x57\xc7\xe4\x6d\x8b\x1d\xc7\x5c\x43\x50\x82\x0d\x03\x46\x2e\x3c\xb1\xc6\xc9\x8a\x28\x5e\x06\x6c\x31\x25\x1b\x17\xb8\x71\xa5\x7c\x64\x81\x75\x49\x41\x34\x55\xf5\x09\x0c\x17\x28\xd4\x2f\xb8\xd4\x50\x5b\xa9\xb3\xda\x9c\xa0\x8d\x68\xd9\x8c\xdd\xd5\xb0\x96\xf0\x0b\x2e\x90\x09\x54\xb4\x81\x6f\x88\xac\xbc\x02\x00\xb3\x2b\x77\x03\x1d\xb5\xe2\x86\x65\x39\xc9\xf7\x48\x91\x8b\xa7\xe7\x0e\x90\x97\xf6\x4c\x73\x86\x55\xfb\x0b\x2e\xa9\x61\x3d\xdf\x07\x97\x36\xb0\x52\xb4\x23\x75\xae\x5f\x14\x2b\x6b\x6f\xfe\x93\x28\x68\x0c\xe9\x8a\xf1\x16\x5d\xe6\x7a\x5d\x60\xeb\xb6\x4c\x2b\x22\xb3\xb6\x63\x44\xdb\x2d\x80\xaf\x2e\x65\xf5\x7c\x40\x3f\x41\x9d\x69\x72\x6d\xfd\xc5\x9c\xa4\xeb\x53\x89\x54\x8c\x98\x26\x52\x60\x22\x27\x62\x0d\xfc\xda\x43\x20\x7d\x60\x1e\x28\x25\xd2\xb1\xb1\xfb\xf1\x0e\x7b\x3b\xfb\xac\x07\x53\x1b\x11\x83\x5a\x4c\xf6\x8a\x50\xf7\xce\x63\xb0\x23\x8a\x51\x7e\x55\x8c\xce\x31\x72\x51\x2a\x35\x88\x29\x29\x3c\xe7\x71\x6f\x0a\x5c\x66\x6b\x12\x97\x5a\x14\xda\x54\x6f\x92\xac\x57\x6d\xfd\x98\x5d\x36\x27\xe0\xff\xd2\x3e\xdf\x11\xa5\xa4\xa0\x4e\x68\x63\x3b\xd4\x50\x5f\xad\x9f\xb1\x86\xba\xf7\xf6\x92\x04\x94\x64\x40\x2c\xac\xd2\x46\xa5\x8d\x32\x81\x91\x23\xa6\x01\x4d\x17\x82\x91\xb3\x46\xca\x90\x26\x4e\xae\xf5\x0d\xfc\x4e\x29\x39\xee\x53\xf9\xca\x1f\x4f\x7c\xe0\x13\x98\xa3\x35\x27\xf8\x47\xd1\xcd\x4c\x49\xad\xba\xdf\x72\xcd\x65\xa0\xd0\xe2\x2a\xea\xcd\x09\xfe\x4c\x60\xc1\xbb\x8c\xd1\x7a\x50\x28\xe0\x42\xca\x68\x3b\xa0\x1e\x2c\x44\xbc\xe0\x6b\xf9\x52\xf1\xc9\xbf\x51\x46\xcd\xfc\x06\x7d\x9c\x53\xe6\x5e\xb5\x70\xb5\xde\x75\xe5\xcc\xd3\x1c\x3c\xa6\x24\x86\x24\xce\x36\x25\xec\x9e\x25\xfe\x14\x50\x5c\x24\x4d\xc5\x9d\xa8\x36\x56\x19\x24\x01\x61\x51\x6a\x4c\x2b\x37\x32\x1d\x8f\x76\x01\x1a\x9d\xf2\x41\xa1\xc8\x7d\x06\xac\x24\xf0\x31\x09\xe6\x04\xf9\x5d\xec\xdf\xc6\x87\xfa\xcd\x27\xad\x84\x7b\x46\xe4\x81\x9b\x6a\x66\xe2\x6d\x29\xf4\xae\x34\x5b\x53\x55\x7f\xe0\x5e\x5d\xad\x9b\xad\xc3\x3e\x6a\xcd\x52\xae\x98\xa1\xd6\x74\xee\x11\x26\xcc\x5a\xb1\xfa\x89\xd9\x40\xbe\x6d\x64\x00\x46\xbf\x24\x23\x2d\xc0\x20\xb5\x63\xd8\x14\xe7\x31\x65\x76\xa2\x08\x6d\xb3\x2b\x61\x6e\x76\xa5\x57\x9a\x7e\xa1\x39\x4a\x2f\x27\xcc\x79\xd7\xfc\xe2\x36\x1b\x0b\x78\x2b\xf6\x57\xd0\x9e\x5a\xeb\xff\x1f\xe4\x20\x27\xfc\x02\x4f\x14\xfc\xc2\x49\x2c\x94\xf6\xd8\x93\xcf\x7b\x78\x9f\x02\xe5\x4f\x1b\x33\x3d\x82\x2b\x48\x06\xba\x6d\x28\xd8\xfa\x40\xb7\xc7\x56\x57\xe3\xa5\xba\x2e\xee\x8a\xa1\x20\x2b\x85\x32\x07\xa8\xd3\x70\x2c\x99\x62\x1d\x71\x2e\x1c\xa3\xd2\x69\x40\xef\xf7\xc4\xce\x9f\xce\xb6\x7d\xb9\x44\x9a\x65\x96\x0f\x5a\xc1\xab\x8a\x04\x34\x67\x9e\xdc\xe2\xc3\x19\xa1\x73\x69\xf2\x76\xd1\x11\xc3\xf5\x2e\x1b\x8d\x0c\x0f\x97\xa1\x77\xc1\xa5\x01\xd3\xba\x72\x28\xae\x6b\x9a\xbc\xcb\x3b\x22\xdb\xc8\xd3\xc2\x15\x63\x76\x1c\x7e\x95\xd1\xe2\x5c\x05\xcd\x4a\xa0\xeb\x0b\x86\xb6\xe3\xb6\xc3\x7b\x05\xf7\x6d\x4c\x77\x90\x00\x38\x4e\x79\x59\x59\x52\x89\xfc\x03\x3c\xb2\x6b\xd8\xb4\x82\x35\x32\x2b\x57\x90\x03\x45\xf7\x5f\x0a\xf9\x6e\x45\xb9\xa4\xf4\xfa\x5b\x10\x6a\x25\xdb\xf3\x47\x2e\xdf\x93\xa1\x4c\x1d\x78\xc9\xc3\x1b\x64\x7b\xde\xce\x8d\xc4\xbc\xff\xaf\xe3\xe7\x7f\x7f\x91\x4a\xf8\x8d\x56\xd2\xe7\x31\x7a\x45\x16\x96\xa1\x1a\x28\x0f\x18\x21\x79\xca\x0d\x98\x20\x84\x64\x03\xb8\x90\xf1\xc2\xde\x02\x70\x00\xcb\x87\x29\x62\xef\x5e\xd7\xc8\x98\xa3\x01\x8a\x60\x3e\x9b\x03\x6b\x96\xf4\x45\xe4\xc5\x43\x77\x09\x88\xe8\xad\x18\x9b\x28\x39\x2e\x32\xd6\xf6\x84\xcd\xa5\xb9\x63\xfc\xfc\xb3\x81\x71\x03\x57\x50\xf1\x9f\xd1\x5d\x86\xcc\x0b\xb1\xf9\xd9\x28\x37\x32\x88\xc1\x32\x0b\x16\x20\x07\x49\xe6\xa3\x51\x9e\xf1\x89\xfc\x9c\xef\x56\xdf\x9a\xfc\xc8\x22\xfb\xaf\x96\xd6\x08\xa6\x9b\xcb\xed\x00\x75\xb6\xe7\x7a\x1d\x50\x0f\x2b\x42\x11\x28\x70\xd3\x84\xad\xeb\x1d\x76\x92\x06\x1d\x51\xd9\x9e\x85\x2f\x99\x6a\xd0\x49\x9c\x65\x18\xb0\xcd\x30\x8f\x67\x8c\x07\x10\x7e\xe2\xfc\x6a\x19\xdc\x73\x88\xaf\xb9\x77\x3e\x63\x7c\xdb\x90\xfa\xf6\xb1\xad\xb7\x8d\x1d\xf2\x10\x69\xbe\xc8\xea\xcc\x9d\xba\xeb\x44\xae\xcd\x94\x6d\xe8\x6c\xe4\xd6\xe3\x96\xe4\xb7\x85\x9d\xcb\xbe\xbc\xe9\xd9\xc8\x2e\xe5\x8e\xe9\x9d\x7a\x21\x55\x7e\xb1\x67\x80\x06\xe0\x2f\x14\x01\x5f\xed\x38\x79\x3c\x48\x28\x29\xe6\x1d\xe7\xaa\xa3\xe9\x00\xbd\x8b\x69\x45\x5a\x74\x8d\x07\x81\x20\xc5\x53\xf6\x59\x30\xbf\xc0\xce\x77\x51\x76\x5c\xf9\xcd\xd3\x65\xd7\xf8\x9e\x2e\x12\x34\x66\x6e\x5e\x41\x2f\x3c\xc9\x43\x07\x1d\x9e\xe7\x0b\xbb\x9a\x51\x66\xa7\x9e\x9d\xfc\x7c\x71\x41\x60\x99\x93\xfc\x97\xe4\x28\x37\xa2\xf5\x1e\x3b\x50\x89\x47\xf1\xf2\x15\xea\xc9\x73\xec\xd7\x47\x5b\x84\x1f\x64\x23\x6a\xd7\xa9\x68\x79\xfa\x50\x72\x9e\x3a\x9b\x37\xc9\xf2\xb4\x4a\xc2\x93\x13\xc6\xb2\x8f\x5b\xf9\x6e\xef\xd3\x03\x0a\xbf\x80\x7e\x7e\xd0\x5f\xf6\x95\xa2\xbf\x3c\xd9\xab\x75\x9e\xef\x1e\xeb\x99\x32\x1c\x5f\x70\xb9\x51\xec\x1e\x14\x6c\xb2\x65\x88\x7c\x70\x78\x7f\x17\xd9\x62\xb8\xae\x1b\x9e\x6c\x27\x31\xe0\x3f\x14\x68\x9c\x43\x76\xa3\xee\x8c\x25\xc6\x6d\x07\xf5\x64\xf3\xc0\x20\xbf\x0e\x36\x5c\x74\x96\xdf\x28\xbe\xf0\x16\xdc\xb9\x88\x6d\xa6\xb8\xac\x3d\xa6\xa4\x67\xf8\x48\x29\x88\xe9\xc6\x66\x7e\x8f\x2e\xe4\x87\x7e\x78\xa7\x42\xc5\xb9\x72\x1e\x19\xf5\xef\xfc\xc6\x6e\x44\xfa\xc1\x56\x5c\x3c\xda\x6f\x26\xe2\xd9\x36\xd9\xf7\x53\x94\x91\xf2\xf6\xbb\xee\xe3\x32\x6e\x8b\x06\x66\x83\x6d\x05\xd5\x98\x78\xb4\xb2\xef\x33\xdd\x68\xc7\x95\xa5\x8e\xe2\xf6\xad\xbc\xd1\x7e\xb4\xe7\xc4\x05\xd0\xe1\x84\x7a\x53\x20\xc5\xbc\x8d\x75\x61\xae\x4c\x7a\xa8\x04\x29\xda\x9b\x39\xed\x6f\xe4\xa4\x4e\x97\x99\xa1\x57\x7e\x4e\x32\x6b\x92\x8b\x2d\x13\xc1\x8f\x99\x77\x3f\xa9\x11\xbc\x62\x5c\xf8\xdf\x90\x37\xc6\x6d\xd1\x31\x85\xca\x05\x4d\x78\x14\xe3\xe8\x64\x07\x17\xa6\xd4\xcd\x83\xf7\xac\xdb\xfd\xe7\x00\xdb\xe6\x59\x96\x9e\x84\xe5\xe8\xca\x29\xeb\x69\xc1\xc2\x1b\x9c\x9e\x4d\xc8\x8b\x81\x6b\x87\xfb\x35\xcb\x46\x0c\x75\x66\x6e\xd7\x45\x5f\xe8\x78\x58\xd4\x6c\x19\xee\x23\x25\xd9\x47\xfb\xd9\x0b\x7e\x21\x84\x4b\xb9\xf1\x6d\x37\xba\x6d\x63\xe2\x2b\xdb\x09\xbe\xad\x11\xd0\x7b\xe6\x53\x7a\x86\x33\x6f\x34\x32\x25\x4b\x92\x5f\x70\x69\xf6\x7c\xc7\xf6\xd6\x1f\x34\xcc\x2f\x50\x94\xe9\x2f\x37\xad\xd1\x60\x97\x75\x07\xcc\x57\x9a\x16\xb3\x92\x7b\x1c\x85\xf0\xbe\xdc\x4b\x70\x0b\x01\x8e\xb3\xb7\x99\x22\xec\x7f\x2a\x51\xfb\xca\x91\xdc\x86\x65\xad\x61\x00\xf7\x97\xec\xbb\x08\x1e\x76\x3b\xbd\x24\x7b\x7f\x47\x54\xfe\x2e\xc5\xbe\x5a\x15\x45\xc5\x70\x53\x55\xc7\xe3\x51\x7f\xa6\xfa\xe0\x47\x88\x3d\x1b\xf1\x7c\xde\xeb\x2e\xe4\x70\x52\xb6\x76\x81\xa9\xf6\xaf\x6f\x9b\x53\x9a\x4d\xea\x2a\x46\x8a\xa9\x11\x2a\xa0\x91\xb9\xce\x9c\xc0\xce\x99\xf8\x4a\xa0\xeb\x71\x79\xcf\x0d\x31\x87\xf5\xe1\xfd\xd4\xe3\x7e\x71\x01\x9b\xea\x7f\x01\x00\x00\xff\xff\x4e\x0b\xc1\x25\x6a\x13\x00\x00"
-
-func runtimeHelpCommandsMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpCommandsMd,
-               "runtime/help/commands.md",
-       )
-}
-
-func runtimeHelpCommandsMd() (*asset, error) {
-       bytes, err := runtimeHelpCommandsMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/commands.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeHelpCopypasteMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x59\x5d\x8b\x2c\xb7\x11\x7d\xd7\xaf\x28\x7c\x1f\x3c\xb3\xcc\xce\x26\x17\xf2\xb2\x01\x43\xb8\x21\xf1\x25\x36\xd7\x78\x17\xec\x10\x42\x46\xd3\x5d\x3d\x2d\x56\x2d\x75\x54\xd2\xcc\x4e\x7e\x7d\xa8\x92\xd4\x1f\xfb\x11\x9b\x80\x5f\xec\x9d\x6e\xa9\x55\xaa\x3a\xe7\xd4\x91\xee\x27\x3f\x5e\x41\xbb\x16\x46\x4d\x11\x41\x07\x04\x24\x42\x17\x8d\xb6\xd0\xa1\x8e\x29\x20\x81\x71\x30\x98\x26\x78\x38\xa6\x08\x8d\x76\x70\x44\xd5\x78\xd7\x25\x32\xee\x04\xd1\xc3\x09\x23\x04\x73\xea\x23\x20\x8d\xd8\x18\x6d\xed\x15\x2e\x3d\x3a\x08\xc9\x39\x1e\x94\xe7\xfb\x33\x06\x78\x78\xf8\x56\x1d\xb1\xd1\x89\x10\x62\x8f\x21\x2f\x3b\x24\x1b\xcd\x68\x11\x06\x8c\xbd\x6f\x69\x0f\x8f\xbd\x21\xe8\xd1\x8e\xd0\xfa\x26\x0d\xe8\x22\x5c\x8c\xb5\x80\xcf\xa3\xd5\xc6\xa9\xd8\x23\x9c\x75\x30\x3e\x51\x9d\x04\x9d\x0f\xd0\xf8\xf1\xca\x4b\xd6\x6d\x19\x77\xda\x41\xef\x2f\xbc\xd8\x15\x2e\x3e\x3c\xed\x14\xbf\xe3\xf9\x47\xa4\xb8\x9a\xdc\x7a\x9e\x4a\x73\xa8\x7b\xa5\x3e\xc0\x97\x87\x4f\xf0\x87\x8f\xb0\x89\x18\x06\xe3\xb4\x85\xc6\x9a\xf1\xe8\x75\x68\xb7\x4a\x7d\xee\x60\xf4\x44\xe6\x68\x71\x07\x84\x31\x4a\x52\x7a\x84\xc3\x34\xea\x00\x7e\x8c\xc6\x3b\xce\xd5\xa1\x7e\xe4\x90\xb7\x73\x32\x67\x54\x12\x47\x40\x4a\x36\x12\xd4\xe4\x98\xb2\x61\x0e\x79\x8a\x47\xb6\x65\x7d\xc3\x29\xde\xc3\xb7\xfe\x82\x67\x0c\xbb\x9c\x48\x65\x08\xac\x19\x4c\xc4\x16\x28\x8d\xa3\x0f\x11\xf4\xe0\x39\x9c\x1a\x38\x0e\xc9\xea\xe8\x43\xde\x2d\x47\xf9\x7a\x4f\x6a\x73\xe9\x4d\xd3\x43\x22\x24\x19\x52\xb6\x3f\x06\x1f\x7d\xe3\x2d\xef\xa2\xf1\xc3\x90\x9c\x69\x74\xc4\x79\x22\x34\xde\x45\x74\x91\xb6\x7b\xf5\x2d\x17\xd6\x10\x68\xb0\x86\x22\xf8\xee\xad\x18\x4a\x19\x4c\x00\x8a\x3a\x26\xba\x57\xea\x06\xfe\x66\x62\xbc\xde\xd7\x0d\x60\xbb\x13\xd8\x79\xc7\x90\x0a\x46\xb2\x6b\x08\xd0\xe9\xa3\xc5\x16\x8e\x57\x68\xb1\xd3\xc9\xc6\x3d\x3c\xfa\xf2\x58\x01\x04\xd4\xad\x54\x5e\xb7\x2d\x1c\xf8\xd7\xed\x18\xcc\xa0\xc3\xf5\x20\xcb\xe6\x47\x8b\x0a\x45\xcf\xa1\x28\x58\x94\xed\x5f\xbc\x9f\xe0\x6d\x2d\xdf\x9e\xc3\x33\x8f\x18\x86\x8f\xf7\x39\xa0\x8a\xb5\x4d\x8d\x8c\x53\x33\x61\x83\xe3\x9c\xb6\xb1\x87\xef\x13\x45\x38\xe2\x14\xba\x71\xbc\xda\x0f\x01\x3b\x0c\xe8\x1a\xa4\xdb\x6f\xfe\x8a\x0e\x83\xb6\xb7\xdf\xc0\x03\x5a\x6c\x78\xd1\xdb\x6f\xfe\x34\x8e\x96\x33\x6d\xbc\x13\x2e\x4e\x89\x1c\xf4\x15\x74\xd3\x20\xd1\xbc\xe8\x61\xaf\x00\xfe\xee\x93\xf0\x94\x51\xf4\xc9\x0f\x83\x76\xed\xed\x99\x63\x13\x9a\xcb\x36\x0e\x14\x0f\x8b\x24\xe7\x67\xe1\xf9\x1c\x6f\xb9\xac\xbe\xc5\xc3\x3d\x38\x1f\xc1\xe9\x68\xce\x68\xaf\x2f\xeb\x91\x99\x2b\x05\xfe\x01\x03\xb3\x32\xa2\x23\xe3\x79\x4f\xf0\x0f\x7e\xf9\xcf\x4d\x1f\xe3\x78\x7f\x77\xa7\x5d\x34\xfb\x88\x7a\x30\xad\xf1\x71\xdf\xe2\x1d\x57\xdb\x34\x77\x0e\xcd\xdd\xcd\xdd\x27\xdf\xe2\x5d\xe2\xa5\xef\xb6\x39\x8c\x67\xde\xe1\xe1\x15\x04\x5a\x43\xaf\x6b\xfe\xb9\x2a\xd2\x12\x11\x63\x12\x16\x72\x28\x8c\xdf\xce\x5b\xeb\x2f\x02\x1c\x07\x87\xfd\xcf\x01\xc9\xa7\xd0\x20\x1d\xc0\x07\x7e\x50\xbe\x46\x87\x7b\x9e\x72\xf8\x99\x4b\x7c\xc3\xcb\xf1\x3c\x6c\x7f\x32\xae\xf5\x97\x2f\x23\xdd\xc3\xc7\xdf\xed\x3e\xfe\x7e\xf7\x80\xf1\xe7\x31\xf8\xf1\x90\xe3\x3d\x39\x3f\xe0\xed\xc4\xeb\x7b\x68\x3d\x92\x64\xaf\xb2\x30\x33\x88\x47\xdf\x3c\xa4\x81\x51\x78\x7f\x73\x03\x9f\x3b\xb8\xfa\x04\x17\xed\xa2\x20\x69\xa1\xc4\xd1\xaf\x69\x2f\x0c\x77\x3c\x5c\x51\xef\x93\x6d\x59\x69\x56\x0a\xb3\x92\x96\x9d\x7c\x6a\xd0\x4f\x08\x94\x02\xf2\xbc\x30\xe1\x46\x95\xa8\x68\x0e\xeb\x03\xfc\x90\x95\x52\xa9\x0f\x1f\xe0\x47\x64\x7a\xa3\x6b\x0b\xe6\x36\x8f\xdf\xfd\xf1\xcf\x3f\x6e\x95\x7a\xec\x11\x42\x7d\x89\x6d\x51\x4e\x26\x77\x11\x5a\x06\xc4\x2a\xe3\xc2\xe8\xb2\x4f\x96\x79\x4e\x0a\x6f\x8c\xc7\xce\x7b\x2b\xad\xa0\x74\x89\x27\xbc\x1e\x8d\x6b\x85\x57\x9f\x62\xb0\xb7\x67\x05\x8b\x9a\x6f\x05\xc8\x18\x3a\x1f\x86\x9c\x2d\xda\xf3\x12\xde\xc1\x77\xc6\xa5\xe7\x1d\x18\x47\x51\x5b\x0b\x87\x67\xce\x0f\x17\x99\x89\xf6\x4c\x68\x0f\x70\xc4\xce\x07\xec\xb5\xcb\x90\x5f\x84\xf6\x7e\x58\x13\xe1\xe6\xc8\x14\x94\xd8\x1e\x7a\xd3\xc5\xdb\x33\x03\x69\x62\xda\x7b\x11\xae\xab\x00\xaf\x61\x72\x0c\xba\x79\x42\x96\x6f\x99\xb5\xcb\x3d\xb4\x7c\x49\x7a\x5a\x81\x47\x67\x02\x45\x05\x05\xf3\xb9\xdb\xc8\x9b\x2a\x55\x19\x00\x32\xbd\x33\xce\x50\x8f\x6d\xe5\x8f\x8c\x9e\x04\xed\xc3\x07\xf8\x5e\xb2\x9e\x3f\x8c\x67\xd6\x6f\xa5\xf2\x33\xa6\xb7\x03\x3d\xeb\x0f\xc4\x5e\x47\x6e\xea\x04\x17\x13\x7b\x16\xa3\x45\x7e\x4a\xcf\x1e\x50\x3b\x52\x32\x72\x95\x3d\x42\xd7\x52\xa9\x71\x5e\x67\x07\x94\x9a\x1e\x34\x71\x66\xa7\x67\x83\x4f\x84\xaa\xfe\x0a\x48\xe6\x3f\x38\xbd\x9c\x29\x92\x9f\xec\x73\xf8\x5f\x53\x85\xc7\xb2\x48\xdc\xe3\xf2\x60\x43\x90\xa1\xb4\x8c\x31\xef\x46\x92\x94\xa3\x0a\xd8\xa0\x39\x97\xae\xf7\x84\xd7\x1c\x04\x90\x16\x91\xcf\x1f\x80\x5e\x73\x8b\xe6\xba\x04\xf6\x4a\x2d\x74\xc1\x0f\xab\x9d\xee\x6a\xeb\x56\x3a\x46\x1c\xc6\xc8\x78\x28\x42\xcd\xe3\xe8\x4a\x11\x87\x45\xdf\xe4\x4d\x61\xd7\x61\x13\x6b\x85\x39\x4c\x54\xaf\x06\x8a\x1f\x38\x62\xf9\x18\x72\xf7\x0c\x3e\x9d\x7a\x38\x8c\xc7\x5a\x7f\x07\xdf\xeb\xe6\xcb\x83\xda\x14\x1a\xac\x04\x73\xbb\x5b\xb0\xa2\x72\xa2\x32\x07\x36\xb1\x47\x42\xa5\x97\x0d\x67\x28\x5d\x6b\xf5\x35\xde\x45\x22\x0c\x5b\xfe\x8a\x9e\x36\xc4\xa4\xf3\x4e\x65\xbd\xa4\x8c\xae\xc7\x5a\xfe\x35\xc0\xfe\xc2\x4e\x0d\x43\xd4\xc6\x71\xa6\x73\x2e\x69\xb7\x46\x8c\x6c\x57\x08\x82\x8e\xb3\x94\x67\x43\xf4\x2a\xd7\x4b\x30\xce\x63\x38\x38\xd4\x2d\xb4\x1e\xc8\xb3\x2a\x89\x16\x45\x42\xdb\xed\xe1\x33\xa3\xd4\xd0\x64\x23\x77\x4a\x50\x37\xaf\x3a\xa5\xb5\xc9\x1b\xfc\xea\x0d\xc2\xd3\xfe\x2b\xf8\xd2\x45\x14\xdf\xc9\x6a\x51\x2b\xf1\x96\x3a\x40\x05\x5e\xf5\xa1\xc5\x27\xec\xe1\x8b\x53\x52\x1d\x90\x4c\x8b\xee\xcc\x0d\x9a\x47\xd6\x5f\x8d\xfc\x9a\x2a\xb3\xd4\x1a\x71\xaf\x8b\x07\xcd\x1e\x7e\x62\x0c\xbf\x23\x55\xb0\x64\x81\xc2\x67\x6c\x92\xb4\xd4\x95\x1a\xe5\xfd\xfc\x0f\x8c\x66\xe6\x71\x1d\x4a\xee\xd1\x70\x22\x26\x45\xca\x95\x11\x34\x54\xc3\x37\x73\x1a\x36\xde\x09\xa1\x24\x16\xd4\x4d\xaf\x9a\x5e\x07\xdd\x44\x0c\x50\x44\x44\x3e\xb3\xdd\x41\x8b\x23\xe6\xb8\xbd\x63\x6e\xca\x2a\x3e\x08\x0c\xde\x69\x63\x54\x26\x2c\x11\x06\x9b\x52\xcc\x17\x9a\xca\x16\xe3\xa5\x14\xc3\xf4\xa5\x57\x02\x2c\x5d\xb7\x1a\xf1\x8c\xc2\xfc\xaa\x48\x83\x30\xf7\x8c\xe1\x9a\x21\x37\xfb\xf5\x0b\x5a\xbb\xf0\xe7\xe6\xa5\xfa\x67\x31\x7c\x2b\x59\xbb\x8c\x56\x76\x35\xe5\x1c\x40\x94\x70\x3e\x16\x48\xfa\x95\xac\xc4\x8b\x3e\x49\x03\x1b\xb4\x4b\x72\xea\x42\x17\x31\x60\x2b\x49\x86\x39\xc9\xd9\x0e\x5c\xc5\x0d\x37\xd6\xf3\xc1\x4d\x95\xcd\x92\x54\x2d\x45\x3f\xb0\x29\x03\xe3\x5a\x74\x51\xe7\x26\x92\x0f\x02\xb2\xd6\xc0\xc8\x48\xe3\x5c\xab\x56\x45\x7c\xce\xae\x5b\x9f\xbd\x69\x25\x6c\x81\x95\xc4\xce\xc2\xe7\x83\x0e\x46\x82\x7a\xa7\x4d\xa9\x4b\x6f\xac\xd8\x93\xa9\x5f\x4e\xdf\x2f\xa8\xce\x45\x2d\xe7\x27\x43\xc0\x61\x65\x04\x4a\x58\x4a\x9f\x4e\x01\x4f\x7c\x0e\xe1\x54\x12\xe7\x72\x3a\x4b\x2e\x10\x68\x5c\xf4\x60\x75\x38\x61\x58\xf7\x0f\xf5\x39\x66\x1b\x7b\xf2\xbe\x05\xd3\xa2\x66\xb5\x5e\xf6\xca\x75\xc8\xd0\xa6\xc0\xa5\x76\x3e\x0c\xda\xb2\x0a\x2a\x4d\xe0\x9b\x46\xb3\xfb\x95\x1a\x98\xd9\x54\xc4\xeb\xc8\x83\xff\x9d\x4c\xf3\x64\xaf\x6f\xc9\x9b\x50\xaa\xf4\x9b\x1a\xac\xa6\x79\x33\x53\x0d\x6b\xbb\x12\xdf\xed\xa0\xd3\x4d\x9c\xca\xae\x4a\xd9\xb3\xe4\x16\x2f\x37\x1f\xb7\x95\x64\xf2\xb5\xc1\x19\x6a\x97\xaf\xc7\x74\x9f\xb9\x18\x70\xf0\x11\x61\xd0\x4d\x6f\x1c\x32\x78\xd4\x9a\x30\xeb\x29\xf2\x4e\xce\xa4\x75\x8a\xb4\xaf\x20\x56\xab\x64\x43\x5d\xc4\xb5\x5a\xf3\x84\xd3\x41\x84\x1d\xd6\xa2\xb1\x6e\x86\xd2\xc9\x67\xed\xda\x4e\x2d\x40\x09\xab\x2a\x07\x16\x3d\xbb\xb4\x58\xfa\x85\x1e\xbb\x53\x95\xc5\x8b\x41\xeb\x7d\x7e\xbd\x38\x46\x41\xd0\x22\x3c\xb1\xd7\x39\x25\xb2\x3d\xf5\xc6\x48\xd6\xf4\x6c\xa9\x64\x02\x3b\xcb\xdd\xbb\xae\x71\x96\xe2\x65\x28\x8b\xfc\xad\x3d\x81\x08\x4e\xfe\xd6\x73\x94\xba\x09\x52\x1c\x46\xc9\x86\xa6\xb5\xfc\x56\xbe\x1a\x82\x0b\x43\xa5\x1e\x2e\xc4\xe0\x7f\xca\x2d\x88\xff\xfc\x3f\xfc\x7d\x3d\xe8\xfe\x26\xfe\xbe\x81\xe3\x95\xed\xf0\x1b\xfe\xbe\xf1\xa3\xf9\x15\xfe\xbe\x38\x19\x3e\x27\xfc\x26\xfe\xbe\x59\xfa\xfb\xe6\xcd\x08\xf9\xcc\x2d\x5e\x49\xbc\x79\x15\x10\x95\x4f\xa0\x07\xf1\xb4\xcb\x6b\xa0\x3a\x5d\x2f\xfd\x71\x39\xf2\xe7\x5e\x9b\x65\xfd\x0a\x17\x43\x3d\x7f\x66\x16\x25\xcb\xa4\x74\x69\x38\x62\xb9\x43\x69\x4d\xd7\xb1\x70\xb3\x69\xf3\x81\x60\x73\x08\xc9\x62\x28\x37\x1d\xfc\xf6\x94\x62\xc4\xc0\x09\xca\x21\xd0\x36\xfb\x12\xeb\xa9\x22\x97\x46\x6b\x22\x4d\xfe\x58\x2a\x2f\x28\x95\x9b\x0e\xb6\x3a\x22\x88\x5e\xb0\xa0\xe0\x95\x30\x71\x8e\x5b\x43\xa3\xd5\x57\x6c\xab\x92\x50\x13\xd8\x2a\x6f\x04\x8a\xd5\xcd\xcd\xdf\xe2\xcf\xf0\xc1\x77\x60\xa1\x10\xae\xb1\x51\x18\xf5\x89\x29\x76\xf1\x21\xf6\x6b\x09\xe4\xee\x5d\x80\x5c\x30\xc8\x14\x20\x33\x18\xab\x03\xaf\xde\x24\xa2\x92\x61\xe1\x24\xab\xd7\xd1\x9f\xe5\xbf\x29\x56\x4f\xb6\x17\xa4\x97\xfb\x20\xc9\x5e\xbe\x81\x61\x78\x67\x00\xad\x0f\x5d\x1c\x63\x26\xf5\xc2\x1a\xab\x7c\x57\xc8\x4f\xf3\x1e\x8a\x51\x8e\xde\xb6\x99\x7f\xc2\x5a\x87\xd8\x8a\x38\x1d\x31\x63\x85\x81\x99\x8f\x57\xbd\x10\xf8\x35\x1d\xb6\xaf\xee\x31\xdf\x76\x67\x6a\x56\x8b\x05\xa2\x6a\x40\xa2\xc1\x39\x06\xa9\xcf\xa2\x69\x4a\xbc\xd2\x11\x0d\xa9\xb8\x1a\xc5\xce\x23\x85\x80\x2e\xda\x6b\x41\xa4\x5c\x55\x95\xe9\x9b\x44\xd9\x67\x88\x85\x96\x69\x86\xd4\x5c\x76\x3e\x15\x82\x66\x1d\x8a\x08\x47\xdd\x3c\x9d\x82\x4f\xae\xdd\x2e\x2c\xea\x0b\x2e\xcc\x77\x79\x3b\x09\x45\xde\xd6\x3b\x9d\x24\x67\x1c\x5f\x02\x91\xf5\x76\x2c\x7b\xec\xae\xf8\xff\x19\xb9\x0b\x97\x5e\xbc\xbd\x26\x10\xe2\x7e\x87\x5d\xdc\x01\xc6\x66\xbf\xdf\x67\x79\x9b\xd8\xa6\x2d\xbd\x5b\x81\x5f\x22\xbd\xaa\x90\xd0\x4b\x7d\xce\xf9\x8b\x45\x11\xaa\x54\xca\xab\x29\x91\xe5\xec\x54\xa3\xf8\x9a\xd4\xc4\x7a\xd8\xdc\x38\x1f\x6f\xa0\x76\xc1\xe9\xc5\x56\x3c\xd6\x22\x05\x39\xcb\xcb\xef\xa8\x85\x76\xd4\xf9\x39\x91\xf5\x6a\x61\x21\x4d\x47\x5c\x5d\xa5\xc5\x14\x5c\x01\xb2\x7a\x51\x1b\xdf\x75\x15\x45\xf5\x64\x9b\x9c\xb4\x70\x59\x64\x27\xf9\x73\x1c\x9b\x63\x19\xe9\x26\x2a\x45\x75\x4c\xfc\x17\xdd\x65\x55\x29\xb7\x11\xe5\x46\x60\x1a\xb5\xd4\x90\x23\x72\x10\x33\x92\x74\xc0\xac\x45\x6a\x71\x56\x5f\xf2\x62\x72\x79\x2c\x87\x54\xac\xc4\x8b\x0b\x87\x29\x29\x8b\x8b\xb3\x95\x3e\xff\x0a\x2d\xe5\xfc\x70\x26\x32\x78\xb3\xb0\xaa\x97\xc2\x3a\xc9\xea\x2e\x63\xf2\x62\x72\x6f\xb9\xc2\x20\xff\x2e\x72\x64\x55\x0b\xe2\xf4\xa5\xdb\x4f\xa1\xa9\x72\x3c\x14\x5d\xf8\x6f\x00\x00\x00\xff\xff\x5c\x10\xcc\xef\x8f\x19\x00\x00"
-
-func runtimeHelpCopypasteMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpCopypasteMd,
-               "runtime/help/copypaste.md",
-       )
-}
-
-func runtimeHelpCopypasteMd() (*asset, error) {
-       bytes, err := runtimeHelpCopypasteMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/copypaste.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeHelpDefaultkeysMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\x4d\x73\xdb\xbc\x11\xbe\xeb\x57\xac\xc7\x87\x4a\xa9\xed\x69\xda\xce\xf4\xd6\x19\x27\x8e\x27\x69\xe3\xc4\xb5\x9d\xe9\xd5\x10\xb4\x14\x51\x81\x00\x83\x0f\xc9\xea\xab\xf7\xbf\xbf\xb3\x20\x09\x52\x94\x48\x7d\x58\x0e\x4f\x36\xb5\xd8\x07\xbb\xd8\x5d\x3c\xbb\x3c\x87\x1b\x4c\x98\x97\x0e\xfe\x8d\x4b\x3b\x18\x7c\x40\xa9\x17\xc0\x0c\x82\x15\x59\x2e\x11\x78\xca\x8c\xb3\xa0\x13\x70\x29\xc2\xa4\x14\x4e\xb5\x9b\xe1\xd2\x02\x53\x13\x7a\x2f\x0c\x24\x5e\x71\x27\xb4\xb2\x57\x70\xab\x0d\x64\xda\xe0\x40\xa8\x44\x9b\x8c\xd1\x6b\x60\x63\xed\x1d\x8c\x85\x9a\x08\x35\x05\xee\xad\xd3\x59\x54\xa3\x0d\xe1\xa8\x29\xfd\x54\x41\x94\xa2\xf6\x02\x72\x89\xcc\xe2\xc0\x78\x05\xcf\xff\x84\x14\x65\x0e\x33\x5c\x56\xbf\x3f\x0f\x06\xf7\x41\x00\x0c\x66\x98\x8d\xd1\x80\x4b\x99\x83\x77\x4c\xca\x77\x10\xd4\xa7\x68\x30\xd8\x64\x90\x56\xb1\xb1\xc4\x33\xf8\x92\xc0\x52\x7b\x98\x68\xf5\x27\x07\x52\xcc\x10\x84\xbb\xa0\x57\x03\xce\x54\xb1\x1d\x7a\x75\x36\x18\x9c\x9f\x9f\xc3\xbd\x5e\xa0\x01\x6f\xd1\x0c\x06\x2b\xf2\x15\x14\xcf\x0a\x6e\xd0\x72\x23\xf2\x60\xa4\x4e\xa2\x1f\xe0\x74\xcf\x6a\xb0\xba\x8c\x0f\x34\xfe\x7e\xab\x87\x10\xe1\xa3\x33\xf2\x12\x0b\x1b\xbf\xe7\xa8\x80\x01\xd7\x59\x46\x27\x9e\x1b\x9d\xe5\x0e\x12\x6d\xc0\x78\xa5\xc2\x81\x16\x3f\x59\x18\x5a\xc4\x78\x4c\xd5\xdb\xe7\x20\xcb\x40\x0a\xeb\xc8\x49\x73\x26\xc5\x24\xfe\x3a\xba\x0a\x36\xc2\x13\x1b\x47\xaf\x7e\x51\x2d\xb4\x0b\x10\x0e\x16\x42\x4a\x60\xde\x69\xae\x29\x38\x1d\x82\x48\x20\xd7\xd6\x8a\xb1\xc4\xab\x83\xbd\x5a\xd8\x38\x2e\x10\x1f\x3c\x99\x68\x53\x94\x32\x42\x0f\x5d\x2a\x6c\x81\xca\xa5\xb6\x08\x99\xe0\x46\xc3\x22\x15\x12\x29\x54\x4c\x94\xc4\x17\xe4\xde\x61\xb0\xa5\x1b\x31\x84\xd2\x37\x36\x17\xd3\x90\x14\xeb\xa1\xb4\x65\xc1\x1b\x06\xd7\x5a\x50\x6d\x0b\x81\x37\x0e\xaf\x6b\x63\xf4\xc2\x76\xd9\x7d\xa7\xe7\x18\x0a\x0e\xf7\xc6\x52\xe8\x18\xed\xd5\xe4\x04\x66\x07\xec\xc7\x54\x24\xee\x92\x6d\xdd\x41\x89\x4d\x67\x6a\x51\x22\x77\xe0\xf0\xc5\x9d\x02\xb9\xc0\xbe\x96\x6e\x48\x61\x07\x5a\xc1\x1d\xe3\xa3\xcb\xaf\x98\xb8\xe0\x8c\xda\x6e\x1d\x4c\x1f\xe3\x54\x14\xc9\x55\x16\x5f\xee\x8d\x41\x45\xc5\x4a\xe1\x69\xb0\x1f\xc4\x34\x2d\xc1\xd7\xb1\x51\x4d\x4e\x82\x5a\x63\x7f\xd6\x59\xe7\xf2\x3e\xbb\xc9\xf9\x5a\x9d\xc6\xfe\x4f\x3d\x21\xf4\xd6\xf6\x93\xdf\x87\xd7\xd2\xf5\x9c\x7b\x19\xeb\x5a\x21\x2c\xb4\x99\x80\xc4\xe4\xf5\x81\xb7\x15\x7b\xf3\xdc\xdb\xd8\x86\x24\x4e\x81\x7d\x2d\xdd\xe5\x6f\x5d\xbf\xaf\x61\x3b\x0d\xb9\xc1\xb9\xd0\xde\x02\x66\xb9\x5b\x06\x97\x5f\x10\x39\x58\x0b\x89\x89\xe6\x3e\xa3\x13\xd9\x0b\xfb\xf7\x7d\xb1\x15\x45\x5a\x0b\xb7\x0c\x83\xfd\x10\xd7\xb1\xef\xd9\x14\x7f\xe4\xfb\x60\xfb\x3c\xb8\x3d\x67\xd3\x63\xe3\x6b\x1b\xf6\x8d\x5e\x6c\xbd\x26\xd6\xb1\x27\x24\x75\x32\xf4\x78\xa5\x86\x64\xd7\xa6\xf8\xe7\x47\x5e\x86\xf9\xa6\xcf\xad\x63\xc6\x1d\xe3\xe1\x1e\x6c\x4a\xf2\x0a\x9a\x9c\xb0\x35\xc7\x9c\x3e\xf6\x6c\x7b\xb1\x65\xc7\xef\xf0\x2f\x9f\xe5\x04\xca\x8a\x32\x22\x8a\x82\x96\x10\x8d\x18\x16\xfc\x86\x68\x86\x4b\xe1\x7c\x74\x2c\xf6\xa2\x0b\xfb\xe3\x92\x4b\xaa\xaa\x6e\x81\xa8\xc0\xe6\x52\x38\x5b\xed\xa0\x2a\x6e\x8e\x8d\x61\xe8\x6d\x60\x6e\xf3\x20\xf2\x4c\x4e\x24\x1e\x57\xfe\xe7\x34\x70\x83\xcc\x21\x91\x24\x7a\x35\x8a\x84\xe6\x89\x8d\x6d\x93\xca\xf4\xd1\x96\x06\xed\xe8\xa1\x18\x0d\xb3\x5c\x83\x7f\x2a\x5c\x84\x9d\xb6\xcc\xa7\x34\xbf\x08\xb8\xf7\x55\xfd\x68\x49\xd5\x72\x57\x41\xee\x1b\xe5\xfa\x86\x0c\xd4\x1c\xed\x56\xa8\x09\xa1\x9a\xc0\xd3\xec\xf1\x9c\xff\x68\xee\x5e\x7b\x20\x29\x30\xc3\x96\x86\x3a\x47\x65\x4b\x4a\xdc\x15\x2a\x71\xa5\x6a\xac\x0c\xe5\x4d\x28\xeb\x98\xe2\x48\x9b\xae\x8e\xde\x22\x33\x3c\x6d\xad\xcc\x1b\x2b\x63\x51\xee\x5b\x1d\xfd\x26\xf1\x24\x7e\xeb\x7a\x4e\xde\x0b\xd5\x36\xff\x2c\xd3\x25\x10\xfd\xca\xbe\x22\x45\x7f\x7a\xca\x99\x82\xfc\x0b\xa2\x05\xc2\x82\xb0\x21\x83\x24\xb3\xa5\x14\x1d\xcd\x68\xcd\x8b\x1a\x9a\xdd\xd3\x7a\xb6\x53\x43\x44\x6f\x14\xcb\x70\x67\xce\x47\x8d\xb6\xd0\xf8\xc8\xe6\xad\x2d\x1e\xfa\x54\xa9\x1b\xe8\x55\xc7\x79\xf5\xac\x3e\x36\x03\xfa\xce\xe1\x88\x33\x5b\x23\x35\x05\xab\x6f\x50\x9b\xe0\xa9\x82\xc3\xef\xc1\x69\x7a\x74\x36\xa8\x5a\x5b\x67\x3f\x47\xdb\x4a\xba\xfb\x74\x36\xef\xc4\x0e\xe2\xd9\xa3\x73\xbb\xed\xf5\x5d\xd7\x49\x65\xeb\xa6\xa8\x8f\xa6\x1f\xbe\xcf\x42\x67\x1f\xed\x3e\x7c\x9f\x21\x0f\x0a\xc5\x35\xb3\xd8\x67\x9f\x1d\x79\xd2\xd2\xd9\xa0\x0c\x3b\xf7\xd9\x99\x79\x51\xe7\x4b\x8f\xe1\x45\xb5\xf1\xae\xec\x33\x71\xd2\xdf\x69\x46\x9d\x7c\xa7\x4e\x9d\x2f\xf7\x53\x1a\x75\xce\x77\xe9\xbc\x67\xd6\xed\x57\x65\xa2\xce\xd9\xce\x7d\x7a\xb7\x67\x77\x15\x75\xee\x18\x01\xac\xe0\xc6\xe7\x52\x70\xa2\x29\xbb\x34\x47\x9d\xff\xdf\xa5\xf3\x87\x9a\xe8\x7e\x99\x0d\x9d\x3b\x4a\xe8\x0a\x1e\xf0\x10\x9d\xc4\x5c\x3a\x83\x3d\xea\xac\x08\x6e\x6d\xb6\x36\x75\x1c\xd0\x0b\x4b\xcd\x46\x43\x67\x67\xb0\x1f\xa4\x33\x34\x11\x51\xe7\x07\xc6\x67\x36\x67\x3c\x48\xd2\x8b\xe0\x90\xb4\xa1\xf3\x06\xc3\xe8\x6e\xcf\xfa\x19\x96\xb3\x1d\x3e\xaa\x72\x93\xc9\x0e\x0a\xde\xd4\x19\x6e\xbe\x3b\xc6\x8d\x7e\x03\x82\xb2\xc5\x84\xe3\x2e\xb9\x83\x2f\xc3\x4b\x5f\xd8\xf0\xa4\xa7\x53\x89\x90\x91\x81\x60\x90\x6b\x13\x46\xee\xc3\xdc\xa0\xb5\x95\x64\x2c\x8c\xb5\x40\x31\x6b\x25\x19\x36\x65\xd4\x1f\x90\x88\xce\x47\x8d\x63\xf8\x1f\xc4\x51\xa9\x64\x0e\x6d\xb5\x1c\x27\x25\xdc\xf1\x5e\x2a\x0e\xc5\x4b\x27\xc2\x57\x87\xd0\xa6\x75\xf0\x91\xb7\x9e\xb9\x6f\x65\x2c\x6f\x3d\x77\x8f\xf9\xa3\x5a\xb6\x7e\x2c\xba\x2e\xea\x7d\xb2\x75\xf7\x40\x62\x74\x56\x26\x23\x59\x3f\x0c\x83\xea\x72\x6a\x59\xe5\x6c\xc8\x32\x91\x80\xd2\x0d\xce\x5e\xae\x18\xd5\x59\x5b\x5d\xa8\x15\xea\x63\xce\x16\x55\xcb\x15\x67\x43\x05\xe1\xa5\x22\xc0\xc6\x8d\x01\x6d\x50\xaa\x0f\x99\x8e\xad\xa3\x56\xa3\x8a\x9d\xa8\xe3\xf0\x71\xea\xd5\xa8\x79\xcb\xc3\x0f\x98\x91\x35\x65\x44\xb7\x9d\xfc\xda\xa7\x42\xe5\xdb\x51\xa9\x62\xb5\x20\x2d\x0c\x39\xf5\x59\xf2\xd0\x59\xc0\x16\xd4\x97\x16\xea\xe3\x4c\xe4\x1b\x26\xd6\x21\xf4\xca\xa7\x42\xcd\xda\xa8\x9b\xe7\xca\xdc\xe6\xb0\x17\xe7\x68\x96\x6b\x13\x92\x8d\x90\xed\x42\x0d\xe5\xe9\x4e\x7b\x8b\x5f\xcb\x1b\x65\x05\xf7\x92\x6e\x21\xb6\x61\x2e\x73\xc0\xd4\x12\xa4\xe6\xec\x15\x46\x97\x25\xeb\xbb\x4b\x7f\xd5\x37\xc1\x5f\xf2\x1d\xb0\xf6\xe6\x14\xea\xee\x35\x7c\xcd\x3b\xaa\xd1\xec\xb6\x05\x6a\x62\xb0\x82\x9a\x35\x0c\xb5\x24\xd2\x6a\x32\xa1\x98\x24\x72\x01\x4a\x3b\xb0\x3e\xcf\xb5\x29\x63\x26\xca\xce\x70\x19\xae\x2d\x6f\x31\x68\xfb\xf3\xe7\x30\xa4\x40\x36\x19\xad\xa3\x18\x68\x5e\x8d\xb1\xa0\x28\x1f\xbe\x17\x1b\x2f\xf1\x15\x89\x5e\x46\xc2\xa7\x8c\x71\x0b\xd6\x2d\x25\x02\xe3\x07\xce\x3f\xf6\x3e\xdb\x98\x63\x49\xa9\x33\xcc\xb2\x42\x95\xdf\xe6\x63\x92\x1c\x97\x92\x71\x3a\xb6\x21\x5d\x49\xb2\x52\xb2\xfa\x14\x12\x7b\xa7\x48\xa2\x2b\x49\x6c\x49\x96\x1d\x51\x83\x6c\x57\x13\xa1\xca\xc6\x19\x2e\xed\xd5\x60\xf0\x5f\x66\x28\xdd\xcf\xe0\x29\xc5\xda\x01\xe1\x33\x7d\xc6\x96\xe1\xac\x17\xda\xcc\xa8\x00\x50\x69\x8c\x81\x70\x06\xb5\x33\xf7\x72\xe4\x4e\x27\xde\xbe\x87\x56\x80\x6f\x73\xe0\xed\x5f\xa1\x1e\xb9\x74\x1c\xff\x0a\x6e\xff\x06\xf5\xc0\xac\x5b\xea\xef\x85\xd4\x7f\xbc\xe8\x20\xbd\x41\xea\x1f\x7b\xe9\x7a\xff\x97\x9d\xba\xfe\x08\x00\x00\xff\xff\xc0\x9e\x0d\x13\xdd\x21\x00\x00"
-
-func runtimeHelpDefaultkeysMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpDefaultkeysMd,
-               "runtime/help/defaultkeys.md",
-       )
-}
-
-func runtimeHelpDefaultkeysMd() (*asset, error) {
-       bytes, err := runtimeHelpDefaultkeysMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/defaultkeys.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeHelpHelpMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\xcd\xae\xdb\x36\x13\xdd\xf3\x29\x06\xc8\x22\xdf\x77\xe1\xab\x07\xc8\xe2\x02\x41\xd1\x34\x5d\x04\x48\x8b\x6c\xba\xf3\x48\x1a\x8b\x03\x53\x1c\x85\x1c\x59\xd7\x7d\xfa\x62\x48\xc9\x96\x6f\xd3\x76\x65\x63\xc8\xf9\x3b\x73\xce\x88\xef\xe0\x0b\x77\x49\xc0\x53\x98\x40\xe9\x55\x9d\xab\x06\xce\x80\xa0\x94\x46\x8e\x18\x9e\x5b\xcc\xd4\x97\x73\xa0\x9e\x55\x12\xa8\x47\x05\xe4\x31\x83\x0a\xb4\x04\x84\xf9\x6a\x7f\xe7\x4c\x80\xb1\x77\x1c\x75\x66\xe5\x0b\x1d\x60\xf1\x1c\x08\x30\x64\x01\xc5\x33\xc7\x01\xb0\xbf\x60\x54\x1c\x08\xe4\x04\xea\x09\x4e\x73\x08\xd0\xe1\x84\x2d\x07\x56\xa6\x6c\x07\xa3\xf4\x94\xa2\xdb\x8a\xc8\x8d\x73\xdf\x04\x64\xa2\x58\x7c\x3a\x19\x47\x8c\x3d\xb4\x98\x0e\x30\x25\xca\x19\x7e\xd2\x14\x9e\xa9\x81\x6f\x9e\x33\x50\xc4\x36\x90\xb5\x71\x7c\x39\xc2\x94\x64\x9c\x14\x4e\x56\xfa\x75\xe2\x38\xb8\xd5\x3f\x37\xf0\x29\xc9\x08\x51\x16\x90\x08\x8b\x5f\xc3\xf7\xd2\xcd\x23\x45\x45\x65\x89\x90\xf1\x5a\x3a\x4d\x73\x04\xbc\xa5\xce\x73\xe7\x01\x33\x1c\x5f\x9c\x01\x78\x3c\x80\x5a\xe6\x91\x30\xe6\x87\x92\x0c\x12\xcb\x4b\x70\x2c\x17\xe1\x7f\x66\xa8\x37\x28\x2a\x25\x8b\x4d\xaf\xd4\xcd\x4a\x96\x7d\x2b\xee\xff\x8d\x73\x9f\x24\x01\x42\xe0\xac\x1b\x5a\x3d\x9d\x70\x0e\x0a\x67\xba\xb6\x1c\x7b\x8e\x43\x2e\x85\x1d\x5f\xea\x1c\xd7\xf3\x33\x5d\xf3\xb1\x29\xfe\xa3\x24\x02\x8e\x27\x49\x63\xed\x47\xe2\x83\x77\x26\xba\x79\xef\xec\xc7\xc6\xb9\x77\xef\xe0\xb7\x99\xbb\xf3\x73\x56\x4c\xea\xdc\xd7\x7b\x5b\xdf\xad\xea\xef\x33\xeb\xa1\xf4\x57\x6c\x05\xa5\x8c\x17\x6a\xe0\xeb\x1e\x00\xb3\x5a\x80\x15\xfd\x0d\xc2\xec\xcc\xf3\x2a\x33\x74\x18\x4b\x19\x8b\xe7\xce\xdf\x8e\x01\x13\x01\x5e\x90\x83\x0d\x13\xda\x6b\x05\xcd\x22\x28\xb6\x07\x90\x64\xb6\x0b\xd3\x52\x4c\x9e\x5c\x65\xb2\x4c\xdc\xdd\x3a\xda\x82\x59\x3b\x5f\xe4\x42\x95\x3e\x73\xca\x86\x6c\x92\x39\xf6\xb0\xb0\xfa\x62\x1e\xc5\x18\x5c\x08\x4e\x80\x29\xc9\x62\x80\xe4\x06\x7e\x9f\xa3\xfb\x11\xc0\xd6\x19\x0c\xa4\x80\x06\x45\x77\x3e\x54\x29\xc8\x85\x92\x95\xf5\x76\x66\x5e\x8a\x5b\xd1\xc8\x62\x1a\x52\x4f\x57\xe8\xa5\x81\x87\x39\xd9\x80\x12\xad\x73\x28\x15\x1c\x0a\x3a\x95\x43\x3f\x9e\xd4\xaf\xa7\x55\x17\x41\x52\xee\x3c\x8d\x46\x62\xca\xf1\xbd\x42\x10\x39\xc3\x20\xd2\x1f\x6e\x58\x77\x1e\xe3\x40\xc0\x5a\x7a\xb7\xd6\x32\xe9\x83\x73\xd3\x34\xc7\x06\xfe\x58\xef\x57\xb2\x2a\xb6\x65\x94\x54\x41\xbc\x4f\x66\xe7\x98\x0f\x4e\x52\xb9\xf2\x37\xda\x61\x2b\xf3\x43\x92\x02\x04\xe4\x6b\x54\x7c\x05\xcf\x83\x0f\x3c\x78\xb5\x9e\xcb\x44\xd6\x4e\x5d\xf5\xb0\x26\x77\xa4\x5a\xac\x92\xd1\xe6\xd9\x92\x2e\x44\x11\xf2\x14\x58\xf3\x61\xa7\xb6\x17\xb8\x14\x23\x9c\x38\x50\xc4\x91\x8e\x20\xa9\xcc\xf1\xad\x59\xd7\xd5\x82\x10\x69\xa9\x91\x2a\xfb\x3f\x76\xdd\xca\xb8\xd2\x4e\xa9\x67\x5d\x92\x1e\x6d\xbd\xb4\x33\x07\x7d\xe6\x58\x87\x92\xaf\x59\x69\xdc\x68\x8c\xd1\x96\x23\x96\x10\xb4\xa3\xd9\xba\x06\x56\x66\xd6\xcd\x66\xc4\x33\x2d\x4d\x6f\x74\x53\xbd\x6f\x4b\xc7\xd6\xe2\xbd\x43\x8e\x5b\xac\x93\x84\x20\x0b\xf5\x26\x08\x74\x45\x01\x0d\x7c\xab\x6a\xfb\xc1\x95\x28\xea\x2b\xce\x21\x6c\x4b\x95\x33\x4c\x38\x50\xe3\xdc\x67\x32\xdd\xa5\x3a\xe5\x49\x72\x66\x1b\xf2\x5d\x5b\xb9\x7e\x00\x36\x32\x25\xc2\xfe\x83\x73\x4f\xa0\xb3\x4a\x62\x0c\x1f\xe0\x23\xb4\x89\xe9\x74\xb3\xac\x88\x0c\x7c\x29\x43\x7f\x10\x08\x86\x50\x12\x89\x7a\x4a\x15\x61\x58\xf3\xb8\xa7\x3d\xcd\x3f\xc0\x2f\xd5\xbf\x7e\x31\xfe\x6b\x29\x62\x86\x85\x42\xb0\x5f\x2f\x46\x17\x07\xab\xaa\xcc\x65\x74\x4f\x7b\x25\xdf\x63\x97\x39\x67\x4d\x68\x5c\x7c\x3e\x49\x5a\x30\xf5\x0f\xc9\xaa\x8a\x77\x5b\x2a\xf6\x0e\xe0\x41\xcf\xee\xe9\x76\x7c\x8f\xbc\xc5\xd8\x1a\xde\x07\x78\x70\x77\x4f\x20\x93\x49\xe6\x5f\x9c\xd7\x0b\x77\x45\xcf\x59\x65\xe4\x3f\xc9\x3d\xc1\x14\xe6\x81\xcd\xf9\xe7\xd7\x29\x20\xc7\x0a\xc0\x68\xac\x7d\x9f\xd7\xd3\x1b\x55\x25\x9d\x6b\x05\x15\x24\xe8\x12\xa1\x92\xc5\x4d\x20\x4b\x74\xb0\x85\x2b\x3d\x99\x12\x77\x71\xb7\x98\xfb\xcd\xf1\x4f\x9a\xa6\x38\x70\xa4\x2d\x55\x99\xf1\xdb\x64\x8f\xcb\xc1\x16\x74\xdf\x17\x45\x06\x8c\xc3\x8c\x03\x95\x0f\x8c\xb5\x5f\x83\xd5\xef\x23\xbd\xe2\x38\x05\x3a\xdc\x54\x5c\x86\x64\x6c\x9d\xca\x2b\x23\x6e\x1d\x14\xb0\x16\x99\x43\xff\xf0\xc5\x5c\x4f\xcb\x16\x85\x44\x36\x16\x8a\x7d\x59\x9b\xe5\xbd\xa2\x55\xb4\x1b\x97\x8f\xd5\xcb\x96\x07\xb4\xd4\x61\x55\xae\xbd\x99\xb2\x97\x54\x5f\x19\x84\x9d\x77\x99\xba\xba\xf7\x62\xbf\x32\xbf\x93\xd8\x25\x52\xda\x4a\x2e\x2f\x9d\x15\x77\x0b\x63\x79\x2e\x98\x58\xe6\x72\xf7\xc4\xc3\x9c\xca\xee\x74\xdb\xb8\x39\x56\xcc\x1b\xf8\x2c\x0b\x5d\x28\x1d\x2c\xb7\x6d\x7a\xd3\x74\x49\x53\xa2\x70\x7c\xee\x69\x52\xff\xe6\x25\xa3\x2b\xcb\x5c\x15\xdb\xaa\xe6\x29\xc9\x85\x7b\x6a\xdc\x5f\x01\x00\x00\xff\xff\x61\x4d\x8a\xe8\x11\x0a\x00\x00"
-
-func runtimeHelpHelpMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpHelpMd,
-               "runtime/help/help.md",
-       )
-}
-
-func runtimeHelpHelpMd() (*asset, error) {
-       bytes, err := runtimeHelpHelpMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/help.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeHelpKeybindingsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x7b\x6d\x73\x1c\x37\x8e\xf0\xe7\x87\xbf\x82\xcf\xb8\xea\xd6\xf2\x8e\x26\xd6\x9b\x9d\xf8\x52\xaa\x72\x1c\x75\x9c\x4b\x14\x6b\x23\xeb\xb6\xb6\x6e\x3f\x34\xa7\x9b\x33\xc3\xa8\x87\x6c\x93\x6c\x8d\x26\x9b\xbd\xdf\x7e\x05\x80\xec\x26\x7b\x46\x2f\xd1\x07\xb1\x87\x44\x83\x00\x08\x80\x00\xc8\x7e\xc1\x7f\x92\xdb\xb9\xd2\xb5\xd2\x4b\xc7\xd8\xa5\xaa\xac\xe1\x2b\xe1\xb8\xe0\x6d\x23\xfd\xca\x58\xc1\xcd\x82\xaf\x8c\xbf\x95\x5b\xc7\xfd\x4a\x78\xbe\x16\xb7\x92\x2b\xcf\xa5\x70\x5b\x2e\x74\xcd\x5b\xb3\x91\x76\xd1\x35\xdc\x1b\xde\x39\x89\x7d\xa2\x69\x58\x7c\x4b\x58\xc9\x17\x5d\xd3\x6c\x79\xd5\x39\x6f\xd6\xea\x77\x31\x6f\x24\x40\x6f\x4d\x67\x79\xa3\x6e\x95\x5e\xce\x18\xfb\x80\xa3\xfc\x76\xa0\x08\x5f\x75\xde\x58\x59\x73\xa5\xbd\xb4\x5a\x00\x1a\xa5\xf9\x1a\x29\x55\x0b\x5e\xad\x84\x5e\xca\x9a\x6f\x94\x5f\x71\xbf\x92\xbc\x3c\xe7\xf0\x7a\xc9\x2a\xb3\x5e\x03\x29\xc6\xf2\x4a\x68\x2e\x1a\x67\xf8\x5c\x72\x51\xd7\x88\x0d\x81\x17\xaa\x91\xbc\xfc\xdf\xaf\x66\x95\xd1\x0b\xb5\xfc\x0a\xd1\x7e\x15\xa7\x9f\xfd\xe6\x8c\x2e\xb9\x70\xac\x56\xae\xea\x9c\x93\x35\x9f\xcb\xc6\x6c\x66\xbc\x30\x96\x0b\xde\x28\xe7\x41\x3e\x80\xaa\x96\x0b\xd1\x35\x3e\x23\x3f\xcc\x02\x68\xf8\xc2\xd8\xb5\xf0\x20\xa0\x9a\xcd\xb7\xc4\xc0\x14\xa4\x2c\x9c\xe4\x4e\x4a\x84\x94\x40\x2f\xe0\x53\x0e\x69\x8b\x13\xad\x8d\x95\xf0\xaa\x3d\x5c\x58\x25\x75\xdd\x6c\x69\x6e\xe0\x9a\xc9\xfb\xb6\x11\x5a\x78\x65\xb4\x83\xb7\x37\xb0\x4a\x29\x49\xe9\x42\x80\x44\x22\xc0\x96\xd7\x19\x09\xac\x3c\xe7\x2b\xd9\xb4\xf1\x45\x78\xa9\xe4\x2f\x45\xca\x80\x97\x75\xcf\x76\xc2\xb2\xe3\x0a\xd8\xad\x9a\xae\x96\x35\x0b\xf3\xa7\xdc\xd4\xa6\xea\xd6\x52\xfb\x83\x19\x63\x3f\x2e\x9e\x94\x79\x6d\xa4\xe3\xda\x78\x2e\xef\x95\xf3\x53\xd0\x14\x5c\x45\xa7\xd6\x2d\x28\x92\x95\xc2\x83\x16\xce\x82\xce\x6e\x54\xd3\xf0\x5b\x6d\x36\x81\x39\xc3\x6b\x43\x3a\x01\x30\xec\x1f\xe1\x75\x50\x4f\xa0\x4c\x44\xaa\xff\xca\x85\xb5\x66\xe3\xe0\x8d\xb5\xb9\x93\x7c\x63\x6c\xcd\xe7\x5b\x6c\x67\xfc\x83\xb7\x0d\x6f\xe4\xc2\xa3\xdc\xac\x5a\xae\x3c\x43\x30\x40\x52\x75\xd6\x19\x0b\x6f\xc2\x2f\xe7\x85\x25\xb0\x9e\x6d\xc9\x1b\xa5\xe5\x14\x3b\x2b\xc0\xd4\xb5\xf8\x5c\x9b\x8d\xe6\x11\x0d\x8b\x68\x1e\xc2\x31\xef\x16\x0b\x69\x13\x26\x56\xa6\xa9\xb9\x5b\xa9\x05\xad\x3f\xd8\x5a\x80\x75\x12\xd1\x82\x9c\xb9\xa8\x48\x21\xbc\xe1\x4e\x36\xb2\xf2\x7c\xb3\x02\x6d\x5f\x9b\x3b\x32\xb7\x17\x2f\xf8\xaf\x32\x88\x1d\x85\xc1\xd8\x67\x98\x2e\x2a\xef\x5a\x6c\xc1\x5e\xac\x9c\x9b\x4e\xd7\xbc\x73\x00\x87\x16\xf6\xc4\xda\xa1\xe2\xb2\x0b\x51\xad\x00\x2d\x28\x06\x61\xf0\x86\x83\x1d\x22\x5d\x33\xc6\x40\xb3\xe5\xbd\x58\xb7\x8d\x9c\xc2\x18\x60\xe1\x25\x48\xfc\x70\x5b\xa2\x2f\xd1\xb5\x41\x61\x50\xe7\xef\xd8\x69\x25\xe8\x2c\xaa\x83\xe9\x9a\x9a\xb7\x1d\xea\x1a\x5b\x98\xa6\x31\x1b\x20\x31\x18\x5d\xb9\x97\x2a\x56\x96\x25\xfc\x66\xff\x62\xff\x6f\x42\x73\x4d\xde\xf1\xc9\x8d\xae\xcd\x64\x1a\xbb\x7e\x87\xae\x5f\x65\x6d\x26\xec\xdf\xf0\x02\x63\xaf\x5e\xfd\x62\xbc\x7c\xf7\xea\x15\x07\x11\xb9\xad\xf6\xe2\x9e\x97\xdf\x5e\x9a\x5a\x2d\x94\xb4\xe7\xdf\xde\xca\xed\x79\x09\xac\xca\x2f\x9d\xba\x13\x0d\xac\x80\x37\x29\xc8\x21\xc1\xcc\xf8\x8f\x9a\x89\xba\x56\x20\x85\x29\x2a\xd8\xe1\x35\xae\x65\xe6\xf4\x40\xf5\x5d\xd7\xb6\xc6\x82\xc1\xcd\xb7\xdc\x4b\xbb\x56\x5a\x34\x8e\xd4\x09\x60\x50\x63\xc4\x5a\x32\xe1\xa2\x5d\xa0\xbe\xf6\x8c\xf3\xcf\x60\x79\x6b\x29\x74\x70\xdd\x28\xc8\x1f\xca\x69\x90\x28\x3c\x0d\xf2\x5d\x96\xe8\xb5\x01\xbc\x47\x0d\xb6\xab\x97\x33\xfe\xd1\x6c\xe4\x9d\xb4\x53\x70\x02\xfc\x7d\xe3\xc9\xa6\x15\x99\x28\xda\x82\x70\xf2\x1d\x2f\xdf\x37\xfe\x87\x92\x70\xbe\x6f\xfc\xe1\x0f\x25\xa1\xc3\x1f\xc8\xe5\xe1\xb2\x9c\x06\x45\xc4\xce\x65\x62\xea\x16\x64\x17\xf8\x22\x91\xac\x83\xf0\xc0\x67\x68\x1e\xa5\x06\x82\x95\xf0\xa8\x97\xb4\x83\x3c\xa1\x90\x83\xf7\xb0\x9d\x66\xe5\x39\x2a\x1a\xac\x46\x65\xd6\x73\x73\xce\xbf\x25\x95\x3c\x2f\x47\x5e\x1d\xe0\x70\xa7\x0a\xa6\x34\x45\x37\x4d\x1b\xc0\x60\x8d\xb8\xaf\x54\x2b\xa1\x34\x0f\x3b\x8e\xe3\x9b\x95\xd4\x60\x38\x44\x06\x39\xf1\x5e\xd5\xd5\x02\xe9\xd9\x08\xed\x41\x94\x87\x60\xa2\xcc\x89\x3b\xf2\xcd\x5f\x3a\xe5\x7b\x7a\x91\x52\xe5\x61\x8b\x94\xdc\x99\x77\xa9\xfa\x72\xce\xf9\x04\xdf\x07\x6d\xbd\x16\x77\x72\xfa\xb7\x4e\xf9\x5e\x65\xd1\xfe\x88\x72\xf2\x8e\x56\xfa\xce\x6a\x2e\xb8\xeb\xaa\x4a\x3a\xc7\x17\x8d\x58\xce\xf8\xfb\xe0\x27\x70\x3e\x49\x9c\xc8\x1a\x80\x56\xa8\x34\x0c\x97\x17\xf9\x33\x1a\x5c\xaf\xd1\x5e\xe9\x4e\x06\x2e\xfd\x4a\xc2\xae\x02\xfb\x34\xa1\x95\x6e\x0a\x5b\xee\x42\xa8\xa6\xb3\xe1\x87\x54\x00\x36\x43\xff\x52\x4e\x4b\xee\x64\x2b\xac\xf0\xc6\x12\x65\xa2\xd9\x88\xad\x0b\x93\x04\x77\xaa\xe5\x7d\xf4\x61\x33\x34\xba\xf2\x8f\xe4\x3d\x46\xef\xcd\x8d\x0d\xea\x87\xaf\x2a\x72\x98\x81\xe9\xd6\xca\x4a\xa2\x73\x53\x9e\x88\x93\x75\xb0\x1e\xf4\x0f\xff\x51\xe2\xec\xec\x4f\x60\x01\xa6\xdc\x78\x39\x75\xba\xd7\xb2\xa8\x7a\x53\xee\xc5\x7c\xf0\x7d\xc2\xe1\xda\xb1\xc9\x67\x31\x87\xf5\x7a\xdf\x79\x53\x19\xc0\xe0\xe5\x1f\x3f\xea\x5a\x6a\x7f\x8d\x5e\x5a\x19\xfd\xc7\x8f\xda\x49\xeb\x01\x92\x96\x72\x6c\xc6\x81\xc2\x32\x45\x52\x46\x82\x95\x8b\x2b\xb1\xe8\x9a\x69\xc2\xd7\xc0\xec\x8c\x7f\x82\xf5\xd8\x28\x07\xf4\x7b\x5a\x04\x6f\xb7\xbc\x1c\x51\x12\xfc\x03\xce\x27\x02\xfb\xdc\x1b\x03\x6f\xd1\x12\xc8\x7b\x59\x75\x5e\xc2\x9b\x81\xe6\x92\xb6\x96\xef\xc2\xc6\x12\x6d\x62\x64\x30\xa8\xd9\x02\xf7\x07\xb0\xe6\x80\x45\x44\x70\x3e\x58\x13\x38\x01\xc9\x5f\x82\xe9\xb1\x12\xa3\x93\x88\xb2\x3c\x98\xf1\x6b\xf2\x7b\xad\x95\xad\x0c\x0b\x1b\xb7\x34\xdc\x1b\xcb\x00\xfc\xae\xcc\x96\x6d\xbf\x25\xb5\xb0\x32\xf1\x85\x76\x53\x8f\xdc\x3f\x3a\xbf\xb5\xa8\x3e\x5d\xbf\x7a\xf5\x8e\x7f\xb7\x8d\x6b\x3e\xa5\xce\xc1\x45\x43\xec\x01\x0e\x6d\x61\xec\x46\xd8\x1a\xa3\x0d\x79\x27\xb5\x77\x20\x4e\xa6\xb4\xf3\x52\x00\x8f\x20\x32\xde\x69\x55\x01\x8b\xd5\x4a\x58\x51\x79\x69\xc1\x71\x1b\xbe\x50\xf7\xe8\x65\xa7\x80\x0d\x63\xd5\xb8\xc3\xbd\x63\xec\x15\x57\x9f\xa5\x5d\x1f\xbf\x8b\x7b\x7b\x79\xe1\xaa\xbf\x96\x48\x61\xf9\x33\xc4\x2b\x9f\x5a\xd4\x86\x9f\xe4\xb6\x04\x61\x96\x57\x56\x2e\xa4\x95\xba\x92\xee\xf0\xfc\xca\x1a\xd8\x0e\xdd\xe1\xf9\x4f\x10\xe2\xcd\xd8\x2b\xfe\x39\x10\x3f\x13\x6d\xfb\x8e\x5f\x68\x74\x7c\xe5\x8d\x93\x11\x13\x2c\x95\x70\xfc\x52\x7a\x5c\xb6\xa7\xb0\xce\x8d\xb0\x35\xe8\xc2\x2f\x18\x93\x49\x8d\x4e\xad\xb5\xe0\x78\xd0\xf3\xb7\x25\x29\x71\xbb\xa9\xcb\x7e\xad\x51\xa7\xe6\x32\x2a\x04\x84\xaa\xaa\x5a\x51\xb7\x5b\x99\x0d\x43\x7f\xbf\x31\x16\x52\x06\x5e\x2b\x2b\x2b\x6f\xec\x36\x1a\xa1\xd2\x0b\x33\x17\x76\xec\x9d\x49\xd9\x34\x9f\xc0\xae\x01\x8c\x4d\x92\x09\x13\x25\x39\x84\x71\xd0\x94\xb1\xc1\x31\x4a\x37\x36\x46\xff\xc5\x73\xb5\x5e\xcb\x5a\x09\x2f\x9b\x6d\xaf\xb8\x68\x65\x11\x65\xce\x6c\xa2\x92\x53\x3e\xef\x7c\xbf\xfc\xbf\x75\xce\xf3\xb6\x11\x55\xd8\xc9\xbd\x4d\xa2\x97\xc0\xc9\xd8\x0e\x46\xbe\x87\x0d\x71\x10\xed\x36\xc3\x56\x0e\xc1\x07\x45\xf3\xe5\xae\xb2\x13\x50\xa2\xed\xc4\x39\x5a\x57\xaf\xf4\xfb\x16\x2e\x60\x9f\x72\xb4\xc4\x32\xb8\xef\xb6\x95\x44\x6a\x2a\x06\xa0\x1e\x5a\x58\xb1\x18\xe3\xc6\xe5\x45\xae\x6b\x2e\x16\x5e\x5a\x70\x40\x2f\xb5\x09\x42\x74\x2d\xc8\x23\xcd\x9b\x70\x01\x60\xd3\xb1\xa6\x71\x69\xc0\x8c\x48\x62\x4a\x91\x78\x1c\x2b\x36\x5c\xba\x4a\xb4\x90\xd3\x7c\xe9\x50\x39\x19\xfb\x04\x7b\x97\x05\xb9\x63\xe8\xe2\x64\xf0\x96\xb4\x19\xc3\xfe\x85\x09\xa6\x74\x9e\xb2\xc3\x34\x30\x26\x1a\x84\x95\xb0\xfc\x86\x68\x63\x31\x4a\x18\xa2\x34\x04\x05\x0b\x8c\xfb\x3e\xcc\x2a\xfb\xfc\xd0\x8a\xcd\x5c\x54\xb7\x98\xa2\x51\x30\x2d\x7a\x97\x71\x38\x17\x90\x5c\xc2\x2a\x18\x0b\x2e\xdc\xc7\x1c\x2e\x74\xad\x3b\xe7\xd9\x52\xfa\x18\xec\x2b\xef\x50\x47\x20\x25\x03\x3e\xc4\xdc\x74\x98\xd2\x44\x47\xe3\x57\xd6\x74\x4b\x4a\x89\xe3\x2c\xb4\x91\xc6\x5f\xcc\x49\x88\x55\x28\x6d\x08\x6f\xc5\xb4\xd8\xd8\x35\xcc\x32\x16\x23\x37\x0b\x2f\x35\x7f\x39\xef\x3c\x3a\x38\xda\xb8\x0f\x18\xe6\x2d\x83\xcf\x7d\x7d\x7f\x34\x2f\x67\x7c\x14\xe2\xab\x45\xc8\xda\x61\x15\x1c\x2f\xff\x79\x7f\x34\xff\x9f\xa3\xff\x3c\xfb\xbe\x9c\x82\x50\xd7\xc6\xf9\xc4\x85\xe2\x2a\xa1\xbe\xc4\x80\x94\x41\xfe\x4b\x8a\x28\x6b\x8c\x74\xc1\xd1\x85\x44\x62\x2d\xf4\x16\xd9\xaf\x56\xc6\x22\x57\xc0\xfd\x34\x63\x3f\xd8\x2f\xb0\xcd\x01\x3c\x70\x87\xce\x37\x28\x27\x0b\x83\xd9\x98\x68\x80\x62\x74\x32\x9d\xcb\x4d\x90\x1c\x2e\xd0\xf2\x1d\x2c\x2d\x28\x6f\x39\xe5\xeb\x2d\xeb\xe7\x24\x21\x97\xff\xec\x5e\xbf\x7e\xbb\x28\x7b\x4d\xc7\x8c\x58\x3a\xa4\x07\x93\xbe\x44\x72\x07\xd3\xe0\xf6\x94\x47\xff\x15\x16\x0a\xa7\x1a\xa6\x41\xb9\x80\xcc\x49\xa8\x95\x00\x5c\x83\x0f\x18\x00\x67\x8c\xf5\xe1\xbb\x33\x6b\x99\xef\x53\x02\x36\x15\xb4\x81\x98\x82\x91\xc6\x1b\x92\x93\x6b\x65\xa5\x16\xaa\x0a\x02\x61\x83\x2a\xc0\x2b\xb5\x5c\x28\x2d\x51\xad\x34\x5f\x58\xb3\x0e\xc4\xc4\xf8\x95\x1c\x74\xb3\x25\xc4\x7e\x65\x40\xd3\xc6\x88\x20\x2d\xa4\x18\x74\xe4\xdd\xb2\x9c\x30\x61\x3c\x62\x07\x47\x6a\xbb\xca\xd3\xa6\xd0\x4b\x3c\x92\x8e\x0a\x06\x69\x37\x58\x5d\x19\xe3\xbe\x21\xa8\x86\xfd\x2b\x4f\x14\x76\x1d\x25\x2c\xdb\x80\x04\x1c\xe6\xf7\x12\xa2\xad\xbf\x1b\x5b\x83\xf6\xf5\xce\xf2\x63\x1f\x05\x83\x84\x23\x65\x18\x58\xc3\xba\x01\x41\xb9\x6f\x42\x5b\xab\xd5\x02\xb7\xcf\x44\xf1\xc1\x95\xbd\x08\xbb\x3b\x66\x3d\xf4\x38\xe4\x30\x18\x0d\x60\xb1\x85\x3f\xbe\xab\x13\xb7\x55\xa3\xaa\x5b\x34\x9f\xf2\xaf\x25\x44\xab\x90\x30\xa3\xc0\x86\x42\x15\x45\x79\x8b\x50\x84\x28\x29\x23\x28\xfb\xd0\xe2\x1a\xa4\x79\x41\x06\x71\x1d\x96\xad\x9c\xa1\xd9\x61\xa0\x3c\x37\x77\xb2\x37\x88\xb0\x41\xc3\x96\xe4\xb7\xad\xe4\xe5\xb0\x02\x4a\x87\xd8\x7e\x6e\xee\xf9\x4b\x9c\xea\x9f\xa8\xef\x5c\x39\x26\x3a\x6f\xc0\x97\x55\x58\xe1\x73\x20\x93\xf9\x36\x30\x3f\x23\xa1\xfc\xac\x74\x77\x1f\x5c\x67\x63\x44\x4d\x35\x8b\x7f\xec\xca\xa5\x49\x00\xb1\x0a\x13\x80\x79\x6b\xcd\xd2\x8a\xf5\x8c\xb1\x0f\x66\x0d\xa3\xce\x18\xfd\xff\x71\xf7\xb8\xd1\x79\x29\xe4\x47\x0f\x6e\x18\xc3\x87\xd6\x38\xa7\x42\xc5\xb2\x56\x8e\x52\x42\xbd\xdd\x53\xf8\x1b\x72\xf8\xf9\x16\x6b\x4d\x01\x84\x95\xbf\x18\x9d\x84\xe8\xe4\x65\xc1\x9f\xfd\xc5\x3d\x54\xa8\x08\x3b\x5a\x9a\x80\xe2\x32\xf5\x59\xe9\x50\xb2\xd9\x53\x8f\xeb\x09\x81\x9d\x53\x28\xed\xc8\xbf\x06\x7a\x7a\x8e\x52\xc4\x88\x8f\x1c\xcf\x76\x28\x97\x61\xcc\x12\x9c\x7d\x2c\x33\xad\x67\x1c\xf5\x1d\x04\x84\x95\xdd\x21\x65\x36\x7e\x05\x1e\x39\xed\x1b\x4f\x46\x56\xc6\x3e\xe0\x2e\x7e\xd3\x86\x87\xef\xcd\x46\x87\xc7\x2b\xb1\x94\x7d\x3f\xfc\x48\xc6\xc0\xe8\xc2\xe3\xaf\x58\x8d\xa3\xe7\x6b\xf0\xa1\xe1\xf9\x42\xd7\x8c\x32\x98\xcf\x86\xfa\xe3\xaf\x61\xe4\xa6\x0d\x0f\x88\x9a\x1e\x11\x35\x3d\x12\xea\x0c\xc9\xa7\xc5\x67\x79\xbf\xb7\xef\xb3\x59\x2e\x1b\xc9\xc0\x25\xd0\x7b\xd1\x39\x04\xe0\x61\x60\xf8\x8d\xc3\x97\xe6\x4e\xfe\xac\xb4\x74\x37\xed\xf0\x8c\x04\x0d\x4e\x86\x5e\xcc\x9d\x4e\xa4\x57\x69\x39\xa6\x27\xeb\xbb\xd0\x75\xe8\xa1\xe4\xec\x17\xb9\x69\x86\x5f\xd7\xe0\x4c\x59\xef\x56\xc3\x1c\xec\x83\x84\x30\x88\xf5\xe9\x1c\xbb\x16\x77\x12\xff\xbd\x6f\x1a\x6a\x1d\x2b\x94\xae\xf1\xdf\xcf\xca\x4b\x2b\x1a\x7c\xfe\x05\xe4\x03\x0f\x57\x56\xde\x29\xd3\x39\x76\xa3\x6b\xc3\x7e\x95\xb5\x61\x1f\x4c\xbb\xc5\x7f\x48\xce\x87\x0e\xd6\x8a\x18\xf8\xbe\x6b\x1b\x55\x09\x2f\xe9\x17\x12\x11\x68\xce\x52\x51\xf6\xa9\xf3\x7b\x3b\x12\x60\x7c\xbc\x12\xce\x47\x19\x00\xc9\x9f\x5a\xa9\x0b\xd5\x48\x46\xba\x00\x3a\x10\x14\xac\x57\x2d\x02\x0e\xbd\xc3\x0f\x1c\xfb\x28\x9a\x45\x18\x89\x8f\xf4\x4e\x22\xf0\x41\xd0\x99\xaa\xec\xa8\xc8\x95\xb0\x62\x69\x45\xbb\xea\x25\xd4\xf7\xa0\xf0\x08\xec\xa3\x6c\xda\xf0\xf8\xbd\x5a\x2c\x7e\xe8\x3c\x2c\x08\x75\xfc\xda\x35\xd2\xb2\xff\xea\xd6\x2d\x09\xb2\x91\x02\x74\xdf\x77\x8e\x5d\xaf\x64\xd3\x5c\x9a\x5a\x82\x6f\x83\x08\x1c\x9f\xff\xd6\x29\x8f\xff\x40\x14\xef\xeb\x1a\x56\x34\xce\x0e\xcf\x30\x6f\x6c\xaf\xdb\x46\x79\x76\xa3\x1d\xb6\xff\x4d\x3f\x3f\x52\x13\xdf\xa1\x5f\x44\xcc\xa5\xa8\xac\x61\x57\x8d\xd8\xd2\xd3\x75\xe7\x30\x09\x7f\x79\xa3\xd5\x3d\x16\x8b\x0e\xd8\x75\x65\x4d\xd3\x80\x58\xf1\x81\x44\xd7\x8a\x8d\xbe\xec\x1a\xaf\xc8\x60\x77\x3a\x00\x7c\xd4\xb5\xf7\x45\x5a\x2a\xf6\xab\x5c\x9b\x3b\x99\x22\xa4\x9e\xf7\x4d\x93\x74\x3a\x76\x7d\xab\xda\x14\x0a\x7c\x32\xca\xf2\xb3\xb9\x14\xbe\x5a\x29\xbd\xfc\xce\x82\x29\xa4\x75\x95\x58\x81\x91\xbc\xdc\x59\xd0\x50\xe9\x7c\xd0\x27\x94\x49\x11\x1e\x7e\xf3\xb9\xf4\x1b\x29\x35\xfb\xad\x5b\xb7\xb8\x39\xa5\x47\x07\xc1\x37\x7b\x79\xef\xf9\xcb\x85\xb2\xce\x1f\x20\xfe\x6c\x14\x0c\x78\x6f\x7a\x8b\x71\xc7\xda\xe0\xf9\x5b\x98\xf4\x65\x38\x11\x80\x3c\x73\x2e\x87\x22\x3c\x41\xcd\x3b\xef\x8d\x76\x07\xe4\x8d\x2f\xa1\xef\x0a\x62\x6b\x7a\x4c\xe5\x34\x04\x38\xca\x05\x22\xc8\xb3\xc3\x8e\xd0\x7b\x77\xdc\x60\xd3\xc2\x65\xf0\xf3\x37\x2d\xc3\xc5\x23\x4f\x86\xfe\xeb\xa6\x0d\x4d\xf0\x6e\x66\xa3\xb1\x03\x1e\x82\x57\x27\x2f\x34\x36\xd4\x8f\x66\x8d\xd6\x16\xdc\x53\xf4\x59\x68\x31\x17\xf7\xca\x93\x41\xb0\x0f\x42\x57\xb2\x61\x57\x56\x69\xcf\xae\x44\xe7\xc8\xcf\x79\x31\x67\xc5\x11\x2b\x8e\x59\x71\xc2\x8a\x53\x56\x9c\xb1\xe2\x0d\x2b\xde\xb2\xe2\x6b\x56\x7c\xc3\x8a\xa3\xd7\xac\x38\x3a\x62\xc5\xd1\x31\x2b\x8e\x4e\x58\x71\x74\xca\x8a\xa3\x33\x56\x1c\xbd\x61\xc5\xd1\x5b\x56\x1c\x7d\xcd\x8a\xa3\x6f\x58\x71\xfc\x9a\x15\xc7\x80\xe7\x98\x15\xc7\x27\xac\x38\x3e\x65\xc5\xf1\x19\x2b\x8e\xdf\xb0\xe2\xf8\x2d\x2b\x8e\xbf\x66\xc5\xf1\x37\xac\x38\x79\xcd\x8a\x93\x23\x56\x9c\xc0\x84\x27\xac\x38\x39\x65\xc5\xc9\x19\x2b\x4e\xde\xb0\xe2\xe4\x2d\x2b\x4e\xbe\x66\xc5\xc9\x37\xac\x38\x7d\xcd\x8a\xd3\x23\x56\x9c\x1e\xb3\xe2\x14\x28\x3b\x65\xc5\xe9\x19\x2b\x4e\xdf\xb0\xe2\xf4\x2d\x2b\x4e\xbf\x66\xc5\xe9\x37\xac\x38\x7b\xcd\x8a\xb3\x23\x56\x9c\x1d\xb3\xe2\xec\x84\x15\x67\xc0\xc2\x19\x2b\xce\xde\xb0\xe2\xec\x2d\x2b\xce\xbe\x66\xc5\xd9\x37\xac\x78\xf3\x9a\x15\x6f\x8e\x58\xf1\xe6\x98\x15\x6f\x4e\x58\xf1\xe6\x94\x41\x04\x4d\x0e\x1f\x33\x78\x41\xcd\x9c\x9a\x8a\x9a\x9a\x9a\x00\xb2\xa0\x66\x49\xcd\x8a\x1a\x45\xcd\x6f\xd4\xdc\x52\xd3\x50\xb3\xa6\x46\x53\x63\xa8\x69\xa9\xf9\x42\x8d\xa5\xc6\x51\xe3\xa9\xe9\xa8\xb9\xa3\x66\x43\xcd\x3d\x35\x5b\x6a\x7e\x67\x31\xdb\xbb\x26\x4c\xb8\x6b\x35\xc2\x11\x59\xa8\x32\x61\xe4\x83\xb0\x82\x10\xdf\xe8\x5a\x5a\x57\x19\x9b\x6e\x72\x9f\x9a\x7a\xf8\x01\x7e\xef\xc2\x55\x8c\x42\x5b\x76\x81\x2a\x87\xca\xfe\xa8\x79\x05\xc3\x41\xf3\xda\xc6\x53\xb2\xde\xb8\x34\xa4\xe4\x4d\x6f\x83\xc6\xb2\xcc\x28\x53\x73\x0b\x41\x00\x58\x9b\xaa\xeb\x46\xd2\x33\x19\x00\x3e\xfe\x7d\x25\x65\x83\xc1\x41\xfc\x81\x56\x30\xfc\x1c\x30\xe0\x4f\x7a\x15\x39\x78\x81\x27\xfb\x69\x01\x24\xfb\x19\xab\xfd\x44\xf6\x7c\x1b\xf2\xbc\x2d\x38\xa5\x3b\xd1\xa8\x90\x05\x1a\x2d\x43\x91\x46\x68\xe3\x57\x12\x8b\x3c\x73\x2b\xaa\x5b\xe9\xdd\x14\xcf\x08\x98\x70\xbc\xfc\x96\x16\xed\x9c\xda\xea\x1c\x6b\xc0\xfc\xfb\x9d\x70\x94\xd3\x29\x4d\x67\x45\x38\x03\x7c\x1f\x93\x8c\x85\xdc\xec\x1c\xfc\x0f\xd9\x91\xd1\xfc\x12\x4b\xac\xe0\x95\x85\x95\x28\x69\x24\x88\x99\x56\x02\x36\x88\xe5\xb7\xce\xcb\x75\x3c\xf5\x52\x8e\xcf\x65\x05\xb6\x9f\xe0\xf9\x74\x2d\x1d\x5f\x89\xbb\xa4\x8f\x55\x46\xdf\x49\x3d\xa4\x6a\xe8\x7f\xe3\xf1\x52\x88\xa8\xdd\x6c\x27\x33\xbc\x69\x27\xef\x78\xfa\x37\x89\x7b\xd7\x64\x4a\x10\xb0\x56\x19\xcc\x64\xd8\xca\x22\x0c\xae\x58\x0a\x34\x49\x62\xdb\x08\x84\x89\xe6\x1e\x44\xd8\x1f\x60\xf0\xbc\x2c\xa5\x69\x12\x03\xdd\x0c\x22\xa5\x69\x32\x44\xc0\x19\x4c\x3a\xdd\x64\x08\x8d\x33\x98\x94\xee\x49\x12\x33\x47\xa0\xf7\x8d\xcf\xa9\x9e\xf4\x19\xf3\x94\xbf\xbc\x14\xd5\x41\x0f\x97\x8b\x60\xd2\x07\xbd\x3b\x80\xb9\xc4\x27\x49\xf4\x9c\xcc\x9a\x0b\x7d\x92\x85\xd5\x11\x0c\x9d\x61\xca\xc5\x64\x14\xa8\xef\x00\x46\x5e\x26\x79\x04\xff\x30\xb7\x3b\xa1\x40\x02\x3a\x62\xb8\x0f\x1e\x13\x90\x5c\xc6\xbb\xe4\x8d\x24\x93\x2f\xdb\x0e\x91\x29\x74\x74\xa4\xc3\xfc\x09\xa9\xbb\xa0\x19\xad\x29\xa9\xcf\xa1\x60\x4f\x44\xf4\x94\x64\xf7\xbe\x92\xce\x85\x2f\x41\x18\x30\xd2\xd0\x47\xe6\x7a\x48\x9e\x49\x82\xf4\x94\x66\x64\xa0\x3b\xe4\x5c\xe8\x3a\x11\xe7\x63\xb8\x33\x15\x9e\x24\xa9\x6b\x0a\x94\xa9\xf0\xa4\xcf\x69\x77\x68\x8c\xc8\x72\x09\xec\x80\x45\x74\x29\x65\x89\x68\x0e\xff\x95\x59\xd5\x4e\x8a\x92\x82\xfe\x7b\x3f\xe8\x2f\xa8\x3a\x2c\xa8\x88\x97\x36\x03\xcb\x72\xcf\x94\xba\xc3\x55\x06\xd7\xef\xcb\x11\x66\xe8\x78\xf7\x10\x08\x10\x05\xa8\x3e\xf6\x20\xa3\xf2\x5c\x02\x97\xa1\x7b\x00\x8e\x0e\x67\x93\xbf\xe7\x9e\xd3\x26\x24\xfb\x14\xc7\x64\x9c\xb5\xfe\x91\x64\xad\x99\x30\x4c\x26\x8c\x98\xb4\x66\x20\x2e\x03\x81\x54\x3c\x1b\x5e\x64\xc3\x90\x88\x67\xc3\x7a\x67\x38\x5d\x37\x8a\xd6\x76\x40\xc6\x5a\xd0\x5f\x8f\x19\xc0\xc2\xd5\x99\x61\x78\x9b\x0d\xe3\x35\x9a\x74\xb8\xca\xb7\xbb\x50\x13\xf8\x03\x1e\x32\xb8\xfb\xd1\xb6\x98\x93\x7a\x3b\x1e\xdd\x11\x68\x9d\x41\x64\x65\x86\x0c\xee\x6e\xa4\xd4\xce\xe7\xe3\x22\x97\x7a\xac\x2b\x64\x30\xf9\x16\x4e\x69\x76\xaa\x7b\xd3\x7c\xfb\x4e\x12\xf0\x14\x6a\x96\x43\x85\xd4\x3c\x42\xa4\x4e\x2f\xd0\x92\x7a\xee\x68\x7e\xf5\x48\x81\xf7\xfa\xa1\x0c\xd7\x43\x7e\x28\xc3\xb5\xeb\x87\x28\x37\xdb\xf5\x67\xa1\x3f\x81\xda\xe7\xd0\xfa\xfe\x64\xc2\x0c\xe3\x3e\x21\x45\xa0\x1e\xe1\x58\x46\xfd\xb9\xe6\x40\xd4\x50\x53\x49\x45\xbd\x0f\xe6\x27\xb9\xbd\x94\xba\xcb\x70\xd9\x3d\x70\x58\x83\xc9\xa0\x9a\x0c\x2a\x3b\x52\x5d\x1a\x6f\x78\x1f\x11\xa2\xd3\x49\x45\x16\x7a\x52\x64\xf3\x5c\xdf\x62\x55\x27\x83\xf9\x92\xc1\xe0\xb5\x9f\x74\x58\x8e\x4c\xac\x2f\x07\x65\x50\x9b\x0c\xaa\x2f\x00\x65\x30\xdd\x1e\xfe\xb1\xd8\x93\x41\xfd\x96\x9b\x50\x2c\x08\x45\x18\x72\x93\x29\xdb\x84\xe8\xd3\x9d\xb4\x1b\xab\xbc\x0c\xa4\x21\xf4\x57\x5f\xf1\x8b\xb5\xa8\xdc\xa1\xf3\x5b\xaa\x2a\xf4\xd7\x93\xfb\xd5\x03\x4f\x37\xd9\x89\xd6\x60\x64\x1e\x47\xc6\xde\x5f\xe0\x66\x3e\xd4\xec\xd2\x31\x10\x57\x66\x27\x91\x90\x1f\xb5\x97\x4b\xca\x55\xe8\x7c\x0e\xaf\x0b\xaf\x85\x16\x4b\x69\x03\x3d\xc5\x31\x6d\xae\x89\x37\x2e\x4e\xb0\x2b\xf5\xc0\xc5\x29\x76\xa5\x2b\x55\xbc\xdd\x85\x3a\x7a\x0d\xa4\xa4\x50\x17\xae\x42\xea\x30\x45\x4d\x48\xbb\xa4\x54\x34\x13\x4d\x9a\x33\x86\x38\x2c\x54\xdf\x22\xb6\x3c\x91\x44\x91\xf4\x65\xb9\x0c\x26\xcb\x01\x86\xda\x50\x06\x43\x49\x6b\x88\x41\xd0\x6f\x5e\x59\xb5\x16\x36\x77\xe3\x29\xba\xc9\xb8\xb4\x14\x19\xc2\x65\x48\xe3\xf6\x71\xa5\x6f\x1c\xcb\xf5\x0c\xee\x54\x0e\xc7\x90\x3d\xa3\x7b\x0a\x8a\xa9\x12\xac\x1f\x99\x9d\x9c\x7e\x0a\x9d\x26\x5a\x3b\xe5\xc7\x14\xb0\xda\x01\x1c\x55\x25\x53\xe0\xfb\x94\x86\xbc\x58\x39\x99\xc6\x93\xc6\x17\x2f\xf8\x95\xd0\x92\x4e\xd7\x86\xab\xfb\x3f\xa5\x67\x3e\x94\xdc\x87\xb3\x5b\x49\x47\x7b\x43\x16\xdc\xc6\xd7\x1d\x17\x8e\x6f\x64\xd3\xec\x1c\xbc\x32\xbc\xe4\x2f\xfa\x5b\x10\x78\x1d\x01\xaf\xff\x89\xc5\x42\x56\xde\x8d\xaf\x7a\x4c\xfb\xab\xd5\xf1\x32\x4d\xc9\x5d\x37\x5f\x5a\xd3\xb5\xa1\x10\x18\x12\xe7\x30\x3c\x79\xc7\xa9\x23\x77\x48\x83\xf1\xe2\xe0\xbf\x23\xd7\x9f\xd3\x53\xab\x94\x01\x2b\x79\x49\x37\xa4\xf1\x70\x1d\x8b\x2f\xf4\xfb\x60\x9a\xd0\xf2\x32\xa1\xf5\x60\xca\xb0\x6e\x1b\xcf\x5c\x4b\xfe\xb2\x3f\x3c\x06\xd4\x07\x74\x4f\x22\xe6\xfe\xfd\xc1\x68\x44\x81\x27\xc9\xe9\x0b\x8e\x01\x19\x4b\x75\x27\x35\x5d\x0f\xcd\x39\x8e\xb0\x39\xcb\x54\x2b\xf9\x72\x1e\x5b\x34\xf3\xfb\xde\xf2\x13\x18\x79\x1e\x5b\x80\xd9\x75\xe7\x09\xe8\xe6\x3c\xb6\x00\x3a\xf8\x74\x12\x66\xb4\xb6\xbd\x4b\xb0\x5b\xd0\xf8\xa8\x9c\x37\x76\xdb\xdb\x14\x76\xee\x56\x35\x02\x58\x62\x50\xa4\xed\xcf\x28\x6d\x60\xf7\x33\xca\x1b\x64\x11\x4f\x95\x38\x06\xa8\xc7\xcb\x1c\x03\xdc\xe3\xa5\x8e\x01\xee\x89\x72\x47\x34\xe0\x67\x16\x01\x22\xf8\x13\x85\x80\x08\x36\xaa\x7b\xec\x46\x6b\x11\x70\x54\xfb\x18\x47\x6c\x9c\x3f\xaf\xb8\xb0\x0b\xfc\x70\x69\x21\xb7\xe0\xbc\xb0\xf0\x10\x54\x5e\x53\xd8\x3b\xf1\x9f\x2a\x0f\x8c\xd6\xea\x4f\x15\x07\xf2\xd9\x1e\xcb\xfa\x47\xb3\x3c\x2b\xe7\xef\xb1\x3f\x95\xf7\xf7\x80\x8f\xe7\xfe\x39\xb5\x8f\xe6\xff\x39\xe8\x23\x35\x80\xa0\x7a\xe3\xac\xfd\x82\x2e\x36\x06\x67\x33\x46\xfa\xf1\xd1\xcc\x7d\xd4\xf9\x50\xf6\x8e\x9d\x69\x41\x9e\x54\x6c\x2f\xd8\x33\x13\xfd\x1e\xf6\x19\xc9\x3e\xc2\xee\x26\xfc\x81\xe3\x0f\x21\xe7\x1f\xb3\x94\x67\xf7\x1f\xb6\x55\x23\xd3\x12\x01\x80\x8c\x85\x95\xe5\xcb\x69\xba\x3c\x40\xa4\x29\x73\x9a\x31\x0f\x10\x55\xa6\x40\x7b\x92\xe6\x01\xf4\x3e\xd7\xb5\x1d\x8d\xc8\x72\xe7\x51\xea\x3c\x00\xa5\x69\x71\x96\x15\x63\xc7\xa3\xc9\xe8\xae\x85\x3d\x9d\x96\xf6\x13\x3f\x95\x9a\xf6\x80\x8f\xa7\xa7\x9c\x3f\x9d\x6f\x0d\xcc\xa6\xf9\xd4\xe4\xfd\xdc\x58\xff\x80\xe2\x67\xa9\xd5\xc3\x4c\x64\x45\x83\x3d\x69\x07\xe7\xfb\x92\xb0\x47\xf4\xf4\xb9\x29\x54\x8e\x3c\xd5\xed\x07\xdd\x71\x56\x37\x7a\xd8\x1d\x67\xf5\x94\x47\x28\xa5\xb3\xc0\x4c\x4a\x8f\xba\x92\xac\x2e\xf5\x50\x2c\xb1\x53\x9d\xda\x1f\x9b\xec\xa4\xac\x3b\xae\xb1\x87\x7d\x22\xcd\xe4\xfc\xb1\x54\xb3\x1f\xdd\x97\x6e\xf6\x83\x69\xca\x99\xd4\x68\xfa\xf1\xfd\x69\x27\x7f\x76\xea\x89\x88\x42\xca\xf8\x90\xce\x86\xf4\x71\x34\x9c\x4e\xb4\x27\x91\xc4\x37\x77\x93\xc9\xbd\x22\xdf\xcd\x28\x1f\x58\xc2\x67\xa4\x95\x43\xef\xc3\xa9\x65\x9e\x15\xbc\x78\xc1\x0b\x8c\xc2\xb5\xf1\xd2\x31\x86\x1f\xe9\xf1\x4f\x9a\x8e\x6b\x4d\x93\xc4\xe9\x72\xdd\x35\xc2\x1b\x4b\x77\xdd\x8c\xe6\x7f\x57\xba\x36\x1b\xc7\xd7\xa2\x5a\x29\x2d\x5d\xfc\x28\x6e\x55\x72\xb7\xc2\xfb\x8b\x73\xbc\x72\x4c\xd9\xd3\x3c\x6e\x28\x33\xc6\xde\x87\xef\xd0\x44\xd3\x6c\xa7\xc3\xa7\xa4\xe3\x23\x55\xba\x7f\x88\xdf\x3a\xdc\xca\x6d\xfe\xfd\x09\x75\x8b\x92\x1b\xcb\xf0\xf1\xa6\x2d\x67\x9c\x3e\x65\x0d\x17\xca\x81\x50\x6e\x5a\x9a\x88\x97\x87\x65\xbc\x3d\xd2\x7f\x15\xe7\xe8\xbb\x30\x78\x9f\x6e\xa2\x30\xe4\xa0\xe4\xce\xf4\xf8\xab\xc0\x09\xb7\x12\xfc\x84\x97\x1a\x72\x3e\x18\x15\x90\x14\x09\x07\x4a\xe5\x3d\x20\x03\x36\x81\x99\xa8\x0b\x07\x33\x16\x4f\x52\x37\xab\xed\xe8\x3b\xa7\xec\xb0\xb6\xff\x38\x57\x12\x35\x7d\xe8\x56\xf2\xf8\xb1\x83\x59\xb0\xe1\x23\x40\x1a\xa2\xf3\x73\xc8\x9c\x86\x6f\x26\x0f\x66\x8c\x5d\xd1\xf7\xc8\xe1\xa2\xb4\xf0\x7b\xd7\x10\xbf\x0b\xb7\x42\x2f\x25\x17\x2d\x95\x76\xfb\x8b\x8c\x74\x07\x19\xb2\x55\x66\x65\x25\xd5\x9d\x74\xf9\xcd\xf8\x70\xb5\xbe\xc7\x5b\xcb\x4a\xd5\xb2\xbf\xf4\x3c\xe3\xd7\xe9\x35\xe9\x61\x5a\xb6\x16\x5b\xfa\x32\x53\xea\x9a\x57\xd2\x7a\xa1\x74\x44\x0b\x0d\x7d\x29\x95\x7c\xed\xcc\x9d\xd8\xba\xe1\x86\x36\x0f\xf4\xe0\x7d\x5c\x7c\x0f\x3f\xf5\x01\xb9\xc9\x7b\x81\x37\xa5\xf1\xf3\xe5\x78\x4f\x3e\x10\x8f\x37\xab\xf3\x9b\xec\xf9\x77\x19\x82\xdd\xca\xed\x94\xdb\x4e\xc7\x4f\xe0\xad\xd8\xf4\x5f\xd5\xcc\xd8\xff\x05\x00\x00\xff\xff\x79\x99\x1f\xbb\xe7\x3f\x00\x00"
-
-func runtimeHelpKeybindingsMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpKeybindingsMd,
-               "runtime/help/keybindings.md",
-       )
-}
-
-func runtimeHelpKeybindingsMd() (*asset, error) {
-       bytes, err := runtimeHelpKeybindingsMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/keybindings.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeHelpOptionsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5c\x5f\x8f\x23\xb7\x91\x7f\xde\xfe\x14\x05\x65\x81\x1d\x6d\x34\x9a\x8d\x63\x1f\x02\x3d\x1c\x60\xaf\x9d\xb5\x61\x3b\x1b\x78\xd7\xf0\x05\x49\x90\xa6\xba\x4b\x12\x33\xdd\x64\x87\x64\x4b\x23\xc7\xb9\xcf\x7e\xa8\x2a\x92\xfd\x47\x9a\x9d\xbd\x20\x7e\xf0\xec\x74\x93\xc5\x62\xb1\x58\x7f\x7e\x55\x3d\xbf\x82\xb7\x5d\xd0\xd6\xf8\xa2\xf8\x5e\x57\xce\x82\x0f\xd6\xa1\x07\xd5\x34\x60\x77\x10\x0e\x08\xbd\x47\x07\x95\x35\x3b\xbd\xef\x9d\xa2\xc1\xa0\x0d\xe8\xe0\x67\x0f\x6b\xed\xb0\x0a\xd6\x9d\xd7\x89\x56\xef\xd1\x43\xf9\xfc\xfb\x6f\x5e\xff\xf0\xf6\x6f\xaf\xdf\xfe\xe1\xf7\xdf\xbc\xf9\xdb\xd7\x6f\xbf\xff\xaa\x04\xe5\x99\xf4\x63\x04\xe0\x1b\x5a\x5a\xfb\x02\xcd\x51\x3b\x6b\x5a\x34\x01\x8e\xca\x69\xb5\x6d\x10\xb4\x07\x63\x03\x78\x0c\x2b\xd0\x21\xad\xf2\x3f\x5f\xbe\x19\xaf\x71\xd7\x12\x0b\x25\x68\xe3\x03\xaa\x9a\x48\x16\xe1\xa0\x02\x7c\x3c\xc9\xff\xbd\x5b\x0b\x83\x89\x96\x70\x5d\x3c\xce\xb5\xe1\x5d\xd5\xb6\xea\x89\x3c\xbf\x5f\xc1\x89\x45\x78\x85\x5c\xb0\x85\xc3\x1d\x3a\x08\xf6\x43\xd2\x80\x1b\x3c\xa2\x01\xbd\x23\xce\x5a\x75\x26\xe9\xef\x54\x15\x60\x8b\xe0\x6d\x8b\xa7\x03\x3a\x04\x6c\x3c\x16\x7a\x07\x67\xdb\xc3\x41\x1d\x91\xf6\x02\xa8\xc3\x01\x5d\x3a\x48\xb5\xb5\x47\xbc\xba\x7f\xbf\x5c\x17\xc5\xd7\x44\x46\x39\x94\xb1\x47\xa5\x1b\x16\x8d\x15\xfd\xd8\x14\xc5\x4b\x28\x55\x1f\xac\x36\x35\x9a\x50\x6e\xe0\x74\x40\x03\x95\x43\x15\xb4\xd9\x83\x02\x83\x27\x68\xb4\xc1\x15\xef\x97\xa8\x78\xd5\x22\xc8\x78\xd9\x54\x3c\xf7\x02\x00\x3a\x87\x47\x6d\x7b\xcf\x53\xd6\x45\xf1\xac\xc6\x9d\xea\x1b\x62\xaa\xe9\x71\x03\x65\x70\x3d\x96\x79\x55\xaf\x8e\x58\x6e\x80\xfe\xd9\xaa\xa0\x2b\xd5\x34\x67\xa0\x87\x4c\x70\xdb\xef\x48\x90\x78\x44\x77\x06\x03\x1e\x2b\x6b\x6a\xbf\x02\x91\x8d\xa1\xf3\xa5\x93\x03\x10\xea\x59\x22\x91\x70\xdc\xe4\x1a\x3e\x6f\xbc\x95\x7d\xfd\xa3\xd7\x81\xf7\x45\x5c\x43\x6b\x6b\xbd\xd3\x58\xc7\x85\x56\xc0\x47\x48\xf4\x4e\xba\x69\xae\x71\xa5\x4c\xcd\x34\xd6\xf0\x05\xc2\x49\x39\x83\xf5\x8a\x75\x3a\xae\xc5\xa3\xfc\x88\x79\x21\x16\x0e\xb6\x0f\xd0\x39\xdb\x76\xbc\x7a\xba\x80\x2b\xf0\x16\x6a\x15\x14\x6b\xc0\x16\xc1\x1e\xd1\x9d\x9c\x0e\x01\x4d\xbe\x2e\x89\xb4\xf6\x44\x8c\x14\x20\x58\x28\x5f\x95\x2b\x30\x36\xed\x95\x88\x6a\x0f\x1d\xba\x9d\x75\x2d\xd6\xeb\x82\xc6\xc2\x5c\xf8\xaf\x46\x92\xef\xcb\x0d\xfc\x44\x32\x51\xb0\xd3\x72\x59\x88\xf9\x1a\xf8\x3e\x65\x13\x51\x5b\xf4\xe6\x45\x10\xed\xeb\xd0\xb5\xda\x7b\xe2\x26\xb0\x9c\x58\x82\xe7\x28\xb8\x28\x35\x7f\x4f\x5a\x9d\x09\x9c\x6c\xdf\xd4\xd0\xe8\x7b\x24\xbe\x49\x87\x7c\xdf\xa1\xe3\x97\xa2\x31\xfa\xa8\x1b\xdc\x93\xd8\xec\x70\xf6\xc4\xd3\x15\x11\x00\x1a\xd2\xdf\x7a\xbc\x24\x51\x99\x9e\x95\x0a\x01\xdb\x2e\x5c\x2e\x78\x6d\xb5\x78\x3c\x4c\xc5\xdf\x8f\x8f\xe7\x11\x29\xee\x54\xe3\xa3\x0e\x6f\x55\x75\xdf\x77\xe5\x66\x22\x80\x09\x2b\xf7\x88\x1d\xc8\x30\x4f\x0a\xca\x26\xb8\x43\x13\xf5\xc3\xaf\xe1\x0b\x79\xc9\xeb\x3b\x14\x53\x5d\x93\x39\x98\xdb\x96\xbb\x48\xa6\x64\x35\xa4\xb1\x0e\x5b\x4b\x47\xc6\xba\x3d\xba\x31\xa2\x2a\x55\x63\x3d\xd6\x50\x35\xa8\x4c\x33\x18\xb2\x4a\x79\xbe\x2a\x0a\xfc\xd9\x07\x6c\xa1\x72\xca\x1f\xc0\x3a\xba\x11\xbc\x0d\x7e\xb0\x4a\xd6\x2b\xa0\x09\x4c\x2f\x5e\xaf\xb8\x46\xa5\x0c\x69\xac\xc3\x8a\x94\x16\xeb\xd9\xbe\xb7\x67\xde\x66\x12\x27\xab\x18\x6b\xd6\x49\x31\xb1\x2d\xd2\x2b\xac\x75\xa0\xfb\x87\x3b\x1b\x4d\x54\x5c\xdb\x3a\x68\x95\xe9\x13\x29\x8f\xca\x55\x07\x9a\xb1\xb3\x4e\xb8\x60\x59\x80\x36\x44\x6c\xf4\x60\x64\xb8\xa3\x60\x59\x52\xad\xaa\xc9\x66\xe5\x91\x7b\x67\x7b\x53\x33\x35\x83\xa7\xe6\x9c\x6d\x01\xf3\x26\x47\x13\x0d\xcf\xef\x06\xc3\x63\x9d\x88\x5a\xc4\x54\x63\xc0\x2a\x78\x50\xc2\xf4\x23\xda\x32\x18\x3c\xe1\xb0\xd6\xae\xdc\x88\x47\xc9\xbe\x40\xe8\xf9\x03\x5f\x95\xae\x51\x15\x66\x95\xd1\x66\x0d\xbf\x8f\x7b\x8e\xa4\x27\x06\xaf\x5c\x2c\x4a\xb8\x21\x6d\x3f\x83\x0f\x4e\x9b\xfd\x72\x75\x55\x1e\xa2\x9c\x5b\x36\x97\xe5\x6b\x56\xab\x2f\xb5\xcb\x3a\x45\x56\x55\x57\x07\xba\x62\x8f\xeb\xdd\xf6\x9c\x78\x58\xc3\x7b\xb1\xbc\x03\x7d\xdf\x61\x25\xe6\x94\xa4\x9a\xf8\x8f\xab\x8a\x47\x21\xbd\x66\x87\x47\x56\x85\x7d\x33\x3e\x68\x1f\x1e\x91\xdc\xe5\xce\xa2\x18\x3d\x1a\xd5\x92\xdf\x88\x07\xaa\xcd\xce\x6e\x95\xe3\x6b\x11\xd4\x76\xab\xc8\xb0\x1e\xec\x09\xac\x69\xce\x51\x18\x32\x27\xe9\x30\xa9\xe3\x85\x16\x3a\xc5\x7e\x35\x1c\x94\x90\xdd\xf5\x4d\x03\x9d\x0a\x8f\x9d\xec\xc8\x0e\x54\x8d\xee\xb6\x56\xb9\xba\xdc\x64\x39\x78\x20\x16\x26\x47\xab\xaa\x0a\xbd\xb8\x87\x74\xf7\xd2\xc4\x35\x2d\xf1\x47\xeb\xbd\x26\xf7\xcc\x4b\xb0\xe6\x6e\x78\xe9\x97\x50\xe2\x43\x40\x67\x54\x43\xee\x92\xc9\xa0\x1f\x66\xc3\x51\x2b\x50\x06\xd2\x20\x08\xd6\x36\x2b\xf0\x7d\x75\x20\xef\xfc\x40\x03\xef\x1e\x3c\xb2\xad\xa4\xff\x48\x93\x9b\xdb\x61\xbe\x35\xf0\x9d\x36\xfd\xc3\x0a\xba\x6d\x65\xbb\xf3\x5d\xb7\xed\x94\x0f\x48\x2f\xbe\x57\xd5\xdb\x77\x2b\x96\x6e\xe2\x5a\x35\x8d\x07\x6b\x12\xb5\x9f\xb4\xa9\xed\xc9\xaf\xe1\x6d\x26\x13\x83\x96\xda\xf2\x31\xb3\xf7\xb0\x26\xcb\x9f\xd8\xf3\x1c\xc5\xa9\x86\xad\xb9\x75\xa0\x77\x89\x5c\x38\xe0\x99\x6f\x2d\x4d\x3d\x59\x47\x46\x79\xe2\x63\xc2\xc1\xd9\x13\xef\xd7\x39\x2b\xe7\x4e\x76\x5e\x51\x0c\x2b\x02\x48\xa4\xa6\xf2\x25\x39\x06\xf2\x61\x33\x39\xb2\xe1\x99\xc8\xf2\x6c\x7b\x07\x69\x28\x60\xdb\x37\x2a\x58\xb7\x86\x3f\xd8\x20\x76\x6c\xc4\xab\x63\xe7\xd9\xe8\x96\xb5\xc8\xf7\x5d\x67\x5d\x00\xd5\x5a\xb2\x7d\x73\x12\x3e\x5a\x30\xed\x61\x87\x2a\xf4\x0e\x13\xa5\x9b\x8a\x65\x01\x6f\xdf\xbd\x86\xcf\x3e\x59\xae\xe1\x7d\x9c\xeb\xc5\x70\x92\x40\xee\x8d\x3d\x91\xef\x65\xa9\xf0\x93\x6f\x75\x08\x14\x4c\xb2\x5b\x4c\xa4\x1c\xaa\x9a\x14\x9b\x5c\xdb\x48\x39\xff\x46\xd6\xdc\xd9\xa6\xa4\x28\x22\x88\xa9\xd0\xb4\xca\x27\x70\xc3\x57\x85\x4e\x9e\x1f\x27\x42\x3e\xac\xc0\x3d\x1c\xc3\x6d\x6f\x74\x65\x6b\x09\x80\x48\xc7\x5a\x3a\xe0\xe8\x8b\xe1\xc6\x23\x42\xf9\xdf\x70\xc0\xa6\x63\x1a\xac\x3a\x25\xed\x34\x11\xaa\x31\x28\xdd\xf8\xe5\x48\x82\xf0\xc6\xd8\x16\x6f\xb3\x84\xb2\x4d\x48\x12\x1c\x0b\x69\x0d\x3f\xe9\x70\x18\x84\x4e\xd1\x8a\xec\x61\xc5\x2b\xde\x8a\xb6\xbe\x7c\x49\xfa\xf1\xf2\xa5\xc8\x87\x1c\x13\x78\x7f\x58\xc3\xbb\xab\x0c\x26\x72\x74\x22\x91\xc1\xac\x26\x49\x91\xa6\xbe\x7d\xa6\x65\x63\xf5\xba\x6a\x22\xf2\xa5\x15\x2b\x61\x1b\xeb\x2a\xdb\xf4\xad\x21\xe3\x15\x63\x9b\x21\x4b\xa1\x83\x7d\xc5\xa9\x0a\x2f\x56\x6b\xdf\x35\xea\x4c\xfe\x85\xe7\x80\xc4\x65\x1c\x05\x66\x5b\x2b\xaf\xc8\x1c\x0b\xa9\xde\xe3\xae\x6f\xd2\xf5\x3b\x29\x13\xd2\xec\xdf\xbd\x22\xfa\x5b\x84\x83\xde\x1f\x1a\xbd\x3f\x04\xf1\x76\x4c\x4b\x35\x2c\x05\x7c\x50\x6d\xd7\x5c\x0d\xdc\x5f\x8d\xf6\xe0\xab\x03\xb2\x01\x6e\xac\xaa\x53\xd2\x97\x9f\x8f\x42\x18\xa2\xff\xfc\xa6\x4a\xde\x66\x79\x37\x1a\xe6\xef\x4a\x09\xeb\xca\x35\x4b\x78\x25\x7b\x88\xc7\xca\x8e\x68\xdf\xd8\xad\x6a\xd8\x8c\x97\xd7\x78\x8a\xbf\x97\x22\xfc\x41\xb3\x46\xce\x72\xcc\x98\x87\x9b\xf8\x94\x02\xef\x46\x39\xfd\x33\xd9\x1e\x36\x6c\xe9\xd7\xdb\x50\x2d\x99\x5a\xb2\x3f\x8d\xad\xc4\x71\x19\xc8\xfb\x58\xc1\x16\x2b\x15\xf3\x21\x31\x55\xd8\x6e\xb1\xae\x65\x1c\x2d\x9f\x53\x09\xd8\x6a\xa3\x38\x7d\x7e\xf6\x7e\x26\xa7\x18\x42\x79\x6c\xb0\xa2\x25\x76\xce\xb6\x1c\x20\x26\x17\xe5\x13\xb5\xe2\xd9\xdc\x27\x4f\x04\x39\x8e\x7a\x24\x49\xaf\x2c\x6d\x77\xf0\xd7\x62\x0a\xc2\xc1\x21\x16\xcf\xc6\x73\x37\x45\xf1\xec\x4f\xb6\x67\x5e\xc8\x6c\x40\x4b\x91\x98\xda\x52\xc2\xc2\x2b\xbd\xf0\x53\x11\x46\x8e\xa2\x22\x94\x72\xa7\x82\xed\x74\x55\x3c\xbb\x29\xe3\x0d\xe3\x57\x94\x7e\x92\xc6\xf4\xce\x5b\x47\xf9\x60\xb9\x19\x74\x8f\x89\xd0\xc3\xe1\xc4\x64\x20\x1d\xbc\x80\x11\x0a\x6a\x4d\x81\x18\x9a\x78\x8a\x24\xce\x9b\xac\x6c\x34\xb0\xc6\x9d\x36\x14\x40\x9e\x2f\x94\x90\xd4\x9f\x0e\xa6\xf7\x64\xd1\x3e\x9c\x8a\xd2\x3a\xfb\x3e\x04\xa4\xd0\x2c\x5d\x3b\x7a\x48\x69\xae\xae\xc4\x6e\xc7\x20\x95\x78\xf6\xd7\xc8\x8d\xc2\x81\x5a\x1f\xab\x83\x72\x7e\x12\x0d\x10\x83\x8b\x5a\x1f\x75\x8d\x6e\x01\xf4\x5e\x55\x81\xc2\xcc\xde\xc7\x98\x49\x82\xc2\xa3\x66\xdb\x4d\xeb\x48\x88\x12\x4e\x88\x06\x8e\xe8\x38\xb6\xbe\x3b\x58\xa7\x7f\xb6\x26\xa8\x06\x7c\xd7\xe8\xe0\x39\x16\x83\x9d\x76\x3e\x0c\x64\x49\x3a\x44\x33\x4d\x93\x58\x8d\x17\xf7\xa2\xf2\x1c\x85\x70\x64\x9b\xc6\x8e\x28\xa7\xa1\x6b\xf8\x22\xeb\xd0\x2a\x19\xf4\x0b\x0e\x84\x56\x50\xa1\xf7\x7c\xa4\x1e\x1d\xa5\xc1\xca\xf3\x19\x32\xa5\x15\x6c\xfb\x90\x12\xc3\x61\x28\x91\xa3\x73\xd4\x5e\x5c\x09\xbd\xbd\x64\x63\xb4\xad\x14\x4f\x92\xd0\x1e\x31\xba\xbf\xdc\xe6\x53\x70\x14\xc2\x7b\x52\xbc\x89\x0e\x77\xce\x12\xdd\x41\x67\xe0\x86\xce\x36\x26\x05\x24\x9c\x21\x47\x58\xa6\x5d\xf3\xe0\xe1\xd4\xa2\x9a\xc8\x8d\x67\x31\x8c\x84\xf6\x93\xdc\xb6\x21\x73\xcd\x69\x6b\x34\xe0\xc2\xce\xc8\x8e\x5f\xd1\xe0\xb4\xd5\xb8\x89\x7a\xce\x24\x6b\xc7\x90\xcb\x24\x92\x27\xd5\x75\x58\x2f\x9f\x4c\x47\xd0\x54\x96\x34\x2d\x66\x23\xe9\x57\x72\x12\x9c\xa0\xb2\x59\xa4\xb8\x4d\x2c\x11\x19\x90\x35\xbc\x13\xdf\x8c\x75\x1e\x9f\x13\xd7\x46\x7b\x7a\xae\x02\x1c\x42\xe8\xfc\xe6\xee\xee\x74\x3a\xad\x4f\xbf\x5d\x5b\xb7\xbf\x7b\xff\xc3\x5d\x9a\x70\xf7\x08\x67\x7d\xd8\xdd\xfe\x2e\xb2\x66\x77\x94\x95\x89\xc9\x78\x34\xb5\x56\x75\x2d\xf8\x94\x98\x11\x1b\xb7\x51\xc7\x20\x93\x16\x11\x64\x63\xc7\xa1\xe7\x45\xce\xf1\x01\x83\xb0\x53\x3e\xd4\xda\x85\x33\x0b\x87\x0d\x8d\xc4\x29\x24\x08\xb2\x57\xf7\x5a\xd6\x51\xcd\xde\x3a\x1d\x0e\x6d\x64\x93\x31\xc6\x60\x87\xf1\xac\xe0\x94\x6c\xe7\xd4\x7c\x80\x9d\x28\xf9\xb4\x61\x2d\x30\xcc\x68\x4d\x31\x81\x29\xe2\xfd\x7b\xef\x23\x76\xa9\xf8\xc4\xad\xa5\x84\x1e\xca\x44\xa6\x14\x0b\x2a\xae\x93\xb1\x21\xde\x07\xdd\x3e\x6f\x07\x74\x8e\xe1\x8f\x56\xdd\x13\x1d\xc3\x29\x0f\xc7\x3a\x29\x6e\xa0\xd5\xe5\x8e\x46\xaf\xa4\x8d\xaa\xaa\xde\xa9\x20\x30\xcc\x9c\xbd\xdd\x8e\x75\xd9\xcc\x70\x98\x83\xf2\x87\x64\xcc\xd9\x70\xc7\x6d\xab\xbd\xa2\x68\x1f\x94\x8c\x88\x69\x80\x75\x7a\xcf\xb1\x1f\x9f\xd3\x4d\xca\x11\x29\xc7\xce\x69\xbd\xcc\x3f\x29\xcf\xc1\x06\x29\x76\xe6\x59\x5c\x55\xe4\x92\x79\xb7\x5b\x46\x1f\x39\x9f\x67\x7c\xc4\xdb\xde\x55\x72\x08\x26\xa0\xf1\xfa\x88\x71\x7e\xbc\x98\xe9\x92\x4d\x55\x2b\xdb\x23\x3d\xe4\x8b\xe0\xf5\xcf\x4c\x09\x1f\x2a\xc4\xda\xc3\x67\xaf\xbe\xfd\xe2\x09\x47\x40\xf3\x76\xd6\xb5\x2a\x3c\xa5\x48\xac\xc3\x68\xf8\x46\xcd\x23\xce\x91\x01\x12\x58\xec\x47\xa3\x1f\xa6\x33\xe8\x02\xb2\xa2\x94\x7f\x31\x25\xdc\xd0\xbb\x1d\x62\xbd\x14\xac\x54\x79\xa8\xad\xcf\x2e\x65\x3c\xa9\xfc\x8b\xe3\x19\x95\x72\x4e\xab\x3d\xc9\x2c\xf4\xce\xc0\xaf\x21\xd3\x10\xff\x12\x4e\x16\xba\x59\x7e\x9a\x19\x1b\xe4\xc9\x34\x7b\xa3\x1f\x04\xa5\x2a\x6b\xeb\xcb\xe4\xa0\x92\x2c\xae\x0b\xbd\x90\x34\x41\x42\xa1\x1b\xc6\x59\xc8\x87\x47\x5b\x24\xb7\x96\x11\x20\xdd\xe0\x92\x89\x0f\x26\xd8\x9a\x99\x5f\x59\x09\x8e\x13\xe6\xf0\xe1\x2c\x3c\x9e\x60\x93\xd5\x41\x99\x3d\x0e\x81\x49\x12\x53\xce\x4d\x53\x48\xe1\x83\x72\x23\x74\x5c\xce\xe4\x35\xcd\x16\xb8\x6b\xa4\x5d\x07\x52\x1c\xba\x6c\x32\x9c\xf5\x28\xdd\x95\xb8\x1e\xf9\xcf\xf1\x7a\x6b\x78\x1b\x81\xb3\x3c\x7e\xe6\x4c\xe8\x9e\xb3\x08\x39\x69\xa3\xdc\x9a\x6d\xb0\x01\xdc\xed\xb0\x0a\x13\xa5\xd5\x1e\x18\x42\xb9\x13\x98\x2b\x5e\xb1\x21\x80\xb5\x94\xc0\x9e\xb4\x1f\x50\x57\x39\xa3\x8c\x82\x5f\xde\x8d\x74\x46\x1c\xae\xb2\xcd\x4d\x47\x33\xd9\xc6\x95\x9b\xc1\x7a\x91\x2f\x46\x38\x77\x64\xdf\x3d\xc6\x00\x22\x3d\xcb\xb1\xd0\xd4\x86\x50\x16\x37\x3d\x4f\xc6\xa0\x4b\xbb\xdb\x95\x7c\x7c\x96\x52\x97\x80\xc3\xf5\x1d\x28\x0a\xcf\xda\x9a\xeb\x5c\x71\x5a\x5d\x46\xc3\x70\x7d\xd7\x94\x4b\x3a\x5d\xd7\x68\xa0\xc6\x4e\xf6\xc8\x6e\x2c\xaa\x1e\x0b\x3b\xe9\xab\x04\xbe\x7a\x6f\xac\xc3\x4a\x71\xfc\x11\xa1\x79\x46\x5f\x6f\xb5\xf1\x64\x8b\x82\xe6\x8a\x8e\x72\xd5\xe1\x7a\x48\x39\x38\x24\x29\xb7\x50\xf8\x31\x96\xd8\xb8\x08\x93\x43\x93\x6b\x84\xa0\x84\x1b\xdf\xa9\x0a\x97\x91\x1a\x03\x66\xe5\x26\xc6\x25\x7e\x50\xfa\x18\x8b\x6f\x6d\x08\xb6\x4d\x76\x9a\x14\x58\xb0\x4f\x87\xd0\xa2\xf7\x6a\x2f\xe8\x54\x04\xf0\x4d\xc0\x7a\x6a\x56\x3f\x26\x7b\x1b\x76\x77\x8f\xd8\x5d\x16\xa1\x38\x72\x87\xe1\x39\x43\x94\x01\x79\x1f\xb4\x80\xe2\x7c\x8b\x94\xe5\x6c\x7b\x59\x9e\x61\x6a\xe1\x60\x64\x68\xf5\x0e\xb2\x39\x69\xed\x31\xc7\x0a\x06\x1f\x82\xec\x3a\x95\x68\x94\x39\x03\x1d\x8e\x93\xea\x69\x34\xba\xa3\x65\x13\x84\x1d\x17\x8f\xb8\xde\x96\x34\x8c\x74\xaf\x26\xd2\x82\xca\x43\x70\x4a\x37\x51\x4b\x06\x0a\x6b\x98\x44\xd4\xa9\x5e\x25\x3b\x9c\x6d\x30\xd1\x8c\xf7\x39\x99\x6f\xf6\x85\xb8\x0b\x72\xb1\x9f\xf0\x40\xf7\x78\x6e\xd1\xf4\xa3\xbc\x86\x77\xae\x8c\xbd\xf5\xe1\xdc\x20\xdc\xe3\x19\x68\xc4\xf5\x93\xf7\x95\x43\x34\x82\xda\x88\x38\x54\x80\xf7\x76\xbf\x6f\xf0\x5b\x3c\x7f\x4f\xf3\xb4\x87\x2d\x07\xa0\x14\x7a\x7c\xde\x84\xdb\xfd\x18\x28\x8e\xa9\x86\x38\xec\x71\xcc\x9c\x84\x3b\xd8\xec\x35\xbc\xb7\xf9\xea\xd2\x94\x15\x78\xdd\x76\x52\x01\x48\x94\x69\x91\x1f\xcd\x56\x9b\xfa\x5b\xbc\xae\x56\xa3\xcd\xb7\x2a\x54\x87\xad\x53\x15\xdd\xc0\xde\xd4\xc8\x69\x28\xf0\x63\xd2\x2d\x7e\x25\xb9\xcf\x8b\x9b\xe5\x8b\x15\xbc\xf8\xe7\xbf\xe8\xff\x7f\xfe\xeb\x8b\xa1\xa6\x22\x69\x69\x4c\x54\xb8\x6e\xc8\xd3\x26\x17\xee\xc3\x91\x76\x7b\xdf\x29\x32\x64\x5e\x50\x9f\xa1\xe0\x46\xb6\x42\xbc\x97\x62\xa0\x59\xc4\x3b\x0d\x54\x57\x13\xc0\xba\x52\x86\xde\x6c\x31\x16\xeb\x46\x38\x04\xc8\x22\x19\x0b\xa0\x9c\xb3\xb6\xe6\x45\x0a\x78\x27\xf7\xb3\x41\xa9\xe9\x48\xa4\x31\x35\x75\xe2\x23\x1e\x23\x49\xd9\x0e\xc3\xca\xe0\x75\xe8\x55\x34\xaa\x4f\xe0\xe3\xad\xed\xd9\x0a\xf2\xcf\x04\xf0\xc5\xc0\x77\xf2\x6c\x9c\x0c\xb2\x0f\xef\xbd\x14\x81\x18\x35\x4e\x50\x61\x36\xd1\xac\x29\x36\xe1\xea\x42\x09\x8f\x24\xea\x58\xce\x88\xc1\xac\xb8\xfd\x18\x8b\x67\x60\x8c\x9d\x46\x77\x1e\x1c\x59\x5e\x20\xf6\x17\xd0\x2d\xe0\x97\x22\xa6\x1b\xca\x24\x22\xa6\x98\x62\x9f\x88\x98\x4d\x10\xa1\x81\xce\x81\x2c\x45\x04\xfd\xc5\xe6\x34\xb6\x1a\xe3\x86\x7c\x3d\x32\x56\x94\x4e\xfe\x09\xb8\x42\xd0\xcb\x0d\x04\x3a\xa8\x71\x4e\xea\xe9\xb0\xae\xed\x86\x4f\xcb\xec\x1b\xd2\xda\xde\xdc\x4b\x66\xce\x64\x78\x0f\x24\xb1\x49\xf9\x43\x51\x0a\x4f\xa7\x6d\x77\xb1\x0e\xc7\x76\xa2\x73\x8c\x97\x73\x42\x90\x82\x21\xa2\x42\x77\x89\xad\x75\xba\xd4\x79\xe9\x7b\x3c\xd3\x5d\xa5\x01\x37\xa4\xb8\xaf\x83\x6b\x6e\x8f\xa3\x62\x53\xc2\x98\xd2\x6e\x33\x53\xc3\xcc\xa5\x24\x1a\x9a\x95\x43\xc1\xde\xda\x1a\x74\x8d\x8a\x44\x2a\xfe\x6b\x12\x15\xd4\xbd\x4b\x55\xc7\x4c\x2c\x46\x8b\xd2\xfa\x60\x2a\x1c\xde\xf2\x35\x3c\x4a\x74\xf1\x18\x88\x9d\xc0\x61\x81\xc5\x24\x7d\x67\xa0\x9c\xe9\x26\x01\xb0\x94\x07\xbc\x7f\x68\xc8\x78\xfa\x7a\x74\xca\x79\x14\x3b\x23\x26\x62\x04\x17\xa4\x88\x44\xb4\x4b\x14\x31\x58\xe0\x29\x6c\x16\x8c\x6a\xd1\xa7\x52\x4f\x4a\x7a\xd7\xe1\x21\x6c\x7e\xf3\x6a\xf3\x19\x1d\xb5\xc3\x7f\xf4\x28\x4c\xa6\xe4\xbe\x4c\x83\xca\x14\x5e\x66\xfc\x4d\x45\x9f\xf8\x9b\x57\x49\x72\x11\x40\xfe\x4c\xe2\xf8\xf8\x9b\xe9\xdb\x6d\x2c\x03\xab\xc6\x33\xb0\x5c\x3b\xdb\x75\xe2\x03\x79\x91\x1c\x17\xa9\x20\xb9\xeb\x5e\x1f\xd1\xc4\x38\x63\xa0\xfb\x6a\x5c\x14\xb8\x08\x76\x53\x91\x41\x8e\x9f\x74\x28\x65\x21\xac\x6c\x09\xac\x88\x29\x5a\x2c\x78\x95\x13\x19\x94\xa9\x65\xa4\x94\x5f\xb9\x55\x42\xb9\x30\xae\x06\x92\x14\x39\x21\xfe\x46\xd4\x8c\xb6\x94\xd3\x9d\xd9\x2a\xcc\xa3\x82\x0a\x5d\x50\xda\x24\xb9\x31\x50\x4c\x1c\x6f\xcf\x31\x74\x89\x20\x44\xf9\xeb\xef\xbe\xf9\xc3\x57\xab\xd7\x6f\xbf\x2b\x61\xd7\xa8\x3d\xf8\xb3\x09\xea\x21\x6a\x9c\x9c\xe8\x2d\xa9\x5d\x39\x44\xbe\xb6\x6d\x49\x42\x2c\xaa\xd8\xab\xf3\x11\x6a\x84\xae\xcd\x1d\x09\x63\x19\xb2\xee\xf8\x5c\x93\x95\x7a\x4d\x1c\x19\xc7\x2c\xa5\x38\xc0\x01\x1d\xba\x56\x19\x34\x21\x76\xbd\xd4\x11\xcf\xca\xcf\x13\xa1\x49\x4d\x8e\x4e\x26\x46\x3e\xb9\xf6\x1b\xf3\x78\x01\x90\xc8\x58\xc4\x96\x04\xda\x9a\x4c\x42\x32\xa7\xaa\xeb\xc4\xc2\xb7\x7c\xa5\xc7\x89\x9e\x5f\xc3\x8f\x7e\x72\xbf\x47\x46\x9c\x28\x72\x29\x06\x7d\x44\xe8\x73\xcf\x40\xab\x8c\xe2\x6c\x8c\x0b\x79\xb1\x16\x2e\x04\x9f\x16\x63\xd3\xef\xb5\xa1\xec\xcc\x60\x43\x3e\xbb\xd1\x9e\x75\xe5\xc7\x1f\xbe\xf3\xd0\x59\x6d\xd2\x55\x92\x91\x90\x86\x8a\xad\xb0\x27\xd3\x58\xa9\xbf\x45\x90\x2e\xd6\x39\xe9\x89\xcc\xf0\x6b\xf8\x7c\x36\x19\x2a\x6b\xbc\xf6\x41\x9a\x44\xe0\xef\xde\x9a\x91\xb2\x35\xda\xdc\xfb\xd8\x73\x13\xe7\x39\xec\xac\x4f\x86\x94\x2b\x2e\x5c\x07\xa7\xdc\x8d\xf3\x70\x46\xf0\xe3\xd8\x23\x3a\x4f\x2a\x24\x76\x30\x32\xc8\xdb\x61\x95\x9f\x06\xa4\x83\xda\xf0\x56\xb3\xe7\xb2\xbb\x9d\xe6\x42\xd1\x8c\xf1\x83\x65\xe9\x5b\x03\x6f\x74\xf8\xba\xdf\xb2\xd5\x18\x40\xc0\xbd\x0e\x87\x7e\xbb\xae\x6c\x2b\x95\x8b\x5b\x49\x26\xee\x84\xca\x6d\xa4\xf2\xc8\xa9\x24\x22\x4e\x9d\xd6\x42\xa8\xf7\xe8\x62\x53\xca\x53\x34\xef\x5a\xb2\xe0\xee\x2e\x2d\x41\x32\x1d\x9f\x30\x4b\xb0\xdc\x80\xca\x07\x9c\xc4\x3c\x91\xb1\x96\xc0\xe7\x11\x0e\x85\xa0\x43\x55\x73\x9e\x13\x53\x97\x6c\xbf\xc9\xe9\x34\x8d\x3d\x79\xce\xa1\xb2\x2c\x53\x46\x2b\xc6\xc6\x21\xdd\x77\x34\xb5\x14\xe4\xc8\xda\x50\x62\xcf\x77\xc3\xcf\x72\x5e\x8e\x1f\x9a\x64\x61\x4a\x8f\x81\x9f\x94\x4f\xab\xb5\x6b\x53\x46\x72\xf2\x1f\x82\x55\x83\xd3\x6d\x4e\x5e\x46\x19\x89\x07\xee\xb3\xac\x49\x43\x69\xad\x8f\x29\x84\xb8\xbe\x99\xd4\x54\xd8\x9e\x89\xe7\x78\x22\xe1\x75\xd8\x28\xca\x8f\x13\x85\x56\xdd\xe3\x64\x7a\xa6\x99\x46\x36\xd2\x61\x1a\x41\x50\xa2\xb4\xe2\x62\x1a\xf3\xc9\xa0\x5d\x17\x8a\x67\xc9\xc2\x3e\x56\x7a\x4a\xe5\xbe\x49\x05\x56\x0a\x33\x3e\x28\x0a\x1d\x72\x7c\x55\x3c\x93\x69\x2f\x62\xb7\x23\x3c\x2a\x0b\xe0\x2d\x91\x2d\xcd\x4e\xde\x61\x8b\xec\x40\xc5\x33\x8d\x98\xe0\xf4\x4e\xf9\x00\x41\xb7\x03\x2a\xc3\x8f\x63\xbe\x10\xcd\x4a\xd7\x07\xf2\x8a\xd2\x81\x30\xc5\xcb\x06\xcf\xbb\x57\xda\xac\xe1\x9b\x91\x65\x18\x1a\xfd\xd8\x9c\x5c\x76\xfb\x48\xf7\xd3\x5d\xf9\xe1\xa3\x25\x1a\x07\x4d\x86\xe7\x3c\xde\x4e\xf2\x5c\xf1\x55\x2e\x5f\x91\xe5\x4f\x11\x93\xc3\xdb\xd8\x1b\x96\x53\x90\x47\x59\x7c\x9c\xbf\xb4\xf8\x93\xe9\x17\x91\xea\x4d\x6d\xd3\xe5\x9c\x41\x82\xd6\xac\x28\x37\xb4\xc3\xaa\xdc\x99\xab\x76\x01\x19\x59\x10\xa7\x15\x7d\x3f\x17\xcc\x6d\x72\x40\xf1\x0d\x6f\x69\x14\x20\xac\xe4\xa5\x32\xd2\xfd\x47\xc4\xb5\xd9\xcf\xb7\xc8\xa4\x9e\xdc\xe5\x53\x29\xae\xaf\x9c\x6d\x1a\x01\x73\x86\x86\x01\x79\x0a\x5b\xe5\x9e\x34\x0b\x32\xb4\x55\x6e\xaf\x0d\xdf\x33\xfa\x07\x5d\x75\xf1\x2c\xa4\x49\x47\x8d\x27\x01\x3d\x7d\xa4\x2c\x96\xe1\x22\x41\x56\x5d\xe7\xac\xaa\x0e\x11\x50\xc2\x7a\x9f\x3b\x7e\x88\xc6\xb5\xad\xfc\x76\xcc\x85\xef\x10\x6b\xb2\xc8\xad\xed\x4d\xb2\xc8\xb1\x55\x53\x76\x44\xd7\xd7\x1a\x4c\xbf\x72\xe6\x72\x8d\xec\x27\x91\x6c\xab\x5c\x48\xe9\x92\xaa\x6b\x68\x52\x67\xcc\x00\xb4\xf0\x3e\x52\x10\xdf\xf6\x4d\xd0\x5d\x93\xcb\xbc\xa9\x42\x22\x76\x72\x68\x2b\xa5\x4c\x08\xdd\x11\x27\x38\xe5\x18\x8e\x6b\xf0\x88\xcd\x94\xb6\xe2\xd8\xa5\x37\x32\x8c\x92\xf7\xc6\x56\xf7\x1f\x36\x83\xde\xee\xc2\xc9\x29\x0a\xe8\xe8\x47\x92\x47\xea\x07\x0a\xd6\x42\x63\x25\x18\xd9\xe9\x90\x71\x70\x41\x6d\x9e\xd0\x9c\xae\xd1\x41\xd0\x9e\x74\x33\xd4\x45\x69\x97\x2e\x45\xc6\x8c\x23\x30\xa0\x03\x6c\xb1\xb1\xa7\x5c\xcb\x8c\xdb\xe7\x09\x4f\x6c\x87\x86\x38\xbd\x3f\x84\x61\xc9\x54\xa1\xfe\xe0\x82\xd1\x6f\xf2\xd4\x51\x7d\xef\xff\xb3\x34\xe3\x4c\x72\x01\x9b\x72\x03\xb1\x14\x21\x9d\x85\xd2\x48\xa0\xf9\xe4\xb2\x87\xc0\x5d\xb8\xfd\x7b\xef\x83\x14\xeb\x46\x09\x03\xdf\xdc\x11\x6c\xf5\x2e\x76\xd0\x08\x4c\xa2\x8f\x94\x8e\x65\x60\x90\xdb\x39\x29\x38\xf5\xba\x46\x28\x9f\xdf\x2c\xcb\x3c\x63\x68\xa0\xe4\x49\xda\x54\x4d\x5f\xf3\x31\xc5\x8c\xa4\x5c\x8d\xea\x7c\x2b\x28\xb9\x24\xba\xe2\xe6\x0b\xfa\x61\xbb\x40\x3f\x28\x4f\x2e\xa3\xae\xa2\x3c\x95\xe2\x0b\xbf\x18\xaf\x10\xc8\x8b\xc6\xef\x07\x94\x49\x46\x90\x5b\xe8\x40\x55\x12\x38\x92\xdd\x3b\x29\x57\xa7\xec\x6f\x47\xaa\x1f\xbb\x3e\x26\x7d\xf6\xc3\x6c\xfa\xed\x1e\xcf\x03\x0e\xc8\xb0\x66\xf5\x01\x6c\xe8\xf9\x4d\xda\xe2\x12\x9e\xdf\xa4\x2d\x2e\x6f\x9e\x73\xe9\x6a\xb9\x7a\x7e\x53\xd9\x66\x49\xef\x44\xd0\x6b\xbe\xc4\xcb\x5f\x52\xcb\xd6\xe4\xbf\x5d\xd8\x3c\xbf\xb1\x5d\xd8\x24\xbc\x7f\x09\xbf\xc0\xf0\x44\x4e\x7a\x78\x96\x0a\xd1\xcb\x4b\xc5\x70\x1f\xa3\x18\xac\x84\x1f\xa5\x19\x8f\xed\x9d\xce\x65\x33\x41\x51\x97\x1b\x88\x68\x87\x5f\xc1\x64\xc0\xd7\xd8\x74\xcb\x0d\xc3\x12\x63\x7e\x63\x71\x7c\x1c\xa1\xc8\x8b\x0f\xc0\xf8\x8f\x9b\x85\xd1\x35\xe9\xab\xb6\xbe\xe8\x5b\x19\x75\xd0\x47\x07\xcf\xbd\x9e\xad\xf5\x21\xf6\x84\xfa\x0c\xf2\x2e\x7c\x5f\xdb\x05\x6c\x05\x29\xb1\x06\xbe\x78\xf7\x25\x5d\xe1\x08\xc5\x2d\x6a\xab\xfc\x7a\x31\x41\x23\xe3\xab\xaa\xf7\xc1\xb6\xfa\xe7\x98\x21\xb2\x6f\xe6\x50\x77\x54\x13\x8e\x1f\x3b\x70\x56\xe4\xfb\x6b\x7b\xa1\xe5\xe3\x5e\x38\xcf\x1e\x55\x39\xe4\xc1\xd0\x84\x44\x5e\xf9\x83\xd2\x08\x6a\x4b\x19\x6d\x2b\x55\x09\xa3\x8e\x7a\x4f\x06\x69\x88\x87\x59\xc8\xb8\xd7\x86\x0b\x76\xd9\x61\x29\x1f\x41\x7b\x69\x0e\x0b\x6a\xcb\xee\xfe\x06\xd7\xfb\xb5\x94\x20\x18\x47\xfc\x74\x44\xc9\x9a\x0a\x97\x53\x90\x96\x77\xcf\x98\xa0\x32\xe7\xc0\x88\xb5\x14\x22\x89\x2f\x1f\xac\x4c\x8e\xed\x02\x4f\x58\x7b\x9a\xa1\x7f\xc6\xd8\xec\x41\xff\x94\xbe\x15\x5e\x5e\xfc\x09\xb1\x39\xea\xb4\x19\xd5\x36\x32\x6c\xcf\x4d\x20\x57\x16\xfa\x74\x58\x24\xb3\xb5\x91\x6f\x2f\x64\x85\x11\xa0\x4a\x83\x9e\x60\xb6\xf7\xd8\x39\xdd\x2a\x77\x2e\x63\x67\x6a\xac\xdb\x5a\x43\xfe\xf3\x61\xb9\x89\x9d\x5f\x8c\x31\xc8\xd7\x50\xdc\x4b\x31\xaf\x9c\xc7\x2b\x19\x89\x8d\x60\xd7\x04\xfd\x4a\xef\x1d\xe7\xc6\x17\x5f\x07\xc4\xc3\xc8\x70\xbc\xe2\xea\x6a\x82\x38\x0d\x99\x89\x31\x92\x2b\x19\x19\x03\x9c\x15\xeb\xaf\x60\x9d\x1f\x56\x30\xee\xa5\x9d\x65\x63\xde\xf7\xed\x28\x37\x19\x60\x5c\x49\x16\x7b\xd1\xb5\xd8\x8f\x68\x5d\x1b\x81\x01\xa1\x75\xfb\xc9\x67\xff\xc5\x9d\x40\x25\x38\xdc\x2b\x57\x37\xe8\x19\x53\x38\x25\x7a\xe5\xf3\xf7\x5f\xfd\xf0\x7d\x39\x7c\x26\xa7\xaa\x20\xa0\x09\xe5\xd5\x4a\x1b\x09\x7b\xbe\xa2\x3b\x33\xaf\x67\xb7\xea\x1c\x81\xc8\xde\x9c\x14\x07\x31\x52\x73\xf6\x31\x24\x76\x13\xd4\x79\xa7\x44\x5e\x59\x84\x91\xe3\xe4\x22\x2e\x58\xa6\x14\xab\x1e\xda\x69\xbf\x7c\x44\x45\x6e\x6f\x6f\x8b\xe2\x8f\x92\xa3\xa7\x2f\xd9\x38\xd7\x8b\xf0\x0a\xb7\x3f\x26\x98\x2e\xf5\xb7\xe6\xa2\x71\x02\x8d\xad\x4b\x98\x70\x11\x0e\xd8\x0a\xba\x39\xe4\x05\x2a\xb7\xda\x64\x84\x94\xbf\x7c\xe3\xef\x08\x62\x53\x4d\xc4\x09\x74\xf0\xd8\xec\xd6\x45\x31\x2f\xed\xed\x2c\x25\xff\x23\xe0\x47\x20\x73\x69\x3f\xab\x57\x80\xaa\x3a\x44\x3e\xcd\x05\x83\xc5\xc0\x20\x83\x63\xc3\xc7\x7a\x9c\x77\x5c\x7c\x37\xc7\x4f\x3d\x57\xa7\xee\x31\xf8\x15\xfc\xa3\xb7\x01\xfd\x0a\x30\x54\xeb\xf5\x5a\xba\x77\xdb\x68\xcb\x22\x0f\x7e\xa0\x01\xf1\x65\xfa\xca\x46\x25\x88\x97\xac\x9a\x32\xfb\x5e\xed\xd1\x73\xed\x3e\x44\x99\x13\x07\x8d\x14\x1e\x48\xde\x49\xcb\xe3\xdb\xa1\x4e\x3e\xae\x91\x93\x7b\x26\x22\x0d\x03\x77\x63\x46\xf0\x81\x1b\x74\xb6\x12\x7c\x67\x36\x5a\x65\xce\xd3\xf5\x1b\x1d\xd0\x29\x0e\xe9\x87\x5d\xd4\x47\x4a\xce\xeb\x6b\x26\x3e\x3b\xee\xef\xe2\x44\x31\x09\x76\xef\x54\xdb\x0a\x92\x67\x9b\xf5\xe0\x5a\xc7\x74\x79\x63\x91\x33\xda\x53\x54\xdc\xb1\xab\xbd\xa1\x9d\xec\xe3\xf7\x9d\xa7\xd8\xa5\xfe\x46\x4b\xe5\xb3\xb5\x0e\x97\xeb\xd4\x63\xca\x9f\xac\xc8\xe0\xe8\x58\xc7\xad\xa7\x43\x4b\x52\x38\x10\x81\x49\x99\x85\xab\x0b\x6f\x74\x28\xc6\xdf\xdc\xac\x22\x32\xb1\xdb\x81\xd0\x10\x0b\xc2\xdf\xbe\x48\x77\x89\xf4\xed\x81\x43\xba\x05\x39\x8c\x26\xbf\x5d\xf0\x77\x02\x15\x45\xcf\xc4\x2c\x1d\xbe\x0e\x17\xdf\xc0\x30\x6d\xaf\x4d\x85\x17\x9f\x73\xad\x8b\xe2\x73\x73\x4e\x4c\x13\x9f\x1e\x43\xb2\xa2\xa9\x63\x20\x16\xea\x72\x9e\x9b\x6b\x99\xf3\x7c\x37\xb6\x7d\x7b\x46\xe9\xc0\xdb\x15\x51\x12\xdb\xb2\x12\xc3\x32\xfd\x90\x36\x77\xd2\x10\xf9\x22\x75\x8e\xe5\x66\x00\x91\xdc\x8b\xa1\xb9\x87\x23\xdf\x2b\x74\x58\x3c\xc4\x7c\xb0\xa0\x0c\x77\xc3\x14\xad\xaa\x0e\xfc\xc5\x6b\x2c\x3f\xb3\xa7\x90\x76\xd9\x31\x93\x09\x17\x65\x89\xc5\x39\xeb\xa2\xf8\xd5\xaf\xe0\xdd\x64\x1c\xef\xb7\x78\x7f\x31\x5f\x2a\x16\xe2\x65\xf7\x96\xf6\x7b\x85\xbf\xd1\x07\xc3\x43\x51\xbd\x50\xe1\xf2\xcb\xe3\x65\xec\x64\x17\x82\xd1\x96\x4b\x0c\x91\x6e\xa4\xa4\xf4\xfc\x31\xce\x16\xb9\xf4\x1a\x3f\x7a\x4b\x98\x96\x76\xf9\x16\x47\x5e\xd7\xf0\x75\xfc\xc0\x25\x7f\x12\x95\xd0\xd2\x44\x55\x9b\x08\x57\x73\xe0\xbc\x2a\xbc\x15\xe7\x95\x40\x10\x8f\x38\x78\x1f\x19\xc4\xd7\x32\x72\xda\x58\x7b\xcf\xc7\xb4\x2e\x8a\xb2\x2c\x89\x54\xf1\x4f\x36\xff\x8b\x6c\xeb\x16\x1b\x01\xf4\x86\xc7\x92\x44\x5f\x3e\x27\x4d\x5b\x6c\xe0\xd5\xf8\x51\xbf\xd8\x00\xbb\x8e\xf8\x50\xca\x01\xd3\xb9\xf9\xe3\xbc\xc5\x06\x16\x8b\xfc\x50\x3e\x1b\x9b\xcd\xcf\x3e\x9f\xc6\xa6\x4f\x3c\xd2\x9c\xd1\x47\x1e\x23\x3e\x46\x7d\xbd\x34\x29\x0a\x79\x98\xc3\x96\x77\xca\xd1\xd0\x37\x3f\x7d\x4e\x57\xf2\xf2\x89\xdc\xff\x19\xa3\xa9\x0f\x9d\x96\xfc\xe5\x76\x31\x3c\x8d\x2d\xc5\x53\x32\x29\x2f\xa2\xd1\xdc\x8c\x9b\x26\x0c\xed\xb8\xd3\x09\xb9\x25\x74\xb6\xec\x90\x74\x31\x29\xa3\x1f\x16\xa3\x37\xe4\x01\xe4\x39\xb7\x5d\xe5\x57\xc9\xab\x4c\xd7\x18\x9a\xa8\x66\x8b\x0c\x1d\x51\x44\x0c\x16\xf9\x31\xb7\x36\xcd\x88\x18\x1d\x9a\x5e\x4d\x1f\x4e\x9b\x8e\x66\xd4\x63\xdb\xcc\xec\xa9\x38\xad\x29\x99\xe4\x8d\xa6\x4f\x87\xce\x93\xd9\xf3\xd4\x0a\x32\xa3\xcc\xad\x0b\xd3\xa1\xa3\xa2\xf0\x6c\x30\xe7\xc2\xf3\x67\xb9\xf6\x37\x7f\x31\xa9\x66\x2d\x36\xf0\xe7\x9c\x43\x2f\xfe\xe3\xe5\x95\x05\xd3\xfe\xeb\x64\x69\x2e\xa2\xd0\xba\xe9\x71\x2a\x96\xcc\x18\x9d\x20\xfe\xf3\x77\xa3\xda\xc5\xfc\x55\x1c\x3e\x92\xdc\x00\xb4\xcf\xc6\x8e\x30\xeb\xcb\x19\xbd\xa9\xed\x7c\x7c\x02\x57\xaf\x3e\x17\xa8\x74\xb1\x81\xdf\x4e\x1e\x33\x88\xb9\xd8\xc0\x27\xe9\x69\xc6\x20\x67\x6b\x46\x68\x6f\x4e\x7b\x80\xe5\x66\xe3\x33\x76\x36\x7b\xce\xb1\xc8\xb5\x67\x11\xec\xa2\xfb\xf1\xef\xe2\x2d\xff\x36\xb6\xb2\xb8\xc2\x89\x13\x4e\xfe\x4d\xf4\x63\x4a\xf1\xd2\x1a\x31\x72\x41\x2b\x30\xfe\x90\x1e\x72\x38\x38\x1d\x38\x4a\xea\x67\xb2\x8f\x49\xf2\x62\x03\x9f\x8e\x9e\xa4\x8c\x76\x36\x78\x48\x52\xa7\xe4\x39\xa7\x49\x63\x8b\x7f\x91\x4f\xe3\xa0\xe0\x8d\xb4\x43\x72\x59\x9f\x9b\x80\x52\x34\x50\x14\x7f\xca\x9e\x92\x9d\xa4\x1f\x22\x85\x04\xd6\x49\x2f\x25\xb9\x72\x97\x4a\x80\x6b\xf8\x2e\xd6\x02\x5b\x54\xc6\xe7\x84\xb1\x48\x5f\xd0\x9d\xb8\xf9\x6b\x1c\x7d\x5d\x54\x19\x26\x01\x49\x19\x7b\xf5\x54\xc8\x9f\x20\xd2\x35\x2d\xb6\x38\x8e\xec\xae\x34\xe5\x46\x74\x3b\x85\x82\x99\xd7\x18\x34\xe4\x8c\x48\x99\xba\x90\x00\x55\xf6\x99\x93\x2d\xc3\xc9\x5b\xfe\x8b\x08\x3f\xc6\x36\xaa\xa1\xba\x99\xcb\x4a\xc1\xf2\xe4\xbc\x58\x91\xea\xa1\xe3\xc0\x35\x31\xb0\x96\xa8\x6b\xf2\xcd\xe2\x28\xc1\x1b\xf5\xa7\x0e\x5f\x44\x0d\x9d\xc9\xa3\x91\xbc\x48\x61\xf9\xaf\x28\xbc\x9f\x71\x90\x8e\x43\xfe\x3e\xca\x88\xe5\x11\xe4\x41\x4f\xcb\x75\x51\xc4\xbf\xc0\x50\xce\xc4\x9e\x7b\x87\x73\x33\x4d\xd7\xcb\x07\xa1\x29\xc4\x4a\xbb\xdc\xa6\xcf\xec\xcf\xda\xec\x8b\x04\xe4\xf2\x4e\xe4\x0f\x38\x24\xee\x87\xb0\x8d\x5b\xe7\xb9\x47\x2d\x87\x7f\x7e\x0e\x20\x49\xf0\x56\xd0\x21\x48\xaf\x86\x54\x4b\xe1\x8d\x95\xdf\x45\x3c\x19\x43\x82\x4f\x25\x41\x9c\x0f\xff\xa1\xdf\x9e\xe5\xc9\x66\x1c\xca\x3d\x5b\xec\xc2\x66\x4f\xb6\xf5\x9f\xc5\xb3\x67\x57\xaf\x54\xf1\xec\x5f\x2b\x19\xe7\xfa\xed\x79\x3c\x52\xae\xe3\x27\x71\xc0\x6c\xae\xdc\xba\xf1\xc0\x4f\xd3\x85\x7b\xeb\x28\x7a\xd7\x8d\x72\xcd\x39\xcb\x96\xbd\xb2\x84\xfc\x24\xb2\x39\x9b\x2f\xd7\x1f\xc5\xe5\xcb\xb5\xdb\xfe\x07\x58\xfc\xbf\x00\x00\x00\xff\xff\x3d\x0b\x56\x55\xa5\x49\x00\x00"
-
-func runtimeHelpOptionsMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpOptionsMd,
-               "runtime/help/options.md",
-       )
-}
-
-func runtimeHelpOptionsMd() (*asset, error) {
-       bytes, err := runtimeHelpOptionsMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/options.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeHelpPluginsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7c\x6d\x8f\xe3\x36\x92\xf0\xe7\x47\xbf\x82\x8f\x83\xc3\xd8\x03\xb7\x7a\x0f\x87\x3b\x1c\x0c\x24\xc0\x4c\x92\x99\xcc\xdd\xbc\x2c\xa6\x3b\x1b\x1c\x82\x01\x44\x4b\x25\x99\x69\x89\x54\x48\xca\x6e\x67\xb1\xfb\xdb\x0f\x55\x45\x52\x94\xdb\x33\x9b\xdc\x7d\xb9\x7c\xc8\xb8\x2d\xb2\xde\x59\x6f\x2c\xf9\x2b\xf1\xe7\x7e\xea\x94\x76\x45\xf1\x4e\xd5\xd6\x08\x37\x8d\xa3\xb1\xde\x89\xda\x82\xf4\x4a\x77\x62\xe4\x05\xe2\xa4\xfc\x41\x48\xe1\xd4\x30\xf6\x20\xde\x4e\x52\xb8\xb3\xf3\x30\x94\x11\x84\x90\x16\x8a\xd6\xf4\x0d\x58\x27\x6a\xa3\xbd\x54\x1a\x01\xe0\xd2\x56\xf5\xe0\x84\xd4\x8d\x18\x8d\x73\x6a\xdf\x9f\x85\xf1\x07\xb0\xc2\x99\xc9\xd6\x10\x9e\x8f\xbd\xac\xa1\x29\x94\x16\xd5\xdf\x6f\xcb\xda\xe8\x56\x75\xb7\x03\xd2\x75\x8b\x54\x54\xa5\xb8\x3f\x40\x20\x48\x34\xca\x42\xed\x8d\x3d\x8b\x35\x92\x86\x9b\x68\xd1\x46\xb8\x83\x99\xfa\xa6\x08\x24\x08\xe9\x45\x0f\xd2\x79\x61\x34\x24\x62\x88\x16\xa9\x45\xa5\x74\x6b\xca\x5f\x9c\xd1\x15\x7d\xcf\x28\xf0\x4b\xfa\xb3\x18\xad\x39\xaa\x06\x69\x6f\x1a\xe5\x95\xd1\xb2\xa7\xa7\x76\x90\xf8\x97\x70\x53\x7d\x10\xd2\x09\x7f\x00\xa1\xe5\x00\xc2\xb4\xf4\x99\x89\xdc\xe2\xe7\x82\x3f\x3f\x73\xe2\x04\x7b\xa7\x3c\x6c\x45\x03\x23\xe8\x06\x74\xad\xc0\x6d\x05\xf8\xba\x2c\x4b\xf1\x03\x58\x10\x0a\xa5\x24\xe0\x51\x92\x94\x67\x3a\x5a\x6b\x06\x02\xdc\x99\x04\xfb\x74\x50\xf5\x41\x1c\x02\xf6\xd6\xf4\xbd\x39\xa1\xc0\x89\x3f\xe7\xed\x54\xfb\xc9\xc2\xae\x28\xaa\xaa\x2a\xae\x09\xf4\xb6\x33\x37\x0c\xec\xb6\x10\x42\x88\xce\x94\xfd\x24\xe9\xa3\x85\x91\xc5\x42\x7f\x1d\xa0\x1f\x79\x09\x2f\x0b\xbb\xca\xa1\x21\xd8\x05\xca\xac\xe2\xdd\x2c\xc6\xa8\x7f\x26\x6d\x40\x35\xd4\xa6\x41\x22\xed\x85\x78\xcc\xd4\x1d\x48\x4a\xf4\x7c\x90\x67\xb1\x07\xd1\x28\xe7\xad\xda\x4f\x1e\x1a\x21\x6b\x6b\x9c\x13\xc3\xd4\x7b\x15\x2d\x8f\xcc\x85\x55\x95\x29\xb0\x58\x62\xce\xd5\x24\xf7\x66\xf2\x19\xe6\x85\xde\xa2\x5a\x8a\x06\x5c\x6d\xd5\x88\x3b\xb6\xe2\x08\xd6\xd1\x07\xb6\x94\xb3\xb0\xf0\xeb\xa4\x2c\x0c\xa0\xbd\x9b\x8d\x1e\x29\x96\xbd\x33\xc5\x41\x1e\x21\xb7\x12\x36\x69\xd6\x51\x2d\x35\xb2\x25\x9b\x06\x1a\xe1\x8d\x20\x15\x3c\x73\xc2\x4e\xda\xab\x21\x98\xff\xb6\x30\x6d\x58\x8f\x47\x03\xf0\x3c\x89\x7f\x15\xfe\x3c\x82\xdb\x15\xc5\x73\xf1\xad\xe9\x8d\x75\xf5\x01\x06\x70\xc5\x73\x71\x77\xd6\x5e\x3e\xf2\xde\xe2\xb9\xf8\x01\xfa\x31\xfd\xc1\xd4\xa5\x3f\xc3\xd2\x03\xc8\x06\x6c\xf8\xb6\x78\xa3\xc5\x60\x9c\x17\xb5\x74\x68\x85\x32\x8a\xe6\xa4\xfa\x5e\x9c\xa4\xf6\x48\xa9\x6c\x1a\xd2\x7e\x20\x51\xec\x27\x2f\x50\x99\x60\x51\xc8\x05\xed\x9d\xb7\x46\x61\x2c\xb6\xd7\x19\xd9\xc2\x58\xe1\x32\xba\x4b\xf1\xc6\x17\xca\x89\x49\xf7\xea\x01\xfa\x33\x19\x48\x02\xe7\x8d\xd0\xc0\x12\x43\x40\x63\xc6\x14\x9e\xea\x28\x3d\x63\x0b\xf7\x94\xc1\x52\xbc\x37\x99\x93\x48\xe7\x01\x8f\x18\xa0\x69\xd4\xd0\x10\x3b\x0f\x00\xa3\xd2\x5d\xb1\x50\x06\x32\xe9\x0f\xa0\xac\x30\xa7\xd9\xd7\x28\x7c\xe0\x44\x67\x4c\x23\x46\x2b\x6b\xaf\x6a\x28\x8b\xe2\xab\xaf\xc8\x2a\x6b\xd9\xf7\x7b\x59\x3f\xb8\xa2\x88\xd6\x31\x39\x36\x58\xc4\x43\x82\x61\x2b\xa9\x6b\x70\x8e\x0c\x01\x0d\xab\x9d\x74\x8d\x46\xe3\xc4\xde\xf8\x83\xa0\xa3\x4e\x16\x52\xa0\xe9\xa5\x93\xff\xda\x08\xe7\xa5\x6e\xa4\x6d\x44\xaf\xf6\x56\xda\x73\x29\xde\x21\x80\x84\x98\x4c\x86\xf0\x34\xd0\x2a\x0d\x0d\xdb\x53\x81\x5f\xe3\x22\xfa\x02\x92\xfa\x04\x1c\xd1\x98\xc5\x41\x8e\x23\xe8\xd9\x03\x21\xb6\x5e\xa1\xc7\x6c\x33\xa6\xd8\x34\x89\xb0\x00\x9e\xcd\xb2\x52\x5a\xf9\xf5\xa6\xda\x09\x7f\x50\x2e\x71\x13\xdc\x30\xda\xfd\xe4\xa0\x21\xcd\x9e\xcd\x64\xa3\x1a\x71\x97\x92\xbd\xfa\x8d\x4e\x68\x89\xde\xe5\x7e\xb1\x5f\xb9\x48\xb3\x6c\x3d\x58\xb1\x9f\xda\x16\x43\x0b\x89\x70\x0f\x90\x81\x80\xa6\x24\x4a\x46\x0b\x89\x98\x25\xfc\x19\x6c\x80\xb9\x87\xd6\x58\x78\x0a\x14\xe9\x78\x0a\xd7\x38\xff\x7b\x01\x33\xb1\x51\x28\xbc\xdf\xe8\x97\x84\xe7\xc3\x08\x7a\xbd\x9f\x5a\x04\x63\x27\x0c\xaa\xa8\x0d\x19\xa8\x40\x8e\xcd\x08\x1a\x9a\x18\x85\xc6\xc9\x27\x7f\x86\x84\xa1\x62\xc2\x5a\xb3\xff\x05\x6a\x9f\x81\xff\xb3\xd4\x10\xe1\x8f\x52\xc3\x15\x1c\xf8\xf5\x55\x24\x08\x7b\xe1\xb1\xe3\xe2\x25\x96\x17\xc4\xe8\x75\x04\x15\x3f\xac\xc8\x7e\xac\xea\x3a\xb0\x28\xe5\x33\x81\x9b\x1c\x58\x8c\x57\x60\x01\x51\xe5\x6b\xa5\xd8\x2b\xdd\xc8\x3d\x86\x64\x96\xe3\xda\x01\x88\xea\x1b\x76\x3b\x0f\x70\xc6\xe7\x4a\x77\xae\xda\x94\xe2\x45\xa4\x8c\xd4\xe4\xc4\x28\x1d\xda\x96\x74\x41\x58\x78\x60\x28\x18\x5e\x18\xa1\x05\x3f\x59\x92\x82\x31\x3d\x48\xcd\x06\x8c\xa7\x5e\x08\xa4\x8b\x72\x11\xdc\x78\x54\x70\xca\x2c\xd7\x42\x6f\x6a\xe9\x93\x5a\xc9\xc2\x65\xb2\xcf\x11\x2c\xc6\x98\xcc\xfc\x3e\x23\x22\x35\x0c\xd0\x28\xe9\xd1\xc5\x05\xcb\xbb\x2a\x30\x24\x27\x93\x59\x29\x3e\x12\xe1\x2e\xa3\x9c\x8f\x61\x38\x80\x0b\xda\x65\xce\x32\x41\xc2\x53\xaf\x6b\xe8\x89\xc0\x57\xc6\xa6\xc4\x42\xce\x12\x62\x78\x8a\x82\x11\x3a\x04\x7b\x16\xe4\x06\x23\x0d\xc2\xc9\x23\xb8\xcc\xf4\x8a\x53\x90\x0e\x67\x16\x98\x31\x24\x60\x46\xdf\xc9\x23\xac\xf7\xe3\x86\xb2\x85\xb2\x2c\x43\x36\x41\xe2\x6f\x65\xef\xa0\x00\x9d\x67\x0d\xfb\xb1\x12\x47\x69\x15\x59\x00\xd9\x83\x85\x16\x2c\xe8\x1a\xd0\x41\xe6\xc6\x98\xf1\xa8\x9c\xd8\x03\xe6\x3a\xf0\x08\x35\xa6\x09\x05\xe7\x80\x65\x70\x22\x08\xa8\xa7\xe8\x26\xfb\x93\x3c\x33\xf9\xf5\x64\x2d\x68\x1f\xe1\x95\x45\xf1\xa2\xef\x85\x3c\x4a\xd5\x67\xf6\xc7\x4e\x14\xdd\x1f\x34\x21\x0a\xe4\x56\x28\x1c\x04\x56\x39\xd1\x43\x2b\x2d\x89\x17\x07\x99\x27\x0f\x26\x44\xbe\xf8\x89\xf1\xb9\x11\x6a\xd5\x9e\x91\xfe\x5c\x7f\xd1\xb4\xaf\x99\x5f\x10\x45\x3d\x59\x67\x2c\x46\x51\x6d\x7c\xb2\xc9\x5c\x2c\xb5\x41\x05\xfb\x10\x96\x5e\x50\xa4\x41\x44\xec\xb7\x13\x81\x45\x71\x67\x38\x5b\x8d\xb9\x88\xd2\x1e\xec\x65\x7a\x8b\xb1\xf2\x71\x34\x6e\x16\x05\x3e\xc3\x6d\xa3\xac\x1f\x64\x17\x33\x9c\x22\x64\x38\x6a\xc0\xea\x81\x0f\x3e\xc6\xbd\x50\x3c\xe0\xc1\x0d\x1b\xc4\xe5\x4a\xa5\x69\x25\x65\x59\xe2\x28\xfb\x09\x82\x2e\x85\xf2\x29\x71\x22\x36\xa0\x11\x13\xf1\xb2\x4c\x77\x39\xf6\xcf\xc6\x88\x22\xeb\x03\xbf\x5f\x07\x3c\xeb\x15\xfd\xbd\xda\x14\xf4\x6f\xf9\xd6\x74\xeb\xd5\x0f\xd0\xf7\xf8\x55\x32\xc6\xc4\x13\xc5\xdd\xa4\xcb\xcc\x1e\xf6\xd0\x9b\x93\x58\x2b\x8d\xd1\x18\x33\x33\xe1\x54\xa7\x25\xe6\x15\x6e\xc3\xd1\x90\x10\x54\x64\xf6\x37\xa2\xba\x07\x3b\xbc\x03\xe7\x64\x07\xeb\xc1\x75\x2c\xe5\x56\xd6\xf0\xd7\xbf\x95\x65\x49\x41\x13\x90\x42\x69\x55\x7f\x16\x75\x6f\x1c\x04\xd2\xa9\x58\xb2\x4a\x7b\x21\x63\xe6\x3d\x30\xa0\x22\x07\xfe\xbd\xb5\xc6\xae\x31\x67\xa1\xf2\x03\xf3\x66\xdd\x6d\x45\xaf\x34\xbc\x9f\x06\xc4\xb7\x15\x60\x6d\x78\x70\x15\x61\x02\x7f\x89\x57\xe3\x4e\x63\x05\xdb\x83\x67\x47\x5b\x45\x5c\x09\xc9\x0e\x97\x61\xa4\x0b\x64\xbd\xd1\xad\x79\x29\x2d\x05\xcb\x60\xfb\x3e\x14\x55\x7b\x69\x45\x88\x55\x73\x6c\x09\xdb\x50\x27\xd7\x45\x74\xb2\xca\xa3\xcf\x0a\xfc\xe3\x61\xa8\x7a\xd3\x95\xfe\xd1\x57\x62\x1d\xf2\x72\x17\xd9\xa8\x6e\x1a\xd8\x4f\x5d\x25\xda\x5e\x76\x5b\x3c\x2b\x7b\xa5\xa5\x3d\x8b\xfd\xa4\x7a\xcf\x75\x6c\x85\x9f\x9b\x9b\x66\xdf\x55\x9b\x99\x82\x3b\xf0\x77\x5e\xfa\xc9\x21\x07\xaf\xf4\xba\xd5\x99\xd8\x2c\x74\x68\x03\x7c\xde\x3a\x75\x04\x2d\xfa\x29\xf3\xa3\x32\x11\xc0\xd6\xaa\xd0\xa5\xa4\xe4\xcd\x11\x5c\x14\x58\x94\x26\x9a\xae\xa1\x5a\xc3\xcd\x14\x7c\x3b\x59\x94\xcd\x7a\x23\x9e\x07\x31\x25\x19\x2e\x7d\x58\x78\x4a\xec\x69\xd5\x0b\x45\xde\x28\x52\x10\x57\xc5\x80\x4f\xce\x22\xee\x59\x60\xbb\x97\x7b\x44\x76\x2f\xf7\x9f\x41\xe4\xe5\xbe\x4c\x66\x7d\xcb\x25\x64\x55\xfc\xbf\x1b\x51\xbd\x93\x0f\xf0\xad\x19\x06\xa9\x9b\xf5\xc2\xf6\x82\x33\x42\xc9\xac\xf7\x63\xe2\x64\x2b\xa4\xed\xdc\xcf\x9f\x82\x48\xb7\xa9\x9e\xcc\xfe\x8b\xde\x2b\x66\x7b\xe5\xb7\xf1\x8b\x4d\xb5\x4b\xdc\x59\x90\x64\x0f\x35\x63\x67\x95\xce\x6a\x61\xe3\xc4\x07\x7d\x96\x95\xe7\x11\x8f\xd3\x3c\x11\x32\xaa\x08\x86\x63\x20\xfa\xaa\x99\x8c\x54\xd1\xec\x23\x74\x6f\xa2\xff\x16\x07\x73\x4a\x3a\x9f\xbc\x09\xbb\xb2\xb4\xe3\x64\xec\xc3\x4c\x5d\x3d\x39\x6f\x86\x88\xae\x2c\x48\x8a\xaf\x54\x0f\x91\xc9\x6a\x97\xc3\x81\xe0\xed\xf2\x7a\x24\xa9\x25\x15\x36\x04\x04\x6b\xbf\x2f\x03\x41\x99\x38\xf4\xdb\x94\x55\x35\xa6\x9e\xa8\x8e\xa5\xdd\x1f\xc8\x0a\x7f\xe7\xfe\x60\xb2\xd9\xc6\xbf\xa0\xcf\xfe\x63\xbb\x59\x3b\x47\xd9\xab\x26\x0a\x90\x3c\xbf\xe3\x90\x76\x92\xb6\x61\x0c\xef\x4d\x06\x58\x9b\x27\x62\x9e\xba\x0e\x5c\x08\x68\xb8\xfe\xde\x9e\x5f\x2a\xdd\xfc\x27\x9c\xd7\x0f\x5b\x71\x4c\x26\x69\x8e\x60\xd9\x8b\x60\x0c\xde\x88\x35\xfe\xb3\x65\xf7\x86\x87\x1b\xa3\x7b\x8c\xf4\xc9\x8f\x3c\x54\x31\xec\x32\x18\x51\x1d\xab\xa8\x87\x2a\xe6\x03\x8b\xde\x91\x78\xd3\x8a\x2a\xe1\xc2\xd4\x2e\xd9\x99\x9d\x60\xcb\xe9\x23\xd5\xd7\x33\x41\x58\xc0\xc1\xa3\x72\xe4\x10\x02\x54\xc4\xfb\x00\x67\x24\x61\x4e\x01\x11\x44\x04\xc7\xc7\x3d\x2d\x3f\x49\x27\x06\xd9\x04\xab\x97\xb1\xc9\x06\xc1\x7f\xaf\xdb\x2c\xf5\x43\xac\x8c\x22\x31\x7a\xc1\x0b\x06\xdd\x5a\x62\xe9\x1a\x23\xc0\x26\x18\xeb\x47\xe8\x8d\x6c\x82\x63\xc7\x8f\x82\x1d\xc2\x64\x43\x2d\x44\x85\x37\xaf\x7d\xd1\x34\x1f\xb9\xa2\x46\x13\x7f\x65\xcd\xf0\x0e\x06\x63\xcf\x14\xab\x28\x74\x7e\xbc\x7f\x15\x3e\x6e\xc5\x1c\x54\x1a\xe9\xe5\xec\x76\xd3\xf9\x6a\x90\xaf\xbc\x44\x8f\xba\xa9\x22\xbc\x6a\xf1\x98\xc1\xd2\xd9\x43\xb8\x89\xd7\x88\xa8\x22\x51\x11\xb2\x0a\xff\x5f\x5d\x25\xdb\x21\xdd\xdf\xc5\xb3\xb6\x8e\xcd\xa3\x60\x55\xd7\x38\xb9\xe6\xd5\x9e\xfc\x97\x4e\xef\x56\x8c\x18\x58\xad\xbe\xce\xf1\xb2\x25\x11\x9b\x67\xec\x87\x52\xb7\x66\xe1\xfb\x66\x4a\x28\xf6\x24\x60\x59\x27\x24\x64\x57\x59\x33\xcc\x1a\xe3\x4b\xf1\x41\xf7\x67\xc4\xea\x02\x3a\x7f\x90\x5e\x0c\xd2\x73\x3f\x2a\x42\x8a\xf4\xf2\xc1\x7e\x8d\x99\x23\xc9\x74\x94\xfe\x50\xbe\xc3\xd5\xd5\x35\x41\xfe\x1e\xd1\x89\x08\xe7\x73\xea\x67\x16\x49\xf9\x4a\x3b\xd5\xc0\x25\x13\x19\x97\xd2\x5d\xd8\x4b\x3a\x89\xe6\xba\xb8\x30\xcf\xee\x8c\x3d\x07\x3b\x78\xab\x9c\xcf\x0d\x81\xcc\xf6\x7e\x49\xf1\x46\xc4\x68\x96\x05\x4f\x19\x5b\x27\x11\x61\x72\x7e\x4b\x6d\x86\xfa\x21\x04\x95\xf3\x08\xe9\x8c\xc9\x85\xe0\xae\xe0\xdd\x8a\x2c\xde\x6e\xc4\x13\x12\xf2\x4c\xc0\x68\x4f\x3d\x1e\xd3\x26\x01\xe6\x74\x04\xa4\xef\xe1\x34\x83\x5f\x6f\x30\x07\xab\x76\x21\xd0\x22\x4b\x1a\x4e\x0b\xfc\x78\x76\x22\x36\xe5\x1d\x7b\xef\xc8\xc0\x7d\xd6\xa8\xe4\x02\xf8\xc2\x88\xf3\x8e\x60\x19\xf6\x70\x8b\xf2\xea\xf2\x45\xc3\x30\x2c\xc7\x88\x77\x75\xf1\x32\xbe\xc5\xe5\xdc\x8f\xbb\xba\x21\x1a\x26\x5f\x44\xd4\xa6\x99\x15\xc1\x09\x1f\xe6\x38\x46\x73\xac\x5b\x8f\x7d\x32\xe1\x45\xce\xd3\x40\x2b\xa7\xde\x93\x1c\xf2\x0c\x36\xb3\xe1\x98\x40\x46\x79\x72\x2c\xe4\x03\x7c\xed\x68\x73\x7f\x26\xbb\x54\x88\x80\xd2\xc6\xbe\xc7\xb4\xa4\x1a\xfb\x92\x3c\x1a\xab\x85\xbe\xa6\x76\xd6\x0c\x30\x50\x17\xd4\x24\xee\x94\xae\xe7\xf3\x80\x31\x29\xa7\xad\x26\x7e\x03\x16\xba\xc1\xb8\xc4\x38\x98\x46\xb5\x5c\xb1\x63\xe2\x9b\x5c\x03\xd8\x9b\xd0\x9d\xda\x4b\xa7\x1c\xdd\x50\xf4\x90\x1a\x9f\xe8\x30\xa4\xe8\x7a\xb3\x97\x3d\x93\x42\x95\x54\xc6\xd9\x6b\x7a\x76\x07\x94\x1d\x63\x48\x1b\x37\x17\xca\xe0\x15\xff\x7b\x65\x38\x5c\x8f\xd5\xcc\x35\x2d\x57\xd4\xaf\xcd\x18\xaf\xa5\xc6\x14\x3a\xb1\x0e\x29\x6d\xa1\x62\xb3\x3f\xa3\x57\x01\x59\x1f\x62\xda\xca\x44\xbf\x06\xbf\xa0\x77\x71\x6a\x33\xba\x2e\x52\x6f\xa6\x1b\x0f\x6c\xc4\xb2\xf0\xf8\x31\x03\x59\x0a\xab\x42\x69\x05\xbc\x77\x17\x78\xa3\x2a\x19\x70\x24\x80\x22\x7b\xb5\x13\x0e\x3c\x5d\x3a\x05\x5e\xbd\xb9\xc4\x1b\xad\x26\x88\x6c\xae\xc1\xab\x6f\x70\x73\x95\x32\x5a\xee\xbd\x90\x95\x8c\xd2\x3a\xc8\x55\xcb\xb8\x83\xf3\x95\xb5\x9f\x92\x0d\x64\xbe\xef\x82\xf0\xf7\xd2\xab\x23\x04\xf2\x93\x76\x9f\xaa\x75\xc1\x4a\x0a\x19\x0b\x8e\x72\x56\x42\x27\x92\x28\x21\xd7\x6f\xda\x08\xd4\x65\xe4\xa5\x03\x12\x96\xcc\xaa\x89\xad\x92\xfe\x9c\x95\x46\xee\x00\x7d\xcf\x95\xd1\xf7\x8f\x50\x5f\xaf\x8c\x6c\x27\xca\xb2\x8c\x1a\x58\xc7\xef\x53\x1e\x4a\xcd\x42\x99\xaa\x13\xee\x6e\xd1\x41\xbb\x88\xf3\xd2\x76\xec\xe1\xf8\xd0\x8f\x6a\x0c\x3d\x3a\x33\xf9\x71\xf2\x08\xba\x01\x6b\x67\x61\x34\xc2\xf9\xc6\x4c\x7e\x13\x59\xc9\x60\xa3\x80\xf4\xdc\x00\x62\x1b\xde\xa6\xce\xe0\xec\xc0\xd0\x46\xb9\x0b\x20\x67\x9e\x7a\x83\x19\x28\xdf\x0e\x2f\x13\xcf\x78\x76\x27\x1d\xa5\xc1\x5d\xda\xcf\xf3\x9f\x8e\x65\x26\xc2\x6a\x3b\x8b\xa3\x86\xd1\xb3\xc7\x9a\x1c\xb8\xd4\xbb\x8a\xd2\x60\xb3\xb3\xc8\x50\x32\xc0\x59\x54\x8b\x8c\xc8\xc7\xde\x77\x29\xf2\xc6\x68\x55\x4b\x2f\x9e\xa1\x2a\x0d\x56\x6f\x7d\x53\xfa\x47\xff\x8c\x43\xa5\x7f\xf4\xd5\x36\x9a\xb7\x9b\x53\xfb\x93\xc9\x70\xc4\xd3\x99\x33\x30\xd3\x47\xa9\xc1\xfa\xd7\xc9\x50\x0a\x9e\x76\x45\x50\x0c\xdb\x82\x03\x7b\x04\xe1\x46\x59\x83\xdb\xcc\x52\x7c\x29\xeb\x87\xce\x9a\x49\x37\x77\x48\xe1\xa5\x34\xa9\xe0\xde\x88\xa7\x46\x15\x33\x93\x88\x26\x55\xc2\x94\xe2\x11\x52\x3b\xe9\xcc\xba\xc8\x96\x53\x5d\x3c\x07\x7b\x8a\xf5\x6c\x61\x33\x55\x6f\xd0\x6e\xb0\xe6\x3f\xc2\x53\xb2\xb6\xe2\x24\x95\x17\x5c\x6e\x75\xe0\x3f\xb0\x79\x52\x15\xf6\x85\x54\xf9\x89\x65\x24\x61\x5f\x36\xaf\x5c\xd6\xb6\xa2\xd3\x33\x73\x91\xea\x7a\x66\xcd\x83\x1d\x94\x96\x7d\x19\x61\x61\xb1\x86\xd4\x85\x16\x3c\x3a\x06\x86\x15\x6e\x40\x95\x4f\x71\x79\x8a\x56\x65\xc1\x39\x01\x9a\x3a\x14\xd4\xc7\x5f\x1e\x8e\x50\xbb\x79\x78\xf4\x02\x1a\x2a\xb4\x4a\xc2\x93\x58\x7f\x82\xcc\x02\x27\xad\x29\x32\xd1\x31\x9d\x3b\x47\x91\x8b\xe0\x3a\xd3\x21\x64\x09\x05\x35\xfc\x87\xd9\xdf\x79\x69\xfd\xba\x1e\x9a\xb9\xe8\xd5\x77\x04\x2b\x7c\x02\x6b\x9f\x56\x27\x46\x7f\xff\x88\x7c\xa2\xe9\xc4\x7d\x3f\x7f\xca\x9d\xeb\x96\x98\x97\xb6\x73\xe8\xba\xf2\x27\x4f\x80\x3d\x47\x9f\x52\x7e\x3b\x34\xb3\xbe\x88\x2a\xba\xbe\x48\xb6\x2b\x7e\x31\x7b\xb1\x3f\xa3\xb6\x74\x8c\x24\x6c\x70\x46\x3f\xd5\x5e\x04\xb4\xe6\xb0\x53\xb9\x83\xb8\xa9\xab\x0d\xc6\x1a\x0b\x90\x5d\x7d\x86\x56\x71\x18\xd8\x08\x37\x9f\x29\x65\xe1\xcb\xb9\x74\xce\x0e\xa0\x17\xc2\xed\x40\x83\xa5\x5c\xd7\x05\x91\xb1\xff\xa4\xfe\x1a\x3c\x2a\x1f\xa6\x0d\x92\x28\x10\x6e\x84\x86\x58\xf9\x1e\x2a\x76\xe9\x23\x51\x0b\xef\x98\x79\xe7\x38\xb2\xa1\xac\x4b\x7a\x4f\x3e\x22\xf8\xe7\x08\x24\xd3\xf0\x28\x4f\x7a\xa1\xe1\x7a\x68\x5e\x20\x35\xb1\x0c\xf9\xbf\xa1\xf3\xe4\xc4\xa3\x55\x56\xdb\xe8\xba\x1b\x03\x4e\x3f\xf3\xc9\xdd\x24\xe3\x3e\xd8\x38\x08\xc2\xb6\x90\x07\x2e\xa5\x9d\x07\xd9\x08\x2f\x1f\xb0\x18\x09\x77\x7d\xcb\x6b\xea\xe4\x4a\xf3\x03\x61\x46\x92\x56\x22\x11\x9d\xe1\x83\xea\x7b\xb4\xc7\x5f\xcc\xbe\x4c\x2b\x41\x37\xcb\x95\x97\x6d\x08\xe1\x40\x37\x4e\x38\x33\x00\x3f\xa1\x9c\xe2\x17\xb3\x7f\x46\x16\xa3\xf4\xec\x0e\xa9\x29\x3f\x4c\xbd\xf4\xc6\xae\x0f\x59\xf7\xf3\x77\xba\xc5\xcf\x76\x10\x16\x8d\xcc\xb5\xc9\x60\x25\x65\x5d\x68\xf1\x73\x90\x3e\xb3\x3e\xa6\x51\xb3\x27\x0a\x67\x37\x7a\x4e\x01\x81\x2f\xf6\x4e\x31\xa9\x8a\x0d\xfd\x64\xe5\xf1\xe2\x3a\xf4\x39\x03\xb8\x27\xee\x56\x28\xff\x05\x57\x8b\xa7\x0e\xdd\x04\xb9\x5c\xba\xea\x43\x52\x53\x0d\x44\xf7\x83\xcb\x34\x86\x26\xa1\x98\x54\xba\xab\x40\xd3\xb9\xea\x7a\x23\xe2\xd9\x77\xb3\x0b\x0e\xbd\x3e\xf2\xbf\x71\x8e\xcb\x9a\x38\xab\x21\x29\xcb\xba\xf0\x2b\xe9\xe0\x2f\x1a\xca\x51\x53\xe9\x6e\x55\x5e\xc4\xdc\x60\xca\xb1\xb1\xc8\x5d\xbb\x8b\xbe\x01\x67\xaf\xb2\x67\x89\xcc\x06\x7e\x31\x26\x91\xa2\x7b\xbc\xad\xc1\x54\x99\x26\xf3\x5c\xe6\xee\x62\xba\xfb\x44\x93\xe1\x76\x20\xcc\xfd\x41\x6c\x4b\x07\x2b\xbe\x8b\x5f\x57\x3b\x96\xdc\x0c\xfc\x1f\x40\x4d\x46\x14\x21\xf0\xa5\x9a\xec\x1d\xf0\xe8\xdf\x49\x39\x2c\x2a\xd2\xe3\x00\x36\x59\x9f\x78\x2e\xde\x2a\x3d\x3d\x66\x7f\xbf\x93\xf5\x87\xbb\xec\xef\xef\xac\xec\x8c\x6e\xfb\x73\xf6\xdd\x87\x11\xf4\xcb\xbb\xef\xb2\x6f\x5e\x59\x00\xfc\x66\x4e\xd5\x39\xc1\x4d\x77\x74\xef\xe1\x14\xaf\xe8\xcc\x49\x83\x4d\xe7\x6a\x70\x5d\xfa\x4c\x87\x61\x2b\x40\x37\x5b\xf1\xd6\xd4\x5b\xf1\xa0\x74\x23\xde\xb9\xee\xfe\x3c\xc2\xb5\x54\xe6\x79\x80\x79\x79\x6f\x11\xcb\xff\x78\x99\xc5\x99\xb3\x16\x8c\xda\x1c\x51\xd7\xc2\x4a\xdd\xc5\x40\x18\xe6\x01\x88\x80\xdc\x2d\x82\x6e\xa8\xfc\xbc\xb8\x42\x9a\xb9\x79\xe1\xdf\x2a\xfd\x25\x9e\xe8\x3a\x8a\x6e\x08\x91\x99\x2f\xf0\xf2\x3f\xe0\x88\xb0\x6e\xb9\x78\x42\x6a\xe3\x43\xe9\x93\xdf\x40\xf4\x33\xdd\xef\xee\xdf\xe8\xd6\xd0\x7c\x4d\x6b\xe2\xf2\x72\x7e\xfa\x93\xa4\xf4\xaa\xda\x89\x13\x7f\xba\xb2\x86\x2e\x43\xab\x70\x0e\xd2\xe3\xf9\x82\xb1\x5e\x3f\x6e\xc5\x19\x59\xde\xa0\x12\x9f\xb4\xb8\xa2\x38\xc3\xb4\xd8\xbc\xf5\xe5\xfd\x77\xdc\x53\xa8\x76\xa9\x99\x12\x5a\x1d\x5c\xbe\xa6\x75\x6f\x0d\x92\xd8\x9b\xee\x33\xcf\x3f\xca\x13\xa6\xe4\xf2\xf4\x99\xe7\xb9\x10\x16\x2b\x32\xfd\xf2\x30\xd1\x1a\xb3\x4c\x6a\x20\xa7\x86\x29\x45\x1b\x34\xed\x4b\xc6\x02\xa4\xe8\xa1\x97\xf5\x3d\x65\xab\xa4\x97\x38\x17\x46\xcd\xdc\xa7\x18\x5f\x59\x33\x70\x33\x37\xc7\xb9\x0e\x48\xb3\x8a\x63\x81\x3c\xa5\x49\xa1\x35\x74\x16\x16\x24\x5d\x5b\x50\x14\x69\x94\x7b\x40\xec\x59\xfb\x6b\x81\xfd\xe5\xd9\xc3\x87\xb6\x75\xe0\xd7\xa3\x71\x7c\xf6\xf6\x53\x1b\x59\x8d\xbd\xca\xbc\x81\xb2\x3f\x7b\xb4\xeb\x06\x1e\x2f\x3a\x67\x01\xbe\x71\x8a\xa7\x1b\xe6\xd9\xab\xe5\x35\xb4\xcb\x22\x3f\xdd\xd2\x64\xbe\x3a\xe4\x78\xb3\x86\xcb\x6c\xe7\xcb\xa9\x5d\xe7\x5a\xc8\xa9\xca\x77\x24\x57\x34\x79\xd5\x27\x47\xf4\x71\xd2\xf0\xc2\x63\x4e\x96\x8e\xa8\x6a\x1e\xd9\x5c\xaf\x35\x79\xc5\xe4\xdb\x7f\xc7\x5c\x8a\x8f\xd5\x92\x4b\xe6\x3f\x34\xfb\x65\x2a\x17\x02\xaa\xd7\xe0\xdf\xb2\x16\x7e\x3a\x20\x7f\x58\x6a\xce\x6c\x5f\xc7\xd6\xf3\x86\x39\xaa\xc4\x8d\xdc\x5c\xbe\xc0\xf0\xc6\xfd\x64\x6c\xf3\xed\x41\xda\x0c\x2e\x26\x38\x39\x54\x0a\xc6\xed\x9c\x0c\x33\x33\x2a\x6b\x2a\x06\xa9\x53\x0c\x3d\x19\xdb\x88\xfa\x20\xb1\xda\xcc\xe4\x7e\x47\x4b\xd6\x7b\xf1\xf3\x27\xd4\x7c\x46\x7d\x6d\xf4\x11\x42\xfd\x81\x36\x21\xad\x95\x67\x8e\xe5\x17\xd4\xa2\xe8\xef\xbc\x5d\x5b\xa2\xe0\x3a\x08\xa2\x6d\xb1\xb9\xa0\x50\x3c\xc8\xb3\x70\x00\x83\xe8\xd5\x03\xe0\xd3\x41\xf6\xfd\x9c\x99\xa6\xf9\xa2\x6c\xce\x13\x93\x37\x33\x4f\x8b\xf3\x28\x84\x2b\x52\x71\x17\x7c\xfe\xbc\x83\x1a\xba\x34\x2d\x3a\x80\x3f\x98\x26\xd4\x23\xf3\x8c\x0d\xdf\x54\xf3\x60\xa9\xd4\xe7\x62\x9c\xf6\xbd\xaa\xe3\x6a\x22\x44\x07\x3c\x22\x47\x83\x20\x03\x15\xd9\xc4\xcb\xde\x1c\xa1\x2c\x7e\xd4\xad\xb1\x7e\xd2\x3c\xb7\xa6\x7c\x4c\x16\x52\x97\xc7\x1b\x66\x13\xf9\xa5\x56\xcb\x15\x5e\x29\xe5\x51\xae\x18\xd1\x17\x8b\x3f\xf7\x20\x1d\x4d\xb1\x87\x73\x94\xba\x4e\xb1\x67\x1f\x06\xb6\x7d\x71\xf0\x7e\x74\xbb\xdb\xdb\xce\x34\xa6\x2e\x8d\xed\x6e\x3b\xe5\x0f\xd3\xbe\xac\xcd\x70\xfb\xdb\x19\x1a\xd5\x28\xc9\xd3\xec\x74\x29\x0f\x10\xb8\xb8\x26\xfc\x22\x89\xed\xbd\xf1\xc0\x49\x98\xd1\xfd\x39\x17\x10\x4d\x5a\xf3\x23\x9a\xa3\x4d\xcc\x78\x93\xde\x82\x38\x2a\x59\x5c\x91\x55\xac\x3e\xc3\x0c\x68\x48\x8f\x63\x1f\x9f\x3a\x4c\x92\xc7\x6d\xc5\x60\x2c\x88\x06\xbc\x54\x58\x90\xce\xc3\x6e\x91\xfe\xec\x22\x02\x65\xf7\x9a\x79\x5e\x8c\xef\x6d\x63\xbb\x6d\x39\x4a\x13\xb1\x57\xfb\xb1\xda\x8a\xb3\x99\x44\x4d\x53\x08\x75\x54\x4f\x75\x27\x8f\x50\xcd\xd3\x7a\x61\xf4\x2a\x4c\xc4\x8c\x3b\x9a\xdd\xa3\x99\xd5\x59\x48\xb8\x80\x7a\x6d\x04\x60\x57\xc5\xdb\x18\x6f\x18\x6e\x96\xd9\x5a\x19\x46\xd9\xa4\x0e\x17\x83\x65\x15\x26\xb3\x4b\x9a\xce\xea\x4c\x18\xbf\x4a\x13\x42\x65\x4c\xbc\xc2\x14\x56\x70\x0b\x26\x0d\x73\x5d\xac\xdf\x5d\xac\x5f\x8c\xb8\x7d\x66\x48\xba\x28\xde\x90\xe5\x26\xab\x4d\x93\xc8\x34\x1e\x82\x72\xc6\x43\xcd\x47\x67\xb8\x7a\x1e\x42\x07\xe9\xb5\x29\x9e\x4c\x60\x17\xc5\x9d\x1a\x46\x3c\x1e\x34\x68\xc6\x45\x43\x18\x75\x3b\x9b\xe9\x59\x13\xbc\x02\xcf\x17\x68\x56\x8b\xd4\x34\x19\xae\x96\xcd\xc7\xcb\x11\x36\x65\x30\x3a\x64\x33\x6c\xca\xdc\xf2\x77\xab\x4d\x58\xd2\x0e\x3e\x7b\xde\x0e\x3e\x3d\xf9\xdc\xfc\x5b\x78\x8c\x45\x2c\x0f\x86\x7d\x1d\xf0\x94\x1f\x41\x36\x14\xdd\x57\x77\x86\xef\x1e\x4b\xff\x88\x00\x0b\xd5\xd2\xca\xbf\x7f\x4d\xa3\x46\x3e\x8e\xcf\x5c\xea\x86\x47\xd1\x56\xf4\xcf\x1c\xe3\x55\x0f\x3b\x71\x01\x11\xfa\x30\x75\x76\x73\x23\xbe\xc3\x72\x9a\xae\xa0\xb2\xee\xb2\x0e\xae\xda\xb4\xe4\xb8\x5d\x5c\xfc\x23\x29\xfa\x8e\xe6\xd3\x5a\x2e\xc2\x82\x83\x46\xf7\x94\xf9\x66\xda\xc0\xac\x62\x38\xfd\x1a\x25\x55\x86\x7d\xeb\xd5\x3f\xb9\x15\x57\xf8\x9b\x22\x91\x61\xc8\x23\x63\xb4\xcc\xfa\x35\x74\xd7\x8c\x2a\xfb\x65\xc2\xe0\x04\xb2\xf9\xff\x71\x43\x59\x96\xf3\x28\xeb\x0f\xf1\x7d\x0d\x9f\x8f\x11\x7e\x69\x74\x9f\x4f\x57\xb4\x06\xb6\xbe\xb2\x78\x0f\xd2\xf6\x67\xf2\xa7\xb3\xf5\x45\x30\x2e\x9f\x50\xb4\x90\xd5\x6c\xc9\xc1\x3c\xca\xda\x17\xd1\xf9\x71\xf5\xb9\x9c\x63\x9c\xcb\xb1\x88\xba\x37\xe6\x21\xf5\x5f\xd0\xfa\xca\xce\x54\xc5\x9a\x37\xcf\xa3\xa8\x20\x1d\x45\xce\x49\x37\x60\x89\x99\x0d\x1f\xea\xa2\x1d\x7c\xa1\x4c\x91\x8c\xb3\xd0\xe0\x8b\x41\xfa\x03\xfd\xef\xd6\x4a\xdd\x14\xc6\xc5\xd7\x2b\x0a\xcc\xee\x8a\x78\xd3\x5f\xb0\xb6\x30\xf2\x75\xf0\x38\x16\x94\x41\xba\x82\x16\x92\x60\x91\xb1\x65\x64\xa0\x59\x16\x59\x1f\xc2\x29\xcd\xa7\x6e\xb7\xc9\x89\x66\x02\x2f\xa2\xc0\x2f\x03\x8c\x98\x03\x4c\x2f\x75\x47\x11\x66\x7c\xe8\x6e\x79\x5c\x26\x57\x64\x11\x67\x60\xe3\xab\x3b\x31\x1c\x6c\xe6\x28\xfc\x44\xbf\x34\x82\xec\x4c\x16\x82\xb2\x30\x12\xde\x7b\xe2\x90\x1a\xfc\x26\xa5\x0d\x3c\x4a\x9c\xbf\xcc\xb5\x50\xdf\x12\xa2\xc8\xde\x0a\xbb\x39\x4c\x83\xd4\xea\xb7\x44\xf5\x2e\x0c\x58\xc7\xef\xab\xe4\x96\x98\x1b\xb7\xc3\x2c\x14\xb3\x6b\x57\xe1\xa7\x0f\xb6\xc1\x1a\x3e\x38\xd5\x86\x0e\x6f\xfe\xe6\x4f\x7e\x0b\x4f\x6d\xd1\xc5\x7b\x3d\x4a\xe7\x2f\x77\x14\xc5\x7f\x65\x6e\x8e\x22\xc7\xc5\x38\xc8\xe2\x5a\x8c\xe7\x2f\x68\x92\xa8\xfc\x23\xa3\x34\x8b\x59\x91\x39\xac\x85\xd7\x85\x8e\xd2\x2a\x33\x39\xaa\x6d\x29\xbe\x87\xb1\x16\x93\x53\xba\x70\xc0\x5b\xcc\x45\xc9\x69\x17\xe4\xb4\x03\x20\xc9\x72\xf0\x66\x54\xf5\xc5\xf6\x14\x72\x3d\x38\x1f\x82\x2e\x8f\xc7\xc7\x21\xc5\x82\x1e\x95\x43\xc3\x33\x62\x7c\x5d\x97\x22\x72\xa4\x79\x76\xfd\x2c\x86\x4b\xc7\x1d\x06\x2f\x57\x9b\xf0\xbc\xbc\x10\xe7\x0a\x91\xac\xb6\xb3\x10\x7f\x80\x7e\xdc\x8a\x55\xc0\x1d\x87\x9c\x7f\x74\x4f\x34\x71\x31\xe1\xc4\x33\x58\x3c\xe4\xd1\x28\x9b\xe6\x93\x36\xd5\x2c\x0d\x3d\x0d\x7b\xb0\xc2\xb4\x45\x92\x28\xdd\x4c\x30\xd0\x52\xdc\x1b\xf2\x94\xa1\xc1\x4b\xf3\x27\x5c\x21\x2c\xc6\xb7\x26\x07\xc5\x67\x87\x5d\x96\x13\x2e\x15\x9a\xdb\x17\x26\x72\x66\x13\x40\x37\xc8\xb7\x59\xf3\x94\x47\x29\xde\xe8\xf4\x62\xde\x36\xbc\x5b\xa7\xdc\xe7\x27\xd4\xaa\xf8\xd6\x54\xd3\x5c\x0e\x11\x89\xbd\x44\x3f\x60\x74\x56\x0f\xf2\x98\xd4\x39\x7b\x2f\xa9\x36\x9a\x1b\x08\x18\xcd\x7c\xf4\x7c\x3c\x91\x1f\xfa\x08\xd1\x13\xd0\x21\x0d\xb1\xe3\xdf\x52\x6b\x61\x76\x13\x92\xfa\xa8\x20\x46\x0b\x37\x4a\x3b\x1f\x5e\xe2\xc2\xf8\xc4\xe1\x57\xf0\x9b\x07\xd2\x02\x35\xb8\x68\x40\xb2\x37\x2e\x0e\x62\x0e\xd2\x2b\x9e\x50\x08\xb7\x65\x7b\x2b\xeb\x07\xf0\x6e\x2b\x7e\x9d\x8c\x9f\x5f\x3f\xc5\xcd\xb5\x19\xd0\x41\x56\x3b\x31\xbf\xf6\x1a\x61\x88\xf0\x90\x7c\x12\xbd\xa4\x97\xcc\x40\xa0\xfb\x9c\xc8\x51\x3e\x17\x55\xeb\xc3\x90\x27\x52\xd0\xd3\x4c\x09\xb7\xcd\x03\x6f\xe1\x69\x78\x07\x96\xa6\xa0\x75\x8a\xb5\x68\x78\x08\xa4\xa7\xb2\x20\x27\x04\x1e\x3d\x68\xce\xdf\xf0\x61\x24\x83\xf2\xb5\x05\xfe\x5e\x79\xba\xca\x59\x70\xd1\x1c\xa5\xae\xa9\xc9\xc8\xef\x09\xaa\xee\xd0\xab\xee\x90\xc0\x20\xfe\xb7\x61\x23\xba\x9d\xd1\x9a\xce\xca\x61\xe0\x82\xdf\xf4\x24\x1e\x9e\xe1\xce\xe1\x12\x63\x81\x32\xa3\xdd\x3c\x2e\x8a\x0b\xb9\xbd\xb6\x46\x4e\xba\x30\x1f\x89\x7a\x43\xf0\xaf\x15\xbf\xaa\x84\xb5\xc0\x86\x60\x37\xaa\x6d\xa9\xed\xc3\x8b\x63\xbe\x8d\x5f\x77\x13\x9e\xc0\x6a\x31\x2f\xf4\x1a\x53\xc7\x37\xe4\xac\xc8\x74\xa8\xc4\x7f\xad\xa8\x3f\x98\x0d\x17\x22\x0c\x04\x21\x18\x06\x27\x4c\xee\x60\x4e\x58\x45\x6b\x7a\x7b\x03\xa1\x59\x70\x23\xb5\xbf\x99\xfc\xc1\xf0\xad\x94\x85\x1a\x8f\x2e\x12\x8b\xca\x57\x7e\x91\xe1\x27\xd8\x4e\x61\xf9\x62\x46\x48\xb7\x79\x61\xb0\xec\x2e\x7b\x8f\x2b\x28\x74\x9b\xbe\x88\xb6\xc6\x0e\x31\x7e\x1b\x44\xcc\x16\x96\xde\xa5\x2d\x96\xa1\x9b\xc7\xaf\xd9\x17\xfb\x83\x71\x90\x5e\x33\x89\xef\xe1\xa0\x48\xe8\x25\xcd\xe0\xd8\xdd\x6c\x2b\x93\x83\x1b\x7e\x6b\x55\xcd\xe2\xc3\x1c\x28\xf4\x76\xa8\xdd\x53\x90\x8b\x37\x27\x9d\x41\xfe\x2a\xbe\x2b\x2f\xde\x49\x2d\x3b\xb0\xf1\x95\xf9\x30\xde\x44\x4d\x06\x7a\xc3\x40\xe9\xb9\x26\xa7\x95\x21\x13\x8b\x19\x97\xd2\x47\xf3\x30\x5f\x97\x14\xd5\x37\x71\x7d\x59\x96\x69\x9a\x86\x62\x6c\x28\x3c\xf8\x7a\x94\xeb\x34\x4e\x40\x6e\xb2\x1d\xa1\x38\x0c\xf3\x29\xaa\x89\x10\x5c\x5e\x6c\xcc\xb9\x51\x15\x1f\x57\x59\x5c\x0b\x79\x47\x24\xb8\x05\x5f\x1f\xe8\x8d\x7c\x76\x44\xf3\x6d\xf4\x41\x6a\x0d\xbd\x13\xeb\x74\xb7\xe1\xb8\xfe\x49\xf7\x17\x31\x07\x18\xc0\x4b\xca\xb1\xe3\x35\x88\x17\x0f\xda\x9c\x1c\xbf\x8c\x5d\x8a\x97\xe7\xe8\x13\xe2\x55\x38\x15\xe4\xd9\x1a\xee\x8d\xb4\xad\xaa\x95\xec\x8b\x80\x7a\xbe\x54\x49\xaf\xe6\x79\x91\x75\x06\x08\xd4\x0d\x34\xca\x1b\x7b\xcb\xa4\xdc\xc4\xad\xfb\x29\xa5\xdc\xe8\xdd\x45\x52\xb3\x3f\x28\xdb\xdc\x8c\xd2\xfa\xf3\xcc\x62\x36\xe8\xc4\x70\xe2\x93\x74\x16\xd1\x74\x23\x3c\x3e\x76\xfd\x19\x4d\xfd\x61\x01\x30\x79\x73\xb4\x95\xde\x9c\x44\x70\xe4\x32\xdc\x07\xcd\x57\x9f\x51\x72\xd1\x6c\x62\x19\x12\xf0\x5b\x18\x4d\x42\x5e\x16\xc5\x9b\x36\x2f\x31\x31\xbd\x9c\xf6\xbd\x72\x87\xf9\x0d\x6a\x7c\x4c\x8d\xa3\x06\x42\x5d\x15\xc5\x99\x5e\xc1\x47\xfa\xc3\x2b\x83\xd3\x48\x33\xdd\x79\x7e\x63\x34\x7b\x31\x6f\x42\x27\x02\x23\x51\x0b\x56\xee\xfb\xf3\x86\xef\xad\x28\x27\xa8\xd2\x0f\x06\x84\x59\x78\x6e\x8d\x51\xcc\x8c\x65\x1a\xb5\x96\xc9\xc1\x04\xcb\xb8\x7c\x27\xf8\xda\x6f\x20\x70\x66\x44\xbf\x44\xf0\xf3\x5f\x0b\x21\x56\xef\xe5\x00\xab\x9d\x58\xf1\x16\x4c\x13\x56\x98\x29\xae\xbe\x9b\x5f\xde\xc7\xc7\x09\x92\xd0\x8a\xda\x29\xba\x56\x0e\xa3\x50\x5a\x45\x2f\xbf\x45\xed\x30\x8c\x9f\xf8\x97\x00\x70\x7f\x2a\x0e\x66\xcb\x9a\x1c\x44\x8b\xe2\xe5\xf7\xb2\x73\xab\x9d\xf8\x79\x35\x9e\xfd\xc1\xe8\xd5\x56\xac\x42\x6c\x5a\x7d\xa2\x05\x7f\xe1\xdf\x10\xa0\x45\x94\xcd\xfe\x35\xe4\xb4\xf1\x09\x62\xfa\xe7\xf2\x4f\xe5\x9f\x56\x31\xdb\x5d\xfd\x68\xfb\x7f\x8c\xff\x56\xda\xfa\xa0\x8e\x70\x7b\xa4\xdd\xe5\x6f\x6a\x9c\x21\x7c\xe4\x17\xa2\x56\xbb\x84\x4e\x88\x50\xff\xef\xc4\xea\x9b\xaf\x71\xcb\xbf\xac\xc2\xa3\xbf\x15\xf1\xff\x9f\x8a\xbf\x7d\x4a\xef\xc2\x69\x72\xe8\x68\x48\x13\xe6\x53\xf0\xeb\x04\xce\xff\x81\x93\x26\xb9\x80\x90\x05\x9f\x86\x90\x21\xca\xd3\xc2\x50\x28\xbd\x51\x97\xc5\x03\xfd\xf6\x84\x43\xa0\x67\xf4\x4a\x46\x0c\xf2\x01\xc4\x34\x36\xfc\x7b\x24\xd9\xc8\xf7\xc9\xd8\x87\x6d\xd6\x3c\x26\x53\x35\x6d\x0e\xcc\xa5\x26\x4f\x7c\xad\x32\x37\xc4\xf0\x1b\x0f\xcb\x1f\xed\x28\xc5\xfa\x2d\x9d\xa7\x83\x72\x3b\x51\xfd\xe5\xfb\x8f\x77\x6f\x3e\xbc\x17\x5f\x47\x4d\x55\x9b\x22\x74\x31\x89\x30\x37\x59\x3a\x7b\x58\xe9\xfc\xec\x60\x38\x82\xfd\xb4\x46\xed\xed\x6e\x6f\xf9\x4f\xaa\x2c\x37\x64\xec\x01\x21\x35\x8f\xff\x3b\x00\x00\xff\xff\x5c\xa8\x62\xf7\x7c\x45\x00\x00"
-
-func runtimeHelpPluginsMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpPluginsMd,
-               "runtime/help/plugins.md",
-       )
-}
-
-func runtimeHelpPluginsMd() (*asset, error) {
-       bytes, err := runtimeHelpPluginsMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/plugins.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeHelpTutorialMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x57\x4b\x8b\xe4\xc8\x11\xbe\xe7\xaf\x08\xaa\x0f\x53\x65\xaa\x35\x30\xec\xa9\xa1\x0d\xbb\x03\xeb\x6d\xd6\x86\x65\xa7\x31\xf8\xa6\x94\x14\x2a\xa5\x3b\x95\x29\xf2\x51\x6a\xd9\xac\x7f\xbb\x89\x88\x94\xaa\xaa\xbb\x67\x0f\xc3\x74\xe5\x23\xf2\xfb\xe2\xf1\x45\xe8\x0e\x9e\x73\xf2\xc1\x68\xab\xd4\xf3\x60\x22\x98\x08\x1a\x9a\x60\xb0\x07\xe3\x52\xf0\x90\x3c\x8c\xa6\x0d\xfe\x53\x84\xd6\xbb\xde\x9c\x72\xd0\xc9\x78\x07\x71\x89\x09\x47\x48\x83\x4e\x30\x1b\x6b\xe1\x64\xce\x08\xd1\x8f\xa8\xa2\x19\x27\x8b\x80\xaf\x9a\xfe\x8f\x10\x07\x3f\x1b\x77\x82\xc1\xcf\x64\x6f\xb5\x83\x10\x31\x25\xe3\x4e\xf1\x08\x01\x1b\xe3\x3a\x78\xc1\x25\x1e\x41\xbb\x0e\x72\x44\x55\x1b\x67\x52\x65\xb3\xae\x6f\xaf\x31\x20\x5a\x5a\x7c\x0e\x60\xcd\x8b\x71\xa7\x4a\xa9\x5f\xfc\x84\x7d\xb6\x76\xa1\xf5\x4f\xd6\x42\x4f\x26\x13\xd1\xca\x91\x76\x2a\xa5\xbe\x21\x42\xfd\x57\x18\xd0\x4e\xd0\x61\xaf\xb3\x4d\xf4\x66\x0d\xbd\x0f\xa0\xc1\x9a\x98\x40\x3b\xc0\xd7\xc9\x6a\x27\x44\x7d\x0f\x69\xc0\xf5\x34\x41\x24\xa8\x04\xbb\x52\xea\xee\xee\x0e\xbe\x15\x16\x4a\x3d\x39\xc1\x76\x14\x64\x2b\x3d\xd0\xc4\x35\xf9\x80\x1d\x18\x07\xf5\xff\x3e\x57\x42\xe6\x33\x9f\xfe\xbc\x9e\xab\xfe\x1d\xbd\xab\x8f\xa0\xa1\x37\x16\x15\xbb\xd6\x44\x68\x03\xea\x84\x1d\xa3\xe8\x4d\x88\x09\x92\x19\x91\x9e\x80\x90\xcb\x8b\x15\x3c\x25\x09\x1e\xd9\xe0\xfb\x30\x0f\xa6\x1d\x60\xf0\xb6\x8b\xa0\xad\x55\x74\xff\x02\x89\x5d\x83\x26\xc0\x59\xdb\x8c\xb1\x82\x67\x0f\xed\xa0\xdd\x09\xc9\x01\x7e\x22\xee\xcc\x03\x5a\x72\x88\x49\x03\x86\xf5\x40\x1a\x50\xf1\x35\xa2\x43\x66\xeb\x5b\x0a\xfc\xfe\x11\x7c\xd8\xee\xa7\x65\x42\x30\x89\xce\x77\x26\x60\x9b\xec\x42\xf8\x2c\x42\x8e\xc6\x9d\x94\x90\x50\xea\xb7\x80\x31\xc2\xd7\x14\xec\x3d\x52\x84\x4f\x5e\x42\x3f\x8e\x04\x78\xf4\x1d\x4a\x7a\xb0\x3d\x7a\xb5\x20\x15\x16\x35\xec\x05\x90\xea\x73\xca\x01\x8f\xf0\x24\xb9\x99\x23\x87\xfd\xfd\xf9\xe4\x81\x82\xd9\xea\x84\x30\xd1\xdb\x94\xa7\xf2\xfc\xa1\x82\xe7\x01\x0b\x65\xc5\x66\x92\x7e\x41\xc0\xbe\xc7\x36\x81\x19\x47\xec\x8c\x4e\x68\x17\x46\xc4\x07\xb4\x8d\x1e\x1a\x84\xa8\xcf\x14\x30\xff\x5d\xe7\xa8\xe8\xa5\x74\xae\x82\x22\x26\x62\x32\xed\x0b\xe0\x19\x1d\xe8\x3e\x61\x71\xa1\xf5\xb1\xe4\x7d\xa5\xd4\xbf\x8a\x53\xf9\xb5\x0b\xa7\x08\xd6\xb7\xda\x8a\x67\xdb\x01\x46\xd4\x2e\x7e\xe7\x15\xef\xec\x02\x83\x3e\x23\x67\x85\xc4\x92\x1e\xe2\x22\x96\x38\xd1\x46\x93\xfb\xbe\x40\xa0\x77\x78\xa3\x82\x9f\x7d\x58\x8b\xfb\x08\xa6\xe7\x6d\xb2\x05\x69\xf6\x2a\x4e\xd6\xa4\x08\x7e\x42\x27\xa1\xa2\x5d\x09\x17\x07\x80\x31\x42\xd2\x4d\x34\xff\x41\xf8\x52\x1f\xf9\xa1\xf5\xf7\x05\x5c\x83\xf0\x05\x8c\x63\x7c\x6d\x0e\x01\x5d\x2a\x70\x2a\xf8\x91\x88\x8b\x0a\xf0\x05\xe7\x13\xbb\x5c\x8a\x5d\x5e\x58\x53\x95\x63\xa0\x3e\x8a\x41\x05\xbf\xf8\x19\xcf\x18\x2e\x69\x1e\x13\x87\xe0\x03\x97\x96\xbc\xfa\xd8\xce\x47\x0e\x99\xb5\x13\xbf\xd7\x85\x1b\x27\x1b\xb3\x62\x7e\xc6\xa9\xdf\x73\xb3\xb0\x85\xa2\x79\x3f\x80\xa7\x2a\x9b\x4d\xc4\x02\xc9\x67\xdb\xc1\x94\xc5\x50\xef\xad\x15\x21\x25\x11\xb9\x05\xf2\xa0\x54\x5d\xd7\xf4\xa7\xfa\xaf\x02\x00\xd8\xfd\xa5\x0a\xcd\xee\x01\xe4\x17\xaf\x14\x1c\xbb\x07\xf8\xc2\x8b\x7f\x1c\xd5\x9b\xf5\x1f\xd4\x1f\x64\x46\xa9\x7f\x5c\x7c\x4b\xce\x78\x47\x63\xe3\x20\xf0\xd7\x84\xd3\xa9\x1d\xf8\xf0\xc9\xfa\x06\x6a\x82\x50\x57\x4a\x3d\x15\x8f\x30\x1b\x6b\x5e\x38\x2a\x2f\xce\xcf\x30\xfa\x80\xa0\x1b\x9f\x13\x29\x14\x5f\xd5\x67\x6d\xac\x6e\x2c\xae\x21\x38\x42\x44\x91\x9c\xba\xac\x10\x84\xc9\xb4\xb0\x5f\x95\x7c\x5d\x3f\x14\x45\xfe\xf5\xa2\xd1\x4a\x5d\xfd\x80\xd9\x87\x17\x42\x3d\xe6\x02\x34\xea\x11\x61\xd6\x0b\xe8\xb8\x5a\xa9\x80\xeb\x6b\xeb\x36\x69\xc0\x51\x54\x4a\x40\xbc\x55\xef\xad\x1b\x5c\x65\x84\x52\x57\x29\xb1\x65\xc4\x0d\x7f\xee\x77\x35\x4b\x4d\x60\x9f\x06\xec\xfc\xfb\xa8\xab\xdb\xa8\xdf\x3e\xf6\x3e\xea\x62\x6f\xf7\x00\x3b\x32\xb7\x5b\xe3\xf9\x4f\x0c\x0b\x48\x5b\x7e\xab\x1f\x5b\xdf\x2d\x7a\x6c\x4a\x47\x81\x66\xb9\xb0\xa6\xda\x5d\x0f\x82\x6e\xc9\x4f\xf5\xaa\xca\x47\xd5\x94\x04\xdd\xdc\x4c\x2c\x46\xd2\xca\xd9\x24\xf1\xf3\xaa\xe0\xb3\x77\x9f\xd2\x5b\x85\x54\xf5\xf7\x7d\xc8\x19\x62\x5c\xef\xc3\x28\xed\x58\xb2\xe5\xaa\x0b\x1f\xc5\xa5\x92\x82\x4c\x84\xb8\x35\x08\x8d\xcf\xae\x93\xca\x9a\x07\x9d\x94\xe0\x96\x6e\xbc\x65\xd9\x96\x5d\x50\x5f\xd9\xac\x25\xaf\xde\xa4\xd9\xf5\x81\x35\xd5\xbe\xde\x0c\x45\xcc\xf7\xef\x59\x6f\x39\xef\x10\x3b\xe1\x30\xf9\x19\x03\xa9\xb1\x28\xeb\xd6\xa6\x23\x4c\xc1\x9f\x4d\x87\x17\x15\xa2\x6e\xc5\x88\xb6\xf9\x47\x89\xce\x7c\xe5\x49\xa0\xe8\xf3\xdb\x44\xac\xa9\x5f\x99\x28\xbd\x9f\x47\x01\x9b\x65\x92\x80\x75\x92\xa0\x71\x61\x1e\xd0\x49\xbb\x85\x98\x74\x48\x32\x0a\x98\x08\x18\x23\xba\x64\x58\xed\x34\x78\x87\xf7\x7c\x77\xb2\xf9\x44\xa2\x4f\xbd\x50\xfe\x06\x47\x45\x63\xa2\xcc\x67\x04\xaf\x2a\xd3\xe3\x9a\xf0\x22\x1c\x34\xee\x71\x6b\x90\xb1\xef\x3d\x2b\x01\xd7\x2c\x32\xe1\x50\xaa\xe9\x35\x87\x54\xf2\x97\xe2\x90\xd0\xb2\x51\x7c\xc5\x36\x27\x31\xd4\xe8\x38\x6c\x89\x55\x9f\x3c\xd1\xab\xc1\x8b\x7f\xd7\x96\xc1\x93\x88\xa2\xb6\xe6\x2e\xad\xf0\x7a\x53\x5c\xf5\x37\xbf\x26\xdd\x5a\x1c\x5d\x69\xd0\xcd\x42\xa5\x98\xd6\x42\xb8\x2d\xc7\x8d\x8a\x54\xa2\xcd\x5a\x95\xee\xc3\x81\x81\x47\x30\xe3\xe4\x43\xda\xef\x44\x2b\x64\x79\x77\x28\xa7\xe2\x80\xd6\xbe\x3b\xc4\xab\xbb\x83\x52\x7d\x76\x9c\xb2\x40\xcf\xec\x0f\x5c\xe1\xf7\xf7\x90\x42\xc6\xd2\xdc\xfd\x19\xc3\x1c\x4c\xa2\x99\x6d\x01\x7c\x35\x91\x81\x16\x27\x92\xd7\xc5\x87\xdb\x55\x8a\x12\x3b\x72\xf4\x9d\xe9\x97\x9b\xb2\xad\xb6\x9c\xe4\xe3\x82\xb5\x7a\x0e\xcb\x4f\xc6\x75\xbf\xe2\xb2\x5f\xd5\xe5\x08\x3b\x9b\xf5\x43\x89\x7e\x75\xf2\x21\xbb\xdd\x91\x71\x1d\x14\xba\xee\x0a\x39\xef\xed\x9b\x49\xc0\x0b\xeb\x26\xf7\xf0\x08\xcd\x54\xfd\x94\x7b\x5e\x36\x3d\xad\x3d\xfc\x6c\x2c\x3e\x2f\x13\xee\x0f\xf0\xf8\x08\xbb\x93\xdf\x11\x3c\xb7\x35\x30\xc6\x8f\xd7\xf4\x29\x9f\xcb\xa4\xd2\xfb\x80\xa7\x40\x15\xff\xf6\x7c\xaf\x6d\x5c\x2f\x44\x74\x1d\xf8\x9c\x58\x5c\xa9\x00\x3a\x12\x93\xbd\x71\x31\xa1\xee\x68\xd4\x0f\x98\x72\x70\x1c\xdf\x74\xd8\x4c\x71\x48\xaa\xdf\xb3\x7b\x72\x09\x03\x09\xc9\x19\xbf\xd1\xda\x7e\x27\x79\x07\x3b\xa8\x2a\x62\x51\xfd\xa6\xd3\x20\xbe\x38\xca\xd3\x62\x85\xdc\x42\xff\x58\x8e\x7f\xb4\x09\x03\x7d\x5e\x9c\xd1\x2e\xd7\xad\xfe\x84\x09\x82\xe9\xd6\x6f\x8e\xfa\xe2\xfc\x1a\xac\x71\x65\xf8\x95\xd6\x40\x93\x8e\x71\xb8\xce\x48\x1f\x69\xe8\x9f\xf5\x87\xf7\x11\x5c\x9b\xc5\x9f\xc8\xae\x08\xc0\xf6\xf5\xc0\x0a\x73\xfd\x21\x28\xba\x92\x23\x5e\x77\xed\x72\xe9\x63\x4d\x5d\x37\x0f\x95\xfa\x7f\x00\x00\x00\xff\xff\xac\xb6\x3b\x9c\x8d\x0e\x00\x00"
-
-func runtimeHelpTutorialMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpTutorialMd,
-               "runtime/help/tutorial.md",
-       )
-}
-
-func runtimeHelpTutorialMd() (*asset, error) {
-       bytes, err := runtimeHelpTutorialMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/tutorial.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsAutocloseAutocloseLua = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x51\x6b\xe3\x38\x10\x7e\xcf\xaf\x18\x7c\x0f\xb1\x69\xec\xab\xef\xe9\x28\xf8\xe0\xda\x3b\x96\x40\x68\x97\x76\xd9\xee\xd2\x16\x2a\xcb\xe3\x58\xd4\x91\xcc\x78\xb4\xe9\x52\xfa\xdf\x17\xc5\x49\x6a\x67\x5d\x27\x81\xfa\x41\x89\xad\xf9\x34\xa3\x6f\xbe\x99\xf9\xfa\xff\xf5\xcd\xf4\xea\x12\x12\xf0\xe2\xe8\x34\x3a\xf5\x46\xa3\xd2\x48\x51\x82\xb5\xac\x4a\x48\x40\x2d\x2a\x43\xec\x7b\x0b\x25\xc9\xfc\xe9\x3e\x7a\xc1\xc6\x84\xf3\xbf\x5b\x16\xee\x75\xbb\x27\x2c\x1b\x59\x9a\x1a\x3f\x0b\x45\x35\x24\xf0\xe2\xdd\x7b\xf7\x9e\x37\x01\x6f\x3c\x76\xeb\xe3\xa3\x5b\xfd\xc0\xad\x2f\xaf\x6e\xbd\x7b\xf0\x5e\x5b\xe8\x4b\x5c\x96\x4a\xb7\xf0\xbf\xd9\x8e\x72\xab\x25\x2b\xa3\x41\x16\x82\xfe\x65\xbf\x66\x9a\x80\x0a\x46\x00\x00\x61\x08\xa5\x15\xa0\x74\x86\xcf\x4a\xcf\x41\xd5\x60\x34\x82\xc9\x73\xc8\xc9\x2c\x60\x6e\x56\x66\x84\x6c\x49\x37\xb7\x8d\xae\xad\xc6\xed\x31\x61\x1c\x8c\x50\x67\x2d\x2f\x46\x3b\x03\x3f\xad\x26\x40\x8d\x93\xdc\x10\x28\x48\x20\x9e\xc0\x1f\x3b\x37\xce\x9a\xf3\xdd\xa3\x72\x20\x48\x92\x4d\x94\x5d\xc3\x3b\xf5\x30\x81\xbf\x02\xe0\x02\xf5\x16\xe1\x9e\x86\x09\x69\x69\xa6\x34\x42\x02\x69\x15\x9d\xdb\xfc\xcc\xbd\xf9\x69\x15\x5d\x58\xaa\x0d\x45\xdf\x83\x51\x07\xa5\xf2\x8d\x9b\x35\x72\x02\x6f\xc6\xdf\x4e\xe2\xe0\xf8\x40\xdc\x93\x56\x67\xe7\x42\x3e\xd5\x95\x90\xe8\x07\x7d\xdb\x8d\x8b\x6b\x35\x2f\xb8\xcf\x80\x50\x3c\x75\xbe\xae\xa8\xdd\x89\xbc\x15\x29\xfc\x03\x31\x08\x9d\x81\xdf\xa4\x66\x5a\xdf\x1a\xca\x2e\x0a\x41\xfe\xc0\xfd\xc2\x38\x08\xc0\xd0\x10\x05\xe1\x3e\x0a\xdc\x11\xfd\x1c\xf4\xde\xa1\xef\xff\xfe\x84\xc7\x1f\x99\xf0\x36\x6d\x49\xb2\xd6\xb2\xa3\x4a\x48\x46\xba\x30\x56\xf3\x54\xdf\x30\x29\x3d\xdf\x50\xb2\x62\x49\x1b\x86\x63\xd8\x3d\x79\x97\x9a\x30\x74\xdf\x61\x1c\x8e\xa1\x40\x42\x57\x6c\x6c\x20\x43\xc2\x1c\xb5\xc4\xd5\x66\x65\x94\x66\x24\xb7\xf1\x76\xe6\xcc\x48\x58\x16\x4a\x16\x0e\xe2\x78\x5a\x08\x56\x52\x94\xe5\x4f\x58\x88\x0c\xfb\x1c\x2d\x0b\xd4\x20\x8d\xfe\x81\xc4\xae\xb0\xe7\x06\x6a\x26\x2b\x79\xe5\xb3\xb4\xa2\x0f\x34\x65\xd0\x88\xd9\xca\x24\xc5\x75\x64\xe4\x62\xcb\x20\x45\x29\x6c\xdd\x04\xb9\xad\x75\x7c\xae\xd0\x1d\x29\x40\x1b\xbd\x8d\xbd\x71\xd4\x23\xff\x55\xa6\xa6\xba\x46\x62\x3f\xec\x5c\x6f\x32\x58\x6d\x03\xa5\x34\xc3\xfc\xf0\x4a\xda\xfd\xbf\xf9\x5d\xb7\x37\x26\x8b\x3b\xcd\xac\x22\x6c\xe2\x5d\xf7\x59\x3f\xad\x1a\x67\x07\xcb\xb0\x63\xec\x3a\x23\x24\x43\x85\xd7\x06\x68\x7c\xe6\xfd\x88\x93\xb8\x8d\x59\xba\x29\xd0\xc8\xf5\x13\xf2\x0c\x45\xa6\xf4\xfc\xb6\x50\x8c\x4d\x57\xda\x28\x7b\xd4\xdb\x99\x3b\xd3\xa4\xdb\x9b\xb7\xd1\x77\x0a\xb6\x0d\x78\xb7\x64\x55\xde\xba\xca\x30\x7c\xa0\xb3\x76\xf3\xd0\x2b\x89\xc6\xe4\x8b\x48\x7b\xb7\x87\xd4\xe7\xdd\x6b\x0f\xa2\x08\x96\x75\xef\xc1\x37\x2c\x88\xaf\xf2\xd9\xbb\x9e\x07\xc5\xb8\x96\x57\x2e\xca\x1a\x0f\xd2\xe4\x7e\x51\xbe\x8d\x99\x8d\x20\x0f\x1b\xb2\x47\xc9\x16\x3e\x64\x52\xba\xf1\x34\x24\xf8\xe3\x47\x40\x5a\x9d\xfd\x87\x25\x72\x3b\x17\x7b\xe9\xfb\x15\x00\x00\xff\xff\x58\xaf\xc0\xe6\xc3\x09\x00\x00"
-
-func runtimePluginsAutocloseAutocloseLuaBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsAutocloseAutocloseLua,
-               "runtime/plugins/autoclose/autoclose.lua",
-       )
-}
-
-func runtimePluginsAutocloseAutocloseLua() (*asset, error) {
-       bytes, err := runtimePluginsAutocloseAutocloseLuaBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/autoclose/autoclose.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsCommentCommentLua = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x58\x6d\x6f\xdb\xb6\x13\x7f\xef\x4f\xc1\xbf\x5a\x03\x92\x63\x2b\x0f\xff\x77\xde\xbc\xa2\x0d\xb6\x76\x58\xd6\x02\x49\xd6\xa5\x08\x3c\x80\x96\x4e\x32\x6b\x8a\xd4\x48\xaa\x89\x5b\x74\x9f\x7d\x20\xa9\x67\xca\x8e\x13\xac\x18\x66\xa0\x88\xf9\xe3\xdd\xef\x8e\xc7\x7b\xa0\xfb\xfe\xc7\xcb\xab\x9f\xdf\xbd\x45\x0b\xe4\x9d\x86\x27\xe1\x89\x37\x1a\x51\x1e\x61\x8a\x0a\x45\x28\x5a\x20\x92\xe5\x5c\x28\xdf\xcb\x48\x24\xf8\xb1\x06\xbd\xa0\x94\x88\x38\x4b\x48\xea\xc8\x58\xb8\x96\x5a\x15\x49\x02\xc2\x91\xb2\xb0\x17\x54\xe6\x12\x85\x16\xe8\xcb\xd7\xd1\x28\x51\xb7\x1e\xce\x71\xb4\x06\x4d\xe4\x2d\xb5\x67\xcf\xd0\x58\x7a\x66\x67\x85\x95\x85\xe6\xf3\x1a\x8b\x2c\x72\x7c\xdc\x20\x47\x47\x2e\x96\xe1\x0d\xf4\xe9\x86\x4c\x44\x62\x2b\x15\xa6\x0e\x2c\x65\xc9\x39\x41\x63\x89\x26\xc7\x16\x8e\x1d\x43\x31\x16\xca\x05\x79\xb4\x01\x91\x10\xea\xb8\x00\x34\xb3\xd0\x6c\x56\x63\x09\x91\xeb\xbe\x5c\x1a\xcb\x48\x90\x5c\x39\x38\x95\xd4\x31\x97\x72\x07\x5a\x63\xb9\x01\x4a\x1d\x5b\x6b\x95\x95\xe0\xf7\xff\x33\x30\x9a\xcd\x7e\xb0\x5b\x84\x11\xbb\xf3\x5d\x2d\xfd\x11\x7f\xc2\x0e\xb5\x06\xdb\xce\xb5\xb7\x08\xfb\x88\xcf\x2c\xfc\x45\x3b\x8d\x9e\x7d\x2d\x77\x0a\x4a\x70\xff\x30\x1b\xae\x28\x61\x0e\x0b\x2d\xb0\xe3\x77\x86\xc5\x26\xe6\x77\x6c\x87\xef\x2c\x25\xec\xbe\x4f\xcf\x48\xd6\x87\xf8\xea\xa3\x9b\x3f\x3c\xc2\x55\x50\x7c\x7b\xdb\x81\xdd\xc8\xb1\x8c\xaa\xd4\xf8\xa2\x37\xca\xc3\xe4\x20\x9c\x84\xc9\xd7\xb9\x43\x9c\x73\xb6\x1d\x00\xef\x40\xc8\x75\x7d\x39\x2d\x0a\xc1\x95\x7b\x93\xf9\x56\xad\x39\x73\x64\x0d\xfa\xff\x3e\x2c\x8a\xd5\xd6\xc5\xa4\x7b\x53\xfa\x60\xee\xd5\x0e\xba\x25\xff\x74\xd3\x48\xde\x91\xc4\x25\x55\x50\xde\xc1\xb8\x81\x78\xe6\x10\xaa\x3b\x92\x0e\xe5\xc8\x27\x87\xf0\x7e\x67\xb2\x6e\xb1\xcb\xfb\xb9\xa2\x6d\x31\x7c\xde\x91\xa9\x9f\xbb\x25\x37\x4a\x0a\x16\x29\xc2\x19\xe2\xec\x95\xe9\x55\xef\x72\x60\xfe\xaa\x48\x82\x11\x42\x08\x91\x44\x77\xb6\xf0\x0a\x94\x22\x2c\x95\xba\x95\x64\x19\x30\xa5\xb6\xb9\x29\xf1\x05\x62\x84\x22\xb5\x06\x66\xc4\x4b\x95\x44\xdd\x76\xb5\x74\x47\xb0\x2a\x4b\xf4\xd7\x80\x8e\xfe\xec\xb5\xb3\x97\xb2\xa6\x01\x2a\xe1\x11\x9c\x65\x0c\x6a\x6d\x16\x8f\xaa\xbf\xfa\x5f\x13\x1b\x22\xcf\xad\x2a\xc4\xfe\x2a\x9f\x22\x4a\x18\xbc\x9d\xa2\x92\xef\x12\x52\xb8\xb7\xe1\xb2\x4d\x5e\x6f\xa3\x05\x5a\xe5\xe1\xab\x22\x99\x5f\x10\x06\xbe\xd1\xa8\x43\x2a\x95\x20\x2c\x0d\x33\xac\xa2\xb5\xd9\xea\x71\x75\x83\x23\x40\x15\x82\x21\x25\x0a\x18\xb5\xfd\x2c\xf1\x04\xeb\x53\x77\x1d\x2e\xd9\x8c\xe9\xda\xe1\xc3\x5d\xac\x06\x9f\x21\xb9\xde\xe6\x8d\xe8\xae\x68\xb6\xd4\x24\xe8\x81\x3a\x5b\xe5\xe1\x79\x21\x24\x17\xfa\xcf\x15\x50\x30\x9e\xb5\xe9\x0b\x91\x73\xd9\x15\xbd\xe0\x51\x4b\x82\xb0\x18\xee\xd1\xa2\x0a\x57\x42\x58\xec\xb7\x9c\x9a\x22\x6f\x3c\x96\x5e\x80\x66\xe8\xd4\x75\x1b\xe2\x0b\x7b\xc6\x96\xc6\x3c\x95\xc5\xca\x37\x5a\x53\xa4\x04\xc9\xcc\xa1\x03\x7b\xe8\x32\x16\x97\x90\x53\x1c\x81\x6f\x27\xb7\xf6\xc8\x3f\xa9\x02\x38\x45\x2d\xf4\x99\xbd\xb8\x6a\x47\xbf\x19\xc2\xd7\xa0\x2e\x00\xc7\x84\xa5\xbf\xaf\x89\x02\x99\x6b\x26\x63\x03\x85\x61\xd7\xb3\xa6\xbe\xaa\xd3\xcf\xdf\x60\x59\x07\xca\xef\x25\xc1\x70\x38\x6f\x4f\x97\xe1\x07\x1d\x21\xa0\xe6\xeb\x43\xe2\x67\x8d\xf8\xd9\x01\xe2\xa7\xcb\xf0\xa6\x61\xbf\x39\x80\xfd\xa6\x61\xb7\xe2\x9d\x92\x6c\xf4\xb4\x9c\x4d\x80\xf0\x06\x1d\xd9\x9b\x1e\x10\xfb\xd0\x88\x7d\xe8\xe4\x7e\x13\xb4\x4b\xd0\xd7\xae\xc0\x0f\xba\x1b\xe1\x05\x96\xea\x3d\x91\x05\xa6\x37\x36\x7d\x4b\x85\xd7\x50\xc1\x7e\xd0\x2b\x9b\x82\x0d\x16\xce\x53\x2b\xfd\x3f\x5a\x46\x8f\x6e\x50\x75\xd8\xea\x9a\x7b\x48\xbf\x7d\xd5\xdf\xb8\xe8\x7a\xce\x05\xed\x39\x75\x58\xe9\x3d\xa1\xfc\x9e\x50\x82\x4f\x28\xc3\x47\x96\xe2\xf0\x84\x1c\x2e\xc9\x59\xaf\x24\x1f\x28\x4b\xd4\x1b\x9f\xdf\xae\x44\x15\x4f\x53\x0a\xe7\x87\x96\x29\x49\x0e\x1a\xde\x3b\xf2\xf9\x61\xfe\x4e\x3c\xf7\x4c\x5d\xf7\x4d\xd1\x39\x48\x93\x7b\x5a\x4f\x2a\x2c\x0c\xcb\x54\xeb\x5d\xec\x28\x1f\x5b\xdc\x98\xd2\x92\x43\xf7\x80\xfa\x8d\x90\x70\x51\x35\x27\x97\x0d\xc5\xbc\x5d\x05\x8c\xab\xc1\x20\xed\x8d\x91\xfe\x74\x6d\xdb\x77\x48\x27\x61\x04\xe0\xcd\x60\x7e\x3c\xda\xc7\xb6\x29\xc7\x8f\xe1\xfb\xda\xd5\x72\x9c\x12\x18\x52\x0e\x0e\x78\x15\x96\x7a\x46\x07\x8b\x54\xfe\x03\x4d\xbf\xed\xb1\x7e\xa0\xfe\x31\x96\x13\xaf\xf5\x74\xe8\x3c\x62\xbc\xa9\x37\x1e\x8f\xc7\x5e\x50\x21\xcf\x35\xf2\xbc\x59\x07\x7a\x1d\x34\x6b\x5f\xaf\xfd\x66\xfd\x42\xaf\x5f\x34\xeb\x89\xa7\x67\xc1\xa4\x01\x66\x06\x98\x35\x40\x68\x80\xb0\x01\x8e\x0c\x70\xd4\x00\x4b\x03\x2c\x1b\xe0\xd6\x00\xb7\x0d\x30\xb6\xcf\x2f\xcf\x0f\x27\x2d\xdf\xa4\x65\x92\x13\x2f\x18\x3d\xee\x65\xd4\x16\xec\xf7\xcd\xf9\x6b\x01\x58\x81\xb8\x5e\x63\xe6\xef\x98\xa5\xb7\x67\xcb\x81\xdc\xb6\xf7\x51\x25\xe3\x62\xdf\x00\xe8\xe8\xed\xf3\x46\xb7\xd8\x05\x3a\x71\x8d\x95\xf9\x55\x9a\xaa\xbe\x55\xf3\xb8\x9f\x89\xd5\x67\x4f\x07\xd9\x33\x7b\xf6\xf6\x94\xc1\xfa\x38\x30\x14\xce\x34\xdb\x1d\x8a\xb3\x7f\x3f\x14\xa7\x07\x85\xa2\xaa\xfd\x76\x48\x86\x27\x50\x6b\x38\x0e\xce\x09\xb7\xff\xeb\x9f\x1f\x9d\x9e\xa1\x91\x0c\x62\xdd\x0e\xcb\xaa\xd0\xe5\xef\x87\xb3\x60\x2c\x27\xcf\x4d\x79\x9c\xb6\xca\xa8\x2e\xff\xf6\x8f\xc1\x92\xa3\x67\xab\x7c\x8e\x99\x2e\x2b\xfd\x2b\xb3\x9a\x5e\xe9\x55\x47\xb9\x12\x2b\x56\x95\xcc\xe9\xb4\xc4\x28\x30\xdf\x2a\x04\x8b\x85\xf9\xd2\xff\x89\xcc\x88\x2a\xe7\xbb\xfd\x9f\xd1\xf0\x57\xbc\x31\x51\xc2\x2c\xf6\xab\x86\xe7\xd5\xb1\x99\x56\x62\x6f\xf9\x39\xcf\x72\x0a\x0a\x3a\xda\xd7\x62\xfb\x8a\xb0\xf8\x17\xd8\xfa\xde\x4b\xaa\x66\xc7\xfa\xfc\xb4\xc0\xf3\x52\x3f\x6c\x18\xcd\xe0\xd9\xa9\x7c\xae\x04\xfd\x8d\xc5\x20\x64\xc4\x05\x3c\x86\xe5\x65\x1c\x5f\x16\x4c\x91\x0c\x7e\x22\x14\xba\x67\x30\x02\x97\xd7\x6f\x80\xe6\x53\xe4\xad\x81\xe6\xc7\x15\x65\x16\x7b\xf6\xd1\xf2\x77\x00\x00\x00\xff\xff\x72\xa3\xb1\xc1\x74\x16\x00\x00"
-
-func runtimePluginsCommentCommentLuaBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsCommentCommentLua,
-               "runtime/plugins/comment/comment.lua",
-       )
-}
-
-func runtimePluginsCommentCommentLua() (*asset, error) {
-       bytes, err := runtimePluginsCommentCommentLuaBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/comment/comment.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsCommentHelpCommentMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x54\xc1\x6e\xeb\x36\x10\xbc\xf3\x2b\xb6\x0e\x72\xf1\x8b\x6d\xa0\xbd\xa9\xc5\x03\x8a\x77\xea\xa9\x3d\xb4\x87\xde\xb8\x92\x56\x12\x63\x8a\x54\xb8\x2b\x3b\x4a\x90\x7f\x2f\x48\xc9\x16\x95\xf4\x64\xcc\x70\x67\xb8\xda\x35\xe7\x01\x7e\xf8\xbe\x27\x27\xf0\x97\x1d\x5b\xe3\x94\xfa\xbb\x23\xa8\x16\x6e\x48\x1c\x0c\xc1\x5f\x4c\x4d\x0c\x38\x8a\xbf\x1d\x1a\xd7\x9e\x46\xb7\x82\x63\x52\xd6\xd4\xe0\x68\x05\x4a\xe3\x6a\xe3\x5a\x58\xeb\xd7\x62\x40\xb0\xc6\x11\x18\x06\xfd\xbb\x95\xc3\x49\x2b\x74\x35\xe8\x1f\x12\xec\x3f\xae\xa6\xc0\x95\x0f\xa4\x9f\xe0\xda\x99\xaa\x8b\x65\xf4\x32\x9a\x0b\xda\xa8\x35\x0e\x7a\xcf\x02\x42\xa1\x37\x0e\x2d\x2b\xf1\xb3\xf4\x70\xd2\x47\xf8\xd7\x8f\x50\xa1\x03\x42\x36\x76\x82\xde\xd7\xa6\x99\x40\x3a\x4c\xca\xc9\x8f\x01\xf4\xd2\x1b\x1f\x9f\xd9\x3b\xad\x1a\x63\xa9\x50\x4a\x6b\x1d\xb1\x7a\x57\x00\x00\xbb\xd8\x58\xbb\x2b\x60\xb7\x34\x7d\x5c\x7e\x77\xea\x23\x96\x2a\x75\xbb\x09\x2d\x7b\xa0\x57\xaa\x46\x21\xc0\xf4\xb5\xf1\x6b\xe6\xde\xaf\xc6\x5a\xa8\x3d\x48\x47\xc0\xd8\x13\x48\x17\xa7\x82\xac\x22\xb3\x34\x32\x5f\xae\xbe\xdf\x26\x35\xfb\xff\xd1\xc4\x76\xa1\xc3\x4b\xb4\x65\xb2\x54\x89\xf1\xee\x29\x79\x2d\x8b\x49\xf6\xf7\xa9\x5a\x9b\xce\xe2\x6c\x59\xcd\x02\xaa\x8f\xdb\x8d\xca\x34\xd0\x2c\x2b\x69\x5e\x67\x4d\x92\x0a\xa1\x44\xa6\x1a\xbc\x4b\x26\x71\x28\xb1\xf6\x49\x95\xa3\x80\x91\xb8\x05\xef\xec\x04\x78\x41\x63\xb1\xb4\x04\x8d\x0f\x50\x51\x10\x34\xee\x5e\xce\x85\x52\x7b\xc0\x01\xab\x8e\x2a\xef\x9a\x02\xf4\x03\x3c\xb2\x56\x7b\x28\x51\x0a\xd0\x45\xb1\xc0\xaa\x00\x7d\x3a\xdd\xc0\xb7\x6f\x1b\xd8\xe3\x99\x32\xe9\x27\xa7\x2a\x4c\x2c\x68\x73\x86\x39\xea\xf7\xf0\xc8\xb0\x3f\x45\xa6\xce\xfd\x6a\x0c\xb2\xc1\xbe\x3a\x53\x48\x7b\x5f\x3d\xc8\xf6\x05\xe8\xc3\x61\x81\x8d\xe1\x2e\x3b\x6d\x6b\xae\x82\x19\x24\xa7\x2c\xdb\xdc\xb5\xf5\x39\xea\x90\xcf\x64\x6d\x6e\xd9\x49\x1f\xf1\x6f\x3f\x25\x06\x0e\x87\xef\x91\x35\xce\x14\xa0\x7f\x5d\x6a\x9e\xf1\x82\xb9\x4d\xc4\xf7\x9b\x57\xd6\xb8\x67\xfc\xb9\x00\xfd\x1e\x9b\x81\x87\x8f\x44\x8e\xd6\x60\xd6\xdf\xd9\x8b\x35\x2e\x97\xd9\x11\xf3\x7e\x7a\x0c\xe7\xda\x5f\xdd\xd7\x9e\x5c\x6b\xdc\x6b\x66\xe5\x4c\x9f\x21\x5f\x3e\x6f\xb6\x37\x20\x57\x69\x1d\xef\xd1\x22\xf5\x32\x50\xc8\xf7\x33\x74\xc3\x46\xe0\xdd\xb4\xc5\x57\x0a\xdc\xcd\xe3\xba\x6b\x82\x97\xcd\x44\x87\x49\x3a\xef\xf2\x8a\x44\xfc\x92\x31\x61\x2c\xa7\x0d\xe4\xcd\xd8\x62\x9b\x9b\xe9\x7e\xbe\x93\x5f\x36\x0b\xe3\xab\x69\x36\x06\x42\x71\x2a\x8f\x37\xe4\xfb\x5c\x2c\x57\xd3\x7e\x5a\xc9\x25\x17\xbf\xfe\xdf\xf6\x27\xdc\x78\xbc\x25\x8b\xbb\xe4\xed\xeb\xea\xdf\xb2\xbf\xe5\x92\x11\xe1\xfe\xfc\xe2\x2b\x75\x5e\xb2\x47\xda\x51\xa0\xa7\x14\x24\x31\xab\xd8\xf4\xc3\x3d\x15\x53\x04\xe9\x25\x18\xa2\x5a\x83\x1f\x62\xc4\x2c\x79\xc4\x24\x90\x9d\xc2\xee\xf6\xbe\x76\x73\x40\xfd\x19\xd6\x48\x65\x12\x59\x23\xf5\x6b\x9a\xee\x8f\xd5\xae\x80\x19\x24\x22\x33\x8e\x21\xbb\x5a\xc7\xd3\x8f\x25\x63\xff\x0b\x00\x00\xff\xff\xdd\x39\x14\xd9\x9d\x06\x00\x00"
-
-func runtimePluginsCommentHelpCommentMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsCommentHelpCommentMd,
-               "runtime/plugins/comment/help/comment.md",
-       )
-}
-
-func runtimePluginsCommentHelpCommentMd() (*asset, error) {
-       bytes, err := runtimePluginsCommentHelpCommentMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/comment/help/comment.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsDiffDiffLua = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x3b\x0b\xdb\x30\x10\x9e\xad\x5f\x71\x68\xb2\xc1\x51\xd2\x35\xe0\x21\x2f\x68\x97\xa4\xd4\xa5\x4b\x29\x45\x91\x4f\xb1\xa8\x2d\x19\xe9\x4c\x93\x25\xbf\xbd\x48\xb1\xdd\x94\x0e\x7e\xe8\xbb\xef\xa5\xfb\x76\xfa\x52\x7f\xba\x9c\xa1\x02\xfe\x41\x6c\xc4\x86\x33\xd6\x39\x25\x3b\x70\x01\x2a\x30\xfd\xe0\x3c\xe5\xdc\x05\x5e\x4c\xb8\x36\x1d\x0e\x92\xda\xb7\x69\x3c\xae\x67\x7c\x21\x86\x16\xbb\xee\x8d\xd5\x1b\xe5\xdd\x3a\xa1\xbc\x60\x4c\x8f\x56\x91\x71\x16\x9c\xdd\x8f\x5a\xa3\xbf\x0c\x68\xf3\xeb\xa8\x0b\x96\x19\x0d\xd7\x51\x8b\x1a\x89\x8c\xbd\x85\xef\xbc\x31\x5a\xdf\x46\x22\xf4\xfc\x07\x48\xdb\x40\x6e\x1d\x25\xce\xd7\xc7\x80\xa2\x56\x5e\x92\x6a\x8b\xd7\x28\xc2\x9f\x63\xc3\x67\x05\x9c\x17\x40\x2d\x5a\x96\x65\xab\x15\xa8\x16\xd5\x2f\xa0\x56\x52\xba\x06\xe0\xdd\x04\x0a\x2c\xcb\x5e\x8d\x7f\x96\x80\xde\x43\x05\x2e\x88\x9a\x24\x25\xa7\xdd\x35\x44\xb3\x82\x65\xb1\x56\x9a\x57\x60\x4d\x37\xdb\x4e\xda\xc6\xf8\xb3\xec\xb1\x4c\xc6\xf1\x0f\xaa\x65\x55\xa2\x1e\x3a\xf3\x9f\xdb\x22\xd4\x7a\x2f\x03\xce\xd9\x69\x41\xe2\x74\x47\x75\x70\x7d\x2f\x6d\x93\xf3\x9b\x21\x5e\x02\x5f\x1d\x78\xf9\x37\x87\x87\xd6\xfd\x8e\xf0\xc7\xd3\xee\xb8\x15\x6b\x0e\x42\x2c\xe1\xc9\x7f\xaa\xfb\xfc\xb7\x6e\x36\x07\x42\x15\x17\xb8\xdd\x3f\x08\x43\x9e\x04\x68\x9b\xf8\x89\x68\x8d\x74\x9c\x78\xf9\x2c\x88\x9c\x44\x89\xaf\xf8\xfc\x09\x00\x00\xff\xff\x92\x87\x8a\x37\x3c\x02\x00\x00"
-
-func runtimePluginsDiffDiffLuaBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsDiffDiffLua,
-               "runtime/plugins/diff/diff.lua",
-       )
-}
-
-func runtimePluginsDiffDiffLua() (*asset, error) {
-       bytes, err := runtimePluginsDiffDiffLuaBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/diff/diff.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsFtoptionsFtoptionsLua = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xcf\x31\x4b\xc5\x40\x0c\x07\xf0\xfd\x3e\x45\xc8\xd4\x07\xf2\x78\xea\x56\xe8\x22\x28\xb8\x58\xb0\xe2\x7e\x57\x13\x7b\x78\x4d\x8e\xde\x75\xe8\xb7\x97\x9e\x55\xa7\x16\x5e\x20\x4b\x7e\x90\x3f\xff\xf7\xc7\xd7\xee\xb9\x7d\x81\x06\xf0\xf6\x7c\x39\x5f\xd0\x18\x9e\xa5\xcf\x5e\x05\x54\x1e\x66\x66\x9a\xda\x48\x52\xb9\x93\x01\x00\x08\xda\xdb\x00\x9c\xa1\x01\x57\x3f\xf9\x40\x6f\x4b\xa4\xea\x64\x0a\x7a\x2e\xd2\x00\x7e\x2a\x82\x4e\xe5\xb8\x5d\x46\xfb\x45\xec\x03\x21\xe4\x81\xa4\xc8\x3a\xae\xee\x28\xb7\x71\xcd\xab\x30\x5b\x97\xb2\xa6\x68\x7b\x4a\x78\x03\xa8\xcc\xf8\x13\x4b\x21\xd1\xff\x77\xf6\x69\xf8\xfb\xbf\xcd\x46\x71\xc9\x83\xca\x21\xde\x1d\xea\xfd\x8e\x2e\x76\x0c\x3b\x24\x7e\xbc\xaa\x95\xfc\x96\x92\x0f\xb3\xee\x77\x00\x00\x00\xff\xff\xfc\x92\x06\xde\x84\x01\x00\x00"
-
-func runtimePluginsFtoptionsFtoptionsLuaBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsFtoptionsFtoptionsLua,
-               "runtime/plugins/ftoptions/ftoptions.lua",
-       )
-}
-
-func runtimePluginsFtoptionsFtoptionsLua() (*asset, error) {
-       bytes, err := runtimePluginsFtoptionsFtoptionsLuaBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/ftoptions/ftoptions.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsLinterHelpLinterMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xcf\x8f\xdb\x3a\x0e\xbe\xeb\xaf\x20\xb2\x08\x90\xc9\x38\x69\xcf\x3a\xe4\xd0\x05\x16\xbb\x40\x17\x3d\xf4\x01\xbd\x86\x91\xe9\x58\x1d\x59\xf2\xd3\x8f\x71\x8c\xa2\xff\xfb\x03\x25\xdb\x71\x5e\xdb\x41\x0f\x6f\x80\x51\xac\x98\xe2\xf7\x91\xfa\x48\xe6\x5f\xf0\x51\xdb\x48\x5e\x88\x3f\x5a\x02\x93\x9f\xa1\x37\xe9\xaa\x2d\xf8\x64\x03\x20\x28\xd7\xf5\xda\x90\x07\xe7\x67\x03\x67\x61\x74\xc9\x43\x70\xc9\x2b\x02\xe5\x6a\x12\x68\x6b\xe8\xd1\x07\x0a\x10\x5b\x02\x4f\x21\x99\xa8\xed\x15\x5c\x8a\x7d\x8a\x10\x1c\xc4\x16\x63\x7e\xd9\x51\x08\x78\xa5\x00\x7c\xc8\x68\x4b\x60\x53\x77\x21\x1f\x84\x42\x0b\x17\x82\x57\x4d\x03\xd5\xd0\x78\xd7\xc1\xa0\x63\xab\x2d\x74\x5a\x79\x77\x84\x0f\x23\xd4\xd4\x60\x32\xb1\xca\xae\x26\xae\x21\xf5\xbd\xf3\x31\x63\x8b\xc6\x19\xe3\x06\xc6\x6e\xb4\xa1\x38\xf6\x77\xa4\x48\x3e\x48\x21\xf6\xa0\x24\x5c\x95\xe2\x87\xe7\x67\x09\xd7\xe7\x67\xb1\x87\x5a\x42\xdd\xd5\x62\x0f\x57\x27\xe1\xea\xe0\x92\xb4\xe1\x6d\x8b\xe1\x85\x8c\x91\xd0\xb2\x07\xb1\x87\xaf\xf8\x8a\x32\xaf\x6a\xda\x05\xe5\x75\x1f\x25\x7c\x0d\xed\xdd\x64\xfe\x92\xc2\x74\xce\xe8\x48\x1e\x23\x49\x7e\xe2\x7d\x42\xc9\x8b\x6a\x49\xbd\x88\x3d\x58\xdd\x49\x5e\xc4\x1e\xdc\xe5\x2b\xa9\xa8\x5f\xe9\xa0\x24\x28\x83\xf6\x2a\xf6\xd0\x8f\xb1\x75\x56\x42\x3f\x36\x06\x5f\x28\xac\xbe\xea\xc6\x7e\x7c\xb0\x98\x20\x43\x9b\x99\x87\xb6\xe9\xf2\x76\xd0\x4d\x94\xe5\x43\xc1\xee\xff\xa8\x3e\x7d\xce\xb9\xf9\xa8\x6d\xba\x81\xb3\x66\x7c\x12\x7b\x18\xb1\x33\x32\xaf\xd9\x8d\xf8\x5f\x93\x93\xfd\xa8\x0f\x1d\x80\x2c\x5e\x0c\xd5\xd9\x03\x1b\x70\xbe\x41\x39\xef\x29\xf4\xce\xd6\x01\xa2\x03\x67\x09\x5c\x23\x62\x4b\x81\xee\x17\x52\x01\xa1\x6a\x21\xea\x8e\xf2\xc9\x4b\x6a\x1a\xf2\xec\x33\xe0\x2b\xd5\x15\xab\x6d\x68\xc9\xe6\x97\xe7\x53\x86\x3e\x0b\xe5\xba\x8e\xb1\x18\xfa\x46\x2a\x45\xb6\xcc\xca\x80\x41\x1b\xc3\x92\xcd\x07\xee\x14\x58\x05\x29\x6a\xa3\xe3\x08\x3a\xbf\x14\x17\x54\x2f\x57\xef\x92\x2d\xbc\x6b\x1d\x7a\x83\xe3\xa3\x30\x33\xb4\x8e\x59\xfc\x86\x22\x85\xe3\xcf\x2a\x04\x4d\x70\x80\x2c\xb6\x00\x29\x90\xcf\xf1\xd2\x2d\xd2\x94\x8e\x49\x95\xac\xe4\x39\xee\xa3\xf8\x0f\x8b\x5a\xdb\xa0\x6b\x02\xb4\x2e\xb6\xe4\xa7\x10\x8a\xd7\xa2\xeb\x26\x59\x15\xb5\xb3\x70\x2e\x90\xc7\x0e\x5f\xa8\xd4\xea\x19\x14\x5a\x71\x21\x50\x68\x38\xf9\xd1\x81\xa7\xab\x0e\x4c\x0c\xc1\xd2\xb0\xa0\x1d\xe1\xbf\xe4\x89\xb3\x95\xd9\xf4\xa4\xa0\x71\xbe\xa4\x74\xe5\x4f\xcc\x60\xb9\x32\x7e\x04\xdc\x59\xec\xa8\x5a\xbc\x56\xa0\xba\xba\x02\xf4\x57\xbe\x45\xef\x9d\x6f\x9c\xef\x30\x56\xe0\x42\x05\x43\xab\x23\x19\x1d\x62\x05\xb5\xeb\x30\xaa\xb6\x02\xe3\x9a\x26\x50\xac\x40\x2d\x0f\x68\x0c\xdf\xc3\xd3\x59\x88\x13\xb0\x7f\x99\x57\x70\x6b\xa5\x89\xd3\x02\x2a\x97\x27\x8e\x37\x17\x4c\x89\xc5\x71\xe6\xef\xf6\xaa\xab\x25\x74\xa8\xed\x72\x55\xde\x29\x0a\xa1\x34\x9f\x95\x6e\xc4\x29\x47\x20\x79\x4d\x1d\xd9\x98\x2f\xaf\xc7\x90\x3f\xd7\x6a\x2f\x0e\x04\x00\x64\xa8\x6d\x53\x32\xce\x72\x9d\x2c\x55\xf2\x9e\x6c\x2c\xf2\xe7\x30\xee\xc6\xf5\x2f\x8d\x6b\xed\x49\x45\xe7\xc7\x72\xe2\xb4\x4e\xa5\x84\xd6\x0d\x85\x8f\x0f\xb4\x62\xf3\x6e\xe9\xc6\x73\x5c\xa5\xbd\x66\xc0\x6d\x53\xb2\x54\xc1\xd6\xc8\x75\x5f\xad\x60\xdb\xc9\xe2\xff\xdd\x80\xde\x72\x51\x4c\x52\x17\x27\x70\x81\x8d\x43\xe4\xdc\x7f\xfa\xcc\x99\xd2\x61\x0e\x9e\xeb\x71\x11\xb1\xf3\x90\xec\x6a\x6b\x33\xaa\xeb\x59\x3a\x68\x98\x2b\x76\xd5\xdc\x9e\x25\x7c\xfb\x2e\x4e\x77\x39\x70\x0f\x72\xc9\x94\xc2\xf8\xf4\xb9\x20\x5e\x08\x10\x2e\x06\xd5\x4b\xde\xee\x6a\x07\xd6\xc5\xa5\x8c\x27\x12\x93\x66\x03\x9f\x0b\x4f\x19\x74\xfa\x73\xac\xf8\x05\x02\x76\xdc\xbf\x7e\xe3\xf4\x2f\x29\x37\x68\x02\xc1\x6e\x62\xba\x10\x7b\x12\xa7\x59\xcc\x0f\x61\x2c\x92\xbc\x10\x64\xb0\xde\x13\x67\x06\x79\x6e\x9a\x84\xd0\x63\x8c\xe4\x2d\xdf\x64\x3e\x9d\x87\xd9\x3d\x00\xf6\x81\x2a\x26\x34\xab\xe2\x72\x7e\x0d\xb1\x4c\x5c\x33\xb2\xa9\x7e\xc5\x48\x3c\x7f\xd1\x02\xdd\x50\xc5\xe2\xf7\xb7\xa2\xf2\xf4\x67\xd2\x9e\xd6\xe7\x38\xb0\xa9\x38\x27\xc1\x94\x4d\xe9\xa6\x7c\x3b\x75\x5d\x3a\xcc\xc4\x65\x56\x14\x78\x8a\xc9\x5b\xaa\xe1\x32\xae\x0b\x76\x09\x2d\x05\x6a\x92\x01\xfd\x30\x38\xca\xa1\x00\xef\x0f\xda\xd6\x74\xa3\x32\xfc\xc3\xdb\xec\xdf\x73\x55\xcf\x1c\x95\x33\xa9\xb3\x6f\xb2\x54\xce\xfc\xc3\x24\x0b\xe8\xef\xd0\x9c\xba\x9a\xbc\xb7\x6f\x6e\x56\x98\x59\x36\x2e\xe7\x9e\xbb\x0f\xd7\xdf\x1d\xb1\x62\x02\x3a\xce\xc0\x2b\x7d\x97\x8b\x9b\x2d\xb9\x18\x15\x5a\x45\x86\xea\x23\xf0\x34\x9a\xf1\xf8\x0d\x77\x2e\xaa\xe7\x59\x7a\x7c\x9b\xac\xd5\x46\x88\x0f\x64\xdc\xc0\x47\x8b\x96\x78\xd0\xe5\x62\xd1\x56\x99\x94\x07\x27\xae\x6b\x08\xed\x78\x17\x7c\x0a\xda\x5e\x45\x19\x24\x3a\x84\x9e\x8c\x39\xcf\xc6\x43\xab\x55\x5b\x5a\x74\xc8\x27\x67\x0b\xaa\x61\x70\xbe\x0e\x3c\x88\x31\xfb\x3a\x0a\x71\x3e\x9f\x4d\xc2\x65\x04\x81\xb6\x3a\xee\x4a\x99\x1e\x0e\x7c\x43\x65\x78\x4d\xd4\x1f\x07\xf0\x6c\x95\xb5\x9c\x7f\xe4\xdd\x29\xe6\x77\x3f\x8e\xb2\xcd\x4c\x66\x53\xc1\x86\xff\x57\xfb\x6f\x9b\x6d\xb3\xf9\x5e\xc1\x66\xdb\xc8\xad\x91\x5b\x25\x61\xdb\xf1\xf7\xdf\xab\x72\x15\x15\x44\x9f\xe8\x49\x90\xad\x99\xb7\x10\xf3\x78\xfd\x5b\x06\x11\x3a\xbe\xec\x38\xf6\x5a\xa1\xe1\x20\x0e\x0a\xf9\xf8\xd0\xf2\x81\x95\xd8\xb2\x82\x73\x71\x97\xfe\xc0\x3f\x96\x96\x24\xef\xfe\x5d\x7e\xb2\xe4\x7b\x0f\xf4\x24\xdf\xcc\xd6\x4f\x62\xbd\x2a\xc5\x21\xe6\xa5\x3c\x7f\xdb\x1c\x9a\x30\xda\x88\xb7\x03\xa3\xf2\x8b\xc3\x17\x2c\xd9\x38\x7c\xa1\x5b\xf4\xb8\xc9\x09\x78\xcc\xc3\xf1\x39\xa7\xe2\x1e\xf9\x5f\x01\x00\x00\xff\xff\x14\x89\x62\x32\x38\x0c\x00\x00"
-
-func runtimePluginsLinterHelpLinterMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsLinterHelpLinterMd,
-               "runtime/plugins/linter/help/linter.md",
-       )
-}
-
-func runtimePluginsLinterHelpLinterMd() (*asset, error) {
-       bytes, err := runtimePluginsLinterHelpLinterMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/linter/help/linter.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsLinterLinterLua = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x19\x6b\x8f\xdb\xb8\xf1\xfb\xfe\x0a\x42\xa8\x01\x39\x2b\x69\x93\xeb\x15\x28\x0c\x18\x45\x9a\xe6\xfa\x40\x1e\x45\x36\x6d\x3f\x24\x7b\x05\x4d\x8d\x6c\xde\x52\xa4\x4a\x52\xf6\xba\x8b\xf4\xb7\x17\xc3\x87\x4c\xd9\x52\xb2\xbd\x9e\x81\x95\x28\x72\x38\xef\x19\xce\x70\xff\xfe\xfa\xc3\xed\x9f\xdf\xbf\x23\x6b\x92\xbd\xa8\x9e\x57\xcf\xb3\xab\x2b\xa1\x18\x15\xa4\xe5\x4c\x2b\xb2\x26\xbc\xed\x94\xb6\x79\xe6\xbe\xb3\x65\x58\xd5\xbd\xb4\xbc\x85\x64\x3d\xcc\x0c\x10\x0d\x17\xd0\x51\xbb\x4b\x40\xf0\xf3\x26\xce\x0f\x80\x66\x07\x42\x9c\x13\xba\x71\xb3\x03\xcc\xa6\x6f\x1a\xd0\x17\x40\x7e\x7a\x80\x62\x4a\x36\x7c\x7b\x01\xe5\xa7\x07\xa8\xde\xf2\x4b\x72\x38\x39\x40\x28\x93\xac\x2b\x93\x2d\xa3\x4e\x04\x97\x16\x34\xae\x3e\x7e\xb9\xba\x2a\x4b\xc2\x34\x50\x0b\x86\xd0\xb0\x44\x40\x5a\x7d\x2c\x08\xa3\x42\x90\x46\xab\x96\x1c\xb8\xdd\x71\x49\xa8\x24\x5c\x72\xcb\xa9\xe0\xff\xa6\x96\x2b\x49\x9a\x5e\x32\x1c\x14\x44\x2a\x8b\xb8\x6a\xae\x81\x59\x71\x24\xd4\x46\x58\x22\x14\xad\x09\xaa\xf5\xaa\x2c\x11\x46\xd2\x16\x56\xee\x49\x54\x43\xec\x0e\x02\x5d\x5c\x43\xc5\xda\x63\x07\xab\x61\x44\xac\x22\x6c\x07\xec\x9e\x34\x4a\xe3\x47\x6f\xd2\x0d\xac\xad\x57\xa4\xa5\x5c\x46\xe6\x3b\xad\x18\x18\x43\xec\x0e\x59\x30\x04\x1e\x80\xf5\x16\x6a\x04\xa6\x7a\x6b\x56\xf8\xec\x5b\x90\xd6\x20\xb6\x8e\x1a\xf7\x3e\xb1\x11\x31\xe0\x06\xfc\x21\xbd\x45\x83\x30\x1a\xd0\x7e\x01\x98\xf5\x5a\x83\xb4\x8e\x4f\x27\xcc\x08\xbe\x9e\x85\xf7\x1a\x52\xfa\x38\x6c\x02\xad\x95\x6e\x94\x6e\xa9\x5d\x91\x9d\x3a\x78\xb6\xb4\x81\x84\xa9\x1b\xa6\xda\x8e\x8b\x44\x3e\xd5\xdb\xae\xb7\x91\xe8\xa2\xf1\x1a\x2b\xc8\x42\xac\x70\x0f\x10\xd9\xb7\x1b\xd0\x05\x59\xb4\x2b\x4f\xe2\xe6\x40\xb5\xe4\x72\x4b\x5a\x30\x86\x6e\x1d\x6d\x65\x10\xda\x58\xb4\xc4\xfb\x5b\xd4\x1a\x37\x51\x0f\xdc\x10\xd3\x77\xe8\x40\x50\x13\xa5\x49\x2f\x93\x4f\x19\x29\xab\x0e\x1d\x80\x0a\x64\x99\xb6\x05\xa9\xa1\xa1\xbd\xb0\x2b\xf4\xae\xb2\x24\x87\x1d\xb7\x80\x14\x56\xc4\xec\x54\x2f\x6a\x27\xd4\xfb\x5b\x4f\x75\x03\x84\x92\x8d\xa0\xec\xde\x7d\xe6\xb5\x42\x47\xc2\xc0\x4c\x0d\xe2\x0c\xbf\x03\x83\xfb\xcc\x32\x12\x0e\x3f\xa5\x09\x3d\x51\x21\xb9\x92\xe2\xf8\x34\x04\xb3\x9c\x37\x54\x18\x20\x79\xe0\x77\x60\xcf\x6d\xac\x55\x4b\x2d\xdb\x8d\xa4\x19\x5c\x75\x03\xc4\x11\xec\x34\xa0\x92\xa8\x8b\xa9\x9e\x92\x8e\x5a\x0b\x5a\xa2\x61\xdd\x6e\x17\x50\x23\x39\x10\x0d\x65\xb6\x0f\x39\x07\xb1\x15\x28\x5a\x42\x25\xc8\xe2\xe4\xa3\xcc\xf2\x3d\xb5\x40\x94\x8b\x4a\x78\xa0\xcc\x7a\xd4\x4f\x15\x4e\xc3\xbf\x7a\xae\x21\xdd\xea\xe4\x13\xaa\x69\x0c\xd8\xe0\x43\xfe\x83\x1c\xb8\x10\xce\x56\x75\x0d\x75\x12\x2d\xd1\xc9\x88\x06\xdb\x6b\x09\x35\xd9\x1c\xcf\x02\x7a\xf8\xf5\x06\x9a\x5e\x10\x9e\x46\x7c\xd8\x67\xc8\xf3\x92\xcb\x1a\x1e\xa0\x76\x58\xcd\x37\x85\x78\xee\x42\x3f\xb2\xca\x94\xe8\x5b\xf9\x55\x66\x99\x12\xbf\x3c\xaf\x9e\xee\x53\xb9\xa5\x42\x6c\x28\xbb\x5f\x0d\x49\xd3\x65\x36\xea\x98\x6d\x94\x33\x05\x66\x2a\x0c\xd0\x13\xd5\x02\x99\xe0\x36\x12\x1f\xfb\xbe\x37\x65\x04\xc6\x78\x65\x54\x32\x10\x50\x57\xe4\x23\x0a\x1d\x48\xe2\x0a\xe6\x39\xf0\x8e\xb4\xe9\x9b\xea\x9b\x3c\x4b\x2e\xae\x06\x46\x5b\x7a\x0f\x6f\x1c\x3f\x39\x26\xad\x22\xf1\x51\xd6\xd6\x85\xcb\xab\x45\x9a\xc7\x0a\xa2\x4c\x71\x8a\xca\x22\x86\x4d\x11\xfd\xab\x88\xd6\x2b\x06\x2e\x97\x57\xc8\x10\x6f\xe2\x01\xf5\x09\x49\xdd\x91\xf5\x1a\x79\x41\xc6\xe5\x55\x14\xfc\x0c\x02\x53\xcd\xe4\x52\x35\x44\xe6\x7a\x60\x79\x06\x92\xb5\x35\x59\xa3\x34\x33\xeb\x28\x22\x59\x3b\x49\x67\x20\x12\xf1\xc9\x3a\x55\xc6\x0c\xbc\x3b\xa0\x95\xc1\x28\x9f\xe5\xff\x94\xd7\xd6\x49\x8e\x53\xda\x9b\x7e\x66\x53\xd0\x35\x59\x47\xad\x7f\x6b\x43\xb0\x09\x59\x47\xeb\xe0\x86\xe7\x73\x8a\x1a\x80\xd9\x13\x80\xa3\x07\xae\x4f\xce\xa8\xb4\x73\x2e\x04\x06\x59\x5f\xe1\xdf\xc9\xd3\x34\xb4\x6a\x9f\xfa\x9a\xf7\x8a\x73\x83\x23\x82\xf1\xc6\x4e\x03\xd6\x1b\x79\x80\x77\x95\x4e\x0d\x7b\xd9\xbb\xb2\x2c\xbb\xa9\x61\x7f\x83\x1f\x59\xf4\xb2\x50\xea\x55\x7f\x7c\xff\xfe\x16\x9d\x2c\x3b\x70\x59\xab\x83\xc9\xc6\xae\x96\xe0\x78\xf7\xb7\x37\xd9\xc0\xb6\x1b\x24\x71\x91\x6d\x19\xcb\x0a\x92\xb9\x87\x1f\x3f\x66\x65\x63\x8e\xd2\xd2\x87\x12\x93\x36\x2e\x94\xff\xa0\x42\xf8\x01\x3c\x58\x4d\x71\xb8\x68\xb2\x2f\xee\xb5\x5a\x88\xd5\x82\xad\xaa\xeb\x15\x59\xb4\xd9\xf2\x92\xc2\xf5\xb5\xa3\xe0\x5f\x33\x34\xb2\xd2\xd8\x7a\xcd\xae\xaf\x5f\x7c\xff\x7f\x13\xac\xdb\x1a\xe1\xfd\xc3\x8d\x1f\xb3\x92\x29\xa1\xf4\x5a\x35\x8d\xc3\xaa\x4a\xf7\x3a\xf8\x27\x77\x2f\x36\x22\xb2\xc8\x17\x62\xb1\x9c\x27\x02\x06\x8d\x8b\x5b\x7e\xa2\x7b\x6a\x98\xe6\x9d\xfb\x1a\xe6\x51\xc4\xac\xc8\xb0\x00\xa2\xcc\x66\x45\xc2\xbf\x3f\x83\x16\xa2\x70\xf9\x7d\xc1\x8a\x19\xc5\xa9\x4d\xcf\x85\x13\x63\xab\x86\xe7\x63\x36\xcc\x96\xf8\x1d\x2c\x8d\x98\xeb\xb1\x82\x7e\x77\x42\x5b\x96\x67\x98\x23\xf3\x11\xf1\xc0\xf4\xb9\x96\xa7\x59\xdb\xc5\xfd\x3b\x6a\xee\xc1\x9b\x6a\x37\x87\xa3\x2a\x67\xb0\xa0\xe6\x58\x54\x61\x7c\x07\xf7\x70\x02\x2e\xea\x0b\xc3\xfb\x0c\x35\x87\xd0\xec\x26\x8d\x32\xcc\x3f\x4e\x59\xa1\xba\x9e\x31\x80\xe0\x16\x34\xb5\x80\x28\xce\xc6\xc1\xa9\x2e\xfd\xb2\xc5\x95\x2f\x85\x4f\x5c\x05\xb1\xba\x87\x09\xc4\x3d\x75\xbd\x81\x43\xd6\xd3\xf0\x8a\x53\x8f\x59\x59\x4a\xe5\x3d\x76\xca\xf1\xa7\x99\x95\x1c\x49\x8f\x5f\x8f\xd9\x40\xa6\x2c\x31\x07\xff\xd0\x0b\xf1\x57\x6a\x77\xc6\x4f\x19\x5b\xab\xde\xfa\x31\x6a\xc8\xac\x42\x80\x0c\x24\x2b\xf4\xd2\x05\xab\xa6\x69\x32\x41\xe5\x16\xe1\xd5\xe6\x27\xc0\xda\x0e\xbc\x4a\x1e\x98\xee\xa5\xa7\x1f\x21\x7e\xd9\x9c\xd2\x1d\x1b\x41\xef\xc1\x89\xd1\x1d\xed\x4e\x49\x3f\x1a\x66\xcf\x9c\xb0\x2a\xd3\x68\x48\x31\xb5\xc7\xee\x38\xc6\x12\x66\xce\x30\xcc\xf1\x11\x03\x21\xe5\xe2\x94\x01\x4a\xdf\xee\x94\xfe\x44\x5d\xbb\xf6\x88\x6e\x04\x78\x95\x6b\xc0\xb6\xc4\xac\xa5\xba\x74\xf3\x49\x72\x4e\xbc\xdf\x8e\xc9\x0d\x73\x4f\x8d\x5d\xb3\x6b\x5a\xc7\xb2\x6f\xf3\xdd\xc0\xcf\x3c\x19\xc3\x81\x37\xd6\x19\xda\x8d\xc6\x16\x3f\x2d\xce\x58\x13\x81\x6a\xaa\x0f\x5c\xe2\xf2\x74\x80\x4c\x50\x18\xa6\x2e\xb9\x4c\x10\x0b\x2e\xfb\x87\x79\xbc\x47\xda\x3a\x89\xd3\x77\x62\x2d\x6f\x26\xa7\x5f\xaa\x4d\x34\xd4\x25\x39\xaf\x16\x87\xdd\x5f\x70\x54\x6f\xe9\x3d\xbc\x52\x6d\x4b\x65\x8d\x79\xc3\x61\x8c\x87\x7c\xbe\xe9\x7c\xad\xb9\x1c\x8e\xe7\x4d\xb7\xba\xa5\x7b\xc8\x4f\x33\xba\x97\x81\xc9\x4d\x57\xfd\xbe\x6f\x96\xf1\xc8\x2e\x22\x89\x77\xea\x95\x6a\x3b\x01\x16\xc6\xa4\x5f\xd6\xf5\x07\x5f\x14\xfc\xc0\x05\x78\xea\x80\x89\x23\xac\x7f\xf8\xf8\x27\x10\x1d\x26\x68\x10\xdd\x8d\x5f\xad\xda\x3a\x5b\x9e\x95\x22\x4c\x49\x4b\xb9\x34\xb9\x2f\x7d\x41\x40\x0b\xd2\x7a\x3e\xb0\x13\xbd\x2f\xc8\x9e\x70\x49\x3a\xca\xb5\x07\x5a\x92\x5a\x0d\x02\xf0\x86\xec\xb1\x20\x09\xfb\xc6\xe5\x88\x93\xd0\xf5\x02\xce\x30\xc3\x3c\x72\x90\xbe\x03\x8c\xaf\xfa\xce\x4a\xac\x93\x82\xa2\x76\xc2\x65\x17\x16\x75\x9b\xbe\x59\xa1\xf8\x1f\x8f\x1d\x8c\x8a\x29\x77\xcf\xe1\xd6\x2b\x4c\x7c\x69\x99\xc5\x35\x96\x47\x55\x46\xaa\xca\x5d\x4c\x55\x1f\x7a\x09\xb7\x56\xe7\xca\x38\xd8\x5b\xc0\xee\xc2\x2a\xbd\x44\x88\x78\x77\x56\xfd\x81\xeb\x1c\x3f\x82\x15\xa6\x54\xe3\xaa\xbe\x91\x76\x22\xab\xb1\xc4\x45\xa6\xd7\x64\x5f\x5d\x94\xf7\xa8\xc6\xa1\x14\xbe\xd0\xe1\x09\x81\xb1\x9a\xcb\x6d\xe5\x3e\xf3\xc6\x16\x09\xae\xe5\x48\xbd\x67\x2c\xec\xa8\xc1\xc2\xf1\x64\xed\x7d\x85\x3d\x4f\x5a\x56\x2e\x53\x66\xa4\xb2\x61\x0f\x95\x35\xd9\x27\xa5\xfd\x57\x98\x1b\x57\xed\xd1\xb8\x01\xe3\x09\x1b\xe2\xfe\xd9\x18\xcf\xe4\x0a\x8d\x4e\xd2\x92\x04\xc3\x50\xbd\x3d\x99\x66\xef\x1a\xa2\x91\x65\xf0\x87\x93\x9f\xee\xef\x7c\xa3\xb4\xda\x9a\x7e\x93\x67\x8b\x05\x9e\x84\xce\xd0\xc3\x0c\x96\x23\x35\xd7\x33\x0a\xe6\xcd\xc0\xf0\x85\x24\xe8\x13\xe8\xb8\x85\xf3\x95\x2a\x69\x3f\xf7\xd5\xa8\x01\xdd\x57\x43\xab\xb9\xaf\x58\x32\x1c\xb5\x9b\xe7\xb1\x33\x0e\x15\x25\x5d\x72\xd9\x74\x1e\x78\x3a\xb5\xa4\xe1\x38\xde\x7e\xe2\x35\x36\xf3\x73\xdd\x32\xb2\xea\x5b\xe2\xf3\x7e\x18\xe3\xf1\x95\x00\xaa\xdf\xfa\x4b\xbb\x18\x15\x21\x68\x78\x73\x6a\xac\xfe\x33\xd1\x29\x07\xc7\x8b\x30\x2e\xe4\xe7\x32\xca\xa4\x42\xdc\xc0\x1d\x70\xd5\x5f\xd4\xe6\xb6\xa3\x07\x99\x27\x52\x48\x2e\xc2\x43\xc9\xd7\x0f\xdc\x16\x64\x24\xef\x8c\x90\xe7\x19\xd3\xef\xcd\xfd\x19\x9f\xa6\xf8\xe1\xe2\xfc\x9b\x28\x43\x6f\xfe\xe9\xc5\x9d\xdf\xff\xe9\xbb\x38\xf8\x75\x1c\x7c\x1f\x07\xbf\xb9\x4b\x90\xbb\x0b\x27\xcc\x03\x9d\x48\x58\xc8\x3e\xcb\x78\x30\x85\xff\x15\xc0\x16\x1e\xc6\x7d\xfd\xc8\xbf\xb3\xbc\xaa\xca\x65\x76\x72\x71\x77\x2c\xe6\x8b\xfa\x3a\x9d\x64\x53\x93\xad\xdf\x8e\x73\x43\x22\xfc\x67\xe1\x8a\x6a\x2e\x09\x1f\x72\x21\x8c\xe3\xad\x2c\xc9\x47\xcd\x5b\x7f\x2f\x60\x3a\xca\x46\xed\x3d\xe6\x6a\x7c\xad\x7c\x62\xcb\x7e\x5c\x98\x67\x48\x63\x61\x9e\xfd\x2a\x1b\x25\xa6\x90\x00\x1b\x2e\x6b\x47\xa5\xf0\xb2\x4e\xb8\xc9\xe9\x20\x70\xe6\x00\xd7\x76\x15\xa4\x35\xdb\xf3\x3c\x9a\xe2\x99\x40\xb1\xa3\x06\x1b\xb6\xf5\xf8\x0c\x4b\xfc\x35\xe5\x69\x64\x70\xa7\xc3\x09\xd6\xf0\x37\x60\x1d\xe7\xb8\xf8\xf3\x6c\x32\x25\x46\x2b\x20\x0c\x60\x10\xe1\xc6\x89\xf8\x79\x02\xee\x34\x2b\x07\x11\x36\xd4\x80\xa4\x2d\xe4\xf1\xb4\x5c\x22\xf2\x61\xd6\xe5\xc2\x69\x3a\xc1\xe1\x3d\xaf\xf1\x9a\xe4\x0c\x7b\xe0\x65\x72\xff\x09\x47\x6b\x2c\xd5\xe1\x44\x6f\x40\x57\x6f\x14\xcb\xad\xf2\x77\xa0\x39\x53\xa2\x7c\x71\xed\x42\xb1\x20\xc3\x2c\x5a\xad\x7c\x71\x8d\x41\xb5\x5c\x7e\x0d\x35\xc8\x7a\x1e\xf1\xcf\x40\x1b\xe4\x0d\x08\xdf\xc1\x21\x24\xbb\x3c\x06\x7d\x6b\xb6\x45\x90\xa8\x70\xe4\x8b\x08\xfc\xf6\xe3\x6b\xf4\x8f\x4b\xbc\x30\xe5\x03\x5f\x23\xf6\xd2\xbe\xe1\xf2\x8c\xe4\x48\x06\x2f\xc1\x13\x28\x9f\x39\x04\x09\x69\xfc\x65\x5d\x47\xb9\x90\x87\xe5\xac\x17\xcd\x1f\x48\x3e\x49\x19\xab\x0b\x62\xa0\x5b\x8e\xf2\x93\xe9\x85\x3d\x1d\xdc\xe3\xac\x95\x67\xf9\xa7\x1f\x17\xe6\xce\xe5\x1d\x1f\x4b\xf9\x80\x00\xf3\x0d\x50\xb6\xc3\x6c\x63\xac\x5e\x6d\x7d\x0c\x87\x2c\x90\x64\x1c\x8b\x85\x7c\xc5\xa5\x01\x6d\x73\x4f\xb0\x70\x3b\x97\x53\xb5\xa7\x07\x38\x13\x60\x1c\x03\x09\xa7\x06\x3a\x77\x4f\xf7\xbf\xde\xcf\x85\x7d\x9f\x3f\x67\x23\x1e\x3c\x52\xf7\x3f\xc6\x21\x35\xb9\x7c\xeb\xb3\x57\x96\x57\xcf\x5c\xb9\x8a\xdb\xab\x8a\x64\xcb\xbc\x7a\xb6\x74\x3d\xca\x77\xd9\xe8\x58\x77\xff\xa4\x43\xac\xff\x0d\x00\x00\xff\xff\x92\x84\x88\xd6\x64\x1e\x00\x00"
-
-func runtimePluginsLinterLinterLuaBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsLinterLinterLua,
-               "runtime/plugins/linter/linter.lua",
-       )
-}
-
-func runtimePluginsLinterLinterLua() (*asset, error) {
-       bytes, err := runtimePluginsLinterLinterLuaBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/linter/linter.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsLiterateReadmeMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcd\x3d\x4e\x05\x31\x0c\xc4\xf1\x3e\xa7\x18\x89\x06\x9a\x4d\xcf\x19\xa0\x82\x0e\x21\x3d\xbf\xc4\x9b\x58\x78\x93\xc8\x71\x84\x96\xd3\x23\xbe\x2a\xea\xff\x6f\x34\x37\x78\x10\x67\x23\x67\x3c\x4a\xb2\x1e\xc2\xd3\x1a\xa3\x9b\x63\xef\x06\x63\xca\xd2\x0a\x2e\x9b\x8a\x5f\xb0\x8b\xf2\xc4\x6e\xfd\xc0\xcb\xc7\xc9\x59\xb2\x50\xfc\xdb\xbf\xde\x56\xf7\x31\xef\x63\x2c\xe2\x75\x5d\xb7\xd4\x8f\xf8\x4f\xdd\x6d\x21\x3c\x57\x99\x18\xba\x8a\x34\xbc\x8b\x2a\x68\x79\x3f\xc8\x25\x91\xea\x89\xcc\xce\xc9\xe1\x95\xbf\x0f\xfd\x1c\x0c\x6a\x19\x55\x4a\x55\x29\xf5\x27\xa5\x6e\xf6\xc5\x94\x5a\x59\x54\x18\xd2\xa6\x64\xfe\x6d\x99\x71\xd5\x9e\xde\xe6\x16\x3e\x03\x00\x00\xff\xff\x46\x7f\x67\x35\xe2\x00\x00\x00"
-
-func runtimePluginsLiterateReadmeMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsLiterateReadmeMd,
-               "runtime/plugins/literate/README.md",
-       )
-}
-
-func runtimePluginsLiterateReadmeMd() (*asset, error) {
-       bytes, err := runtimePluginsLiterateReadmeMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/literate/README.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsLiterateLiterateLua = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\xdf\x6f\xc2\x36\x10\x7e\xe7\xaf\x38\x79\x9b\x9a\xac\x49\x56\xf6\x88\x14\x29\x9b\xb4\x4a\x93\xb6\x76\xa2\xdb\x5e\x80\x22\x13\x5f\xc0\xc2\xb1\x23\xfb\x32\x86\x4a\xff\xf7\xc9\x71\x80\x14\x55\x1a\x34\x2f\xf1\x9d\xbf\xfb\xbe\x3b\x9f\x7f\xfc\xfd\xcb\xf4\xe5\xd7\xe7\x27\xc8\x81\x8d\xb3\x87\xec\x81\x8d\x46\xca\x94\x5c\x41\x69\x74\x25\xd7\x90\x83\xac\x1b\x63\x29\x62\xb5\x2c\xad\xf9\x21\xb8\x59\x3c\x1a\x55\xad\x2e\x49\x1a\x0d\x8e\xb8\x25\xb7\x93\xb4\x89\x1c\xd9\x24\xd8\xf1\x08\x00\x2c\x52\x6b\x3d\xc0\x4a\xbd\xce\x5c\xbb\xea\x00\xe3\xa4\x77\x28\xd4\x51\x00\xc7\x79\xde\x0d\x46\xa8\xc5\x80\x19\xb5\x18\xf0\xa2\x16\x2f\x64\x87\xc4\xc1\x93\xe7\x77\x77\x60\xec\xa5\x4c\x3a\x50\xe9\x43\xe3\x3c\x0f\xa3\x0b\x1d\xd7\x28\x49\x51\xc0\x27\xe0\xb0\xe9\x44\x20\x2c\x84\xc3\x26\x81\x4a\xa2\x12\x0e\x72\x6f\x79\x2d\x36\x61\x09\xbc\xbd\x0f\x60\x0d\x27\x42\xab\x3d\x24\xe8\x56\xc6\xd6\x9c\x22\x16\xcd\x5e\xbf\x73\x8b\xfb\x98\x0d\x98\x03\x64\xb2\xf6\xb9\xf6\x81\x09\x1c\xd3\x89\xca\xb8\xd7\x9b\x7d\x13\xfe\xf7\xe3\x05\xe4\x50\xfa\x7a\x43\x7c\x5f\x7f\x98\xbd\x28\xc6\xe8\x9f\xdb\xaa\x42\xfb\xdc\xa0\x8e\x56\x6d\x15\x22\x64\x05\xda\xd0\x79\x45\x57\x6d\x95\xfd\xc1\x69\x93\x00\xcb\x94\x24\x16\x03\x6d\x50\x77\xd0\xb3\x40\x67\x76\xec\xe7\x3a\x4b\x23\x90\xf6\x0d\xfa\x1d\xd3\xea\xad\x36\x3b\xcd\xba\xe9\xca\x58\x90\xf9\x38\x59\xb5\xd5\xe4\x37\xa9\xd1\x3d\xb5\x75\x14\x83\x30\x27\xd2\x40\xa0\xa4\xf6\xc1\x47\x58\x24\xd3\x71\x7c\x82\xc8\x6a\xb8\x9d\x3c\x34\x01\x56\x78\xcd\xa5\x17\xbd\x4c\xd3\x7f\x83\x84\x42\x1f\xfb\x28\x60\xf1\xec\xc7\xc5\x07\xe8\xca\x22\xdf\x9e\x3c\xbe\xb0\x4f\x0a\x74\x7b\x4d\xfc\xdf\x47\xa9\xba\x12\x43\x6d\x1f\x7c\x03\x23\xcb\x80\x55\x52\x75\xfa\x13\x50\x92\xd0\x72\xc2\x94\xf9\x89\x53\x5e\x1e\x34\xd7\xff\x4f\x24\x90\xb0\xa4\xc9\x35\xd0\x6e\xbd\xa5\x42\xcd\x6b\x9c\xc0\x9c\xcd\xe7\xf3\xb9\x6f\xe3\xb7\xf3\xab\x94\x6c\xab\xd0\x5d\x2d\x94\x82\xd4\xa5\x6a\x45\xa7\x54\x73\xbb\x15\x66\xa7\xaf\x13\x0a\xe1\xae\xc1\x52\x72\xe5\xc3\x5f\xa3\xc2\x1d\x0a\x92\xa4\xf0\x70\x6e\xab\x1f\xd6\x35\x6a\xea\xad\x5e\xef\x50\x94\x1b\xae\xd7\xa7\xff\xd2\xef\xff\x2f\x0a\x47\x05\x17\x62\x59\x3a\x77\x28\xcc\x3f\x68\x77\x56\x12\x06\xb3\x34\xca\x58\x57\x6e\xb0\x0e\x79\x34\x52\xa1\x3d\x14\x68\xad\xb1\xcb\x70\x88\x0f\xc5\xca\x98\xed\x4d\xd2\x02\x2b\xde\xaa\xeb\xbb\x19\x6e\x05\x6e\xc9\x27\x9b\xa6\x69\xf6\xfd\x95\xbd\x1c\xec\xe6\x3e\xf4\xc6\x40\x25\x6b\x49\xe9\xda\x9a\xb6\xf1\x04\x52\xa0\x26\x59\x49\xb4\xb7\xd1\xdc\xb6\xa7\x8e\xdf\xb9\x47\xb7\x46\x7e\x58\xb0\xc2\x1f\x80\xb7\xdb\x12\xbe\x58\x38\xcf\xf0\xfe\x35\x86\x50\x3a\xcc\x16\xb7\x57\x7f\x3a\x59\x9f\x5f\x19\xa3\x70\xc1\xf9\x27\x37\xfb\x49\x88\x69\xab\x49\xd6\xe8\xb9\x1e\xad\xa9\x7f\xc7\xda\xd8\x7d\xd4\xcf\x4f\xff\x7c\xe9\x94\x12\x60\xc7\x8b\x28\xdb\xf3\x5a\xf9\x77\xe7\x94\x42\x3c\x64\x9c\xa2\x32\x5c\x44\xc1\xe7\xef\xe3\xbf\x1a\xc1\x09\xa7\xbe\x9c\x28\xee\x9e\x95\xff\x02\x00\x00\xff\xff\x0d\x7e\xfd\xa0\x1f\x08\x00\x00"
-
-func runtimePluginsLiterateLiterateLuaBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsLiterateLiterateLua,
-               "runtime/plugins/literate/literate.lua",
-       )
-}
-
-func runtimePluginsLiterateLiterateLua() (*asset, error) {
-       bytes, err := runtimePluginsLiterateLiterateLuaBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/literate/literate.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsStatusHelpStatusMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x31\x8e\xdc\x3c\x0c\x85\x7b\x9d\x82\x98\xbf\xf9\x13\x24\x3e\xc0\x16\x01\x52\xa4\x5f\x60\x37\xbd\x69\x89\x1e\x13\x90\x28\x43\xa4\x06\xd9\x9c\x3e\x90\x3c\xc6\x7a\x3d\x41\x3a\x81\xe4\xf7\xc8\xf7\xf4\x1f\xbc\x18\x5a\x55\xe7\x5e\x17\x02\xed\x6f\x58\x63\xbd\xb2\xc0\x5a\xf2\x8d\x03\x29\x68\x4e\x04\x73\x15\x6f\x9c\x45\x61\xce\x05\x52\x0e\x3c\xbf\xb1\x5c\xc1\xde\xb9\xc8\x42\x83\x73\x3f\x75\xaf\x8f\x5b\x63\xce\x25\xa1\xc5\x11\x50\xc2\xc7\x5a\x19\x21\xaf\x5d\xf5\x4b\x07\xe8\x17\x7a\x03\x9f\xc5\x48\x4c\x5d\x9e\xcf\xf2\xe0\x51\x60\xa2\x6d\x3f\x53\x18\xe0\x39\x12\x2a\x81\x12\xf5\xd9\x90\x7d\x4d\x24\x86\x4d\xb5\x9d\xea\x6c\xc9\x4a\xfb\x1a\xf8\x7f\xfc\x06\x0b\xc5\x75\x2f\x8c\x9f\xee\x7e\x0a\x01\xcb\x76\x15\x67\x19\x5a\x20\xfc\x18\xc5\x7b\x0a\xb6\xa0\xed\xd7\x54\xa5\x00\x2c\x0f\xc7\x6e\x72\x4f\xce\x7d\xde\x6d\x0f\x53\x41\xf1\xcb\xf8\x04\x85\xac\x96\xae\x43\x20\x98\x08\xee\x66\x7d\x2d\x85\xc4\xe0\xca\x06\xdb\xf0\x70\xc0\x17\xd4\x33\xdc\x4a\x7f\x83\x7d\x4e\x89\xed\x08\xaf\xa8\x46\x07\xfa\x72\x01\xde\xb8\xde\xb9\x47\x02\xac\x10\x58\x71\x8a\x14\xfa\x8f\x5d\x9e\xbf\xbf\xbc\xfe\xb8\x38\x80\x36\xce\xd6\x06\x48\x7a\xff\xa8\xde\x1c\xeb\xd9\x58\x4d\x13\x95\x76\x5d\xef\xee\x19\x4d\x75\x9e\xa9\x1c\xe1\x9b\xcf\xf1\xc4\xde\x58\x2b\x46\xf0\x39\xd6\x24\x07\xa5\xbb\x4f\xcd\x1f\x04\xa6\x37\xfb\xc7\xf6\xde\xdd\xb7\xef\x21\x3d\x5e\xa1\xfc\x9b\x4e\x1a\xad\x74\x4e\x77\x03\x9b\x1c\xc2\x52\x13\xca\xd7\x42\x18\x5a\x20\x2d\xa3\xed\xd3\x07\xf7\x27\x00\x00\xff\xff\x7c\x2c\x21\x7f\x5b\x03\x00\x00"
-
-func runtimePluginsStatusHelpStatusMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsStatusHelpStatusMd,
-               "runtime/plugins/status/help/status.md",
-       )
-}
-
-func runtimePluginsStatusHelpStatusMd() (*asset, error) {
-       bytes, err := runtimePluginsStatusHelpStatusMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/status/help/status.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimePluginsStatusStatusLua = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x94\xc1\x6b\xdb\x30\x14\xc6\xef\xfe\x2b\x84\x4e\x32\x24\x6a\x77\xd8\x65\x90\x43\xda\xa5\x69\xd9\x68\x47\x1c\xca\xae\xb2\xfd\x1c\x3f\x90\x25\x23\xc9\x61\xed\x61\x7f\xfb\x90\x64\xb7\x76\x42\xc0\x1b\xa3\xb9\xe9\xbd\xdf\xfb\xf2\xf9\xb3\x9e\x9f\x37\xbb\xec\xe1\xe9\x91\xac\x08\xfd\xc4\xaf\xf9\x35\x4d\x12\xa9\x0b\x21\x49\x83\x85\xd1\x64\x45\xb0\x69\xb5\x71\x8c\x86\x33\x4d\xfb\x6e\xde\x55\x15\x98\xd3\xf6\x55\x2c\xbf\x51\x85\x56\x15\x1e\xce\xa8\x58\x7e\xa3\xea\xae\x11\x0a\x5f\x61\xc4\x0d\x25\x9a\x26\x49\xd5\xa9\xc2\xa1\x56\x04\x15\x3a\x96\x26\x84\x90\x68\x8e\x67\xe0\x32\x27\x5c\x67\x1f\x54\xa5\xef\x14\xa3\x36\x9c\x78\x6e\x84\x2a\x6a\x3a\x07\xad\x85\x9d\x07\xb6\xc2\x3a\x98\x45\x1e\x0b\x2d\x67\x81\x12\x15\xd8\x59\x64\xfe\xe2\x66\x92\x36\x86\xe6\xc1\x98\x32\x5f\x97\xe5\xae\x53\x0e\x1b\xb8\x43\x09\x03\x48\x17\x43\x7f\xb7\xbf\x07\xd9\x2e\x08\xad\x41\xb6\x57\xbd\x4c\x53\xd2\x34\x01\x55\x8e\xd2\x0f\x6e\x59\x1e\xb5\x0d\xb8\xce\x28\xe2\xb4\x75\x06\xd5\x81\xe5\x5f\xbe\xfb\xf6\x63\xd7\xb0\xf4\x74\xd0\xe7\x71\x79\x6e\x0b\x6e\x5d\x38\x3c\xc2\x6d\x67\xac\x36\x2c\xf5\x95\x67\xb4\x9d\x90\x3f\xcf\xb5\x42\x10\x97\xc5\x32\x7c\x85\xf3\x21\x9f\xc9\xc9\xcc\x70\xbf\xf8\x4d\x14\xbc\x30\x19\x2f\xd2\x30\x8b\x15\xc9\xf9\xfe\xa5\x05\xfe\x0d\x55\x49\x7e\xaf\xfa\x2d\xe0\x37\x7b\xff\x16\x88\xab\x41\x05\xd0\xff\xe2\xd5\xb6\x35\x48\x79\x76\xff\x43\xb5\x7f\x4b\x23\x36\x3c\x85\x1d\xd1\x7d\xc5\x2f\xc1\x14\x8d\xbe\x16\x04\x8c\x5f\xc1\x20\xc7\x37\xbf\xa0\xb8\xd5\x4d\x23\x54\xc9\xe8\x01\x1d\x5d\x10\x6a\xe0\xb8\x6c\x85\xb1\xe0\x0f\xcb\xa5\xc8\x73\x5f\x31\x50\xf9\xf3\xfd\x66\xfd\x75\x64\x02\xab\x28\xb7\x22\x0a\xe5\xf4\x59\x46\xc1\xf5\x96\xf8\xde\x60\x93\xb5\xa2\x00\x16\xbd\xbc\xeb\xf8\x04\x4f\x86\x28\x4d\x86\xce\x34\x5f\xbf\x7d\x97\xd3\xfd\xfc\x81\x89\x7a\x27\x7f\x9d\xa7\xad\xb5\x71\xff\x31\x4a\x6f\xe2\xdf\x82\x0c\x5f\xa7\x51\x92\xfd\x6e\x6f\xc1\x6d\xa5\xce\x85\x7c\x6a\x3d\xc6\x68\xff\x15\x9b\x7a\x1a\xc4\x7f\xac\xb3\xfd\x86\xbc\xff\xc5\xf4\x8f\x7d\xe5\x4f\x00\x00\x00\xff\xff\xdc\xdb\xdf\x2a\x2d\x06\x00\x00"
-
-func runtimePluginsStatusStatusLuaBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimePluginsStatusStatusLua,
-               "runtime/plugins/status/status.lua",
-       )
-}
-
-func runtimePluginsStatusStatusLua() (*asset, error) {
-       bytes, err := runtimePluginsStatusStatusLuaBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/plugins/status/status.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLicense = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x51\x4f\x8f\xe3\x26\x14\xbf\xf3\x29\x7e\xca\xa5\xbb\x92\x35\x5d\xed\x71\x6e\x4c\x4c\x12\x54\x1b\x22\x4c\x36\x4d\x6f\xc4\x26\x31\x95\x03\x91\x21\x9d\xcd\xb7\xaf\x20\xd9\x9d\x6d\x4f\x48\xbc\xf7\xfb\xfb\x5a\xd7\xcf\xe1\xb7\x88\x78\xf7\xc9\x7c\xc7\xc9\x4d\x36\xc2\xcc\x16\x93\xeb\xad\x8f\x76\xc0\xcd\x0f\x76\x46\x1a\x2d\x5a\xae\xb1\x60\xdf\xaf\x26\x2d\xd0\x3c\xc6\xaf\x84\x2c\xc3\xf5\x3e\xbb\xf3\x98\xf0\xa9\xff\x8c\xaf\x5f\xbe\x7e\x79\xc5\x5f\xa6\x1f\xcd\x7c\xc7\xc1\x0e\x6e\x70\xa6\x82\x4d\x30\xd3\x0b\x21\x5b\x3b\x5f\x5c\x8c\x2e\x78\xb8\x88\xd1\xce\xf6\x78\xc7\x79\x36\x3e\xd9\xa1\xc2\x69\xb6\x16\xe1\x84\x0c\x3e\xdb\x0a\x29\xc0\xf8\x3b\xae\x76\x8e\xc1\x23\x1c\x93\x71\xde\xf9\x33\x31\xe8\xc3\xf5\x9e\x37\xd3\xe8\x22\x62\x38\xa5\xf7\xec\xd9\xf8\x01\x26\xc6\xd0\x3b\x93\xec\x80\x21\xf4\xb7\x8b\xf5\xc9\xa4\xac\xf7\x88\xf6\x29\x8d\x96\x2c\xba\x27\x62\xf1\xb9\x88\x0c\xd6\x4c\x70\xbe\x84\xfc\x31\xc2\xbb\x4b\x63\xb8\x25\xcc\x36\xa6\xd9\xf5\x99\xa3\x82\xf3\xfd\x74\x1b\xb2\x87\x1f\xe3\xc9\x5d\xdc\x53\x21\xc3\x4b\x13\x31\x93\xde\xa2\xad\x8a\xcf\x0a\x97\x30\xb8\x53\x7e\x6d\x89\x75\xbd\x1d\x27\x17\xc7\x8a\x0c\x2e\x53\x1f\x6f\xc9\x56\x88\xf9\xb3\x74\x5a\xe5\x1c\xbf\x87\x19\xd1\x4e\x53\x66\x70\x36\x3e\xb2\x7e\xb8\x2b\x3b\x48\x81\x5c\x73\xa1\xe9\x59\x51\xd1\x7d\x1f\xc3\xe5\xbf\x49\x5c\xc4\xe9\x36\x7b\x17\x47\x3b\x94\xb8\x01\x31\x14\xc5\xbf\x6d\x9f\x32\x4b\x5e\x3f\x85\x69\x0a\xef\xce\x9f\xd1\x07\x3f\xb8\x9c\x28\xbe\x12\xa2\x47\x0b\x73\x0c\xff\xd8\x92\xe5\x71\x68\x1f\x92\xeb\x1f\x75\x97\x03\x5c\x3f\xae\xfa\x1c\xc5\xd1\x4c\x13\x8e\x96\x3c\x0a\xb3\x43\xae\xd7\xfc\x12\x67\xce\xf2\x31\x19\x9f\x9c\x99\x70\x0d\x73\xd1\xfb\x7f\xcc\x17\x42\xf4\x86\xa1\x93\x2b\xbd\xa7\x8a\x81\x77\xd8\x2a\xf9\x8d\xd7\xac\xc6\x82\x76\xe0\xdd\xa2\xc2\x9e\xeb\x8d\xdc\x69\xec\xa9\x52\x54\xe8\x03\xe4\x0a\x54\x1c\xf0\x07\x17\x75\x45\xd8\x9f\x5b\xc5\xba\x0e\x52\x81\xb7\xdb\x86\xb3\xba\x02\x17\xcb\x66\x57\x73\xb1\xc6\xdb\x4e\x43\x48\x8d\x86\xb7\x5c\xb3\x1a\x5a\x22\x0b\x3e\xa9\x38\xeb\x20\x57\xa4\x65\x6a\xb9\xa1\x42\xd3\x37\xde\x70\x7d\xa8\xb0\xe2\x5a\x64\xce\x95\x54\xa0\xd8\x52\xa5\xf9\x72\xd7\x50\x85\xed\x4e\x6d\x65\xc7\x40\x45\x0d\x21\x05\x17\x2b\xc5\xc5\x9a\xb5\x4c\xe8\x17\xc2\x05\x84\x04\xfb\xc6\x84\x46\xb7\xa1\x4d\x53\xa4\xe8\x4e\x6f\xa4\x2a\xfe\x96\x72\x7b\x50\x7c\xbd\xd1\xd8\xc8\xa6\x66\xaa\xc3\x1b\x43\xc3\xe9\x5b\xc3\x1e\x52\xe2\x40\x96\x0d\xe5\x6d\x85\x9a\xb6\x74\xcd\x0a\x4a\xea\x0d\x53\x65\xed\xe9\x6e\xbf\x61\xe5\x8b\x0b\x50\x01\xba\xd4\x5c\x8a\xdc\xc9\x52\x0a\xad\xe8\x52\x57\x44\x4b\xa5\x7f\x42\xf7\xbc\x63\x15\xa8\xe2\x5d\x2e\x64\xa5\x64\x5b\x21\xd7\x29\x57\xa5\x33\x91\x71\x82\x3d\x58\x72\xd5\xd9\x35\xf9\x79\x11\xa9\x4a\x8a\x5d\xc7\x3e\xbc\xd4\x8c\x36\x5c\xac\xbb\x0c\xfe\xf5\x7c\x2f\xe4\xdf\x00\x00\x00\xff\xff\xb7\xaa\xfa\x48\x6e\x04\x00\x00"
-
-func runtimeSyntaxLicenseBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLicense,
-               "runtime/syntax/LICENSE",
-       )
-}
-
-func runtimeSyntaxLicense() (*asset, error) {
-       bytes, err := runtimeSyntaxLicenseBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/LICENSE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPowershellHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xc8\x2f\x4f\x2d\x2a\xce\x48\xcd\xc9\xe1\x8a\xd1\x2b\x28\xd6\x30\xac\xc9\x35\xac\x49\x31\xd4\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\xa5\x59\x84\xcc\x1b\x00\x00\x00"
-
-func runtimeSyntaxPowershellHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPowershellHdr,
-               "runtime/syntax/PowerShell.hdr",
-       )
-}
-
-func runtimeSyntaxPowershellHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPowershellHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/PowerShell.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPowershellYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x58\x6f\x73\xdb\xb8\xd1\x7f\xaf\x4f\x81\x93\xf2\x3c\x91\x62\x4b\x4e\x3a\x9d\xce\x1c\x27\x8d\xcf\x91\xed\xd4\xad\x5d\x7b\x4c\xab\xc9\x54\xd4\x64\x40\x72\x25\xa2\x02\x01\x1e\xb0\xb4\xac\xcb\xa6\x9f\xbd\x03\x90\x92\x68\x49\x76\x3c\x37\x7d\x53\xcf\x98\x20\x17\xbb\x8b\xdf\x2e\xb0\x7f\xa0\x0e\xbb\xd1\x0b\x30\x61\x06\x52\x32\xbb\x54\xc8\x1f\x58\x26\x66\x99\x14\xb3\x0c\x85\x9a\xb1\xa9\x90\xc0\xa6\xda\xb0\x5c\x24\x46\xb3\x3e\xcb\x10\x0b\x1b\x1c\x1d\xf9\xef\x3e\xa4\x02\xb5\x19\xcc\x04\x66\x65\x3c\x10\xfa\xa8\xb5\x4f\x23\xf2\x39\x28\x36\x35\x3a\x0f\xd6\xf2\xb5\x48\xa2\xf3\xa3\x8d\xc0\xd1\x99\xd7\x17\x7a\xb1\x56\xcb\x2d\x8e\xcb\x02\x02\x56\x38\x16\xeb\x58\x5a\xad\x14\x10\x12\x0c\x5a\x8c\x31\x0f\x4f\xf1\x1c\x02\xd6\x8e\xa2\x41\x61\xbb\xef\x28\x7f\x47\xe9\xbb\xde\xab\xb6\x9f\xef\x64\xc0\x53\x30\x01\x6b\xb7\x5b\x2d\x53\x4a\xb0\x95\x5c\x87\xf5\x59\xa2\xf3\x1c\x14\x0e\x62\xa9\x93\x79\xc0\x36\x7f\x1d\xf6\xd1\x91\xd8\xb0\x62\xd8\x11\x48\x75\xd2\x64\x77\x93\xa7\x3a\x79\x92\x5d\x0a\x05\xc1\x63\xf6\x4b\xa1\xe0\x49\x7e\x9b\x41\xcc\xd5\x2c\x68\xf0\x87\x15\xc9\xcb\xb5\x1a\x02\xca\x22\x57\xf8\x18\x8c\x9f\x1c\xd6\x53\x3b\xbc\x83\x58\x6b\x19\xec\xe5\x65\x5d\x34\x25\x1c\xb2\x29\x97\x16\x7a\xbb\x92\x42\x21\x98\x42\x4b\x8e\x42\xab\x60\x77\x5e\x95\x79\xec\x5c\xbd\x4f\xb3\x2a\xa5\xdc\xa3\xd2\x16\x90\x08\x2e\x87\x19\x37\x7b\x14\x5a\x34\x62\xcb\x0f\x9e\xf2\x14\xe7\x20\x79\x4e\xcf\xa0\x34\xb5\xe1\x1d\x36\x32\x62\x97\xad\x54\x22\xd1\x29\x04\x1b\x07\x8b\x14\x14\x8a\xa9\x68\x5a\x55\x6b\x38\x91\x56\xb3\xd2\x42\xea\x83\x63\x5a\xaa\xc4\x79\xc5\xee\x11\x1d\x24\x92\x5b\x1b\xfc\x2e\xd1\x9c\x27\x46\x07\xfb\x66\xee\x9d\xa5\xeb\x89\xc2\x40\x61\xb6\x4f\x65\x35\x79\x53\x4d\x81\xb5\xda\x6c\xf3\x0f\x4e\x21\x2e\x67\x17\x0d\x2b\x7f\xc0\xbf\xe7\x68\xde\x65\xc0\x3a\x3f\x31\x8e\x0c\x33\x60\x31\xcc\x84\x52\x2e\x71\xe8\x29\xe3\x55\xf6\xc0\xcc\x4d\x82\x94\xd6\xb3\x68\xcb\x16\x8e\x62\x13\x23\x0a\x64\xd5\xa9\x32\x80\x60\x18\x7a\xbf\x6c\xcc\xaa\x8f\xc7\x3e\xb3\xc2\x6a\x8a\x75\x67\x52\xc7\x5c\x92\xd4\x09\x97\x54\x18\x71\xcf\x11\xa8\xd2\x4d\xa5\x15\x6a\x46\x0b\x6d\xe6\x53\xa9\x17\xbd\x86\x62\xe4\x08\x2e\xd8\xb6\x55\xbb\x23\x56\x4f\x59\xf6\x37\x58\x2e\xb4\x49\xed\xae\xd8\x20\x2e\x85\xc4\xaf\xa2\x11\x06\x9b\xb9\x14\x12\xc9\x4d\x15\x25\x55\x72\xd8\x10\x9e\xd3\x99\x03\xf2\xa0\x09\xe5\x0a\x90\xef\xe1\x33\x60\xc1\xdc\x43\x1a\xac\xf8\x6e\x6b\xc2\x46\xf9\x46\x6a\x99\xc7\x5a\x6e\x7d\x0e\x62\xc3\x93\x39\xa0\x6d\xee\xe3\xb7\xef\xdd\xde\x78\xc2\xb8\x4a\x99\xd5\x39\xa0\xc8\xc1\xb2\xf7\x1f\xb6\x45\x75\x01\x86\xa3\x7e\x14\xe6\xd7\x35\xcd\x6e\x33\x23\x9f\xed\x04\xce\xb9\x36\x2c\xc3\x5c\x32\xe4\x33\x7b\xc8\x78\xae\xdd\x61\xc1\xcc\x6d\x7f\x26\xd4\xac\x01\xde\xa5\xfe\x47\x1f\x83\x44\x4b\x09\x55\xb8\x34\x02\x6a\xb8\xa1\xb2\x2e\x37\x86\x2f\x0f\x59\xc6\x6d\x86\x3c\x96\x8d\x44\x56\x69\x70\x4f\xbb\x9d\xbe\x87\x77\x8e\xca\xba\xc3\x8f\x5a\xcb\x43\x36\x74\x09\xe9\x90\x01\x26\x83\x2d\xf1\x79\xe5\xe1\xad\x74\x7e\x31\x65\x4b\x5d\xb2\x85\x4b\x75\x7c\x75\x6a\x37\x75\xd4\xc7\x79\x2d\x69\x99\x14\x73\x60\xaf\xeb\x93\xfa\xfa\xb1\x7a\x8b\xda\xf0\xd9\x76\xb5\x08\x2b\x2a\xab\x41\x0a\x85\x87\xac\xf4\xcf\x2a\xb3\xad\x90\xd6\xba\x86\x2e\xdf\xf8\xf7\x7d\x69\xa8\xed\x47\x76\x30\x3e\xe9\xff\x93\xf7\x7f\x7b\xdb\xff\x79\x72\xc0\xde\x74\xbb\x41\xaf\x49\x1b\x4c\x0e\x7a\xc7\xed\xa7\x95\x74\x57\x69\xab\xd7\x3d\x0e\xba\xe3\x71\x60\x0b\x9e\x40\x30\x99\x34\xd5\x36\xc8\x6f\x7a\xbd\xf6\x0a\xdf\x3f\xc0\xc4\xb6\xd1\x13\xb0\x9b\x45\x98\xb1\x3f\x0d\xde\x0e\xfe\xb0\xb3\xa0\x5b\xea\x24\x4d\xe9\xa4\x28\x8c\xbe\x07\x3a\xb1\x16\x0c\xd2\x47\x9e\xcc\xcb\x82\x7c\x99\xa6\x8f\xa5\x90\x29\x0d\x33\x48\xe6\x85\x16\x0a\x69\x28\x81\x1b\x1a\x4a\x6d\x81\x86\x3a\x2f\xb8\xa9\x46\x09\x58\xbd\x18\xb0\x96\x86\x5a\x4d\x85\xc9\xdd\xa8\x20\x41\x37\xde\x3b\xdd\xf5\x78\x6e\x74\xbe\x7a\xbf\xd3\x34\xd4\xc5\xb2\x37\xee\x3f\xb2\x6f\xd7\x3f\x0e\xae\xcf\xa9\x74\x0a\x6a\x49\xa7\x50\x48\xbd\xa4\x53\x61\xdd\x49\x74\x63\x52\x2f\x76\x2a\x6c\xae\x4b\x85\xe4\x1a\x1e\x3a\x53\x7e\xfe\xcc\xa5\x42\x3a\x7b\x70\x94\x87\x82\xab\xd4\x0d\xda\x20\x9d\x0b\x95\xd2\xb9\x36\x39\x47\xfa\x04\x48\x9f\x0c\x57\xee\xa9\xcb\x82\xfe\x22\x52\x78\x19\xb0\x8b\xdc\x2b\xbb\x50\x02\x05\x97\xe2\x37\xa0\x0b\x57\xf9\xa4\xa4\x0b\x75\xaf\xe7\x40\x7f\xd5\x42\xd1\xa5\xc8\x05\xd2\xa5\x73\xec\x15\x70\x5b\x1a\xa0\x2b\x30\x33\xa0\x2b\x8f\xf7\xca\xed\xc2\xdf\x61\x41\xd7\x05\x28\xba\x2e\x50\xe4\x4e\xd3\x75\x89\x74\xe3\x92\xed\x8d\x2e\xe8\xc6\x68\xd7\xa1\xd1\x4d\x19\x4b\x61\x33\xba\x29\x6d\xf6\x32\x88\xb7\xc0\x53\xba\x85\x04\xc4\x3d\xd0\x2d\xa4\x9a\x6e\x61\x26\xac\x73\xcb\x2d\xe4\xda\x13\x5d\xbb\x47\xb7\x50\x70\xe1\x88\xbf\x96\x60\x91\x5c\x06\xf4\x4f\x87\xe5\x16\xac\x96\x9e\xd5\x22\x37\x9e\x8c\xda\xf8\xef\xd2\x8b\x3a\x63\x5f\x86\x27\xe4\xf7\x40\x21\x70\x93\x64\x14\x82\x4b\x32\x14\x82\x4a\x29\x04\xa4\x30\xd3\x0b\x0a\xe7\xa2\xa0\xb0\x90\x02\x29\xf4\x8b\x85\x08\x05\x85\xa8\x0b\x0a\xcb\xd8\x79\x32\x2c\x6d\xe1\x45\x16\x02\x9d\x96\xa5\x4a\xe8\xce\x61\xbe\x33\x3c\x79\x21\x8c\x91\xf2\x3d\x2a\x8d\x54\xaa\x69\xa4\x44\xbd\x6d\x23\x55\x53\x8b\xda\xe1\x23\x55\xd4\x2e\x1f\x29\xb3\x72\xdc\xa8\x48\x5d\x49\x1c\x59\xa0\xcf\x5c\x20\x7d\xe6\x0e\xc7\x67\x23\xf0\x05\xab\xfb\x3e\xc3\xf5\xd6\xaf\xba\xc7\xa2\xd7\xed\x7e\xaa\xaa\xed\xa5\xaf\xb6\x37\x75\xb5\x0d\xab\x6a\x3b\xf2\xd5\xf6\xf3\xaa\xda\x8e\x83\x49\xef\xb8\xa1\xfd\x4d\xbb\xb5\xca\x00\x67\x0f\x3e\x04\x5d\x3d\x74\xf5\xc6\xa7\xe4\x7a\xe9\xaa\xdd\x6f\x47\xd1\x38\x8a\xe2\x6e\x2d\x3e\x39\xa0\xf5\xdb\xd8\x23\xed\x45\x51\x1c\x45\x93\x75\x4e\x79\x54\x56\x1f\xd5\xf7\xb6\xd3\xc3\xa5\xe0\x96\xb8\x25\xdf\x9f\x50\x6c\x80\xcf\x29\xf1\x8e\x48\xb4\x42\xa1\x4a\xa0\x94\x23\xa7\x14\xa6\xbc\x94\xe8\x46\xa1\x80\x52\x4d\xe9\x52\xf1\x5c\x24\x05\x37\x3c\x77\xab\xb6\x9f\x58\x02\xa4\x05\x72\x0f\x31\x25\xb7\xdf\xe0\xc2\x78\x2a\x14\x97\x72\x49\x53\x6d\xdc\x3f\xf0\x24\x5b\x8d\x7d\x1d\xff\xcb\xed\x99\xcb\x80\x24\xa6\x24\x14\x09\xe5\xae\x0a\x55\xef\xf2\xdc\x52\x0e\x8b\x94\x20\xc9\x83\xa2\xba\x5d\x23\x03\x58\x1a\x45\xb6\x3a\x68\x98\x19\xbd\x20\x34\xbc\x20\x34\x4b\x2a\x15\x0a\x59\x37\x44\xf7\xdc\xd0\x22\x03\x03\xd5\x73\x85\x64\x91\x09\x09\xd5\xba\xad\xc7\x4d\xd6\xb6\x77\x57\x6d\x99\x47\x53\x3b\x73\xe5\x46\x67\x77\x43\xc9\x9e\x9e\xa3\xdd\x8d\xa2\x6f\x14\x45\xdf\x7b\xed\xe7\x58\xba\x14\x45\xbd\xe7\x59\xc6\x14\x45\x93\x6d\x96\x4d\x87\xd2\x1e\x47\x51\xff\xe0\xe8\xcd\x9f\xdf\x7f\x38\x0e\x7e\xfa\xf7\xff\xfd\x3f\x4d\x9e\xe1\x6d\xd4\xb0\xfe\xa4\xab\x80\xe0\x57\x9a\x21\xcd\x80\x24\x92\x04\x72\x75\x9b\x94\x46\x3f\xe6\xfe\xec\x28\x8d\xf9\xfa\x10\x71\xa1\xac\xa3\xac\xdf\x85\x72\x9f\x42\x91\x81\x42\xf2\x04\x48\x58\x12\x56\x69\xec\x35\xd6\x5a\xfb\x7a\x75\x57\x5a\x39\x79\xeb\xc2\xd6\xf6\x07\xfe\x95\xbf\xa2\x91\xbf\xa1\x91\xbf\x53\x35\x8e\xc9\xce\x45\xcc\x6f\x8f\x8b\x97\xc1\xd7\xc9\x01\xbd\x7d\x18\x9f\xf4\xcf\x79\x7f\xfa\xb6\xff\xb3\xff\x8e\xc7\x6f\xfb\xef\xbe\x4e\x0e\x7a\xe3\xf3\xcb\xc9\x71\x73\xdf\x1b\xf1\x79\xa5\x53\x68\x5e\xbb\x76\xaf\x67\xad\x55\xa3\xe2\xb3\xad\x5b\xb5\xdd\x5e\xd3\x40\xa5\x5b\x94\x8e\x9d\x8b\xc2\x63\x8b\xa2\xc1\x86\xdc\xb8\x9b\xaf\xfe\x9e\xb8\x27\x56\xa2\xdd\x71\x8c\x6a\x6a\x26\xf4\x9a\xa2\x28\x6a\xbb\x47\xd4\x6b\xbf\x5c\xbe\xdc\x38\x63\xf2\xed\x8f\xdf\xd7\xa6\x9f\x98\x59\xe9\x42\xed\xf7\x18\xfe\x7a\xdb\xee\xd7\xff\x33\x66\xef\xfc\x20\xb1\xfe\x39\x62\xd7\xcc\xce\xb6\x99\xaf\x7e\x60\x0f\xea\x54\xbb\x80\xbd\xbb\x3e\xbd\xa6\x2f\x5f\xbe\xd0\xf9\xc5\x97\xab\x33\xfa\x38\xfa\xd4\x0b\x8e\xd7\x10\x76\x7f\x73\x79\x06\xc3\xfb\x1d\x10\x9d\x0f\xff\x15\x14\x67\x79\x0c\x69\x0a\x29\x1b\x76\x6a\x0c\x75\x49\xd8\xc5\xf0\xcb\xbe\x83\xfe\xcb\x0f\x50\x08\x95\xc8\x32\x75\x25\x2e\xb1\x19\x37\xc5\x7a\xe1\x3b\x9d\xea\xd6\x8b\x90\xfe\x27\x00\x00\xff\xff\x5e\xc4\xe1\x21\xb4\x13\x00\x00"
-
-func runtimeSyntaxPowershellYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPowershellYaml,
-               "runtime/syntax/PowerShell.yaml",
-       )
-}
-
-func runtimeSyntaxPowershellYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPowershellYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/PowerShell.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxReadmeMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x56\x41\x8f\x1b\x37\x0f\xbd\xeb\x57\xf0\x4b\x3e\x60\x6d\xc3\x18\x5f\x7a\xca\xa1\x3d\x14\x09\xba\x45\xb2\x97\x6c\x0f\xc5\x62\xd1\x91\x25\xce\x48\xb1\x46\x1c\x48\x9c\xb5\xa7\x87\xfe\xf6\x82\xd2\xd8\x6b\x67\x9b\xc3\xc2\x36\x45\x52\x8f\x4f\x8f\xe4\xbe\x87\xaf\x73\x64\x7d\x82\x4f\x3e\x60\x56\xea\x37\x4c\x08\x3a\x21\x0c\xde\x24\xba\xcb\x90\xeb\x71\x27\xc7\x8d\x52\x1f\xb5\x71\x30\xeb\x21\x14\x0b\xe4\x11\x8d\xef\x3c\x66\x70\x74\x04\x26\xb0\xc8\x68\x18\xd8\x61\x71\xe0\x79\x44\xd8\xeb\x8c\x16\x28\xd6\x10\x3c\x31\xc6\xec\x29\x02\x25\x70\xa8\x2d\xa6\x0c\xab\xce\xa7\xcc\x10\x7c\x44\xa0\xee\x12\xbe\x6e\xd4\xa3\xc3\x28\xbf\x17\x58\xa3\x66\xc6\x14\x33\xe8\x68\x21\x61\xef\x29\x66\x09\x3b\xa0\x95\xeb\x9d\xef\x5d\xf0\xbd\x63\xe8\x13\x4d\x63\x86\xa3\xf3\xc6\x01\x63\x08\xb5\xa2\x33\xce\x57\x47\x76\x9a\x2f\x58\x1b\xa5\xbe\xe8\x83\x8f\x3d\xcc\x34\x25\xa0\x63\xbc\x21\x00\x7c\x86\x17\x4c\x33\x64\x3f\x8c\x01\x1b\xb8\x87\x84\x86\x86\x01\xa3\x95\x08\x30\x0e\xcd\xe1\x02\x1f\x74\xc7\x98\xca\x81\x60\xef\x7c\xf4\xd9\xa1\x85\xa3\x67\x27\x4e\xea\xa9\xad\xd9\xff\x2a\x71\x98\x9a\x9e\xda\xe7\x55\xb3\x7b\x63\x5d\xc3\x98\xa8\x4f\x7a\x80\x55\x20\xa3\x19\x2d\x78\xa1\xc5\x67\xb0\x3e\xa1\x61\x4a\xf3\xba\x81\xdf\xa7\xcc\x30\x06\x6d\xb0\xe2\x2f\x0f\x55\x93\xa9\x02\xa8\x04\x21\x98\x29\x25\x8c\xfc\x1a\x5b\xe9\x9c\x22\xb4\x3d\x95\xcf\xb7\xb8\x8a\x8b\x67\x38\xfa\x10\x96\x3a\xb1\x70\x21\x89\x1b\xb8\xef\xae\x5e\x29\x92\xc2\x94\x28\xe5\x4b\xc0\x98\x7c\x64\x68\x1f\x08\x7c\xce\x13\xe6\xff\xb5\x8d\x52\x7f\x0a\x63\x3a\x42\x42\x6d\x61\x20\x09\xde\xd3\xc4\xe7\x37\x3a\x26\xcf\x78\xcb\xff\x4a\x40\x18\x0a\x94\xb2\x71\x38\x60\x5e\x9f\x4b\x7a\xaa\xd6\xe7\x55\xd3\xec\x1c\x86\x71\x57\x7f\x37\x83\x5d\x83\x25\x33\x0d\x18\x59\xb3\xa7\xd8\x28\xf5\x1e\x3e\x63\xaf\xcd\x0c\x77\x4d\x95\xf9\xe5\xfd\x95\xfa\x52\x54\x32\xe5\xaa\xa7\x29\x63\xc9\xde\x56\xc7\xf6\x55\xd4\x1d\xa5\x5b\x68\x55\x69\x3e\x43\x24\x08\x14\x7b\x4c\x90\xa7\x71\xa4\xc4\x68\x0b\x3d\x22\x03\xa7\x5f\x5e\x93\xa9\x9b\xf8\xa2\x43\xf1\x39\xd2\x14\x2c\x04\x7f\x40\x41\x60\x28\xbe\x60\x62\xf9\x2a\x40\x22\x1e\x2f\x18\xb6\x55\x72\x3a\x5e\x60\xbe\xea\xa9\x46\xbd\x55\xd4\x95\xfd\x4a\x53\x3a\x64\x01\xfd\x23\x61\x7d\x50\xaa\x6d\x5b\xf5\x7f\xf8\x4e\x1c\x57\xc9\xc0\xd4\xa2\xe0\x67\x30\x8d\xc8\xae\x44\xa8\x2f\x94\xeb\x30\x90\xbf\x9b\x72\x8b\x56\x0a\x1d\x7b\xc4\x78\x2e\x13\x2d\x4c\x59\xda\xaf\xb0\xc1\x44\xa1\x51\xea\x81\x18\x17\x83\x64\x22\x0a\xe0\x73\xbc\x63\x18\x31\x75\x32\x6d\x44\x14\xec\x68\xea\x9d\xe8\xcd\x67\x98\xa2\xd0\x17\xe6\xca\xd0\xa0\xe7\x02\xdb\x47\x26\xc8\x34\x20\xe4\x41\x87\xb0\x28\xf1\x8a\x78\x11\x6a\x81\xc4\x04\x9d\x3f\xc1\xa0\xe3\xa4\x43\x98\xd5\xaa\xea\xf2\xa7\x05\x7b\x97\x68\xf8\x8e\x23\x70\xda\x9e\x13\xd6\xae\xdf\xa3\xd4\x71\xa9\x6b\x5d\x74\x57\xd5\xb5\x10\x71\x99\x41\xe2\xd8\xd5\xf9\xfb\xe8\x30\xd7\x1e\xba\x62\xec\xad\x63\x91\x5f\x21\xbc\x81\x47\x02\x1f\x33\x4b\x45\xec\x70\xd8\xc2\xb7\x29\xb3\x1a\x27\x86\xc5\xf4\xdd\x08\x8b\xd0\xfe\xb3\x6b\x0c\xc5\xce\xf7\xbb\x92\x63\x51\x87\xb4\xe4\xa3\xc3\xb9\x5e\xaf\x0f\x18\x6b\xa5\x0f\x3a\xd2\xf6\x3c\xea\x8d\x10\x52\xed\x4f\x85\x82\x84\x23\x65\x2f\x1c\x3c\xaf\x1c\xf3\x98\x3f\xec\x76\xbd\x67\x37\xed\x1b\x43\xc3\x2e\x1b\x1a\x35\xff\xbd\x8b\x3a\x52\x32\xeb\x46\xdd\x50\x50\x21\xc9\x7d\x3a\x0c\xa2\x15\x6f\x31\xb2\x5c\x22\x6f\x20\x17\xdf\xe5\x2d\xe0\xc9\xe0\xc8\xb5\xe5\xe4\xf9\x0e\x38\x83\xf5\x5d\x87\x09\xa3\xc1\xfc\x41\xa9\xcd\xc2\xac\x25\x94\x06\xe4\xd2\x11\xad\x2f\x33\xa0\x6d\xe0\x3e\x66\x46\x6d\xb7\x25\x85\x06\xa3\xb3\x8c\xc2\x2c\x7b\x88\xfd\x0b\xc2\xa0\xd9\xb8\xed\xa5\x8d\xde\x9c\x77\x41\xf7\xb0\x6a\x7d\x7b\x19\x37\x09\xfb\x29\xe8\x04\x78\x1a\x13\x66\x59\x67\x0a\x00\x60\x03\x9f\x48\x8c\x5a\xd6\xc3\xf6\x8c\x00\xfa\x24\x1a\x7f\xd7\x6c\xde\xb5\x4b\x7b\xef\x65\x6d\x20\xb4\x37\xe7\xab\x5f\xfc\x5a\x7c\x44\x29\x7f\x94\x36\x28\x9b\xe2\x7a\xde\x95\x6e\x28\x0f\x5b\xd7\x64\xc6\x73\x3f\xfd\x47\x2b\x2d\x03\xec\xbc\xca\xaf\xf2\x40\x87\x9a\xa7\x84\x0d\x94\x0e\xad\xb9\x86\xa2\x1c\x70\x3a\x59\x43\x76\xa1\xa2\xc4\x6c\x97\xe9\x26\xb3\x66\x8f\x32\x37\xf6\x01\x07\xcd\xde\x80\xc5\x11\xa3\x15\xac\x14\xaf\x22\xea\x2d\xd2\x55\x53\x96\xad\x5a\xfe\xaf\xf0\x19\x34\x04\x7f\xb9\xf0\x7a\xf2\xfd\x00\xff\x98\x68\xc4\x14\xe6\x52\xc8\x35\x11\xe5\xd1\x5f\xbc\xda\x40\x4f\x6a\x03\x46\x6d\xc0\xaa\x0d\x0c\x3a\x1d\x2c\x1d\xa3\xda\x80\xe3\x21\xa8\x0d\x84\x49\xab\x0d\xe4\xa3\xef\x58\x6d\x20\x49\x6f\x6c\xe0\x9b\x7e\xd1\xcb\x47\x36\xc9\x8f\x62\x1b\x75\x36\x5a\x22\xc6\x99\x1d\xc5\xe2\xbc\x9f\x25\xd6\xc9\x2d\x5e\x7c\x18\x4f\x62\xa0\xe0\xad\xe7\xb9\x6c\x12\x6f\x30\x66\x54\xea\x2b\x22\x3c\x7d\xbe\xff\xf5\xe3\xc3\xd7\x8f\xcf\xab\xe5\xcb\xba\x51\xff\x06\x00\x00\xff\xff\xf5\x4f\x77\x99\x62\x09\x00\x00"
-
-func runtimeSyntaxReadmeMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxReadmeMd,
-               "runtime/syntax/README.md",
-       )
-}
-
-func runtimeSyntaxReadmeMd() (*asset, error) {
-       bytes, err := runtimeSyntaxReadmeMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/README.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAdaHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x4c\x49\xe4\xd2\x88\xd1\x4b\x4c\x29\x56\xa9\x01\x51\x49\x10\x2a\x51\x45\x93\x8b\x0b\x10\x00\x00\xff\xff\x47\x29\x8c\x94\x1c\x00\x00\x00"
-
-func runtimeSyntaxAdaHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAdaHdr,
-               "runtime/syntax/ada.hdr",
-       )
-}
-
-func runtimeSyntaxAdaHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxAdaHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ada.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAdaYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x6d\x6f\xdb\x36\x10\xfe\xee\x5f\xa1\x79\xdd\x62\x27\x8b\xd6\xaf\xd3\x5e\x0a\xc3\x73\xd2\x00\x59\x3c\x38\xea\x10\xc0\x34\x86\x93\x78\x96\x89\x48\xa4\x76\xa4\x92\x78\x7d\xfa\xdf\x07\xca\x2f\x6b\xb3\xb5\x31\x60\x9d\xee\xed\x79\x8e\xd4\xdd\xad\x4d\xcd\x61\xdb\x72\x96\x90\xa6\xc1\x40\x73\xe0\x32\x64\x83\x24\x49\x92\xe8\xb2\xd4\x70\x96\x0c\x47\x4a\xa5\xa4\xfd\x2b\xf4\xb2\xd8\x4b\x7a\x35\x1e\x0e\x06\xd2\xd5\xec\xb3\x24\x49\xfa\xa4\xaf\x93\x79\xcb\x42\xc1\x89\xef\xf5\xf3\xc4\x6f\x9b\xc2\xd5\xa9\xdb\x9b\xb3\x64\xb4\x4c\xb3\x1f\xbf\x3b\x3b\xc5\xcf\x5f\xbd\x51\xea\x9b\x15\x7e\xc2\x2f\xf8\x1e\xe7\xf8\x76\xfc\x69\x4a\x21\x54\xde\x73\xf0\x59\x32\x5c\x8e\xc6\xef\x3f\xac\xa0\xd4\x12\x4a\xad\x86\x7b\xaa\x7b\xde\x3e\x3a\xd1\xa9\xb0\x67\x79\x60\x7d\x48\x0f\x14\xb8\x61\x1b\x8e\x8e\x2c\x51\xc5\x88\x0a\x27\x01\x54\xf8\xf8\x0f\x42\x65\x00\x95\x25\xb7\x3b\xe1\x3d\xa8\x36\xe4\x59\x83\xea\x1a\x64\x35\x48\x84\xb6\xa0\x80\x82\x2b\x63\x51\x38\xbd\x45\x49\x9e\xc7\xaa\xf8\x32\x53\xe9\xac\x0f\x64\x03\x34\x97\x35\x09\x43\x73\x4d\xdb\xf8\x0c\x04\x6d\x2a\x13\x3c\xb4\x03\xd7\x9e\xe3\xc3\xac\xc1\x56\x83\x6d\x90\x2d\xf8\x29\x96\x64\x9c\x05\x3f\x99\x80\xb5\x13\xac\x3b\x5b\x46\xcb\x8b\xbc\x15\x5b\x16\x53\xa2\x72\xc1\xc1\xac\x61\x2c\x8c\x0d\x2c\x6b\x2a\x19\xc6\xa3\x36\x8d\x09\xac\x51\x3b\xd7\xa2\x71\x1a\x96\x1f\x61\x5d\x80\xed\xea\x1a\x6e\x0d\x27\x70\x61\xc3\xe2\xe1\xba\x00\xf7\xc0\x22\x46\x1b\x5b\xbd\xc8\xdc\x52\x79\x4f\x15\xa3\x15\xaa\x1a\x42\x2b\xe6\x81\x42\x54\x5d\xc9\xba\x93\xfe\x2d\x76\x16\x6b\x08\x19\xcf\x10\xb2\x15\x43\xb8\x74\xa2\x21\xdc\x40\xfa\x5e\xf3\x10\x0e\x9d\x58\x08\xff\xd5\x71\xf7\xf2\x55\x0b\x3f\xb0\x78\x86\xe7\x9a\xcb\x00\xcf\x2d\x49\x64\xf6\xae\x61\xf8\xae\x88\xbd\x0d\xbf\xb5\xe5\x46\x9c\x35\x7f\xb3\x46\xa0\xaa\xea\x85\xbf\x47\x60\x69\x8c\x8d\xf1\x61\xc3\x16\x7d\x70\x67\x83\xa9\x5f\xe4\xed\x3c\xe3\x31\xe6\x3c\x6e\x4c\xcd\x78\x34\x61\x83\x27\x27\x31\x6f\xdf\x9c\xd3\x7d\x13\xec\x71\x0e\x3d\x91\x16\xce\xd5\x3d\x44\xbe\x78\x37\xc3\xc5\xe4\xfa\x76\x36\x7e\x1e\x63\xbb\xa6\xe0\x7e\x54\x5e\x9f\xff\xb0\x3a\xdb\xf9\xf7\xb8\xb7\xc1\x09\x55\x9c\xe4\xdb\x96\x0f\x33\x16\x0b\x4f\xfd\xce\xd1\x63\x5f\xdd\xe4\xb3\xcb\xd9\x02\x37\x93\xfc\xdd\x62\x72\x8d\xdf\xe7\xb7\x57\xf9\xd5\x1f\x33\x5c\x5c\xcf\x27\x39\xa6\x6f\x27\x8b\xc9\x34\x9f\x2d\x70\x9b\x2f\xae\x6e\x2e\xff\x3d\xee\x7f\x90\xae\xe7\x37\x97\x7f\x1e\xe0\x6e\xdf\xce\x17\xf9\x51\xeb\x5d\x3b\xc0\x9d\xa3\x7f\x3f\x60\xed\xca\x9d\x6e\x28\x4e\x1a\xcb\xf3\x23\xfa\x20\xc6\x56\x69\xb9\x21\xc9\x12\x75\x92\xaa\x93\xc1\xf1\x80\xd1\xf3\xff\xf1\xbb\xcd\x14\x7f\x3e\x90\x84\x2c\x51\xc3\xa3\x85\xad\xfe\x44\xf7\xf7\xa6\xcd\x12\xa5\xd2\xa3\x65\xb7\xaa\x8e\xea\x73\x86\x96\x4b\x43\xf5\xb4\xaf\x68\xa4\xd4\x6b\x28\xa5\x14\x94\x0a\x50\xca\x42\x29\x81\x52\x43\x28\x75\x32\xfe\x1c\x44\x3f\x6d\xad\xab\x29\x8e\x6b\xe4\x56\xa3\xe5\x32\xab\x84\xda\x4d\xb6\x5a\x9d\xaa\xcf\x26\x76\xd6\x94\x4e\xc7\x1b\x57\x9d\x7a\xbf\x5c\x66\x4f\xfd\x9a\xc8\x56\xab\xb3\x0f\x83\x8f\xbf\xfe\xb5\xb1\x9c\x4c\x5d\x13\x3b\xf2\x78\x45\xbd\x96\xd6\xc6\xc6\x5d\x7d\x7e\x9e\x9e\x0e\x3f\x4e\xc9\x9d\x76\x87\xaf\xeb\xb4\x8b\xeb\x3c\x9f\xff\x3a\xc7\xdd\xdd\x1d\x2e\xae\xee\x7e\x9b\x8d\xb3\x37\xc3\xc1\x3f\x01\x00\x00\xff\xff\x2d\xaf\x92\x76\x09\x06\x00\x00"
-
-func runtimeSyntaxAdaYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAdaYaml,
-               "runtime/syntax/ada.yaml",
-       )
-}
-
-func runtimeSyntaxAdaYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxAdaYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ada.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxApacheconfHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x14\xc6\x31\x0a\x80\x30\x0c\x05\xd0\xbd\x47\x71\xc8\x89\xfe\x12\xd2\x48\x1c\x6a\x03\xf9\x08\x42\x0e\x2f\x6e\x4f\x53\x2d\xdc\xf6\x7d\x8e\x20\x73\x42\x7e\xf7\xba\x96\x43\xf8\xa6\x57\x3f\xb1\x8b\x05\x99\xc0\xd1\x90\xa0\x9a\x79\xd5\x18\x5f\x00\x00\x00\xff\xff\x8c\x53\x79\x6f\x3c\x00\x00\x00"
-
-func runtimeSyntaxApacheconfHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxApacheconfHdr,
-               "runtime/syntax/apacheconf.hdr",
-       )
-}
-
-func runtimeSyntaxApacheconfHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxApacheconfHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/apacheconf.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxApacheconfYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x59\xdb\x8e\xe3\x36\xd2\xbe\xef\xa7\x68\xf4\xff\x5f\x6c\x36\x48\x27\xc8\xde\x35\x06\x09\x7c\xea\x19\x21\x92\xed\x58\xee\xc9\x60\xe3\x6c\xc0\x11\xcb\x12\xd7\x12\xa9\x25\x29\xb7\x1d\xf0\xe1\x17\xc5\xa2\x0e\xb6\x5b\xbd\x03\x8c\x55\xdf\xa7\x22\x55\x24\xeb\x24\xf5\x5e\x94\x60\xcf\x35\x3c\xdd\xb3\x9a\x65\x05\x64\x4a\xee\xef\xee\x38\x58\xc8\xec\xd3\xdd\xfd\xfd\xfd\x3d\x6a\x48\x56\xc1\xd3\xfd\x43\x61\x6d\xcd\x77\xbb\x47\x54\x72\x95\xa8\x60\xb7\x7b\xc4\xc1\xc6\x1d\x0b\x65\xac\xd9\xed\x1e\xf9\x6e\xb7\xdb\xfd\xdd\xed\x76\x8f\x85\x65\x59\x06\xc6\x3c\xdc\xdd\xe9\xa6\x04\x43\xb3\x7d\x77\x2f\x38\x48\x2b\xf6\x02\xf4\xd3\xfd\xc3\xdf\x26\x59\x06\xb5\x4d\x1a\x0b\x27\x47\xf2\x9a\xd9\x22\x92\x7b\xe5\xa1\x31\xcf\xa2\x84\x25\xab\xc0\x4d\x32\x2b\x94\x74\x13\xce\x27\xa5\x0d\x97\xe9\x79\x21\x33\xc5\x85\xcc\x3b\x62\x7b\xae\x01\xc1\xac\x60\xda\x80\x57\x9c\xc3\x9e\x35\xa5\xbd\x60\x4c\xa6\x45\xdd\x4e\xd8\x4e\xf2\xcd\xc3\xdb\x36\x72\xfe\x89\x49\x5e\x82\x46\xe5\x28\xa3\x41\x78\xbd\x7c\x3e\x31\xad\x01\x91\xac\x1b\xfb\x2c\x4a\x4b\xc3\x62\x26\xf3\x86\xe5\xfe\x56\xa2\x78\x53\x02\x2d\x92\xf3\x55\x63\x2f\x34\x87\xb8\x9f\x8e\xae\xa5\x60\x86\x7e\x13\x66\xb3\x62\xcc\xe0\xb2\x54\xaf\xce\xff\xce\x56\xcb\xe5\x62\xb6\x25\xe0\x8d\x05\x9e\x96\xcc\x14\x60\x88\x5b\x1d\x41\x6b\xc1\xc1\x4d\xa4\x92\xe7\x4a\x35\xa6\x97\xfe\x9c\x34\xb6\x50\x5a\x58\x66\xc5\x71\xa0\xf1\x67\xac\xf2\x45\xc5\x44\x39\xa0\x92\xc6\xd8\x8f\xe2\x08\xd7\xfc\x52\xbd\x18\xd0\xd1\x7c\xcc\xd4\x4e\xf1\x33\x68\xb1\x3f\x87\xe1\xc6\x88\x5c\xd2\x40\x87\x46\x5c\x19\xd2\xd8\x62\x3e\x4d\xde\x24\x3f\x6a\xd5\xd4\xe8\x34\x2d\x41\x1b\x47\x32\xce\xd8\xdf\x13\x39\x18\x3b\x29\x73\x9c\xa3\xa8\xc6\x0c\xec\x34\xe7\xaa\x62\x42\x0e\x86\x5e\xcd\x74\xf5\x64\xcf\x2d\xb3\x59\x01\xd9\x61\xc8\x28\x99\xc1\xb3\xd2\x15\xb3\xd7\x6c\x2c\xf6\x60\x45\x35\x1c\xff\xab\xaa\x07\x28\x2d\x2a\xa8\x52\xf1\x17\xbc\x63\xeb\xa5\x15\xf1\x7c\xb2\xbe\xdd\x26\x64\xa7\x42\xf2\xf9\xf2\x02\xae\x99\x31\xaf\x4a\xf3\x8e\x0c\x11\x33\x53\x72\x2f\xf2\x9e\x55\x55\xcd\x34\xcc\x97\x2b\x99\x82\x3e\xa2\xd3\x86\x3b\x73\xd0\xb0\x07\x0d\x32\x03\xef\xa3\x60\xde\x31\x14\x07\x2c\x24\xfb\x5a\x42\xff\xc0\x67\xad\xa4\x5d\xb3\x1c\x3e\xb1\xb0\x69\xc8\xfa\x25\x4d\xac\xd5\xe2\x6b\x63\x61\x84\x8e\xcc\x60\x35\x1b\xa8\x94\x05\xef\x3f\x43\xfa\x45\x97\x5e\xa6\x7c\xd2\xd8\xa2\xf3\x8d\xd6\x31\x46\xec\x9d\x6a\xf5\x6a\x40\xfb\x98\x73\x43\xb0\x54\x33\x66\xc0\x4d\xd3\x1f\x7f\xf8\xe1\x87\x49\x96\xa9\x46\x5a\x37\x6d\xf6\xb8\x0b\x3c\x56\xb9\x71\x33\xcc\xaa\x21\x03\x2d\x4e\xb5\xd0\x10\x28\xa1\x63\x90\xb9\x2d\x06\xf0\x08\x65\x3b\x40\x18\xdc\x19\x02\xb4\x4b\x41\xc6\x29\xce\xde\xa9\x46\x6c\xf5\x6a\xde\x01\x48\x52\x3a\x03\x3c\xb2\x12\x7c\xba\xf3\xe4\xc7\x6c\x56\x02\xeb\xc0\x9c\x89\xf2\xdc\x82\x48\x5a\xd0\x47\x56\xb6\x38\x81\xea\xc5\x60\xe2\x0a\xf8\x45\x36\x06\x38\xa1\x28\x97\x4a\x83\x17\x67\x4a\x5a\xad\xca\x21\xff\x09\x18\x07\x3d\xe6\x03\x03\xc5\xa5\x8a\x99\xb1\x89\x0a\xb3\x06\x80\x9a\xfc\x99\x65\x56\x69\xe2\x13\x76\x1a\xee\x60\xc2\x4e\xb8\x4c\x8c\x87\x40\x08\x79\x49\x2c\x21\x57\x56\x30\x0b\x7c\xae\xb2\xb0\xb3\x1b\xa5\x2c\x49\xbd\xde\x56\x54\x90\x30\x9d\x0b\x39\x66\xeb\xc7\x28\x61\xf5\xe2\x64\x41\x1a\xbf\x89\x14\x18\xe1\x58\x5b\xb8\xf2\x05\xc5\xb4\x30\x55\x8d\xce\x60\x21\x33\xe7\x8f\x2b\xad\xa1\x2c\xb1\x52\xcc\x0a\x51\xf2\x35\xe8\x90\xde\x70\xe3\x40\x5a\x8a\x70\x37\x53\xea\x20\x20\xa4\x1a\x02\xb4\x66\x13\x50\xac\xf2\x20\xa1\x17\x8f\xd9\xeb\x15\x52\x7b\x46\x2f\xf0\xf2\x56\xb3\xec\xe0\x9f\xae\x34\xcc\x9b\xaa\x9e\x0b\x0d\xb8\xb5\x67\x37\x6b\x8c\x55\x15\xce\x3b\x67\x47\xfc\x3f\x87\xda\x97\x60\x21\x85\x3d\x23\x11\xab\xec\x30\x9f\xa2\x94\x08\x89\x9b\xa5\x1a\xeb\xc2\xe2\x7d\x39\x0c\x72\x57\xe3\x02\xc6\xf0\x1a\xb1\x70\x0e\xfb\x92\x59\xa0\x50\xf1\x27\x11\x18\x74\x55\x0d\x06\xb7\xd9\x07\x44\xcb\x53\x3d\x5c\x2a\xdb\x69\x26\x50\x5d\x68\xfc\x26\x24\x57\xaf\x61\x2e\x79\x76\xfd\x0a\x3b\x29\x92\x1c\x4e\x3d\xa4\x78\xee\xa0\xaf\x8b\x63\xf6\xaa\xac\xa9\x40\x5a\xef\x3e\xb8\x7f\xd1\xca\x17\xf8\x20\x53\xcd\x76\x14\xa9\x8b\x13\xf6\x31\x42\xc9\x4f\x4a\x1d\x02\x97\x24\x93\x75\x10\x53\x90\x1c\x9b\x2a\xb7\xd0\x5a\xe9\x76\x62\x42\x78\x0a\x8b\x13\xc3\x68\x75\xe1\xdc\xb1\xef\x39\x76\x88\x1a\x82\x11\x23\x83\x4e\xeb\x96\xde\x5f\xb1\xde\x5b\x66\x1b\x83\x90\x36\x71\x0e\x7b\x21\xa1\xc7\xad\xdf\x62\xf0\x2c\xb6\x2c\xf7\x02\x41\x6a\x33\x9c\x4f\x22\xed\xe9\xae\xb5\xc0\x72\x72\x26\xd6\xa7\xd0\x67\xa5\x31\x32\x32\x34\xdf\xa7\x65\x47\xb1\x3f\x62\x27\xdd\xf4\x59\xf8\x93\x32\x16\xbb\xcb\x58\xa9\x43\x53\x1b\x17\x79\x45\x4b\x19\xce\x45\xfb\x60\x6b\xb4\xa7\x9e\xc9\x45\xfb\xcf\xa0\x7d\x0c\x46\x15\xab\xa7\x98\x7c\x51\x68\x97\x8c\x72\x02\xb2\x71\x91\xcc\xca\x86\x83\xf3\x27\x4e\x59\x86\xe4\x76\xb1\x04\x34\xf7\xdb\x81\x63\x47\x6c\x8d\xd2\xc9\x3a\x9a\xd4\x35\x48\xcc\xe7\x5b\xe5\x8f\xc9\xb8\x6b\xfa\xd7\x06\xf4\x99\xd8\x3e\x01\x7b\xf8\xcc\x0e\x30\x31\x67\x99\x11\x8c\x55\xbe\x54\x36\x6d\xea\x5a\x69\x0b\x9c\xc8\x0d\x30\x3e\x29\x80\x71\x8a\x07\xf7\x0b\x40\x3d\x29\xf1\xd8\x3b\x29\x84\xdd\x88\x95\x37\x67\xe3\x0b\x35\x15\x0f\xab\x05\x98\x9e\xd8\x6e\x63\x02\x4a\x4a\xf0\x3d\x75\x1b\xd1\xc8\xae\xea\x9b\x51\x81\x6a\xc7\xa5\x05\xd3\xc0\xfb\x45\x5e\x71\xef\xb4\x27\xa8\xb9\xd5\x8d\xb1\xc0\x67\x13\x77\x81\xbc\x17\xc5\xa2\x12\x96\x7e\x29\x84\x48\xf6\x05\x49\xb2\x72\x03\x59\x43\x47\xef\xe9\x0d\xfc\xa7\x01\x63\xa7\x8a\x9f\x2f\x88\x67\x01\x25\x37\xb7\x94\x4f\x0c\x43\x36\x16\x72\xd4\x52\x54\xfb\x92\xc4\x97\xcf\x30\x16\x64\xb8\x4c\x59\x76\x40\x67\x8f\x15\xe3\xb4\x0b\x8a\x85\xb6\xde\xc5\x2a\x63\xbe\xd4\xb6\x02\xc5\x10\x26\xd1\xa0\x9a\x87\xfe\x2f\x56\x39\x65\xb0\x84\x9d\x66\xa5\x00\x69\x0d\x8a\xdd\x99\x87\xc7\x8f\x55\xd0\x84\x9d\x12\xa8\x9e\x35\x00\x8e\x6a\x95\xd7\xa0\x7d\x85\xb9\xe2\xb6\x85\x06\xe6\xc9\x14\xbb\x37\xea\xdc\x4c\x87\xe9\xb6\xc7\xb7\x62\x3f\x65\x5b\x78\x57\x5f\xff\x0d\x99\x9d\xf9\x76\xe7\x8a\x7c\xc7\x01\x3a\xcd\xd4\x6a\x60\x95\x90\x79\xf0\xf7\xa4\xad\xdf\xfd\x14\x81\xc3\x4e\xee\xc8\xca\xae\x4b\x0f\x34\x69\x80\x65\x73\xa1\xfd\x95\x52\x16\x4a\x69\xb3\xdf\x8b\x93\x4b\x7c\x4d\xcf\x45\xe6\xf7\x3c\x11\xf2\x72\xd9\x01\x87\x05\x8e\xd9\x9b\x30\x6a\xa5\x13\xc5\x71\xbe\x17\x03\xdd\xdb\x69\xd2\x94\x56\x1c\x05\xbc\x86\x14\x89\xd9\xec\xb3\xd0\xb6\x61\x25\xe6\x34\xb7\x54\x6b\xad\x4e\x67\xb7\x6c\xaa\xf6\xa1\xcb\xdf\xd2\x34\x6e\x5d\x1e\xb4\x0d\xcc\x4b\x9d\x6b\xc6\xc1\xf7\x78\x6d\x76\xf2\x89\xc9\x61\x43\xbe\x90\x47\xb7\x16\xfc\x9d\xe6\x74\xad\x95\x55\x99\x2a\x17\x59\xa1\x1c\x3d\xd4\xff\x4e\x19\xa7\x44\x1b\x60\xa9\xb2\x03\x89\xa1\xbd\xf0\xb2\xcf\x67\xdd\x4b\xa0\xa7\xa2\xd5\xa0\x2c\x7b\x86\x96\x18\xc4\xd3\xb3\xd2\xaf\x4c\x73\x43\x04\x1a\xd9\x4b\x1b\xc0\xa5\xbe\x63\xea\xe9\xbc\xd6\x60\x70\x47\xfc\x36\x79\x66\x03\x19\x88\x23\x5c\x3f\x95\xba\xf8\xa1\x3c\xb0\xa3\x75\x6d\x42\x6d\x0a\xf3\xe0\xb3\x60\x0e\x33\x6a\x45\x1f\x0e\x36\xc0\x7d\x85\xef\x84\xf7\x5e\x9d\x5b\x9d\x35\xe8\x8a\x49\xac\xcb\x2d\xb3\x85\xaa\x76\xde\x1d\xa1\xfd\x92\x40\xa8\xfb\x04\x40\xb0\xfd\x54\x40\x68\xf8\x15\x80\x98\xae\x49\x22\x78\xf1\xf6\x4f\x94\x4f\x86\x61\x7d\xef\xd6\x51\xd4\xc1\x76\x78\x03\xaf\x5a\x58\xf0\xd5\x30\xc8\x33\x25\x79\x2b\x2f\x64\x8e\x35\x34\x20\xcc\x43\xbd\x9c\x0f\x44\xca\x45\x01\x27\xac\x6e\xc5\xd6\x29\x03\xdc\x60\x92\xdb\xf8\x14\x39\x5b\xbf\x04\x29\x59\x24\x41\x5a\xae\x37\xab\xd9\x88\xc1\x29\xb3\xc2\xec\xcf\x2e\xcd\x94\x86\xa9\x62\x9a\x92\x67\xea\x3f\xc6\x84\x0b\x7d\xe3\x18\xc8\x74\xe8\x44\xf8\x5a\x50\x6b\xb0\xa0\xa9\xbd\x0e\x3c\x2e\xa4\x93\x42\x52\xe9\x70\x78\xcf\x22\x9c\xe2\xf2\x53\x2c\x25\x40\xa9\x7c\xcc\x54\x90\x7c\xe0\x90\x14\xc3\x13\x5e\x09\xd9\xca\x64\xa7\x97\xa9\x72\x91\xec\x7d\x8e\x44\x4c\x16\x41\xf4\x7d\x23\x89\xa9\xc8\x25\xb3\x8d\x6e\xb5\xb6\xea\x00\x12\x67\xb2\x18\xeb\x74\x89\xf6\x9d\x10\x5e\x31\x53\xb0\xc1\xb3\x46\x0d\xb6\x43\x67\x4b\xc1\x5e\xb8\x56\x9a\x46\x0b\xc9\xb1\xbb\x43\x09\x83\x3e\x31\x5e\x4e\x2d\xd3\x36\xf0\x18\x46\xa1\x36\xa5\x69\xf4\x22\xb9\xef\xbe\xb8\xcf\x2c\x69\x1a\xcf\x26\x98\xb6\xc4\x5e\x64\xd4\x90\xc3\x0d\x89\x2b\x1e\xb3\x0f\x55\x37\x70\x0c\x45\xb1\x1f\xde\x73\xb4\x5f\x69\x3c\x98\x70\x56\x30\xd1\xeb\xbe\xf1\xf4\x9e\xfa\x05\xce\x1d\x2b\xea\x02\x74\xda\x08\xeb\x61\x08\x80\x34\x8d\xe9\x43\x63\x9a\xc6\xc1\xa7\xc7\x6d\xc5\x64\xb6\x2e\x34\x33\x30\x17\xac\x44\xf7\x4a\xe3\x36\xd3\x06\xf9\x74\x7e\x73\x43\x6e\xef\xb4\xeb\x0a\x77\x6e\x37\xe1\xe6\xc6\xe5\x88\x7e\x35\xef\xd8\xeb\x93\x79\xb7\xd0\x90\xab\xb3\x42\x48\x18\xb3\xf1\xf6\xf6\xc5\x63\x6f\x56\x4b\x5f\xe8\xae\xa0\x7f\x59\x44\x6e\xc3\x24\x57\x55\x0a\xc0\x3d\xa2\xd4\x34\x6e\x6f\x50\x48\xd3\x18\xd5\x53\x7a\xe3\xf3\xb5\xfd\x1a\xb7\xb9\x1d\x4b\xa5\x69\xe3\x2b\x8d\xe9\xf1\xd4\x36\xf5\x38\x98\x83\x3e\xdd\x96\x5d\x72\xf0\xd0\xd4\xa4\x0d\x9c\x20\xc3\x79\xe8\x3d\x85\x78\x1f\xbf\x23\xb6\x5e\xf7\x40\x84\x53\xcb\xb2\x83\xcf\x0c\x68\xde\xaa\xb1\x0e\xdf\xb0\xdb\x4f\x35\x5b\xcd\xa4\xd9\x83\x7f\x9d\xc3\x6c\x6e\xc2\x27\xb4\x17\x69\x28\xca\x5f\x0c\xcc\x98\x54\x52\x64\xac\xf4\x0b\x42\x8b\xfc\x0f\x36\x34\xa1\x8f\x18\xbe\x73\x8e\x18\xf7\x86\x66\xb4\x76\xc3\x3e\x24\xc8\xc3\xdc\x7a\x4b\x45\x6b\xf7\x9b\x90\xff\xf8\x31\x7c\x76\xa2\x0f\xf1\x8b\x93\xfb\x32\x15\xf6\x13\x1b\x7c\x6a\x32\xe7\xea\xab\x2a\x1f\x2d\xcb\x9f\xee\x1f\x3e\xfc\xfe\xaf\x9f\xfe\xf8\xf6\xa7\x37\x2d\xfb\xf0\xfd\xcf\xbf\x4f\xbe\xfb\x27\xfb\xee\xaf\x3f\xbe\x7d\xdb\xf4\x0f\xee\xc3\xf7\xee\xa7\x6f\x1e\xee\xc2\xdd\x4c\x49\x63\x99\xb4\x8f\xc6\x6a\x21\x73\xfa\x73\x01\xfe\x33\x78\x7e\x4f\xf7\x0f\xbb\x87\x87\x8e\x03\xc9\xaf\x18\x73\x10\x35\x52\xbb\xdd\xee\xb1\x67\x07\x7f\x79\x68\xff\x0d\x9f\x54\x43\x26\x58\x89\xe5\xbc\x1f\xda\x99\x53\xe1\x8e\xde\x9a\xf1\x7f\xd7\x56\xfc\xff\xff\x78\x9c\x55\x5c\x79\x47\x5a\xcd\x57\xee\xcb\x97\x2f\xee\x39\xfa\x92\x2c\xbe\x79\xfa\xf9\xe1\xee\xee\xbf\x01\x00\x00\xff\xff\xbb\xb1\xb0\x1d\x7f\x19\x00\x00"
-
-func runtimeSyntaxApacheconfYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxApacheconfYaml,
-               "runtime/syntax/apacheconf.yaml",
-       )
-}
-
-func runtimeSyntaxApacheconfYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxApacheconfYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/apacheconf.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxArduinoHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\xcb\xe7\x8a\xd1\xb3\xcf\xcc\xcb\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\xeb\x53\x0c\xfa\x0d\x00\x00\x00"
-
-func runtimeSyntaxArduinoHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxArduinoHdr,
-               "runtime/syntax/arduino.hdr",
-       )
-}
-
-func runtimeSyntaxArduinoHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxArduinoHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/arduino.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxArduinoYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x71\x4f\xdb\xc8\x12\xff\x9f\x4f\x61\x85\xea\xd5\x6e\x55\x78\xd0\xf7\xaa\xbb\x48\x55\x04\x21\x80\x25\x48\x10\x31\x2d\x77\xb8\xb5\x36\xde\x71\x3c\x62\xb3\xeb\xee\x8e\x09\x9c\xe6\xc3\x9f\xd6\x09\x90\x73\x1a\x5a\xf5\xf2\xc7\xce\xec\x7a\xf6\x37\xbf\x9d\x9d\x99\x4d\x81\x0a\xe8\xa1\x82\x6e\x80\xda\x6c\x6d\x49\x20\xc8\xa9\xbb\x15\x04\x41\xe0\x3f\x69\x31\x83\x6e\xd0\x49\xd3\x9d\x1e\x6a\xf3\xaa\xb3\xb5\x65\x6b\x05\x6e\x61\xf0\x2e\x40\x09\x9a\xb0\x40\xb0\x8d\xd1\xe4\xe6\xe0\xdd\x9f\xd9\x97\x9b\xff\xbe\xfb\xbd\x51\xde\xa6\xe9\xa4\x13\x6c\x35\xc6\x41\xb0\xbd\x1d\x2c\xb7\x2d\x1c\xfa\x0d\x61\xe8\x7a\x0e\xff\x82\x88\xc3\xb0\xce\x7a\x51\x0f\x35\x85\xbf\xf1\xde\x07\x7e\xbf\xcf\x1f\xfe\xc7\x15\xd9\x28\x8a\x32\xf2\x40\x2b\x38\x7d\xa3\x1d\x09\x4d\x6e\x09\x98\x2f\xe7\xdd\xa0\x13\xf6\x30\xf2\xc0\xa7\xf1\xc9\x29\x9f\x8d\x3e\x73\x3c\xbc\xb8\x4a\x78\x74\x95\x5c\x5c\x25\x51\x0b\x67\x0c\x16\x85\x0a\x2e\x2c\x6a\xda\x0c\x75\x34\xe8\xf3\x61\x3c\xe4\xd3\xc1\x35\x8f\xfa\x09\x1f\xfe\x91\x0c\xda\x48\x17\xf1\xcf\x90\xba\x88\xf9\xf4\xe0\xec\x38\xbb\x88\x39\xf9\x3c\xca\x2e\xe2\x35\x42\x25\x16\x34\xaa\x5f\x20\x73\x36\x3e\x3c\x8e\x2f\xc7\x09\x9f\x2f\x95\x36\xc4\x01\x91\xc8\xcb\x20\xd6\x04\xd6\xd6\xd5\x0b\x50\xfd\xd3\x83\xe1\xc9\x80\x8f\x0f\xce\xce\xe2\xe1\x09\x5f\xc6\xe3\x78\x78\xb2\x06\xa7\x85\x32\xd3\xe0\x12\x0a\xb0\xa0\x73\x78\x29\x4c\xc7\x07\x57\x67\x09\x0f\xae\x93\xc1\xe5\xf0\xe0\x8c\xe3\x61\x4b\xd9\xfb\xb4\xf7\xa4\xef\x7f\xfa\xff\x87\xb6\xaf\x8f\x1f\x3f\x06\xc7\x57\xc3\x7e\x12\x8f\x86\xe3\x66\xb6\xbd\xbd\xf2\xf9\x48\x90\x08\x92\x87\x0a\xdc\x7a\x1e\x4d\x8c\x51\x20\x34\x4f\x1e\x08\x38\x2f\x85\xe5\x42\x19\x41\x8c\x9a\x58\x19\x3d\xe5\xb9\xb1\xb2\xed\xaf\x6f\x34\x59\xa3\x82\x31\xd9\x3a\x27\x34\xfa\x11\xd8\x91\x20\x98\x41\x73\x3c\x8f\x9e\x0b\x07\x9c\x2b\xe1\x1c\x4b\x28\x44\xad\x88\xa5\x61\x69\xea\x89\x02\x06\xe5\x80\x0b\xd1\x8c\xc6\x32\x16\xac\x61\xce\xba\x56\x8a\x2b\x8b\x77\x82\x80\x2b\x6b\x7c\x5d\x81\xe4\xaa\x9e\x28\xcc\xd9\x95\xc6\x12\x3b\x9c\x6a\x90\xec\xbd\x61\xce\x63\xb2\xa8\xa7\xec\xe6\x48\x79\xc9\x54\xa2\x63\x2a\xad\x99\x33\xd9\x07\x26\x5b\x03\xd7\x7a\xb9\xe3\xce\xa0\xe4\x79\x89\x0a\xa2\x45\x89\x7d\x9f\xf6\xd4\x90\xe1\xdc\x68\x42\x5d\x03\x4f\x2c\x88\x5b\xb6\x40\xb5\xd5\xed\x48\x9c\x0b\x2a\x37\xd4\x74\x28\x26\x8e\x45\x6e\x1c\x0b\x87\x9a\x05\x89\xc5\xb0\xcf\x39\xa0\xe2\x26\x11\xac\x40\xcd\xde\x44\xc2\xd4\x02\x38\x86\xfb\xca\x5f\x80\xb1\xac\xcc\x94\x67\xa2\xe2\x99\xb8\xe7\x19\x6a\xb6\x42\xa2\xd0\x8e\xad\xd0\xd2\xcc\x96\x62\x0c\x20\xd9\x9a\x5a\x4b\xf6\x3e\xdc\x37\x76\xdf\x2c\x31\x89\x35\xa2\x87\x48\x2e\xf8\x4f\x70\xf8\x40\x4f\x59\xb0\x46\x78\x82\x74\x09\x42\xf2\x04\xe9\xb3\x45\x02\xaf\x8c\x81\xbc\xe8\x2b\x10\xd6\x2b\x5c\xe2\xb4\xf4\x28\xac\xcc\xdc\xcb\x0d\x79\x1f\xef\x8e\x36\xc6\xa5\xb1\x78\x2a\x0c\x7e\x9c\x0b\xb9\x54\x1b\xe7\x6d\xdc\xc1\x3d\x81\xd5\x42\x3d\x17\xe8\xc6\x73\x88\xa6\x92\x9f\xec\x58\xc2\x3f\xe6\x6d\xe4\x04\x67\xb0\x09\x4a\x82\x12\x0f\xdc\x8c\xe7\x98\x5b\xe3\x20\x37\x5a\x3a\x9e\xa1\x52\xe8\x85\x5f\x6b\x03\x1e\xe1\x14\xc9\x33\xdd\x1c\x83\x0a\xf5\xb9\x91\xc0\x72\x61\xba\x08\xf7\x72\xe2\x23\xd1\x86\xfc\xf1\xa1\xf1\xc9\x82\xb5\x79\x36\x5f\xbb\x1e\x79\x27\x74\x0e\xf2\x25\x72\xda\x24\x46\x03\x57\xb5\x72\x10\x6b\x76\xbe\xb7\x3e\xca\x51\x4d\x4c\x46\xaf\x5d\xcf\xe2\x45\xd8\x84\xb8\xf8\xca\x0b\xb1\xb7\x94\xfb\x4b\xf9\x9e\x27\x30\x45\xcd\xa0\x25\x57\x00\xbe\xd4\x84\xf4\x2d\x40\xd3\x62\x54\x9a\xc5\x9d\x40\x25\x7c\xd7\x28\x54\xed\xca\x35\xef\x4d\x23\xaa\xed\xc6\x7b\x74\x40\x75\xc5\xca\x98\xaa\xbd\xf5\x3b\x2d\xe0\xeb\xcd\x4d\xd7\x55\x22\x87\xee\x97\x2f\x6f\xb6\x57\x27\xa1\x84\x02\x35\x30\xea\x5c\xd5\x12\xc2\x4c\xc3\x3d\x45\x3d\x0e\x6b\xcd\x58\xe8\x5e\x24\xa1\xf0\xe7\xc0\x82\x41\x85\x58\xb0\x83\xc8\x37\xb6\xb9\xb0\xda\xf7\x28\xb0\xd6\x58\xae\xac\x98\xce\x44\xb4\xca\xe2\xa4\xdf\x0f\x26\x35\x2a\x42\xfd\xbd\x67\x30\xcb\x04\x91\xc5\x49\x4d\x90\x65\xab\x84\xd2\x34\x4c\xd3\xf0\xe6\x6b\xe4\xd5\x28\x4d\x23\xce\xb2\x50\xa8\x45\xb7\x13\x6e\xc6\x4b\x50\x2e\x51\x4a\xd0\x8c\x5a\x79\xfe\x95\xc8\x6f\x7d\xe7\x00\x47\x16\x73\x62\x07\x4d\x1b\x67\xff\x30\x98\x82\xe7\x20\x6e\xa3\x2c\x7b\x64\xf8\xcc\x65\xc7\x35\xbd\xb6\xbb\x24\x1e\xf8\xb0\xd9\xa6\x6b\x76\x3a\x4f\x6b\xa0\x65\x6b\xc5\xdd\x62\xd5\x5c\x44\x9a\xee\x3c\xaf\xae\xfc\x23\x7a\xfc\xad\x7a\xaa\x20\x47\xa1\xfa\xa5\xb0\xcf\x5b\x7f\x96\xce\xeb\x36\x9b\xd7\xbf\x44\xa6\xb2\x50\x59\x93\x77\x83\xce\xce\xce\xdb\xce\xaf\x31\x9d\x35\x49\xb5\xc6\x70\x77\xb7\x4d\xf1\xd5\x0f\xc8\x90\x91\xc6\xe7\x42\x32\x3a\x1a\xf1\xf5\xf5\x35\x1f\xc7\xd7\xe7\x83\xa8\xdb\xfb\x09\x67\x69\xfa\x66\xed\x7e\xd2\x37\xbb\xff\xc2\xe3\xdf\x01\x00\x00\xff\xff\x21\xfd\xe0\xed\x00\x0b\x00\x00"
-
-func runtimeSyntaxArduinoYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxArduinoYaml,
-               "runtime/syntax/arduino.yaml",
-       )
-}
-
-func runtimeSyntaxArduinoYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxArduinoYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/arduino.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAsciidocHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2c\x4e\xce\xcc\x4c\xc9\x4f\xe6\x8a\xd1\xd3\x48\x2c\x4e\xae\x81\xf1\x6b\x12\x53\xf2\x93\x35\x55\xb8\xb8\x00\x01\x00\x00\xff\xff\xe1\x70\xa5\x8c\x21\x00\x00\x00"
-
-func runtimeSyntaxAsciidocHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAsciidocHdr,
-               "runtime/syntax/asciidoc.hdr",
-       )
-}
-
-func runtimeSyntaxAsciidocHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxAsciidocHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/asciidoc.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAsciidocYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x5d\x6f\xda\x30\x14\x86\xef\xf3\x2b\xac\xac\x12\x6d\x42\xac\x51\xad\x17\x8b\x4a\x25\x34\x4d\x13\x17\x03\x54\x65\xda\x85\x8f\x03\xc6\x31\x25\x6a\xbe\xe4\x38\x9a\x18\x21\xbf\x7d\xca\x67\x43\x21\xd5\x90\x2f\x90\xcf\xc3\xe3\xe3\xf7\x98\x9d\x1f\x08\x75\x48\x84\x8d\x58\xca\x7d\xdf\x8b\xb9\xa6\x79\x42\x09\xae\x6c\x0d\x21\x84\xca\x7a\xc4\x42\x61\x23\x1d\x00\xdf\xb2\x94\xe7\x2d\x98\x33\x2f\xe6\x77\x37\xba\xa6\xc9\x2c\x10\x69\xcd\x7f\x42\x21\xf3\x23\xb4\x17\xcc\x13\xb2\xda\xb1\x50\x22\x45\x22\x63\x6e\x23\xdd\x9d\x4e\xa7\x53\xf3\x46\xaf\x0a\x25\xbc\x9f\x34\x4c\xaa\x98\x12\xa1\x88\x54\x4d\x11\x62\xa7\x09\xe3\xc2\xa6\x14\x1b\x0d\xff\x0e\xb2\x2c\xcb\x3a\x53\xdd\xb7\xd4\x21\xdc\xc6\x41\x73\xda\x80\xa8\x43\x8a\xa2\x28\xce\x2c\x5f\x1a\xa4\x0e\xa5\xee\xf8\xba\xa4\x25\x00\xde\xd6\x99\xea\xa1\x01\x79\x1c\xa5\x8a\xb5\x57\x1b\xf4\xf5\x31\x00\xb3\x5b\xa5\xb3\x93\x32\xa5\xa4\xbf\xcd\x94\x48\x7b\x5d\xe0\x57\x71\xf8\x13\x4b\xcf\x46\xba\x8d\x0d\xbb\x15\xfa\x9e\x88\x94\xbf\xf3\x85\xc4\x21\xe3\x32\xae\x66\x78\x24\xcc\xfa\xfb\xd9\xfa\x4a\x0d\x80\xd3\x25\x59\x31\xe5\xe7\x7f\xb8\xae\xc7\x33\xb8\xdb\xef\xb5\xbd\x62\x92\xbd\x48\x96\xec\x91\xe3\xab\x40\x5c\x9b\x27\x00\xae\xc2\xe8\x7e\x93\xc6\x99\xe4\x02\x5d\x3b\xda\x05\x20\xb7\x75\x7d\x8c\xcd\x7c\xb1\x74\xbe\xe7\xce\x7c\x95\xcf\x7f\xae\x96\xcf\xce\x6c\xe1\xe4\xbf\x67\xcf\x8b\xf9\xe2\x47\xfe\x6d\xf6\xcb\x99\x2f\x17\x77\x00\xb4\xa7\x5e\xaa\xbd\x90\x28\x64\xf2\x35\x4b\xde\xa5\x8f\x53\x25\xfd\xe8\xc5\x46\x3a\x36\x7a\x73\x02\x30\x2f\x06\xf5\x86\xae\x89\xbb\xa6\xe6\x7a\x18\x00\x30\x88\x0b\x60\x50\x13\xc0\xf8\x08\x33\x4b\xcc\xa4\x75\x7c\x43\xd8\x86\xb8\x1b\x6a\x6e\x3e\xf2\xb8\xa5\xc7\x2d\x3d\xee\x30\x56\x10\xb7\xa0\x66\x31\x0c\x8c\x88\x3b\xa2\xe6\xa8\x49\xee\xec\x89\x6e\x8e\x93\xf1\xfd\xa9\xae\x57\x5f\x7b\xf1\x6e\xb3\x20\x10\x2a\xbd\xf8\xb3\xf5\xf2\x34\x08\x80\x01\x80\x2d\x7a\x9c\x8c\x1f\x4e\xbd\x4a\xff\xb1\x47\x7c\x1f\xcb\xd6\xa3\x6f\xe3\xc0\x43\x9e\xd8\xb1\x2c\x50\x7a\x75\x4b\x02\x40\xb0\x01\x40\xab\xf1\x0e\x60\x8f\x8f\xd8\x78\x7a\xd2\xb5\x7f\x01\x00\x00\xff\xff\x85\x03\x17\x35\xeb\x04\x00\x00"
-
-func runtimeSyntaxAsciidocYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAsciidocYaml,
-               "runtime/syntax/asciidoc.yaml",
-       )
-}
-
-func runtimeSyntaxAsciidocYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxAsciidocYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/asciidoc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAsmHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2c\xce\xe5\x8a\xd1\xd3\x08\xae\x29\xae\x49\x2c\xce\xd5\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\x12\x07\x9a\x53\x12\x00\x00\x00"
-
-func runtimeSyntaxAsmHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAsmHdr,
-               "runtime/syntax/asm.hdr",
-       )
-}
-
-func runtimeSyntaxAsmHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxAsmHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/asm.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAsmYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\xe1\xaf\xdc\x36\x8e\xff\x9e\xbf\x62\x90\xee\x61\x93\x0b\xd2\xcd\xcc\x4b\xd2\x24\xf7\xa1\x28\xba\xb7\x40\x3f\xb4\x3d\x5c\xf7\x80\xe2\xfa\x8a\x42\x16\xe5\xb1\xe6\xc9\xb2\x46\x94\xc7\x9e\x01\xff\xf8\x03\x49\x79\xde\x24\x0d\x72\xfe\xb2\x01\xe6\x47\x8a\xa6\x44\x8a\xa2\x24\xda\x79\xad\x0f\xae\x9c\x93\xfb\xb0\x31\xd8\x3f\x79\x02\xae\x38\x5b\x3e\x3c\xd9\x6c\x36\x1b\x7e\x14\x4d\xef\x3e\x6c\x9e\xde\xdf\x7f\xfd\xec\x17\x42\x32\xd8\x3f\xff\xcb\xd3\x27\x4f\xf2\x18\x1c\xaa\xd6\x57\x9b\x7f\x76\x1e\x45\x79\xe3\x71\xd3\x1b\x70\x9b\x76\xc8\x9b\x9f\xbe\xfb\xe5\xc7\x8d\x41\x74\x7d\x13\xce\x4f\x54\xf5\xab\xcd\x0f\x11\x4b\x1e\x6d\xf1\x43\xc4\xda\x7d\x7e\xf7\x56\xb8\x97\x1b\x2c\xa6\xb8\xde\xc5\x22\x16\x9b\x67\xdf\xfa\xe7\xcf\xfa\xe1\x44\xc6\x18\x32\x06\xc8\x98\x9e\x8c\x41\x32\x60\xc9\x00\x90\x89\x40\xd6\x84\x40\xb6\x99\xc8\x06\x4b\x36\x00\xd9\xe0\xc9\xf6\x96\x6c\x9f\xf8\x87\x8d\xe0\x44\x76\x02\x02\x63\x08\x0c\x12\x38\x4b\xe0\x4f\xe4\xd0\x52\x17\x0a\x79\x6e\xf8\x7e\x0c\xe4\x23\xf9\x68\xc9\xc7\xc2\xbf\x81\x7c\x76\x85\x0e\x86\x0e\xc6\xd1\xa1\xa1\x43\xe3\xe8\x60\xe9\xe0\xe8\xb0\xa7\xc3\xde\xd1\x21\xd0\x21\x38\x3a\x44\xc3\x3f\x66\x1a\xfe\x31\x63\xe9\x10\x99\xee\xf9\xc7\x4c\xe0\x1f\x33\x03\x1d\x62\xa2\x43\x44\x3a\xc4\x0b\x1d\x06\x3a\x24\x3a\x24\x47\x87\x34\xd0\x01\xe9\x70\xa1\x83\x9d\x2f\x74\xe8\x13\x05\xd3\xb5\x14\x00\x29\x38\x43\xc1\x21\x85\xc1\x3e\x50\x18\x00\x1b\xc1\x89\xc2\x30\x24\x01\x27\x18\x2b\xb9\x08\xb9\x50\x3f\x9c\xb0\x11\x9c\x88\x27\x18\xdd\x9e\xe2\x90\x68\xc8\x94\x86\xc4\xbf\x96\xd2\x88\x9d\x40\x4b\xd9\x06\xca\x36\x53\x76\x89\x7f\x8e\x21\x2a\x5e\x18\x19\x0a\xff\x22\x43\x4b\x79\x08\x94\x87\x4c\xc8\x7e\xa2\x09\x84\x26\x13\x36\x0d\xa1\x35\xa8\x38\x11\x76\x81\xb0\xcb\x84\xc5\x12\x16\x20\x2c\x9e\xb0\x0c\xfc\xbc\x0c\xfc\x7c\x6c\xa8\x38\x2c\x34\x19\x5f\x68\xb6\xdd\x9e\xe6\x60\x0a\xcd\x43\x7e\xfe\xec\xdb\x97\xfe\xf9\xfd\x7d\xf3\xf4\x0b\x39\xd2\x0c\x63\x04\x72\xb1\xb8\x4c\x3e\x4a\xac\x4e\x8e\x86\xb1\x20\xcf\xcf\xc8\xd4\xcc\xaa\x91\x4c\x4e\x81\x6c\x28\x48\xc1\x64\x0a\x7b\x28\x14\x3c\x43\x60\xe8\x25\xdc\x06\x38\xe5\x02\x06\x0a\x25\x13\xb2\x0e\xb2\x0e\xb2\x0e\xb2\x0e\x96\x4c\x27\x97\x05\xa6\x75\x33\xc0\x96\x1a\xcc\xd4\x14\x6a\x8a\xa5\xa6\x30\x8b\x64\xe1\x28\xd9\x0b\x9c\xbd\x8e\xe7\x06\x9a\x91\x0c\xca\xb6\x74\x70\x9c\x2c\xa1\x45\x0a\x7b\xa4\x80\x28\x89\x01\xb2\xfe\x9a\x1e\x6e\xaa\xa9\x51\xe9\x45\x69\x25\xaa\xe9\xa0\xea\x54\x7a\x51\x7a\x01\xb2\x99\x4a\x26\xc8\x92\x44\x20\x38\x33\x5e\x66\x09\x31\x48\x8c\x05\x5b\xd0\x50\x2b\x69\x41\x96\x1f\x08\x5d\x31\x02\x8e\xb1\x11\x10\xd6\x32\x08\xb7\x17\x10\x36\x08\x08\x1b\x8d\xa2\x36\x1a\x45\x6d\x48\xd7\xa8\xfc\x5e\x51\x1b\x41\x51\x1b\x83\x60\x12\x44\xc1\x0b\xa3\x88\x45\x9a\x44\x2f\x89\x40\x14\x2e\x84\x1d\x48\xb6\x82\x24\x27\xac\x5c\xbe\xc9\xc8\x69\x33\xdb\x7d\x47\x3e\x9e\x80\x21\xa4\x3d\x4d\x8d\xb4\x66\x03\xeb\x46\xb2\x69\xf4\xa0\x23\x75\xfb\x77\x0d\x65\xe8\x31\x53\x86\x82\x96\xa6\x2c\x3c\xf6\xab\x46\xca\x90\x7a\xbb\x4a\x13\xcf\x28\xa7\x28\x9e\x31\xbb\xb2\xce\xcd\x7e\x38\x19\x12\x74\x42\x1a\x45\x6d\x58\x41\xe5\xf7\x8a\xda\x08\x8a\xda\x88\xa6\x92\xda\x6c\x2a\xa9\x4d\x1d\x24\xd6\xd6\xbe\x92\xda\x5c\x86\x18\x84\xa4\xa8\x2d\x54\x72\x11\x52\x1f\x29\xaa\x7a\x52\x99\xaa\x5d\x78\xbe\x7a\x66\x30\x33\xfb\x42\x23\xec\x56\xcd\xbe\x37\xf8\xd0\x0f\xa7\x23\xef\x82\x58\x12\x2a\x3d\x52\xca\xae\x75\xc5\x76\xaf\xae\xdc\xf6\xca\xed\xae\x5c\xe4\xdd\xd0\xba\x68\xdd\xba\x50\x87\x36\xf0\xf9\x1c\xa4\x0b\x55\xdb\x70\x1c\xa9\xaf\x12\x36\x0e\xd5\x19\x5f\x7d\x02\x4a\x66\xc4\x75\x16\xfa\x21\xfa\x32\x64\xea\xf9\xf8\x5d\xe7\x13\x1c\x1d\xd9\xe3\x20\x87\xd3\x71\x49\xd7\xed\xdb\x46\x8e\xa4\x23\x1d\xb2\x1c\x49\x03\xe0\x51\x4f\x8d\x59\x8e\x87\xa3\x9e\x0b\x47\xcd\xe7\x24\xc7\xc3\x51\xb6\xd9\x91\x78\x07\xed\x71\x65\x44\xf6\xbe\xee\x2f\x43\xf8\xe0\xa3\x2f\x84\x65\xef\xe9\xd4\xf3\xe9\x4c\xa7\xbe\x97\x7c\x3e\xf5\x79\x8c\x74\xea\xd1\x9c\xd6\x05\xe2\xd4\xa7\x92\x81\x3b\xa6\x92\xb1\xd0\xa9\xb7\xc1\x99\xcc\x03\x39\x19\x77\xca\xbe\x38\x16\xeb\xf0\xc1\x8c\xd1\x76\xf2\x18\xc7\x9e\x1f\xcc\x43\xdb\x0a\x89\xab\x0c\x86\x8b\x8d\x85\x43\x63\xe3\xba\xc0\x37\x6e\xe6\xab\x21\xd8\xd6\x87\xc0\xd4\x0b\x58\x46\xce\x0c\xa6\x48\x4d\xc0\xfa\x1c\xbd\xa5\xb2\xed\xf1\xc1\x52\xb9\xf4\xf8\x70\x63\x44\xac\x68\xfd\xf5\xcd\x17\x2c\xb6\xbb\xb9\xdf\x52\x6b\x1a\xa4\x96\x6b\x2e\x86\x44\x6d\x13\x80\xda\x06\x4b\xa2\xd6\x76\x48\xad\x0d\x6e\xa6\xd6\x0e\xbd\x40\x52\x4c\xd4\x82\xb3\xa2\x04\x1e\x3d\xe3\x89\xda\x93\x07\x11\x9c\xb2\x62\xa2\xd6\x45\x4f\x6d\x9b\x9d\xa3\xd6\x8b\x11\x2f\x23\x79\x1d\x4a\xaa\x33\xc1\x4c\xad\x67\xc3\x52\xaa\xb5\x3e\xea\xd8\x92\x00\xad\x47\x05\x16\x70\x41\x21\x98\xa9\x65\xfd\x00\x5b\x06\x3b\x31\xba\x78\xaa\x44\x9a\x61\xe7\x94\x14\x21\xfb\x9d\x90\x28\x24\x79\xc6\x0b\xb5\x62\xaf\x1f\x43\xa2\x36\xea\x54\xa3\xce\x28\x8a\xeb\x51\x5d\xe0\xba\xaa\x8d\x9c\x6e\x95\xf0\x8d\xdb\x46\x2c\x56\x89\x58\x56\xaa\x02\x9c\xa8\x4d\xa6\x98\x48\x6d\xca\xae\xa7\x36\x09\x9f\x23\x70\x01\xda\x66\xe4\x6d\xa9\x64\xa2\x56\x07\x66\xe4\x86\x35\x81\x5b\xc7\x5c\xa8\x45\xf9\xb1\x95\x6a\x64\xb1\x21\xe1\xc0\xc2\xf5\x6f\x2b\x41\xc1\xb1\x49\x82\x59\x31\x51\x5b\xb8\xb7\x54\x5e\xed\x6c\x7a\x6a\x67\xdb\x51\x3b\x97\x6c\x6c\xa1\xf6\x1c\x76\xb3\x62\xda\xae\xca\xd0\x96\xef\xd3\x75\x37\x54\x6b\x07\xac\x2b\x01\x3a\x2f\xa8\x9e\x83\xc6\x63\x5b\xe7\xce\x62\x1f\x05\xa4\xcb\xa2\x33\x4a\x96\x8c\x9a\x25\x42\xd2\x4a\xc3\x72\x63\xb5\xf5\xca\x6a\xf5\xb6\xba\x25\xb1\x59\xe8\x22\x58\xe8\xa8\x74\x5c\x3b\xc3\xde\xcb\x5e\xf0\xd5\x43\x5f\xc9\x4a\x47\xe7\x9a\x02\xf3\xea\x33\x8c\xb7\x40\x59\x39\x3a\xef\xb8\xf4\xb9\x23\xe1\x97\x1f\x7e\xfc\xfb\x17\x3a\xba\xbe\x97\x3b\x4f\x8a\xc1\x23\x25\x63\x1f\x10\x61\xaa\xcc\xd4\x08\x33\x2a\x03\xa0\x38\x09\x82\x20\xaa\x08\x55\x36\xd6\xe6\x28\xed\x08\x02\x91\x12\xbf\xa1\xcc\x0c\xb6\x4f\xee\xd8\x54\x3a\x55\x0a\x42\xf7\xa5\xa9\x74\xaa\x14\x28\xf5\x6c\x8e\xe9\x18\xba\x49\x48\x98\x28\xe1\x82\x20\x78\xa4\x84\x99\x2b\x55\xcc\x86\xe5\x39\x28\x8a\x44\x9e\x8e\x4d\x23\x38\x09\x82\x20\xaa\x08\x55\x26\x9e\x8f\x31\xd9\x87\x8e\xb5\x94\x63\xcb\xca\x01\xdf\x77\xf1\xc1\x3e\x84\xeb\xd3\xa0\x32\xe6\xa6\x75\x05\x61\x32\x27\x57\xc3\xe5\x79\x32\x66\x3f\x51\x02\x8f\xc5\x57\x57\x44\x3a\x5d\x1a\x9d\x6f\xe6\xd6\x29\x4a\xf3\x14\x94\xec\xdd\xf5\xa9\x0e\x61\x99\x59\x97\x22\xb2\xd4\xc9\x9c\xf6\x32\xd7\x76\xe7\x81\x52\x6b\xac\x65\xe4\xd5\x6c\x65\x31\x94\xee\x5d\xa5\x85\x52\xdb\x9b\x99\xd1\x47\xc6\x31\x50\x6a\xb3\x4d\x8a\xbe\x6c\x17\x66\xc7\x0c\x1e\xab\x44\x0e\xb3\x24\x07\x55\xd2\x33\x2a\xf9\x5d\x0b\x8f\x33\xab\x15\xd4\x95\x59\x37\x09\x76\x7b\xa2\xd4\x46\xf5\x3b\x29\xf5\xbb\x96\x57\x71\x32\x69\xe5\x42\xa8\x7f\x27\x75\xfd\xb4\xee\x75\x12\x20\x21\xf1\xda\x71\xcd\x99\x92\x20\xf3\x43\xef\x99\x9c\x4a\xf2\xbb\xa4\x0c\xee\x92\x67\x06\xfd\x4e\x1f\x21\xee\x50\x24\x8f\xcf\xaa\x0c\xfc\x29\x21\x23\xbf\xeb\x41\x3f\x5b\xcc\xd4\x9b\x99\x0b\x51\x33\x23\x52\xef\x63\x12\x44\xd9\xa6\x46\x2b\xd4\x2e\x54\xaa\x24\x2c\x54\x49\x8f\x0f\x4b\x21\xab\x54\xfb\x8e\xdc\x18\x83\x22\x22\x65\xcb\xb3\xc8\x96\x67\x21\xf1\x48\x95\x22\x12\x76\x63\x9b\x90\xaa\x74\x11\x16\xf5\x8f\x2f\x1e\x64\x44\xa4\xb1\xce\x5f\xb7\x49\xaa\x4c\x48\xeb\xca\x3f\x3e\x1d\x38\xaa\x91\x63\x3b\xe4\xa4\xf9\xd9\x08\x4e\x94\xb8\x42\x9a\x28\xf9\x88\xb2\x17\xcc\x8c\x4a\x38\xa9\x38\x24\x93\x10\x69\xc9\xac\xeb\xd6\x18\x39\x19\x0c\xc8\x6e\xef\xc6\x76\xa2\x99\x87\x5e\x59\x3f\x6b\x98\x96\x98\x85\x8f\xe3\x1d\x6e\x26\xf8\x38\xe5\x4f\x16\xe2\xf6\xe5\xe0\xcb\xaf\x11\x5c\x64\xd4\x45\xbd\xcd\x9f\x6b\xda\x7c\x9a\x2c\x1f\xe5\x96\x48\x96\xf0\x57\xf2\xf1\x7a\x7d\xba\xa8\xba\xe0\x37\xc1\x96\xb8\xd0\x6d\x66\xdf\xe6\xc7\xed\x32\xdf\xa6\xe1\x6d\xca\xde\xa6\x6a\x0d\xf6\x92\xc5\xd7\x6c\xd1\x57\x9b\xdb\x3d\xb3\xac\xa8\xae\x6f\xcd\xb5\x9b\x35\xac\x6b\xaa\x0b\x7d\x9b\x10\x75\x75\x97\x77\xb4\x25\x07\x34\x31\x74\xc9\x97\x17\xba\xd5\x9b\x1a\x64\xea\x82\x31\xc9\xfb\xba\xe2\xca\xef\x05\x1f\x0d\x11\x65\x08\x8e\xf0\x47\x03\xe9\xf2\x00\x2f\x1b\x1c\x77\xe9\xca\xe8\x22\xc3\x0e\x8e\x95\xd1\xa5\x65\xe6\x9a\x11\x50\x57\xbd\xea\x60\x95\x20\xd4\x84\x60\xe6\x9a\x35\xb0\x64\x06\xe8\x61\xb3\x0c\xfd\x38\xf6\xe3\x50\x75\x08\x5e\x4d\x90\xd5\x04\x59\x4d\x41\xe6\x3d\x4f\xa5\x97\xef\x54\x92\xa3\xa0\x79\x0e\xba\x0f\x60\x39\x68\xe0\xf1\x5b\xd2\xc8\x8d\x31\x28\x22\x70\x8e\x81\xae\x2e\x68\x66\x2a\x41\x90\xd4\x12\x44\xa8\x29\x0c\xcb\x76\x82\x65\x83\x81\xa4\xe7\xba\x45\x90\xb7\xe8\x9d\xbc\xa0\xc2\xd1\xd0\xf2\x52\x3d\x9c\x8e\x3c\x59\xbe\x71\xb5\x0a\x38\x4a\x0a\x8d\xd2\xea\xc6\xb6\xab\x27\x44\xa8\x54\xcb\x09\x79\x9a\x1f\xaf\xf7\xee\xf8\x78\xd3\x1f\x61\x75\x62\xe9\x1c\x2b\x83\xd4\x69\xa2\x74\xba\xdb\x3a\x7d\xda\xe9\x33\xf6\x17\x46\x39\x0b\xb0\x5b\x98\x00\xeb\x0a\xd3\x00\x70\x5c\xa7\x99\xd0\xef\x23\x4f\xd5\xef\xb9\x34\x63\xd2\xe8\xc4\x97\x9a\x42\x77\x13\x80\x96\x45\x9d\x56\x4c\x1d\x3e\x36\x81\x52\xa7\x15\x60\x57\xab\xbe\xae\x96\x82\xc1\xef\x63\xa6\x64\x44\xd5\xf0\xc2\x32\x36\xab\x1c\x03\x3e\x1a\x80\xb7\x4b\x13\x9c\x1c\x4f\x4a\x6b\xfb\xb4\x08\x38\x53\xf3\x30\x8a\x86\x50\xac\x74\x91\x23\x90\x8f\xe8\xe4\xd4\x73\xfa\xde\xb3\xf6\xe0\x5f\x6e\x8c\x8e\x13\x7f\xc0\xb1\x56\x9b\x5a\xb1\x70\x02\xa8\x07\x4d\x65\xf4\xea\x41\x3d\xa6\xb0\x1e\x5a\xf5\x76\xaa\xd7\x12\x68\x0b\x54\x53\x5b\x4c\xf8\xf0\x6b\x94\xc0\xdf\x84\x1c\xf5\x28\x6c\xae\x37\x1e\x13\xf8\x9b\x90\xa3\x1c\x8c\x38\xb3\x6f\xf2\xa5\xb6\x32\x38\xf3\x62\xa8\x04\x16\xc9\x71\x91\x2c\xbd\xa6\x45\x67\x5a\x74\xa6\x45\x67\x5a\x74\x60\x91\x30\x23\xdf\xee\xb5\x2c\x3f\xd6\xda\x1f\xa6\xe5\xbb\xd4\xba\x0f\xef\xea\xb5\xae\x43\xfd\x94\xa5\xe7\x43\x2c\xb8\xf2\xab\x50\xb6\x77\x3b\xf5\x02\x4b\xf6\x57\xae\x17\xce\x5f\x65\xfe\x2a\xdb\x97\x75\xfb\xf2\xd4\xf6\xba\x0f\x2b\x83\x95\xc1\x45\x82\x57\x89\x6c\xd0\x47\x5e\xe4\x38\x36\xd7\xee\x95\x5f\xe4\x57\xe1\x55\x82\x8b\x44\xc6\x8c\x57\xc3\xf1\x6a\x39\x5e\x4d\xc7\xab\xed\x78\x1d\x23\x5e\x07\x51\x0e\x3f\xf7\x7a\xf7\x7d\x3e\xa7\x32\x7c\xe9\x24\x72\xe8\xa2\x25\x25\xc1\x60\x61\x16\x9c\xad\x64\x91\x3c\xb8\xf3\xde\x45\x83\xe8\xb5\xed\xd7\x7e\x70\xee\xcc\x36\x47\xc0\xd7\xc4\x5c\x74\x73\x71\xc2\xf5\xb8\xdf\x2e\xcc\x8e\x99\xdd\x9b\xb7\xac\xb7\xf0\xcb\x73\x65\x77\x9f\x9b\xda\xff\x44\x18\xec\xc8\xf6\x1c\x7c\x69\x82\xf2\x3f\x89\x40\x68\x82\x25\x6f\x5d\x93\x1e\xff\x63\x47\x29\xd0\x08\xdb\xcf\x58\xf8\x6a\xf3\xdf\x6e\xef\xb1\xb8\x8c\x75\x7c\x0f\x2e\x16\xdf\x7a\x97\x6f\x0d\x04\x32\x1d\x35\x81\x9a\x8e\x6c\x20\xdb\x11\x04\x82\x8e\x9a\x14\x08\x7d\xa0\xfc\xae\xa1\xfc\xbe\xa1\xbc\x7d\xc5\xb0\x6d\x08\x7c\x20\x4c\x81\xf2\x76\xc7\x92\x3b\x86\xd7\x0c\x6f\xfe\x14\xd3\xcf\x5a\xb4\x13\xe1\x44\x65\xa2\x36\xfd\x01\xc8\x38\x24\xcb\xc4\x27\x11\x09\x5a\x24\x8b\xc4\xf5\x18\x92\x43\x6a\x91\xf6\x48\x7b\x28\x99\x3c\x43\xc9\x14\x98\x9a\x99\x9a\x99\xec\x4c\x30\x53\x93\x08\x3d\xe5\x77\x13\xe5\xf7\x13\xfb\xcb\xb0\x9d\x08\x3c\x61\x62\x6f\xb9\x7d\xc7\xf0\x9a\xe1\xcd\x44\x9f\xf9\xb8\xf1\x59\x8f\xaf\x5e\xf9\x44\xce\xcc\xe4\x9a\x99\x9c\x9d\xc9\x01\xf3\x89\x9c\xd8\x05\xca\xef\x81\xed\x32\x6c\x81\x1c\x78\x72\x6a\x99\x25\x77\x0c\xaf\x19\xde\x00\x39\x1e\xa9\x0d\x66\x8f\x24\x75\xe4\x3a\x3f\xfa\xfe\x15\xf5\xfd\x96\xfa\x7e\x47\x7d\x7f\x47\x7d\xff\x9a\xfa\xfe\x0d\xf5\xfd\x5b\xea\xfb\x6f\x28\x9b\x99\x72\x33\x53\xb6\x33\x65\x60\x3e\x51\x16\xdf\x28\xbf\x67\xcf\xd8\x31\xca\xe0\x29\xab\x5f\xec\x16\x7b\xc5\x4e\x51\xf6\x89\xb2\xfa\x64\xf3\x2b\xb2\x79\x4b\x36\xef\xc8\xe6\x3b\xb2\xf9\x35\xd9\xfc\x86\x6c\x7e\x4b\x36\x7f\x43\x36\xbf\x23\x9b\xdf\xb3\x8e\x28\xb2\xe6\x96\x55\xb7\xac\xbb\x65\xe5\xed\x1b\xea\x71\x22\xc8\xaf\x08\xf2\x96\x20\xef\x08\xf2\x1d\xe5\xd7\x04\xf9\x0d\x41\x7e\x4b\x90\xbf\x21\xc8\xef\x08\xf2\x7b\x56\x11\x3d\x56\xdc\xb2\xe6\xf6\x8e\x81\x95\xd7\xa6\x15\x96\x57\x84\x65\x4b\x58\x76\x84\xe5\x8e\xb0\xbc\x26\x2c\x6f\x08\xcb\x5b\xc2\xf2\xcd\xba\x41\x66\x0e\xf1\xcc\x31\x9e\x39\xc8\x33\x47\x79\xe6\x30\xcf\x1c\xe7\x99\x03\x3d\x73\xa4\xe7\xbe\x7f\xc7\xf0\x5e\x94\xb5\x8b\xf4\xd9\x4a\xa7\xad\xf4\xda\x4a\xb7\xb5\xfe\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xc5\xf4\x59\x4c\x9f\xc5\xf4\x59\x4c\x9f\xc5\xf4\x79\xbd\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x8b\x98\xbe\x88\xe9\x8b\x98\xbe\x88\xe9\x8b\x98\x66\x94\x7e\x5b\xe9\xb8\x95\x9e\x5b\xe9\xba\x95\xbe\x3b\xe9\xbb\x53\x7b\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\xef\xa4\xef\xdd\xe7\x8f\xbc\xef\x87\x88\xc5\xc4\x82\xd7\x73\xf6\xa7\xb1\x6f\x5c\xe6\x99\x97\xcd\x34\xe4\x87\xe5\x30\xb4\x55\xf3\xeb\x28\x0a\x35\x1a\xd4\xd1\x77\xf4\x6a\x7e\xfe\xe2\xb7\x57\x2f\xdf\xff\xfe\x42\xda\xcf\x5f\xdc\xc4\xef\xb3\xdd\x5e\xcd\xac\xbe\x31\x2f\xdb\xcd\x77\x2f\xff\xf1\xfb\x8b\x4f\x9c\xfa\xaf\xec\x52\x1e\xac\x43\x1c\xf2\xe6\xd9\x4f\xdf\xfd\xf2\xe3\xf3\x3a\x5a\xd2\x27\x1f\x36\x4f\xff\xed\xc5\xb3\xfb\xfb\x17\x74\x7f\xff\x2d\xff\x98\x3c\xff\xcd\xbc\xbc\x6c\xbe\x7b\xf9\xbf\x1b\x71\xe5\xe9\x9f\xbb\xdc\xdf\xff\xf6\xdb\xd7\x9b\x5b\xad\x7f\xbf\xbf\xff\xfd\xd6\xf2\xcf\xa5\x73\xf9\xcb\xc5\x8c\xcb\x91\xf6\x61\x68\x4c\x20\x74\xf2\xe7\x2e\x84\x6e\xcf\x7a\xf4\x07\x16\x93\x0b\xdd\xdf\x7f\x5d\xdc\x2c\x14\x4c\x31\x4c\x9b\x95\xa5\x0e\x34\x04\x13\x01\x10\x1c\x09\x0a\xf1\x8b\x0a\x0c\x5f\xce\xc9\xdb\x59\x6f\xfe\xf8\xfd\xc5\x87\x3a\x9f\x9b\xd0\x73\x85\x14\xf7\x1f\xea\x34\x37\x1b\x71\x93\xad\x3e\x7d\x7a\x95\xb9\x08\x9f\x48\xf0\xc1\x27\x71\xed\xfe\xfe\xeb\x47\xe9\xcd\xdf\x07\x2d\xff\x6e\x2d\x25\x67\xbd\x09\xdf\x77\x26\x3f\x76\x5d\xeb\xce\x5f\x3f\xf5\xe6\xaf\xff\x4a\x67\x7a\x09\xfd\x9f\x9c\xf8\x8f\x4f\x9d\xf8\xcb\xff\x63\xae\x0c\x30\x7c\xd8\x3c\x7d\xf6\xcf\x9f\xff\xfe\x33\xfd\xfa\xeb\xaf\xf4\x8f\x1f\x7e\xfd\xf1\x3f\x9f\x7f\xf8\xf6\xe9\x93\x27\xff\x17\x00\x00\xff\xff\xc4\x3e\x7c\x48\x83\x25\x00\x00"
-
-func runtimeSyntaxAsmYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAsmYaml,
-               "runtime/syntax/asm.yaml",
-       )
-}
-
-func runtimeSyntaxAsmYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxAsmYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/asm.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAtsHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\x0c\x09\xe6\x8a\xd1\xd3\x48\xa9\xc9\xa8\x29\xd6\x4c\x2c\x29\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\x46\xc8\x8b\xf6\x13\x00\x00\x00"
-
-func runtimeSyntaxAtsHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAtsHdr,
-               "runtime/syntax/ats.hdr",
-       )
-}
-
-func runtimeSyntaxAtsHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxAtsHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ats.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAtsYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x17\x7f\x73\xdb\xba\xed\xff\x7c\x0a\xd6\x69\x57\x29\xa9\x9d\xec\xed\xaf\xe7\xfd\x90\xbb\xae\xbd\xdb\xae\xef\x75\x77\xed\xee\x7a\xb3\x9c\x8c\x96\x40\x9b\x0b\x45\x6a\x24\xa4\xd8\x19\xde\x3e\xfb\x0e\x94\x64\x39\x6d\xbc\xeb\x75\xbe\xb3\x08\x40\x20\x00\xe2\x07\x01\x29\x6d\x00\xf7\x35\xcc\xc5\xeb\x4f\x1f\xcf\xce\x4a\x40\x28\x70\x7e\x26\x84\x10\xfc\xca\xca\x0a\xe6\x62\x92\xe7\xb3\xa4\xa4\x2d\x85\x54\x62\x78\x3e\x39\x3b\xf3\x8d\x81\xd0\xb1\x4d\x45\x09\x4a\x36\x06\xe7\x22\x5f\x2f\x97\x73\x69\x6c\x53\xcd\x57\xab\xcb\xe5\xcd\xf5\xf4\xc7\xd7\xd3\xbf\xcb\xe9\xc3\xea\x2c\xb2\x9e\x8b\x0f\x35\x78\x89\xce\x87\x7e\x6b\xd8\x57\x6b\x67\x66\xae\x27\xcf\xc5\x64\x39\x9b\xff\xf6\xf2\x1f\xf4\x9f\xdf\xfd\x21\xfb\xfd\xcb\x3c\xff\xd5\x8a\xae\xe8\x05\x4d\xe9\x15\x3d\xa3\x3c\xbf\xa0\x05\xe5\xf9\xf9\xe4\xd4\xf6\xfc\x66\xd0\xf4\x69\x5f\x43\x78\x25\xe4\x3a\xa0\x97\x05\x0a\x3e\x64\x10\xd2\x96\x22\xb8\x0a\x44\xed\xa1\x04\xa5\x2d\x30\xee\x71\xb0\xa7\x73\x45\xbe\x4e\x64\x59\x7a\x92\x1b\xc8\x1e\x68\xed\x9c\xa1\x62\x2b\x3d\x15\x26\x50\x88\x50\x13\x9f\xa5\x6b\xd6\x06\xc8\xf4\x2b\x28\x45\xb0\xb3\xa4\x8c\x93\x48\xda\x62\x52\xa3\x4f\x33\x32\xda\x16\xc6\xd5\xe8\xa9\xd1\x16\xd3\x7c\xfd\xa5\x32\xa3\x2d\x52\x13\x9f\xa6\x87\xe3\x62\x25\x12\x6f\xf3\x20\x0d\x79\x50\x14\xf4\x03\xdc\x22\x85\x61\x8d\xbc\xf1\x19\xd0\x6b\xbb\x21\xbc\xd3\xb6\xa4\x56\xc3\x3d\x52\x9b\xe1\x75\x4d\x2d\x52\xeb\x74\xf9\x84\xd6\xda\xbb\x9a\x70\xb9\xb8\x5e\xed\x6b\x20\x26\x77\x1b\x07\x4a\x44\x22\x30\x92\x0e\x5c\x27\xe4\x2d\x2f\xa7\xab\x83\xcc\x0e\x19\x80\x63\xd9\x23\xe1\x80\x3c\x7e\xf5\x68\x17\x03\xe9\x10\xd7\x8f\x28\x11\x2a\xb0\x87\x90\x85\x81\xd0\xc5\x6d\x1d\xa2\x8d\xbc\xf2\x23\x1e\x52\xae\x43\xe7\x12\x06\x30\xd9\xd7\x90\x66\x03\x91\xa4\x2d\xf9\x2f\x4d\x70\x24\x03\x25\x1e\xd2\x4c\x86\xd0\x54\x40\x6b\xd8\x68\x4b\x49\xed\xd3\xac\x90\x01\x28\xc4\x65\x3c\xfa\x63\xd5\x85\x91\x21\x94\x50\x50\x29\x51\x46\xbd\x0c\x24\x6d\xe7\xaf\x2c\x9a\xc5\x94\xa8\x95\x01\x4e\x3c\x2a\x1d\x95\x7b\x6b\x9c\x2c\x09\x4c\x00\x02\x5b\x12\xec\x0a\xa8\x51\x3b\x4b\xb0\x8b\xdb\x60\x87\xad\x4c\x3c\x99\x94\x42\xa6\xd5\x29\x0b\xb4\x8a\x66\xea\xaa\x66\xc9\xca\x79\xd2\x96\xb4\x55\x7a\x97\x18\x8a\x99\x08\x48\xc6\x15\xd2\x50\x25\x0b\xef\x4a\x50\x0c\xf0\x62\x1d\x92\x53\xe4\x6a\x72\x9e\x9c\x8f\xa6\xb8\x16\x7c\x34\x2c\xa9\x3d\x50\xed\x02\x92\x75\x36\x55\x7a\x77\xca\x00\x3e\x35\x4b\xf3\x50\x10\x9f\x8e\xe1\x80\xb2\x08\x9c\xa0\xb2\xc7\xa2\xc8\x80\xb2\x95\x9e\x97\x04\x75\x91\x66\x14\xf6\x15\x18\x5d\xf1\xaa\x2d\xfa\x2e\x93\x41\x11\x6e\xc1\x12\xfa\x7d\xf4\x22\x13\xda\xe8\xc9\x12\x4e\x7a\x61\xc8\x2b\x66\x8e\xb1\x6b\x65\x3c\x3e\xdd\xb3\xa8\xfb\x2d\x78\xa0\xfb\xad\x36\x40\xf7\x1a\xb7\xf1\x11\x9d\xcc\x40\x0c\x1b\x03\x6d\x32\x06\x2d\xe2\x8f\x72\xfe\xeb\x9c\x1b\x2a\x64\x48\x35\xc6\xb3\x81\x70\xfc\x16\xd7\x6e\x17\x57\x65\x64\x9f\x90\x3d\xa5\x3d\x90\x74\x55\x1b\x5e\x3d\x0c\xd0\xc9\x9c\x93\xa1\xab\x93\xe3\x83\x46\x82\x72\x3e\xbf\xe8\xce\x99\x5f\x1c\xaa\xe7\xe7\xa6\x5a\xc3\xe1\xf6\x2d\x9c\x0d\x28\x2d\xce\x6c\x24\xc7\x0b\xfc\x7a\xfa\xe3\x6c\x75\x99\x2c\xe1\xed\x8a\xe5\x64\x4c\x58\x5d\xa6\xd9\x52\xbd\x33\xef\x57\xd9\xc1\x8e\x27\xf6\x5e\x2f\x77\x9f\x57\xcb\x78\xe9\xbf\x93\x53\xb5\xba\x48\xf2\xd9\x31\x9a\x66\xcb\xfa\xaf\xc7\x52\xbf\x41\x66\xd2\x71\xd2\x97\xb2\x2f\xd3\xa5\x79\xdf\xfc\x6d\x75\x91\xaf\x87\xb3\xbd\x6b\x6c\xc1\x45\x33\xf5\x60\x24\x42\x29\xee\x60\x7f\xef\x7c\x19\x5e\x89\x50\x43\xa1\xa5\x11\xaa\x67\xe9\x1a\x01\x37\xb7\x50\xcb\x02\xc2\x4c\xfc\xec\x50\xf0\x35\x6b\xf6\x42\x97\x60\x51\x2b\x3d\xfa\x69\xa4\x44\x93\x94\xde\x75\xfe\x56\x4d\x66\x49\xd9\x1d\x15\x32\xa0\xb2\x54\x7b\xb9\xd3\x5c\xac\xe0\x2d\x19\x59\x91\xe1\x47\x64\xe5\x40\xc6\xb0\x8d\x68\x75\xdc\x0b\xbe\x56\xb1\x20\xe5\x4c\xb9\x20\xe5\x01\x16\x2c\x6d\x11\xc5\x2d\x88\x5b\xd3\x22\x96\xc3\x82\x9b\xc2\x82\x94\xe5\x08\x3f\x21\xe7\x79\x7e\x7f\xe4\x9f\x0f\xb8\x05\x7f\xe4\x94\xc1\x19\x02\x94\x82\x02\xc3\x6c\x36\x1b\x72\xac\x73\xd7\x5c\x24\xf9\xf3\x44\x7a\x5f\x87\x07\xe2\x05\x3d\x37\x1e\x5a\x7b\x90\x77\x54\x38\x8b\xda\x36\x40\xe5\x0f\x45\x77\xb7\x81\x91\x7b\x6e\x82\x95\x0c\x77\xb7\x89\xc5\x2a\x76\x43\xee\x5b\xf7\x1e\x49\x1a\x93\xa6\x47\x79\x7c\xac\xa3\xdf\x34\xb8\xae\xbb\xf5\x6e\x03\xfa\xa6\xc0\xa3\x3b\x30\x36\xb7\x78\x17\x1a\x5e\x54\x21\x4d\x04\xaa\x08\x98\xce\x00\xa3\x11\xbc\x34\xa7\x54\x19\x9d\x05\xbc\x6d\x91\x3a\xa0\x5f\xa9\xda\x0f\xe3\x0e\x83\xbd\x67\xa8\xda\xf3\x6d\x19\x41\x2f\x75\x00\xbe\xd8\x12\xe7\xcb\x34\xbb\x6d\xf1\x94\x86\x91\x07\x47\x7e\x0a\x5b\xd7\x75\xd3\xe0\x4c\x0b\xfe\x56\x86\x00\x1e\x07\xac\x05\xaf\xd5\x9e\x10\xaa\x1a\x6c\x0b\xfe\x94\x6c\x6c\xea\xc4\x40\x54\x4f\x07\x78\x04\x09\xf7\x1e\x6a\x6a\xa5\x97\x7e\x43\x6d\xe1\xea\x3d\xd8\x96\x99\x47\xf8\x29\xd1\xf9\xb3\x84\x43\x04\x3b\xcb\xd1\x82\x9d\xed\x31\x0e\x1e\x83\x4c\x65\x17\x73\x4c\x8d\x7c\x78\x4a\xc2\x3a\x51\x8d\x4d\xae\xe9\xd7\x29\xf1\x3c\x93\x66\xdd\xc8\x13\x29\x19\x15\xc6\x79\x50\x23\xd2\x43\x46\x73\xd1\xa8\x13\xf2\xb2\xda\xf3\x10\x65\x6c\x9a\x3d\xa3\xda\x83\xf7\x3d\x8c\x4d\xfd\xf0\x6c\x9c\x08\x78\x9e\x7b\x23\x62\x47\xeb\x0a\xdb\xc5\x4c\x7f\xfd\xe9\x63\x4f\xec\x85\xd7\x1e\x6a\xef\x8a\xb9\xb8\x59\x2e\xe7\xb1\xf0\xe7\xab\xd5\xc5\xf9\x31\x92\x74\x43\x21\x57\xf2\xa6\x92\xc4\x83\x5b\x53\x02\x25\x8d\x25\xad\x6c\x96\x72\x4f\x01\x5b\x6a\x45\x60\x12\xad\x28\x40\x4a\x5a\xd1\xbd\xf4\x96\xc7\x2f\xf0\xde\x79\xea\x42\x3b\x1e\xea\x5b\xf4\x16\xae\x84\x0d\xd8\x1f\xa8\x07\x7e\x43\x60\xb4\x8a\xea\x8c\x56\xb1\x13\x46\x0f\x50\xf4\x09\x79\xf8\x57\xa3\x3d\x74\xdd\x71\xe8\xa9\xfd\x1c\x91\x8e\x25\xff\x47\xe7\x0c\x48\x2b\x5a\x69\x1a\xf8\xea\xd6\xe7\xc1\x36\x7a\x1a\x7d\x03\xa4\x24\xf7\x7c\xdb\x18\x13\x05\x0c\x63\xf4\x16\xc4\xe4\xc5\xbf\xc5\x6c\x36\x13\x2f\x7e\x99\x88\xb5\x71\xc5\x9d\xd0\x96\x4f\x18\x84\x72\x1e\xf4\xc6\x0a\x36\x5a\x68\x8b\x2e\x3a\x5d\xa2\x28\x5c\x55\x6b\x03\x53\xd4\x15\xf4\x92\xde\x74\x3c\x41\x97\x20\x9c\x12\x1a\x85\x0e\x62\x03\x96\x8b\xd5\xec\xc5\x1b\xe1\xbc\xf8\x8b\x6c\xe5\xc7\xc2\xeb\x1a\xbf\xf8\xb4\x88\x28\xff\x02\x4a\x8f\x73\x36\x69\x79\x7e\xf3\x7c\x95\x4d\x0e\x6f\xc0\x96\x4c\xff\x65\xa4\x84\x3b\x5d\x77\x1f\x2f\x23\xcd\xe8\x4a\xe3\x74\xe3\x5d\x53\xcf\xbf\xfc\x7c\x38\x30\x1d\x7d\xdd\x0c\xbf\xa9\xe8\x73\x61\x2e\x26\xc5\xe4\xe4\xab\x7f\xca\x56\x86\x78\x80\xc9\xd9\x38\xb1\xf2\x68\xde\x65\x26\x7f\x36\x7c\x15\x87\x6e\x76\x9f\x8b\x7c\xb2\xbc\x99\xac\x2e\xf2\xc9\x49\x86\x97\xcb\x9b\x97\xab\x8b\xfc\xe5\x41\xf6\x1b\x57\x8d\xb3\xf0\xb9\x98\x5c\x5d\x5d\x5d\x4d\xd8\xfb\x91\x2a\xa0\x05\xbf\xc7\xad\xb6\x1b\xd1\x58\xd4\x86\xbd\xee\x41\x16\x5b\x08\xe2\xed\x87\x77\x07\x3d\x91\x7d\x16\x63\xfb\x95\xab\x59\xe4\x63\x27\x3f\x97\xff\xdb\x53\xe8\x4a\x37\x17\xc9\xa7\x0f\x7f\xfa\x40\x9f\x3f\x7f\xa6\x77\x7f\xfe\xfc\xd3\xdb\xbe\x5c\x47\x6d\x46\x5b\x78\x42\xd9\x17\xaa\xbe\x5f\xd3\xb9\xf8\xe9\xfd\xd4\xe8\x3b\xe8\x73\xb6\xd7\xfb\x4d\x67\xce\x93\xfc\xe2\xb1\x21\xf9\x45\x9e\xfe\x3f\xb6\xbc\xf9\x5e\x53\xae\x9e\xb0\xe4\xea\xbb\x2c\xf9\x6f\x00\x00\x00\xff\xff\xdb\x34\xe9\x45\xeb\x0f\x00\x00"
-
-func runtimeSyntaxAtsYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAtsYaml,
-               "runtime/syntax/ats.yaml",
-       )
-}
-
-func runtimeSyntaxAtsYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxAtsYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ats.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAwkHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2c\xcf\xe6\x8a\xd1\x4b\x2c\xcf\x56\xe1\x8a\x53\x56\xd4\xd3\x4a\xca\xcc\xd3\xd7\x48\xcd\x2b\x53\xd0\xd6\xb4\x4f\x2c\xcf\xd6\x50\xa8\x51\xd1\xe4\x02\x04\x00\x00\xff\xff\xd4\xba\xfa\xcf\x25\x00\x00\x00"
-
-func runtimeSyntaxAwkHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAwkHdr,
-               "runtime/syntax/awk.hdr",
-       )
-}
-
-func runtimeSyntaxAwkHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxAwkHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/awk.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxAwkYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\xdd\x72\xea\x36\x10\xc7\xef\x79\x0a\xc7\xa1\x3d\xf9\x18\x48\xa7\x77\xa5\x1f\x29\x01\x9b\xe3\x99\x20\x9f\x31\x6e\xca\x34\x4a\x3a\xc2\x5e\x83\x06\x59\x72\xa5\x75\x21\x9d\x7d\xf8\x8e\x20\x39\xe1\xa4\x19\xda\x9b\xfa\x62\x77\xb5\xd2\xfe\xf6\x2f\x4b\xa3\x4a\x2a\xc0\xa7\x06\x06\x81\xd8\xac\x3b\x9d\x12\x10\x0a\x1c\x74\x82\x20\x08\xfc\x94\x16\x35\x0c\x82\x90\xf3\xbe\xd8\xac\xbb\xe1\x2e\xbf\x02\x51\x82\x1d\x04\xe1\xe3\xe9\x49\xff\x62\x21\xf5\xd5\x19\xe8\x3f\x83\xcb\xf3\x6b\xb1\x59\x9f\x05\xd4\x3d\x0f\x3b\x1d\xdb\x2a\x70\x7b\x4e\x2f\x68\x2c\x34\xd6\x14\x3b\x50\xf7\x7e\xd8\xfb\x4d\xf4\xfe\xfa\xa6\xf7\xdd\xef\x27\x3f\x9f\x76\x2f\xae\x39\xef\x3d\x5c\x86\xef\x2c\x5d\x9c\x0d\xb3\xc9\x88\x86\xd9\x24\x61\x63\xef\xee\xe8\x26\x61\xd3\x74\x1c\xd1\x28\x65\x77\xf1\x34\xa7\x88\xdd\x25\x59\xca\x28\xca\x32\x96\x52\x9c\x44\xb7\xe3\x5f\x93\x71\xfe\x71\x76\xce\xf9\xe2\x7d\x66\x9c\xdc\x46\x6c\x38\x8d\x28\x66\x19\xc5\x33\x4a\x26\x2c\xcd\xa2\xd1\x70\x16\xd1\x6d\xc2\x72\x62\x31\xb1\x8c\x52\x4f\x4f\xe3\x19\xa5\xd9\x11\xd6\xa7\x2c\x1d\x25\x2c\x4e\x29\x9b\x51\x96\x53\x36\xcb\x87\xde\xdd\x46\x6c\x92\x7f\xa4\xd9\x2f\x37\xb3\xe8\x13\xe5\xd1\x3c\x1f\xa7\xd3\x61\xc2\x0e\x41\xb2\x04\x8d\xb2\x92\x60\xfb\x85\x12\xce\x3d\x13\xab\x56\x17\x28\x8d\x26\xd8\x22\x68\xe7\xa3\x9b\x68\x92\x30\x8a\xd8\xf8\xb0\xdc\x3d\xd5\x0b\xa3\xfa\xa6\x01\x2b\xd0\xf8\xd3\xb8\xe7\xbc\x77\x79\x71\xf5\xd5\x23\x9d\xfc\xf8\xf5\x0f\x3f\x5d\x7f\x3f\x78\x20\xce\x39\x27\xce\xef\x89\xf3\x87\xcf\x95\x28\x10\x6a\xd0\x38\x08\x9e\x5b\x1a\x4b\xb2\xa2\xcd\x4a\x2a\xa0\xd2\x10\x28\x07\x24\x35\x95\xa0\x00\x81\x60\x2b\xf1\x8b\xce\x0d\x14\x52\xa8\x97\xea\x85\x05\xb1\xa6\xc2\x68\x94\xba\x05\xb2\x80\xad\xd5\x5f\xac\x7f\xed\xb7\x2b\x28\x94\x71\x40\x4b\x40\x25\x35\x90\x86\x2d\xee\x8c\xbf\x6d\xd4\x58\xa9\x71\x6f\x2b\x72\x4f\x0e\xa1\xa6\xaa\x52\xad\x5b\x1d\x23\x0a\x14\xfa\x5b\x2a\x8c\x23\xd8\x36\xe4\x09\xca\x2c\xc9\x0a\x5d\x92\x93\x9a\xdc\x1f\x16\xc9\xf9\xe1\x51\x88\x33\x16\x69\x67\x25\x2d\x41\xbb\x76\x41\x4b\x6f\xa4\x2e\x61\x4b\x0a\xf4\x12\x57\x54\x0b\x2c\x8e\x6a\x71\x8d\x92\x48\xee\x65\x0b\x68\xd1\xe8\xb6\x26\x0f\x72\xed\xc2\xa1\x25\x34\xca\x6c\xc0\xfb\xb6\x69\xc0\x1e\x83\xd5\x6b\x94\x35\x78\x4a\xb5\x0f\x9e\x9c\xf7\x47\xb7\xa1\x4b\x2a\x4c\xdd\x28\x52\x6e\x25\x2b\x24\x63\xc9\xee\xa3\xad\x39\xda\x6c\x21\x75\x89\xb0\xc5\xd2\xd4\xc2\x9f\x7e\xb1\x04\xf4\x63\x2a\x0b\xfd\x1c\xbe\x7f\x0d\x82\xf0\xaa\x7f\x71\xff\xe8\xef\xda\xc3\x55\xd8\x79\x9e\x2f\x8c\x76\x28\x34\xf6\x1d\x5a\xa9\x97\xfb\xa7\xc0\x7f\x0e\x85\xdd\xf5\x0c\xc3\xcf\x39\xd0\xe5\x9b\x8c\x5b\xcb\x66\x27\x8c\xf3\xfe\x6b\xf6\xe0\x55\x79\xf9\x0e\x3b\xed\x25\x8d\x56\xc2\xbe\x96\xfe\x57\x39\x1f\xde\xaa\xf9\xf0\x7f\x8a\xa9\x77\x3f\xfe\x1f\x22\x4e\xdf\x8a\xe8\xfe\x4b\x3b\x34\xa5\x19\x04\xe1\x59\x9e\x8e\x53\x9a\xcf\xe7\x14\x27\xf3\x69\x74\x3e\xb8\x0e\x3b\x9d\xbf\x03\x00\x00\xff\xff\x75\x88\x25\x4c\xdb\x05\x00\x00"
-
-func runtimeSyntaxAwkYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxAwkYaml,
-               "runtime/syntax/awk.yaml",
-       )
-}
-
-func runtimeSyntaxAwkYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxAwkYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/awk.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxBatHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x4a\x2c\x49\xce\xe0\xd2\x88\xd1\x4b\x4a\x2c\x51\xd1\xe4\xe2\x02\x04\x00\x00\xff\xff\x8a\xb7\xa1\xd0\x10\x00\x00\x00"
-
-func runtimeSyntaxBatHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxBatHdr,
-               "runtime/syntax/bat.hdr",
-       )
-}
-
-func runtimeSyntaxBatHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxBatHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/bat.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxBatYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x57\x4f\x73\x1d\xb7\x0d\xbf\xeb\x53\x6c\x14\xa7\xb6\xe2\x91\x92\x48\xbd\xf4\xf5\x8f\xdb\x66\xa6\xc7\x5e\x3a\xd3\x43\x4d\x4f\xca\x25\xb1\xbb\xcc\xe3\xbf\x07\x60\xdf\x4a\x09\xf2\xdd\x3b\x20\x57\x8e\x5d\xdb\x72\xab\xd1\x03\xb0\x24\x48\x02\x20\xf0\x23\x39\x85\x08\xfc\x50\xe1\x30\x8c\x96\xdd\x72\x71\xe1\x81\xc1\xf1\xe1\x62\x18\xb4\x2b\xdb\x04\x87\xe1\xf2\x85\x31\x37\xa3\xe5\x67\x57\x97\x17\xc3\xf0\xe5\xb0\x80\xf5\x80\x87\xe1\xf2\xf2\xe2\x02\xd7\x08\x74\x68\xcd\x7f\x5f\xd3\x08\x48\x17\xc3\x70\x3d\xb8\x92\x89\x6d\xe6\x9b\xdc\x1a\x0f\xc3\xa5\x31\xe3\xeb\x6f\xaf\x7f\xf7\xe6\xa5\x31\x63\x9f\xe6\xaf\x68\xdd\x11\x98\x06\x9b\xfd\x40\x0f\x69\x2c\xb1\x0f\xa6\x0a\x2e\xd8\xd8\x17\xfe\x59\x8c\xf9\x45\x8c\x79\x21\xc6\x5c\x89\x31\xbf\x17\x63\xde\x88\x31\xaf\xe5\xdf\x62\x8c\x31\x62\xcc\x33\xf9\x83\xfc\x49\xbe\x90\x3f\xca\x6f\xc4\x18\xd9\xad\xfc\xbe\x64\x1f\x38\x94\x6c\x63\x5f\xc2\x95\xcc\x58\xe2\x30\xc5\xb2\x35\x8d\x5c\x18\x86\x17\xaf\xc2\xd5\x90\xc0\x66\x1a\x9c\x25\x18\x42\x26\xc8\x14\x38\x9c\x61\x48\x2d\x26\x6a\x52\x8f\x91\x3a\xa1\xfa\x2f\x54\x53\x7c\x11\x5f\x32\x08\xc4\x30\x09\x44\x02\x01\xb2\x4e\xe0\x3e\xb0\x4c\x41\xa6\x82\x32\xad\xd9\xa9\x09\x12\x26\x09\x59\x62\x71\x36\x0a\x82\xf5\x82\xc0\x2b\x66\x21\x88\xe0\x58\x78\x81\x2c\x6b\xe6\x10\x65\x5b\x42\x84\xab\x3d\x48\x1f\x2c\x0c\xa7\x55\x32\x9c\x24\x12\x49\x84\x93\xcc\x8c\x32\xc3\x49\x4a\x96\x32\x4d\x9f\x1c\x36\x17\x2e\xcd\xa0\x90\xd5\x6c\x67\x63\xec\x76\xe6\xc2\x2a\x10\x0b\x20\x16\x8c\x70\x86\x28\x1e\xa6\x90\xc1\x7f\x72\xb6\x8a\x59\xf2\x1a\x25\x56\xbe\x53\x72\xab\xe4\x3b\x71\x25\x8b\x2b\xe9\xb7\x4a\xee\x94\xdc\x2a\xf9\x4e\xec\x7a\x7f\xf5\x76\xd3\x8f\xf0\xb0\x15\xf4\xfb\x46\xb3\x65\x48\x90\xf9\x9d\xc9\xad\xaf\x08\x55\x6c\xad\x90\xbd\x58\xac\x62\x89\x8a\x13\xcb\x62\x39\x59\x9f\xc4\x32\x63\x18\xc5\xae\x3e\x70\x2d\x51\xec\xca\xc5\x2d\xc7\xce\x4b\x3e\x37\x61\x4a\x2c\xa3\xf3\x63\x29\x8d\x83\x0f\x2c\xa3\x87\xc5\xbb\x69\x96\x31\x30\x59\x9f\x42\x16\xed\x6f\x2d\x08\xf6\xd8\xe8\xaf\x5e\x7f\xcc\x3a\x67\x5d\x24\x71\x5e\x1c\x20\x23\x9c\x1a\x5f\x75\xdf\xdc\xe2\xaa\xb8\xc5\xe6\x19\xc4\x2d\x25\x38\x10\x17\xea\x02\x28\x6e\xf1\x41\xe9\xd1\xd3\x51\x59\xe6\x89\xc4\x2d\x73\x2c\xb3\x46\x6c\x99\x6b\x41\x56\xbe\x12\x8a\x8b\xa1\x4a\x5b\x23\x92\x8b\x6b\xb7\xd2\xc5\x95\x58\x67\x4a\x5e\x7f\x47\x78\x10\x97\x88\xab\xb8\x12\x0b\x7e\xc6\xe2\x92\x54\x2f\x55\xeb\x58\xb7\xe8\x0c\xba\x58\xa9\x0f\xe2\x2a\x16\x2d\x72\x71\xe4\x30\x54\x16\x47\x67\x0f\xe2\x2d\x83\x78\xe7\x83\x9d\xc5\xbb\xb9\x96\x29\xdc\x8b\x57\xe5\x54\x34\x35\xd0\x8a\xd7\x24\x99\x48\xcd\xf1\x13\x75\xcd\x89\x30\x85\x59\x7c\xb0\x99\x7f\x12\xf5\xd8\x07\x3c\xad\x85\xad\xf8\x40\xc7\x66\x46\x17\xea\x43\x13\xaa\x45\xee\x02\xe0\xd4\x04\xb4\xc1\x37\x81\x16\xeb\xcb\xa6\x62\xed\x93\x17\xcd\xdb\xdc\x17\x2c\xa4\xfe\x7b\x0c\x67\xc0\xd3\x0a\xf8\x20\x9e\xda\xae\x78\xb2\xde\x2b\x4d\x56\xd5\xc9\x8f\x6d\x63\x3c\xcd\xc0\xe2\x29\xcd\xa9\xb1\xe2\x1b\x3d\x83\x78\x7a\x1c\x8f\xe9\xe9\x20\x82\x5b\x8a\xb4\x1c\x82\xec\x7b\x15\x03\xda\x56\xf1\x90\x79\xe5\x28\x70\x86\xcc\x0e\x41\x83\xd7\xe4\x3e\x75\x13\x19\xc3\x3c\x03\x92\xc0\x39\xb3\xfa\x00\xf7\xd5\x66\x65\x8c\xd6\xf1\xd3\x4b\x4f\x4e\x74\x93\xc8\x61\x96\x29\x64\xdf\x08\x31\x2a\x9f\x01\x65\x8a\x96\x19\x52\x95\xa9\x64\x0f\x5a\xe4\x4d\x5d\x85\x64\x59\x26\x04\xd0\x90\xca\x44\x32\x51\x0b\xc8\xc4\x55\x26\x2d\x69\x99\xce\xb0\xd6\xb6\xdf\x33\x70\xb2\x4e\x59\xeb\x98\xeb\x14\xee\xd7\x2a\x73\x45\xa0\x35\xb2\xcc\xf5\x51\x11\xed\xc4\x76\x8c\x4f\x1b\xbd\x58\x5a\x66\xc8\xb2\x40\x95\x05\x62\x27\x8e\x51\x96\x42\xac\x87\x8a\x84\x5e\x49\x21\x10\x02\x01\x4b\xc8\x2b\x81\x84\xea\x4a\x9e\xc2\x2c\xa1\xde\x63\x59\x19\x24\xa0\x9a\x1b\x28\x11\xe0\x59\x7e\x04\xae\xd6\x1d\xe5\x08\x0f\xa3\x1c\xa3\xe2\xd6\x91\x80\xd7\x2a\x47\x4e\xcd\xb9\x23\x57\xab\xd8\x68\x47\x88\x12\x7d\x98\xbc\x44\x5f\x25\x16\xaf\xcb\xc7\x32\x27\xab\x38\x3c\x97\x69\x92\x58\x4f\x12\x2b\x4a\xb2\x6e\x7a\x0f\x74\x3f\xe6\x52\xb2\x47\x70\x76\x94\x64\xb3\x9d\xe1\x7a\xf4\x20\xc9\xd6\x5e\x9f\xc9\x4b\x3a\x6a\xca\xa7\x63\x0c\xf9\x28\x29\x39\x49\x45\x35\x0a\x2a\x59\x33\x77\x7a\x2e\x51\x5a\xea\xa5\xd3\xb8\x56\x49\x27\x3a\x3b\x49\x27\x9e\x1b\x27\xcf\x92\x68\x96\x44\x01\xee\x41\x1b\x42\x9e\xca\xdd\xad\x24\x62\x72\x92\x47\x56\xc3\x24\x03\x0f\x5a\x4e\xab\x42\x82\x7e\xcc\x58\xd6\xfa\xb4\xf5\xaa\xd6\xf2\xb6\xe9\xb6\x51\x15\x43\xee\x93\x11\x10\xe9\x21\xd5\xe4\xc5\x22\x74\x89\xb5\x40\xbb\x54\xfa\x10\xdd\xa2\x9d\xf7\x95\xcf\x01\x36\x15\xf4\xa7\x30\x9a\x81\x5b\xc1\x2a\x2f\x49\x19\x2d\x8d\x36\xbb\xa7\x1d\x74\xf3\x44\xfb\x32\x13\xf5\x9e\x38\x7e\xc6\xfc\x38\xa6\x19\x25\x47\x06\x62\xc9\x14\x4b\x39\xaa\x1b\x6c\x5d\xe7\x2e\x79\x05\xa8\xca\x92\xd9\xf7\x34\xcf\x3c\x21\x69\x69\x96\x0a\xb9\xd7\x44\xb5\x33\xa8\xb4\x27\x59\xb5\xbc\x34\x52\x43\xd6\x2f\x75\xaf\x8e\xdd\xc6\x0a\x99\x33\x8b\x62\x53\x2a\x59\xba\x46\xae\x6b\xd6\x6a\xcb\x4d\xd4\x45\x6a\xa9\xfe\x69\xd3\x6b\xd9\x00\x35\x36\x4d\xa0\x05\x62\x7c\x47\xfc\x21\xe8\x9a\x6d\x27\x2a\x66\x97\x55\x0f\xb3\xc7\x33\x2a\xff\xb1\x8c\xa4\x3c\xe5\xb9\x7d\xb7\x83\xa2\x62\x3e\x39\x8e\xb2\xfb\x5b\xd7\x51\xcf\xe3\xba\xd2\xe2\x1b\x6d\xb3\x01\xba\x92\x33\xb4\xcb\x07\x49\xdd\xa2\x5d\xb3\xd3\xc3\xe8\x64\x6b\x25\x3c\xcb\xa9\x62\x71\x40\xf4\xb4\xf1\x1d\xc4\x4e\x6d\xbf\x4f\x5b\xd0\x3b\x9d\xa0\x55\xc4\x8f\x82\xae\x0a\x7a\x41\x5f\x29\xcc\x59\x10\x66\x45\x40\x41\x70\xe5\x0c\x28\x08\x3e\xa0\x4b\xb5\x0b\x7a\xb4\x21\xcc\xfa\x0b\x39\x28\xa3\x33\xde\xdd\x0a\x42\x2c\xda\xaa\xe3\x1b\x2e\x20\x64\xcd\x1c\x84\xbd\xb4\x54\x08\xd8\xca\x0d\xa1\x46\xeb\x94\x2b\x60\x20\x10\x17\xfc\x4c\xd1\xa2\x96\x11\x86\x0e\x11\x98\xb4\x44\xb1\x8c\xa5\x9d\x41\x1d\x5f\xb0\x3a\x2d\x32\xe5\x6d\x8f\x91\x16\xc1\x35\x5b\x52\xea\x63\x54\x1b\x77\xc7\xc9\x55\x21\x27\x04\xdc\x4f\x80\xc7\xb2\x21\xb7\xb0\xa5\x23\x09\xb9\x4d\xd1\x9d\xc0\xb5\xa3\x42\x11\x0b\xd0\x41\xa8\xa5\x72\xc8\xed\x1b\x3b\x7c\x60\xd7\xd3\xfe\x0d\xf0\xb1\x5b\x87\x30\xd5\xfc\xb4\x4f\x04\x7c\x2f\x34\x39\xd9\x4f\x49\x5a\xc2\xc4\x42\x4b\xd9\x3a\xd0\xd0\xb2\xb2\x2f\x5b\x16\xd2\x6c\x21\x5a\xa4\x57\xb2\x86\x0b\xa1\xb2\xd0\x3a\x12\x0b\xdd\x93\x9e\x3e\x20\x0f\x54\x9c\x16\x17\x3d\x10\x43\x6a\xc1\x60\x7b\x04\x9d\x81\x6d\x0d\x9a\xba\xea\xde\x31\xc4\xd8\x84\x86\xba\xec\x52\x0f\x2a\x43\xd4\xfa\x67\x45\x69\x0e\xe9\x33\xfb\xa1\x1a\x65\x65\xe1\xc0\x11\x84\x63\x66\xeb\x53\x16\xae\xe9\x4c\xcd\x88\x77\x24\xeb\x00\x2b\x4b\x33\x12\x95\x03\x08\x93\x5e\x32\x99\x7c\xd8\x05\x70\x21\x55\x61\xea\xd6\x91\xde\x68\xa4\x9d\x60\x4a\xda\xc5\x82\x7f\x6a\x85\xba\x7a\x1f\xf6\xb2\x5f\x7b\x9c\xd6\xbc\x1f\x0a\x9a\xad\x67\xc0\x30\x3d\x3c\x6d\x7c\xd3\x09\x8f\xca\xa2\x58\x7e\xa6\x1d\xd2\xb6\xbb\x5b\x4e\xb2\xd9\xc0\x7a\xcb\xde\x76\x10\xd9\x76\x28\xda\xc0\xed\xfc\xdc\x2f\x8b\xdb\x02\x08\xb2\x2d\xc5\xa6\x20\x5b\xc8\x99\x3b\xbd\xbb\x55\x5e\x4b\x55\x86\xa9\x51\x52\x4a\x96\x65\x8b\x23\x49\x0a\x4e\xb6\xfd\xbe\x76\xaf\x79\xfc\xeb\xd5\xfa\x9b\xe1\x6f\xd1\xce\xef\xbf\xbf\xf4\x0d\xf5\x8d\x31\xdb\xcb\xfd\x51\xf4\x4f\x8b\xc1\x8e\x11\x3e\x78\x68\x7d\xf5\xd5\x5b\xad\xf7\xdb\xb5\xf9\xab\x0f\x9f\x54\xc3\xf4\x76\xad\xfd\x75\x70\x7d\xfd\xda\x5e\xff\x74\xfd\xe6\xe5\x7f\xbd\x19\x86\xd6\xae\xcd\xad\x3d\x78\xc8\xdc\xe2\xd8\x7a\x9f\x19\xf3\xf3\x2b\x7d\x18\xfe\xe5\xfa\x5f\x3f\x7c\xf1\xe7\x2f\x9f\x7d\xfd\xea\x5a\xdf\x88\xbf\xbc\xba\xfc\xff\xd5\xbf\x1c\x2e\x2f\x87\x7f\x30\x86\x3c\xbf\xff\x0a\xa5\xd6\xa6\xcf\x54\xfd\x6b\xf5\x70\x18\xcc\xe5\xfe\x0d\xd9\xbf\xf3\x45\xc7\x50\x0f\x83\xb9\xd9\x3f\xdf\x3e\x70\xfb\xdf\xbb\x93\xf6\x28\x7d\xbf\x58\x3c\x0c\x2f\x8c\xf9\xf6\xf1\x3d\xca\x62\x4c\x16\x63\x50\x8c\xb9\x14\x63\x9e\x5f\x7d\x6c\xf8\x9a\x83\x2b\x1e\x0e\x83\x31\xab\xf9\xf9\xf5\xeb\xc3\xbd\x0f\x73\xe0\xc3\x9b\x37\x2f\x7f\x69\xbe\x3c\x7f\x3e\xd0\xa7\x7d\x69\x8f\xe3\xe7\x37\x2f\x75\xfa\xee\x3b\x42\x1a\x2c\xe9\xd5\x40\x13\x77\x1f\xd4\xe4\x1b\x84\xa4\x03\x1a\x24\x42\x32\x86\x6e\xbe\xde\x07\x1d\x0e\xff\xc3\x18\x63\x0e\xed\xbf\x0f\xfb\x4f\x00\x00\x00\xff\xff\x8e\x03\x2d\x0d\x34\x10\x00\x00"
-
-func runtimeSyntaxBatYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxBatYaml,
-               "runtime/syntax/bat.yaml",
-       )
-}
-
-func runtimeSyntaxBatYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxBatYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/bat.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xe6\xd2\x88\xd1\xd3\x48\xae\x71\xd6\x54\xa9\x89\xd1\xd3\xc8\xa8\xf1\x00\x33\x32\x33\xed\xc1\xfc\x94\xd4\x34\x4d\x15\x4d\x2e\x2e\x40\x00\x00\x00\xff\xff\x62\x51\x8f\x94\x27\x00\x00\x00"
-
-func runtimeSyntaxCHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCHdr,
-               "runtime/syntax/c.hdr",
-       )
-}
-
-func runtimeSyntaxCHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/c.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x5d\x6f\xdb\x36\x14\x7d\xf7\xaf\xd0\xd4\x6c\x11\x93\xda\x71\x3f\xd0\xb5\xda\x87\x31\x78\xeb\x36\xa0\x5b\x5e\x56\x20\x98\xa8\x0a\x94\x78\x65\x5f\x84\x26\x05\xf2\x2a\x69\xd7\x9b\xff\x3e\x50\x72\x16\xc1\xcd\xba\xa2\x4f\xf3\x13\x79\x3f\x78\xce\xb9\x3a\xd7\x2d\x1a\xa0\x77\x1d\xe4\x49\x33\x9b\x69\x20\x68\x28\x9f\x25\x49\x92\xc4\x84\x55\x3b\xc8\x93\x34\x93\x72\x91\x35\xbc\x16\x47\x1c\x4f\x5b\xfe\x65\x3c\x21\xae\xc6\x88\x86\x56\x1c\x89\x74\x36\xf3\xbd\x81\x30\xf6\xcf\x13\xd4\x60\x09\x5b\x04\x9f\x27\xa9\x94\x75\xf1\xc3\xfc\xcf\xaa\x2c\x96\xf3\x17\xc3\xe1\x54\xca\x3a\xdd\x97\x8e\x0c\x62\x51\xd6\x1a\xa7\x88\xb5\xeb\x6b\x03\xdc\x6c\x95\x67\xb4\xc4\x61\xeb\x3c\xb1\x71\x76\xc3\x01\xff\x02\xd7\x32\xd8\x7e\xc7\x57\x0e\x35\x07\x52\x84\x0d\x37\xce\x06\xe2\x40\xbe\x6f\x88\x7b\x8b\xce\x72\x7c\x56\x43\xcb\xf0\x96\xc0\x5b\xce\x7a\x2b\x56\x01\x37\x16\x34\xa3\x35\x68\x41\xdc\xcf\x21\x0b\xab\x88\x22\x38\xcb\xfa\x6a\x25\x56\x68\x29\x7b\xce\x8f\x9e\xf1\x93\xc7\xfc\xec\x29\x77\xe4\x85\x10\x15\x1d\x34\x2f\x22\x8c\xd5\xa0\xf7\xaf\xd4\xce\x99\x29\x40\xe4\x09\x3b\xb0\xb4\xcf\x5f\x39\xa3\x08\x0d\xb0\x87\x0d\x06\x02\xff\xb1\xe2\xd6\x79\xc6\x96\xaf\xb7\xb1\x41\x3b\x06\x13\x80\x1b\x15\x80\x35\xb4\xaa\x37\xc4\xe1\x1a\xa9\xd9\x7e\xec\x8d\x8d\x23\x17\xc7\x44\x68\x7b\xe0\xda\x83\xba\x64\x0f\xd4\x7b\x3b\xed\xea\x3c\x74\xde\x35\x79\x92\xbe\x29\x8a\x3c\x74\xaa\x81\xbc\x2c\x4f\x1e\x4c\x2f\xf1\x8b\xa3\x05\xee\xbc\xda\xec\x14\xa3\x6d\x4c\xaf\x21\x0e\x98\xb1\xb5\x2b\x31\x0c\xdd\x6a\x6c\x19\x4c\x86\x2d\x07\x10\x03\x7b\xe5\x2d\xda\x0d\x83\xf7\xce\x8b\x11\x30\x49\x1e\x24\x3f\xaf\xd7\x49\xdd\xa3\x21\xb4\xe1\x1e\xee\x55\xa5\x88\x3c\xd6\x3d\x41\x55\x4d\x69\x48\x99\x49\x99\x15\x6f\x44\x3c\x0a\x29\xc5\x7d\xca\xab\x2a\x53\x66\xfc\xe8\x2a\xec\x78\x8f\xc3\x5b\xd4\x1a\xec\xde\x07\xdc\xa9\xe6\x12\x34\x7b\x08\xe4\xb1\x21\x0e\xd0\xd0\xad\x83\x5c\xcb\xd7\xa0\x2e\x45\x55\xdd\x31\x3e\xef\xc0\x2b\x72\x3e\x59\x3b\xe3\xfc\x2d\xea\xbb\x5d\xed\xcc\xc2\xed\x73\x71\x73\x8a\x45\xfe\xcd\xc3\xd3\x13\xfe\xee\x0b\x29\xbf\x2c\xf9\x5b\xfe\x9e\xcf\x78\xce\x5f\xdd\x31\x1d\x7b\x6a\x1f\x09\x50\xc8\x93\xb4\xc8\xc4\xfb\x9b\x92\xa5\x2c\x58\xca\xf2\xb6\x6e\x70\xb7\xb2\xb4\xb0\xfd\xae\x1e\x36\x2a\x8b\x2b\xb5\x9c\xbf\x18\x16\x89\xa5\xac\x97\x6f\xc7\xdd\x7a\xa9\xe6\xed\x10\x14\xff\xde\xfc\xfb\xeb\x57\xaf\xd2\xd9\x61\x3a\x8a\xb7\x9b\x7c\xaf\x32\x89\x63\xf4\x83\x79\xd2\xf4\x9f\x18\x58\x7d\x10\x09\x97\xd8\x0d\x0e\x93\x72\x71\x17\x9d\xfc\x15\xdc\xfe\xa6\x48\x1d\x34\xa8\xcc\x7a\xab\xfc\xbe\x35\x2b\x64\x7a\xac\xea\xd6\x7a\xba\x8a\xf7\x92\x8b\xe5\xfc\x49\xb9\x2a\x96\xf3\xaf\xcb\xf7\x8f\x1e\x3e\xbe\xe1\xa9\xbe\x31\xd2\x4f\x23\x4f\x6f\xf8\xf5\xf4\xfe\xfc\x46\x7c\xba\xc4\xe3\x43\x85\xc7\x9f\x25\x70\x70\x76\x9e\xa4\x8b\xc5\x69\xfa\xff\xd1\xbe\x1b\x56\xe1\x03\xcd\x67\x67\x87\xa2\x8f\xfe\x43\x1e\x39\xed\xa2\xf5\xfe\x38\xff\xf1\x9c\x2f\x2e\x2e\xf8\xe5\xaf\x17\xbf\xfd\x24\xf2\xd5\x27\x80\x49\x79\xf2\x81\x8b\xe4\xc9\xd9\xe7\x23\xfe\x1d\x00\x00\xff\xff\xe1\x67\xfe\x4a\xbb\x06\x00\x00"
-
-func runtimeSyntaxCYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCYaml,
-               "runtime/syntax/c.yaml",
-       )
-}
-
-func runtimeSyntaxCYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/c.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCaddyfileHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x4e\x4c\x49\xa9\x4c\xcb\xcc\x49\xe5\x72\x86\xb3\xb8\x00\x01\x00\x00\xff\xff\xd5\x4d\x82\x4b\x15\x00\x00\x00"
-
-func runtimeSyntaxCaddyfileHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCaddyfileHdr,
-               "runtime/syntax/caddyfile.hdr",
-       )
-}
-
-func runtimeSyntaxCaddyfileHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCaddyfileHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/caddyfile.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCaddyfileYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x6e\x83\x30\x10\x45\xf7\x3e\xc5\xc8\x25\x12\x94\x84\xee\xd9\x64\x91\x23\x74\xc9\x10\xc9\xc2\x93\xd6\x2a\x38\x96\x3d\x55\x14\x91\xdc\xbd\xb2\x09\x4d\x45\xab\x66\x16\x20\x7f\x3d\xcf\x7f\x3e\x98\x9e\xf8\xec\xa8\x86\x4e\x69\x7d\x8e\x47\x21\x34\x31\x75\x5c\x0b\x00\x80\x98\x58\x35\x50\x0d\x72\x37\x13\x52\x08\xff\xd9\x53\x98\x88\x0d\x18\x4d\x96\xcd\xc1\x90\xaf\x41\xee\x11\xc3\x33\xe2\x6b\x99\x23\x86\x4b\x56\xc8\x1b\x34\xb5\xc8\x7d\xde\x20\x9e\xaa\xfa\x65\xd3\x96\xeb\x2d\x6c\x8b\xb2\x59\x8f\x6d\x36\x53\xdd\xd1\x06\x56\x96\xab\xe0\xa8\x33\xaa\xdf\xbd\xab\xb8\x14\x31\x8c\x8f\x98\x54\x7c\xfd\x83\x62\x6f\xec\xdb\xe4\x1a\x27\xb0\xf2\x1c\x77\x4a\xf9\x9d\x91\xd5\x8b\x24\x7c\x18\x97\x8a\x11\xab\x7b\xfa\xe3\xd9\xf3\xfc\xe3\x9c\xae\xde\x74\x9c\x27\xe7\x8f\x5d\xca\xc7\x1c\xf1\x54\x5e\x10\xb3\xf4\x5f\xc5\xef\xaa\x40\xbc\xde\xdd\x87\x81\x2c\xff\x76\x7e\x5a\x2a\x67\x4b\x37\x68\x5a\x21\xbe\x02\x00\x00\xff\xff\xde\x9c\x93\x00\xd6\x01\x00\x00"
-
-func runtimeSyntaxCaddyfileYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCaddyfileYaml,
-               "runtime/syntax/caddyfile.yaml",
-       )
-}
-
-func runtimeSyntaxCaddyfileYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCaddyfileYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/caddyfile.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxClojureHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xce\xc9\xcf\x2a\x2d\x4a\xe5\x8a\xd1\xd3\x48\xce\xc9\x8a\x2e\x4e\x8e\xb5\xaf\x49\x4d\xc9\xd3\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\x82\xd0\x0b\x85\x1b\x00\x00\x00"
-
-func runtimeSyntaxClojureHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxClojureHdr,
-               "runtime/syntax/clojure.hdr",
-       )
-}
-
-func runtimeSyntaxClojureHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxClojureHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/clojure.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxClojureYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x51\x6f\xd3\x30\x10\x7e\xcf\xaf\xb0\xc2\x24\x12\x46\xba\xb2\x4d\xa0\x05\x41\x34\x15\x26\xed\x01\xed\x81\x09\x55\xc4\x79\xb0\x9d\x4b\xea\xcd\xb1\x23\xdb\x01\x0a\xe6\xbf\x23\x3b\xa1\x8d\xda\x49\xeb\x8b\xfd\x5d\xbf\xfb\xee\xbb\xbb\xb8\xe1\x02\xec\xb6\x87\x1c\x31\xa1\x1e\x06\x0d\x51\x54\x83\x05\x66\xf3\x08\x21\x84\xfc\xdf\x92\x74\x90\xa3\x18\xe3\x45\xc2\xc4\x43\x69\x58\x55\x38\xa8\x65\x7a\x12\x47\x91\x1e\x04\x98\x3c\x0a\xdc\x17\x68\xa5\xa4\xb1\x44\x5a\x13\x70\x86\xd8\x84\x17\x54\x29\x11\x24\x68\x62\xf5\x00\xae\x21\xc2\x40\x8a\x31\x8d\x0f\x99\x1d\x61\x5a\x4d\x54\xc9\xc5\x9e\xe3\xf5\xbf\x11\xc1\x6b\x24\x87\x8e\x82\x3e\xaa\x31\x86\x73\x14\x97\x18\x67\x55\x51\x2e\xb3\xab\xea\xb4\x78\xaa\xc6\x8e\xb9\xfc\x15\x58\xe5\x75\x76\x43\xb2\xe6\x39\xf6\xa8\x9b\x5c\x94\xcb\xec\x6d\xe5\xce\x43\xaa\x7b\x33\x1e\xe5\x79\x76\x55\xa5\xda\x83\xeb\xec\xfb\x5c\xc9\xfb\xbe\x95\x3f\x9e\x70\x0e\x5a\xab\x99\x6e\x79\xe9\xad\x04\xb5\x8b\xf2\x5d\xd0\x76\xcb\x23\xc9\x9d\xe6\xd7\x6d\x47\x95\xf8\xaf\x65\x02\x5a\xa8\x1e\x34\xb1\xa3\xea\x87\x8f\xa7\x18\x67\xaf\xce\x5e\x16\xd5\x2c\xed\x7e\xdb\x83\x39\x63\xc4\x58\x2e\xdb\x29\x79\xdc\x7f\x18\x39\xdd\x5a\x70\x66\xa3\xb4\x75\x09\xe5\x6d\x5a\x70\x69\x13\x68\x41\xa7\x85\x13\x4a\xb6\xae\x11\x8a\x58\x27\x87\xce\x51\xde\xd6\xc0\x9c\x26\x96\x2b\x49\x04\xff\x3d\x2d\x74\xef\xd0\x6a\x2e\x5b\xb4\xe1\xed\x46\xf0\x76\x33\x2b\xb8\x9b\xad\x09\x94\x7c\x4a\x41\xc8\x58\xa2\xad\xb7\x12\xc7\xbb\x18\xc8\xfa\x20\x62\x1e\x79\x1f\xfc\x62\xbc\xd8\x47\xa7\x4f\x11\xcd\x7e\xf3\x4a\x3d\x30\x4e\xc4\x6a\x43\xfc\x70\x12\x9f\x3b\x8c\xa3\x6d\xfc\xea\xff\x5c\xbe\xbe\xfc\xeb\x7c\x54\xc2\x4f\xc1\x25\x84\xbb\xe9\x09\x1b\x6f\x96\xd0\x70\x36\x4a\x77\x0d\x40\x1d\x00\x25\xec\x71\x4f\xd1\x60\x07\x2d\xc3\x75\x91\xce\xc6\xb0\x52\x5d\x07\xf3\x37\x11\xe0\x71\xcf\xef\x0f\x5b\x3e\x79\xa6\x37\xab\x6a\xff\x52\x92\xfb\xbb\x4f\x77\x6e\xbd\x5e\xbb\x9b\xdb\xf5\x97\xcf\x69\x5e\xc4\x51\xf4\x2f\x00\x00\xff\xff\x9a\x5d\xd4\x68\xd7\x03\x00\x00"
-
-func runtimeSyntaxClojureYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxClojureYaml,
-               "runtime/syntax/clojure.yaml",
-       )
-}
-
-func runtimeSyntaxClojureYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxClojureYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/clojure.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCmakeHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xce\x4d\xcc\x4e\xe5\xd2\x70\xf6\x4d\xcc\x4e\xf5\xc9\x2c\x2e\x29\x8e\xd1\x2b\xa9\x28\xa9\x89\xd1\x03\x4b\x68\xaa\x70\x71\x01\x02\x00\x00\xff\xff\x50\x65\xaf\x78\x22\x00\x00\x00"
-
-func runtimeSyntaxCmakeHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCmakeHdr,
-               "runtime/syntax/cmake.hdr",
-       )
-}
-
-func runtimeSyntaxCmakeHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCmakeHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/cmake.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCmakeYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xdf\x6f\x9b\x3c\x14\x7d\xe7\xaf\x40\x7c\x95\x0a\xdf\xa7\x46\xf9\x36\x69\x5b\x79\x89\x28\x71\x53\x24\x7e\x64\x40\x9b\x64\x71\x86\xa8\xb9\x59\xbd\x10\x83\x8c\xb3\x75\xea\xdd\xff\x3e\x41\x92\x2e\x4b\x2a\x6d\x2f\xf3\x0b\xf8\xda\xf7\x9c\xa3\xe3\x73\x97\xbc\x04\xf5\xad\x06\x5b\x67\xeb\x7c\x05\x9a\x56\x80\x02\xa6\x6c\x4d\xd7\x75\xbd\x3d\x14\xf9\x1a\x6c\xdd\x30\xdd\x20\x5f\x81\xcf\x1b\xd5\x50\xda\x53\x8f\x0a\x29\xed\x75\x2d\xd6\x99\xa1\x69\x72\x53\x42\xb3\x6d\xba\xd0\x79\x01\x42\xf1\x25\x07\xd9\xfb\x92\x4b\x5b\x37\x3e\xce\xe7\x76\x53\xe7\x0c\xec\xc5\xe2\xdf\xb9\x73\xf1\xa1\x7f\x71\x99\x2d\xfe\x33\x76\xf7\x6b\x09\xb5\xac\xd8\xf1\x45\x93\x0b\x56\x6e\x0a\xc0\xdd\x37\x2b\xb8\x04\xa6\x2a\xc9\xa1\x79\xae\xc1\xa3\x02\x29\xf2\x32\x5b\x37\xb5\xac\x3e\x03\x53\x16\xa5\xf7\x86\xb6\x83\x6e\x54\xae\x60\x0d\x42\x1d\x83\x53\x7a\x6f\x9a\x50\x36\x80\x20\x0a\x6b\xc0\x97\xd8\x6d\xcc\x6e\xf7\xf5\x81\x97\xfb\xff\x65\x25\x21\x67\x0f\x78\x2f\x21\x5f\x6d\xb1\x4f\xa1\x5b\x34\x37\x1a\xcf\x30\x8c\x52\x74\xa3\x20\x70\xc2\x21\x8e\xe3\x68\x4c\xe2\x74\x86\xe3\xc8\xf7\xdc\x19\xa6\x4e\x3c\x22\x29\x92\xa9\x97\xa4\x09\x7a\x49\x66\x0e\xbd\x98\xb8\x69\x14\xcf\xd0\xb9\x4a\x22\xff\x36\x25\x16\x0e\xc9\xb5\x17\x92\x61\xcb\x74\xa0\xf7\x25\xd2\x83\xe3\x96\x3f\x8a\xb1\x65\xf5\x92\x2c\x24\x13\x12\x67\xe9\x8d\x13\x62\xe0\xa4\xee\x0d\x49\xd0\x4c\xd2\x18\xef\x48\x9c\x78\x51\x98\x59\x03\xd3\x27\x49\x82\xa3\x98\x38\x29\x89\x91\xbc\xbf\x75\x7c\xeb\x84\x71\x4f\x59\x03\xe3\x79\xf9\xb2\x81\xad\x43\xe6\x72\x23\x98\xe2\x95\xc0\x75\xce\x64\x65\xa1\x04\xb5\x91\xc2\x7a\x46\x60\x95\x68\x54\x2e\x54\xaf\x51\x92\x8b\x4f\xdb\x98\xb4\xab\x51\xb9\xec\xec\x33\x8c\xe7\x1a\x88\xe2\xa8\xd2\xac\x78\xdd\x79\x4c\x69\xef\x67\xf5\x20\x71\xfb\x75\xc8\xb4\x15\xed\x3e\x74\xf9\xdb\xb5\xfe\xa9\x9c\xf3\x63\x35\xe7\x7f\x4f\xcc\x3e\xfb\xa7\x9e\xd0\x33\x93\xd2\x27\x24\xe1\x1d\xa5\x4f\xd6\x89\x41\xf4\xfb\x31\xbd\x3e\x5f\x68\xa7\x13\xd8\xbd\xc9\x2e\xa2\xce\x78\xec\x13\xbc\x0d\xbd\x29\x4e\xbc\xf0\xf5\x2b\x74\x67\xa3\x89\x17\xe2\x55\x14\xfb\x6d\x76\x02\x2f\x1c\x4d\x30\x48\xee\x5c\x33\xf3\x86\x04\xdf\xf4\xf1\xed\xff\xf8\xae\x8f\x97\x7d\x6b\xf0\xcb\x5c\xb1\x6a\xdd\xa5\xf0\x44\xf6\x3f\xc7\x42\xcf\x7e\xe3\x92\xaa\x8a\x56\x9e\x99\x46\xc3\x08\xa7\xd3\x29\x5e\x7b\xd3\x80\x58\xf6\xc0\xd0\xb4\x1f\x01\x00\x00\xff\xff\x28\x8d\x1c\xb5\x9d\x04\x00\x00"
-
-func runtimeSyntaxCmakeYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCmakeYaml,
-               "runtime/syntax/cmake.yaml",
-       )
-}
-
-func runtimeSyntaxCmakeYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCmakeYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/cmake.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCoffeescriptHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xce\x4f\x4b\x4b\x4d\x2d\x4e\x2e\xca\x2c\x28\xe1\x8a\xd1\x83\x70\x55\xb8\xb8\x00\x01\x00\x00\xff\xff\xa2\x22\xc2\xb2\x18\x00\x00\x00"
-
-func runtimeSyntaxCoffeescriptHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCoffeescriptHdr,
-               "runtime/syntax/coffeescript.hdr",
-       )
-}
-
-func runtimeSyntaxCoffeescriptHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCoffeescriptHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/coffeescript.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCoffeescriptYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x95\x61\x6f\xdb\x36\x13\xc7\xdf\xfb\x53\xe8\x51\xfa\xac\x76\x0c\x79\xe9\x3a\x74\x88\xb0\xc5\x4b\x57\x7b\x08\xb0\x24\x45\xd3\x62\xc1\x24\xa1\xa0\xa4\x93\xcd\x85\x3a\x0a\xe4\xa9\xb6\xb6\xdb\x3e\xfb\x40\x49\x4e\x1c\xc7\x4d\xb3\x17\xf3\x0b\x53\x3c\xde\xfd\xee\x4f\xea\x78\x2a\xa4\x02\x6a\x2a\x08\xbd\x4c\x17\x05\x80\xcd\x8c\xac\x68\x30\xc8\x81\x20\xa3\x70\xe0\x79\x9e\xe7\x7c\x50\x94\x10\x7a\x7e\x1c\x4f\x3a\xbf\x67\xfe\x60\x60\x6a\x05\xb6\x73\x09\x3c\xdb\x94\xa9\x56\x13\x5d\x81\x11\xa4\x4d\xe8\xf9\xc3\x28\x18\x7f\x7d\xf8\xc3\xf7\x27\xff\xfb\xfb\xff\xd3\xf0\x2b\x4e\x38\x9a\x24\x7f\xbe\xfc\x6b\xc4\x71\x9c\x0e\x05\xe6\xac\x0d\x4b\xcb\xd2\x22\x31\x6a\x1a\xc5\x71\xea\xf7\x34\x99\x03\x92\x2c\x24\x98\x49\xa6\x84\xb5\x2d\xee\x34\xf8\x4d\x04\x7f\x7c\x4c\xfa\x87\xa3\xe0\xf8\x63\x72\x18\x46\x51\x68\x2b\x91\x41\x98\x24\x87\xc3\xe0\x84\xe3\x78\x38\xe2\xe0\x64\xe4\xdf\x17\x96\x1a\x91\xdd\x00\x39\x52\x34\x1c\x25\xfe\x60\xb3\x4c\x82\xa0\x04\xa4\xd0\x73\xdb\x4b\x87\x62\x25\x24\xf1\x6a\x09\xc8\x99\xa0\x6c\xc9\x99\x46\x92\x58\x03\xe7\x90\xd6\x8b\x05\x18\xce\xa1\x10\xb5\x22\x4e\x1b\xae\x91\xa4\xda\x56\xfe\x80\x97\x83\x02\x02\xce\x35\x83\xb2\xc0\xb0\xae\xb4\x21\x2e\x24\x0a\xa5\x1a\x2e\xb4\xe1\x76\x87\x0c\x6b\x02\xcc\x2d\xaf\x96\x52\x01\xd3\x12\xf0\x51\xec\x02\x88\x65\xc1\xb2\xec\x70\x46\x97\x2c\x91\x25\x5a\x12\x98\x81\x2e\x18\x61\xc5\x06\x7e\x87\x8c\xd8\x80\xd5\xea\x13\xb0\x01\xaa\xcd\xe3\x58\x0b\xc4\xb6\xae\xc0\xb0\x5d\x49\xb7\x7b\x5a\x4a\xcb\xb4\x34\x7a\xc5\x64\x1a\x76\xb5\xa2\x0b\x5e\x49\x5a\x72\x23\x41\xe5\x5c\xa3\x02\x6b\x3b\x68\x4f\xcd\x74\x2b\x83\x26\xa9\xd6\x6a\x43\x26\x53\x03\x17\xc2\x9d\x41\x03\x96\x51\xb3\x46\xd6\x45\xb1\x2d\xe7\x5e\xe0\xa4\x75\x0e\xbb\xe8\x2e\xd0\x05\x3d\x16\xe1\x72\x84\x5b\xe9\x5c\x22\x8d\xfb\xb5\x61\x5d\xa6\x60\x3a\xef\x28\x18\x27\xd3\x61\xf4\x22\x38\x4e\xa2\xa3\xe0\x38\x39\xe4\xa3\xe8\x28\xf8\xce\x8d\x6b\x67\x10\x41\x71\x1a\xcc\x93\xf1\x68\x18\xd5\x1f\x92\x48\xfd\x92\x4c\xd9\xfd\xbb\xd9\x74\x34\xdd\xa7\x67\x0f\xde\x91\xc7\x71\x3c\xe9\x53\x74\xc3\x66\xee\xd8\x33\x78\x5b\x25\xd1\x38\x48\xa6\xbd\x69\x1a\x15\x73\x97\xec\xc9\xf4\x87\x88\x1d\xc2\xdd\xc5\x0a\x3d\xff\xc7\x7b\x37\xe9\xf6\x88\xc0\x18\xdd\xb3\x87\x80\x75\xe9\x8a\x4c\xb5\x55\x62\x59\x22\x81\x29\x44\x06\x5c\x89\xec\x46\x2c\x80\x2b\x23\x3f\x09\x72\xa3\x76\x2d\x03\x72\xae\xea\x54\xc9\x6c\xb4\x2b\xba\x27\x2e\x94\x4e\x85\x7a\xef\xca\xea\x0c\x0b\x89\x92\x1a\xc6\x5a\x29\xae\x31\x87\x42\x22\xe4\x7c\x21\x2e\xf6\xbd\xe3\x1e\xf0\xaf\x9c\x9f\x52\x75\x5d\xff\x6b\xdd\x4f\x8d\x11\x0d\xbf\xd6\x5a\x81\x40\x7e\xe3\xf6\x35\xc3\xba\xec\x7a\x1a\xcf\xdc\xc1\xf0\xbc\xc6\x8c\xa4\x46\xfe\x19\xb0\x5f\x38\x17\x15\x9f\x0b\x5a\x7e\x86\x7a\xd1\xbe\x2d\xbe\x4c\xdb\xdb\xf8\xd6\xe8\x52\x5a\x70\xe3\xba\xe1\x77\x50\x28\x67\x7d\x07\x8b\xd9\xba\xe2\x2b\x20\xbe\x22\x23\x71\xc1\x57\x6d\xe3\xe2\x5f\x41\xdc\x38\xbe\x1b\xaf\x80\x3e\x93\xe2\xb5\x5c\x9c\x21\xbd\xfa\xb6\xdf\x80\x5c\x7c\x90\x77\xd3\xb9\xd2\x82\x5e\x7e\xb3\x35\xd9\xac\x9c\x21\xbd\x78\xd5\x3e\xee\xbf\x24\xb6\x95\xd2\xf5\x78\xf7\xb3\x24\x4c\x7b\xb4\xbe\x7f\x6b\x03\xcc\x77\x2c\xf6\x46\x56\xad\xae\x38\x9e\xdc\x59\xb7\x3e\x17\x9b\xdf\x76\xa6\x0a\x32\x29\xd4\x4f\x4b\x61\x76\x42\x9f\xaa\xe9\xf9\xae\xa4\xe7\xff\x81\xa2\x5b\x31\x65\xdb\x35\x1f\x88\x38\x38\x38\xd8\x95\x71\xcf\xd4\xa5\xf4\xbc\x28\xf9\x32\x6a\x17\xf4\xec\x0b\xca\x49\xe7\xda\x7d\x28\xdf\x5f\xbe\xb9\xe4\xeb\xeb\x6b\x9e\x9f\x5d\x9f\xcf\x46\xe1\xd4\x1f\xfc\x13\x00\x00\xff\xff\xec\xdd\x6b\x65\xe7\x07\x00\x00"
-
-func runtimeSyntaxCoffeescriptYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCoffeescriptYaml,
-               "runtime/syntax/coffeescript.yaml",
-       )
-}
-
-func runtimeSyntaxCoffeescriptYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCoffeescriptYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/coffeescript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxColortestHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xce\xcf\xc9\x2f\x2a\x49\x2d\x2e\xe1\x72\x06\xb1\x42\x52\x8b\x4b\x54\xb8\xb8\x00\x01\x00\x00\xff\xff\x45\x0d\x6f\xbc\x16\x00\x00\x00"
-
-func runtimeSyntaxColortestHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxColortestHdr,
-               "runtime/syntax/colortest.hdr",
-       )
-}
-
-func runtimeSyntaxColortestHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxColortestHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/colortest.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxColortestYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x31\x8a\xc3\x30\x10\x45\x7b\x9d\x62\x10\xdb\xee\x05\xd4\x2d\x5b\x2d\x2c\x21\x45\x4a\x35\x92\xfc\xe3\x98\xc8\x76\x90\xc7\x04\xdf\x3e\xc8\x32\xf6\x18\x75\xf3\xff\x7b\x48\x33\xf7\x2e\x82\x97\x17\x0c\x85\x31\x8e\x89\x31\xb1\x52\x0d\x18\x81\x8d\x22\x22\xca\xc2\xe0\x7a\x18\xd2\xbf\xd9\xb8\x61\xe2\x2f\xad\x54\x9a\x23\xa6\xa2\x7c\x93\x8f\x2e\x3c\x0d\x69\x6b\xfd\xf5\xff\xe7\xef\x62\xad\xd7\x1b\x4a\x68\x0a\x48\x68\x44\xdd\x26\x60\x28\x60\x1d\x05\x5a\x10\xe3\xf8\x2e\xac\xcc\x02\xfa\x38\xa3\xa0\x3c\x09\xd0\xbb\x16\x03\xbb\xc2\xb6\x20\x70\x58\xdc\xf6\x5d\x9e\xe4\x83\xa9\x6b\x1f\xbc\x6f\xb9\xc7\x4a\x11\x1b\x8b\xa2\xd2\xe4\xf6\xb2\xa9\x44\x71\xc9\x9e\x2b\xe9\x74\xd5\xa9\xaa\xd4\xe3\xc2\x23\xaf\xd2\x27\x00\x00\xff\xff\xcc\x8b\xc4\xc2\xe3\x01\x00\x00"
-
-func runtimeSyntaxColortestYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxColortestYaml,
-               "runtime/syntax/colortest.yaml",
-       )
-}
-
-func runtimeSyntaxColortestYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxColortestYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/colortest.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxConfHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xce\xcf\x4b\xe3\x8a\xd1\x4b\x8e\xce\x8f\xb5\xcf\x4b\x53\xe1\xe2\x02\x04\x00\x00\xff\xff\x62\x3a\xae\x3b\x11\x00\x00\x00"
-
-func runtimeSyntaxConfHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxConfHdr,
-               "runtime/syntax/conf.hdr",
-       )
-}
-
-func runtimeSyntaxConfHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxConfHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/conf.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxConfYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\x31\x0e\xc3\x20\x0c\x45\x77\x9f\xc2\xa2\x59\xcb\x01\x58\x7a\x90\x90\x01\x11\x53\xa1\x06\x27\xc2\xee\xd0\xdb\x57\x14\x29\x95\x68\x19\x1f\xfe\xef\xa5\xbc\x91\xbe\x0e\x72\x18\x77\x4e\x00\x2b\x29\x45\x75\x80\x88\xd8\xfe\x38\x14\x72\x68\xbc\xb7\x71\xde\x97\x1b\xa7\xc9\x00\xd4\xe7\x46\xd2\x6f\xae\x6d\x27\x1a\x58\xad\x68\xcd\x7c\xef\xb8\x3d\xd1\x50\xb5\x6d\x8d\x39\x19\xf1\x3a\x10\x79\xe4\xe3\x13\xf0\xde\x7e\x69\x2f\xe0\xbc\xc0\x59\x29\x85\x58\x7f\xed\x97\x51\x3e\xfd\xb5\xbc\x03\x00\x00\xff\xff\x7f\xd4\x74\x86\xe8\x00\x00\x00"
-
-func runtimeSyntaxConfYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxConfYaml,
-               "runtime/syntax/conf.yaml",
-       )
-}
-
-func runtimeSyntaxConfYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxConfYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/conf.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxConkyHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xce\xcf\xcb\xae\xe4\xd2\x88\xd1\xd3\x02\xb3\x8a\x92\xf5\xb4\x54\x6a\xc0\x4c\xbd\xe4\xfc\xbc\x34\x4d\x2e\x2e\x40\x00\x00\x00\xff\xff\x5a\x1e\x47\x5c\x22\x00\x00\x00"
-
-func runtimeSyntaxConkyHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxConkyHdr,
-               "runtime/syntax/conky.hdr",
-       )
-}
-
-func runtimeSyntaxConkyHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxConkyHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/conky.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxConkyYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\x49\xaf\x1c\xb7\x11\xbe\xeb\x57\x8c\x9f\x85\xc0\x72\x20\xc1\x96\x37\x59\x59\x9c\x20\xc8\x35\x27\x23\x08\xe2\x76\x98\x6a\xb2\xba\x9b\x18\x6e\xe2\x32\x8b\x4d\xff\xf7\xa0\x8a\x64\xcf\x8c\xe4\xdc\x82\x1c\x5e\xd7\x57\x1f\xd7\x61\x17\x6b\xe9\xb7\x68\x83\xf9\x1a\xf0\xed\x41\x7a\x77\xbc\x3e\x7b\xa6\x30\xa3\xcc\x6f\x9f\x1d\x0e\x87\x03\x35\x3a\xb0\xf8\xf6\xf0\xf4\xc9\x34\xbd\xfa\x94\xbb\x44\xf9\xea\xd3\xe7\x95\xe1\x2b\xe9\xdd\xf2\xe2\xe9\xd9\xb3\x58\x0c\xa6\x36\xe6\xe5\xa1\x4d\xf7\x34\x4d\xf3\x27\x60\xf4\xea\x2c\xba\x5c\x21\x04\x74\x4a\xd0\x8c\x75\x06\x79\x5c\xa3\x2f\x4e\xd5\xd9\x47\x85\x51\x68\xe7\x30\x0a\x0b\x71\xd5\x6e\x70\xbe\xe4\x0f\xb8\xb3\x56\x79\xab\xd2\x1b\x1f\x3f\x6b\xe2\xf3\x26\x5e\x37\xf1\x45\x13\x5f\x36\xf1\x55\x13\x5f\x37\xf1\x4d\x13\x6f\x9a\xf8\xb6\x89\xbf\x55\x19\x8a\x80\xd3\x2a\x12\xd8\x60\x30\x55\x85\x0b\x14\x93\xc5\x0c\x51\x6c\xa8\xd7\x2d\x3f\x50\x6d\x07\x83\xe1\x39\x76\x6d\x85\xb2\xe2\xfb\x83\x1a\xf9\x38\x6c\x8d\x10\xb6\x0f\x3a\x32\xf9\xd8\xd1\x97\x6c\xb4\xc3\xf7\xd6\x49\x1b\xa8\x9d\xd3\xe9\xa8\xfd\xe3\x2f\xd0\x29\x18\xb8\x56\xe5\xcb\x6c\x50\xcc\x65\x59\x30\x56\x15\xe1\x2c\xda\x31\xa6\xa6\xb4\x05\x1f\xa8\xbe\x5e\x53\x78\x99\x54\xf1\x92\x23\x08\x87\x67\x6e\x59\xbc\xcb\x75\xf1\xd1\x42\x16\x5b\xb1\xe0\x44\x44\x50\x30\x1b\xac\x2b\x04\x71\xe1\xe7\xb5\x6e\x39\x07\x11\x71\x89\x98\xb6\xaa\x17\x51\x82\x48\x39\x6a\x99\x1d\xa6\x54\xb5\x85\x50\xb5\x35\x7a\x16\x12\xe4\x86\x62\x31\x25\x6d\x42\xbb\x8c\xf1\x04\xe6\xa1\x29\xe9\x9f\xb0\x9a\x02\x82\xf7\xb4\x79\x7f\x14\xc1\xa7\xfc\x3e\x15\x5b\x27\xe3\x41\x31\x48\x5b\xc9\xca\x9f\x1d\x37\x37\x26\x43\xcc\x25\x34\xc2\x82\x36\x22\x05\xef\x4d\xb5\x70\x11\xc1\xc7\x2c\xac\x77\x3a\xfb\x28\xa4\x77\x0e\x65\xd6\xde\x25\x6e\xcc\x78\xc9\xfd\xbd\x90\x5a\x12\x46\xe6\x48\xd3\xb6\xd8\xd1\xa6\x1d\x6b\xfd\xb5\x0e\xb5\x37\x06\x25\x36\xda\x36\x81\x00\x29\x9d\x7d\x54\x4d\xf1\x31\x57\x5b\x92\x96\x82\xde\x1a\x5f\x86\x7e\x0c\xf6\x9a\xde\x99\x3e\x8c\x61\xeb\xcb\x90\x76\x31\xd8\x7d\x3a\x56\xd5\x5c\x1d\xe6\x07\x8b\x70\xbe\x5b\x41\xaa\xee\xa4\x95\x06\x31\x6c\xc4\x97\x2c\xb2\xa7\x9f\x9c\xbc\xc1\xa1\xd2\xdb\x1b\xd8\xc9\x12\x13\xa6\xa1\xa6\xac\x30\xc6\xa1\x5d\xaa\x3f\x61\x8c\x5a\xa1\x28\x79\x79\x23\x8c\x97\x40\xd3\x9c\x30\x9e\xa3\xce\xd8\xee\x3b\xbd\x86\xb3\x76\xca\x9f\xef\xa0\x90\x06\x52\x7a\x20\xbc\xf1\x25\xde\x33\x9b\x76\xf9\xa1\x4b\xd6\xf9\x61\x3e\x91\x23\xb8\x14\x20\x92\x8b\xb9\xa7\xaf\x01\x6b\x00\x25\x02\x46\x89\x34\x49\xf0\xe1\x8b\x9a\xd0\x25\x1f\x85\xc2\x93\x96\x58\xd3\x46\x6f\xbd\x38\x9d\x13\xe1\x71\x21\x22\xb8\x15\xef\x89\xc4\xbf\x29\x65\x1d\x82\x41\xb5\x5f\x98\x8c\x36\x60\x84\x5c\x22\xf2\x24\x4c\x18\xc8\xb8\x83\xcf\x76\xf4\xf9\x8e\x5e\xef\xe8\x8b\x1d\x7d\xb9\xa3\xaf\x76\xf4\xf5\x8e\xbe\xd9\xd1\x9b\x1d\x7d\x5b\xd9\x00\xd9\x32\xdb\x9b\x6d\xf7\x24\x6b\x8b\x49\x68\x27\x12\x4a\xef\x54\xaa\xd9\x07\x41\x1e\x2e\x61\x80\xc8\x7b\xf3\x41\x90\x4b\xef\x76\x99\x7d\x06\x23\x62\x71\x82\x87\xd6\x12\x14\x64\xbc\x99\xe0\x7b\xba\xf0\x4e\xcc\x90\x33\xc6\x6b\x2d\x81\x0e\x17\x12\xd6\x92\x50\xa4\x00\x12\x23\xc3\xcb\x92\xeb\x65\xc9\x60\xc2\x06\x04\xc8\x65\xbc\x98\xa6\xf9\xe9\x19\x07\x88\xc3\xe1\xe3\xc3\x5f\xbc\x5b\xf4\x5a\x22\xd0\x2d\x3b\xe8\x8c\x96\xc2\x4f\xca\xe0\x72\xea\x51\x24\x65\xc8\x48\xa1\x63\x84\x92\xd9\x9f\xb0\xce\x68\xfc\xb9\xce\x3e\x67\x6f\x85\xc1\x25\x0f\x1c\xf9\xd2\x75\xc5\x6a\xa5\x0c\x56\x85\xe9\x98\x7d\xa8\xca\xcb\x63\x75\xbe\x3a\xef\xb0\x3a\xf2\x5d\x66\xb7\xdb\x9a\x8e\x3a\x88\x00\x2b\xc6\x06\x33\xa4\xe3\x0c\x91\xde\xb7\x3c\x5e\xf9\xbc\x78\x1d\x02\x6d\x11\x42\x7d\x85\x26\x5a\x87\x8e\x63\xbf\xfd\xac\xf4\x6e\xc5\x29\x94\x9e\xce\x5f\xd5\x2b\xa6\xf7\x0e\xe3\xef\x10\x35\x39\xd0\xf1\xcb\x43\xc4\x10\xbd\x1c\xbf\x5b\x06\x0d\x12\x14\x84\x8c\xb1\x92\xb6\x80\x63\x49\xc6\x50\x41\xa9\xc8\x8f\x54\x39\xd8\xca\x26\x62\x85\x20\x4b\x48\x6a\x48\x21\xd9\x47\xef\xda\x06\x71\xbd\xa9\x06\x52\xbe\x50\x94\xd8\x09\xed\xf0\x74\xd3\xc8\xab\xde\x2b\x74\x40\xf7\x3a\x07\xb9\x47\x86\xae\xce\xce\x58\xaf\xd0\xec\x1a\xd9\xdf\xae\xd0\x7b\x2e\x69\x57\xdb\x8f\x1a\x8a\xb6\xc8\x67\x3b\x88\x12\x12\x4d\x55\x21\x58\xb1\x1f\x49\xb0\xc3\x26\x85\xd1\x0b\x3e\x10\x34\x43\x85\xa2\x40\x6a\x5f\x92\xe0\x7d\xdf\x34\x9d\xf9\x4e\xdc\x18\xb9\x81\x73\x68\xd2\x1d\x35\x72\xa0\x7b\x2a\xe2\xbb\x82\x4e\x5e\xef\x38\x83\x6e\xcd\xdb\x07\xc4\x7e\x11\x6f\x0d\x16\xb4\x13\x27\x6f\xca\xc3\x9c\xe4\x8d\x8d\x4e\xf9\xc3\x89\xf6\x96\xe0\x93\xa6\xfb\x72\xdf\xf6\xdf\xa9\x5f\x59\x79\x1c\xf5\x4e\x34\x77\x3a\x2e\xf4\x38\x33\x3a\xa4\x81\xbb\xff\xdc\x75\xf6\x99\xf5\xe1\x74\x67\xa3\xdd\xb1\xce\x36\x5c\x04\x98\xb9\xd8\x0e\x63\xd6\x29\x37\x3c\xce\x99\x95\xbe\x26\xc3\x08\xb2\x8f\x2c\x51\xd7\x11\xa2\x38\xee\xab\x2a\xad\xe2\xdc\x27\x7b\x11\xb4\x6a\xe9\xda\xff\x2c\xf5\xb3\x33\x25\x33\x9c\xc4\x8a\xb9\x68\xa3\x04\x44\xb9\x3d\x10\xe4\xf8\x3a\x71\xc2\x98\xe8\x94\x65\x28\xf4\x47\x07\x24\x43\x69\x46\x4f\x80\x6d\x5d\x96\x68\x6e\x2e\xa7\xc9\x66\xea\xbb\x52\xec\x8c\x2d\x65\x13\x21\x7a\xca\xb3\x7b\xfe\x36\xd2\x38\xca\xa5\x06\xe6\x00\xda\x95\xb6\xc2\x1d\xbe\xef\xd9\x13\xc7\xd1\x3d\x47\x3d\x17\x36\x0a\xca\x7f\x52\x40\x54\x37\xb4\xdc\x60\x9f\x33\xc2\x92\xc9\x26\x4d\xaa\x68\x12\x56\x74\x4a\x2f\x15\x5d\x8e\x3e\x5c\x05\x9c\x40\x9b\x5d\xa3\x1f\x3e\x30\x59\xc6\x4d\xf1\xde\x70\x00\x42\x0a\x1a\x78\xc2\x8a\x17\x94\xfc\xe0\x31\x17\x94\xed\xb4\x18\xf1\xc2\x84\x74\x7b\x8e\x2e\xfa\xd6\x47\xdf\x3a\x85\xf6\xd4\x75\x31\xb0\xae\xa8\xfa\x66\xef\x13\x51\xb6\xc3\xc5\xc7\x33\x44\x75\xeb\x10\xf1\x1d\x3f\xc4\x5a\x97\x76\xf5\x9b\xa0\xfb\x8b\x84\xef\x65\xfb\x3d\x4b\x6a\x71\x74\x49\x2d\x85\x58\x12\x25\x5a\x6a\xc8\xd6\x69\xf5\xd9\xd7\xf5\x2c\xf4\x02\x12\x19\x84\xba\x29\xc5\x9e\x6b\xa3\xd7\xb2\xc5\xba\x9d\xad\x77\x55\xbf\x96\x55\xbf\x39\x0a\x90\xe3\xee\x91\x36\x6b\xdf\x41\xc9\xd9\xbb\x74\xdf\x46\xb1\x9a\x27\x22\x85\x5c\x9f\x58\x28\xc5\x0e\xf6\x91\xb8\x1b\xc1\xf1\xe6\xa1\xd7\x8d\xb9\xeb\x96\x30\x6a\xca\xac\xdf\x1c\x77\x6b\xd6\xb3\x15\x33\x77\x6e\x49\xf9\x6c\x69\x10\x4b\xda\x42\x63\xba\xa3\xd2\x92\x06\x4b\xef\x4e\x2d\x8f\xde\xb1\x0f\x94\xde\xa3\x0d\xf9\xca\xe0\xa2\x53\xd6\x6e\x25\xbc\x9e\xe9\x69\x21\x4b\x2e\x01\xac\xbe\x50\x3d\x57\x32\xb2\xe6\x8b\xa3\x70\x48\x90\xb2\x60\x03\xd7\x3e\x2c\x16\xe7\x3a\x4c\x16\x82\x26\x5f\x2e\x34\x25\x07\xc6\xb4\x01\x25\xb4\x27\xdd\x50\x17\x09\x5f\xac\x4d\xaf\x47\xe2\x4e\x9d\x2c\xac\xc8\x65\x86\xb0\x98\x12\xac\xd8\x8a\x0e\x51\x5c\x42\x74\x55\xfb\x44\x3e\xa6\x18\x8c\x55\x47\x59\x8f\x18\x1d\x9a\x6a\x20\x70\x70\xa7\x10\x43\xbe\x27\x55\x0a\x65\x70\x5a\xeb\x2d\xa4\x99\x02\x5c\x4e\x90\x3d\x91\x6c\x36\xcb\x68\xb4\x8b\x00\x31\x61\xb5\x20\x37\xf2\x32\xcd\x1c\xed\xec\x2f\x49\x82\xab\x16\x2d\xfd\x9d\x75\xde\x86\xc7\xb3\x68\x69\xba\x47\xb6\x33\x08\xe9\xca\x86\x6a\xd1\x0e\xd9\xd6\x24\xc0\x4b\x5a\xb4\x16\x2e\x24\xd8\x3e\xf9\xa0\xdb\x93\xe7\x20\x60\xba\xd8\x89\x21\x98\xf0\xb2\xbb\x6e\x46\xcd\x73\x13\x1c\x8e\x9b\xb0\x2c\x91\xaf\x19\x61\xce\xea\x09\xec\xad\xc9\xbb\xb5\x81\x3c\xa8\x3d\x78\x37\x25\xf7\x21\x9c\x71\xf6\x99\xb8\xde\x1a\x72\xb8\x47\x32\x87\xbe\x1b\x42\x7d\x37\x41\xf1\x89\xb3\x1c\xbb\x0a\x4a\xa0\x81\x40\x17\x94\x70\xdb\x55\x50\x23\x84\x12\x64\xff\xcb\x06\xd6\x03\x19\xe1\x08\x4e\xf9\x36\x7d\xc4\x80\xd0\xd8\x64\xc9\xae\x19\xb5\x6b\x43\xb0\xef\x9b\x10\x07\x2b\x42\x27\xdf\x4b\xb3\x4a\xb3\x27\x8c\x27\x8c\xd5\xe1\xb9\xfb\x1d\xe7\x55\x4b\x18\x06\xe8\x41\xd3\xf9\x6e\xb2\xbd\x06\xab\x7e\x4e\x8a\xe2\x80\x2a\x32\x37\xa5\xd5\x27\x89\xaf\xe1\x03\xc1\x2e\xe1\x81\x39\x79\xd3\x07\x9d\xd0\x29\x1f\xab\x5f\x96\x84\xb9\xf6\x0a\xbe\x45\xcb\x30\xef\xd9\x7a\xd0\x94\xf4\x45\xef\x73\x83\x2d\xb8\x36\x7c\x56\x2c\xd1\x9d\x74\xf4\xee\x1e\x0b\x4a\x3c\x1a\x71\x69\x9d\x1d\x55\x4e\x04\x7c\x40\x47\x27\x9e\x58\xeb\x25\x18\xc3\xa8\x7d\xd4\xb9\x2d\xd9\xcc\x61\x47\xfd\x28\x9a\xce\x85\x64\x87\xda\x0d\xe4\x4b\x6b\xcf\x1b\x85\xb8\x74\x87\x6f\x9b\x21\xf3\x11\xed\xce\xf2\x5d\xdd\x39\xaa\x8a\x1f\x18\x06\x45\xf7\x1f\x38\x40\x1a\x60\xd9\xd1\x3a\xfa\x0c\x90\xd6\xbd\xcf\x40\x1c\x73\x09\x9c\x6c\x40\x38\x76\xc8\x01\xa3\x41\x23\x07\xb9\x9d\x6d\x47\x31\xa5\x8e\x14\x64\x18\x63\xf2\xe8\x38\xce\xf5\x64\x8d\x9e\xc7\xe4\xfd\xc8\x5a\x48\xa7\x82\x8f\xe2\x1c\x97\xb0\xc3\x81\x35\x4c\x96\x4f\xa5\x02\x26\xaa\xd0\xf9\x8c\xb2\x0c\x0d\x14\x45\x20\x18\xbd\x07\x44\xda\x49\x77\xae\xe2\x6e\x54\x67\xc6\x79\x27\x19\xbd\x31\x95\x56\xe9\xe3\xf8\x3b\x50\x33\x28\x76\xc8\xf5\xe6\x96\xb9\x50\xda\x35\xf6\x3e\x77\xaa\x3f\xe3\x7d\x33\x1b\x71\xf2\xee\x4a\xf6\xdd\xf2\x92\xbd\xa8\xde\xa8\xe0\xa2\x32\x2d\x9d\x21\xf0\x83\xa7\x3e\x43\x60\x9f\x47\x80\x5c\x1c\xc9\xb6\xca\x35\xf1\x1d\xcb\x30\xd7\x4c\x29\x4a\x96\x41\x04\x0a\x1b\x0c\x7c\xcc\x14\x7f\xff\x4f\x85\x38\x25\x32\xb9\x27\x29\xe3\x18\xd9\xf8\xb2\x17\xf3\x35\x23\x97\xe1\x5c\x36\x6a\xdf\xaa\x47\xb4\x2c\x7b\xa7\x0c\x86\xb2\xb2\x86\x4a\xa8\x39\x42\xda\xf6\xd7\x96\x7f\xe2\x6e\xab\xee\xde\xac\xec\xc0\x3d\x66\x44\xc5\xbd\x9f\x02\x15\xf7\x68\x01\xcd\x78\x86\xc2\xce\x88\x64\x7b\x17\x5d\x2e\x03\xb4\xd8\x52\x02\xaf\xde\x44\xbf\xbe\xfc\x05\x8c\x7d\x5f\x87\xcd\x71\xf7\x0f\x63\xd1\x76\xba\x7f\x51\x18\xb0\x16\x7e\x9e\xba\xa3\x22\x07\x06\x2b\x0a\x7b\xda\xe1\xa9\x9e\x11\xf2\x86\xb1\x9e\x75\x44\x83\x29\x09\x08\x37\x3c\xfc\xfe\x4e\x60\x4a\x5a\xdd\x54\xaa\x43\xd8\x22\x1f\x99\x77\x05\xcc\xaf\x50\x82\xec\xe9\x57\x68\x36\xaf\x9d\x67\x67\x72\xf6\x51\xa5\xda\x72\x8c\x16\x99\x3a\x6e\xb1\xa9\x29\xb4\x70\x47\x7d\x9f\x23\x29\xb1\xfc\x01\xbc\x69\xea\xd6\xa0\xfa\xe7\x8f\xae\x8e\x48\xd6\xb4\x15\x5d\x1c\x1d\xf5\x20\x47\x0c\xeb\x5a\xaf\x0b\xbb\xca\x6e\xa8\x43\x8e\x64\x1d\xb7\x58\xd6\x14\x7e\x23\xfc\x95\x51\xed\x0c\xc5\xb7\x8e\x29\xc2\xb9\xf1\x2b\x4a\x34\x77\xdf\x29\x5e\x1e\xb4\x42\x97\xf5\xa2\x31\xbe\x3a\x41\xe4\x8f\x13\xcf\xa7\xe9\xe7\xef\x7e\xf8\xec\xe5\xb7\x7f\x7e\xf9\x4f\xf1\xd1\x9f\x3e\x7e\xfe\xe9\x77\x2f\x7f\xfc\xed\x34\xfd\xf2\xdd\xd3\xf8\x88\x73\xb5\xb3\x37\xaf\x3c\x7f\x28\xf3\xb1\xfd\x1f\xe1\xe7\x3a\x4d\xbf\xd4\x69\xfa\xa4\x4e\xd3\x8b\x3a\x4d\xbf\xab\xd3\xf4\x63\x9d\xa6\x1f\xea\xbf\xeb\x34\x4d\x53\x9d\xa6\xe7\xf5\xf7\xf5\x8f\xf5\xa3\xfa\x87\xfa\x9b\x3a\x4d\xf5\xc5\x98\x6f\x7c\x24\x7a\x65\x41\x46\xff\xf6\xf0\xf4\xaf\xef\xff\xfa\x8f\xef\x9f\x3f\x3d\xfb\x4f\x00\x00\x00\xff\xff\x83\x4d\x49\xe6\xc7\x18\x00\x00"
-
-func runtimeSyntaxConkyYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxConkyYaml,
-               "runtime/syntax/conky.yaml",
-       )
-}
-
-func runtimeSyntaxConkyYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxConkyYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/conky.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCppHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xd6\xd6\xe6\xd2\x88\xd1\x4b\xd6\x48\xae\x29\x28\xa8\xa9\xa8\xd0\x54\xa9\x89\xd1\xcb\xd0\xc8\x40\xe2\x65\x66\xda\x83\x28\x8d\x94\xd4\x34\x4d\x15\x4d\x2e\x2e\x40\x00\x00\x00\xff\xff\x34\xff\x51\x82\x33\x00\x00\x00"
-
-func runtimeSyntaxCppHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCppHdr,
-               "runtime/syntax/cpp.hdr",
-       )
-}
-
-func runtimeSyntaxCppHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCppHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/cpp.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCppYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\x6d\x6f\xdb\x38\x12\xfe\x9e\x5f\xa1\x73\x7b\x17\xd1\xae\x9d\xa4\x2d\xfa\xe2\x7b\x31\x7a\x69\x73\x57\x20\xbb\xed\x87\x2d\x10\x54\x72\x05\x8a\x1c\xd9\x83\x50\xa4\x4a\x8e\x12\xa7\x9d\xec\x6f\x5f\x50\x96\x13\x37\x69\xb3\xdd\xed\x97\x35\x60\x88\x1c\xce\x70\x9e\x67\xde\xa4\x0a\x0d\xd0\x45\x03\xd3\x44\x8d\x46\x3b\x3b\x1a\x08\x14\x4d\x77\x92\x24\x49\xe2\x91\x95\x35\x4c\x93\x41\x9a\xe7\x13\x95\x2a\x6e\x1a\x5e\xad\xc4\x7d\xce\xf3\xc9\x32\x5d\x6e\x6f\x11\x67\xdd\x33\xd5\x50\x89\xfb\x62\xb0\xb3\xe3\x5b\x03\x61\x7d\xd3\x38\x41\x0d\x96\xb0\x42\xf0\xd3\x64\x90\xe7\x65\xf6\x62\xfc\xbe\x98\x67\xfb\xe3\xe7\xdd\x62\x98\xe7\xe5\xa0\x57\x5d\xa3\x89\x4a\x69\x65\x9c\x24\xd6\xae\x2d\x0d\x70\xe9\x9c\x61\xb5\x94\x9e\xd1\x12\x87\xa5\xf3\xc4\xc6\xd9\x05\x83\x6d\x6b\x3e\x73\xa8\x39\x90\x6f\x15\x71\x6b\xd1\x59\x8e\xf7\x68\xa8\x38\x6d\xad\x98\x05\x5c\x58\xd0\x8c\xd6\xa0\x05\xf1\x75\x6f\x69\x1a\x66\x01\x3f\x81\xe0\x34\x6d\x8b\x99\x98\xa1\xa5\xf4\x19\x1f\x3c\xe1\x47\x0f\xf9\xc9\x63\x6e\xc8\x0b\xd1\x21\xd8\x48\x85\x28\x88\xcf\xa3\xa4\xa0\x6f\x5c\x5a\xa1\x95\x86\xdd\x19\x78\x8f\xfa\x96\xe7\xc9\x29\x5c\x9c\x3b\xaf\x7b\x65\xd9\x92\xe3\x33\x67\x24\xa1\x01\x56\xce\x06\x4a\x61\xd5\x78\x86\x33\x69\x18\x2d\x92\x98\x71\xdd\x92\x8c\xf1\xf0\xb0\xc0\x40\xe0\x99\x96\x1e\xa4\x2e\x8c\x53\xd2\x70\x20\x49\xa8\x18\x56\x04\xde\xb2\x06\x65\xa2\x1f\x86\x55\x63\x50\x21\xf1\x19\x7a\x6a\xa5\xd9\x06\x12\x4d\xa0\x06\x4b\x3d\x0a\x65\x64\x08\x1c\x33\x1f\x1a\xa9\x80\x09\xea\xc6\x48\x82\x2e\xa2\x51\xcc\xb4\xc4\xc0\x95\x47\xb0\x9a\xdb\x80\x76\xc1\x4d\x5b\x1a\x54\xdc\x78\x17\xeb\x07\x34\x37\x1e\xcf\xa2\x8d\x75\xb0\x52\xd0\xd0\x9d\x0e\x9d\x8d\x2a\xec\xe1\x63\x8b\x1e\xc2\x5d\xba\x58\x37\x31\xf1\xb0\xea\x1e\xb5\xd3\xad\x81\xbb\xf4\x2b\xe7\x19\x2b\x3e\x5f\xc6\x88\x6a\xc7\x60\x02\xb0\x92\x01\x58\x43\x25\x5b\x43\x1c\xce\x91\xd4\xf2\xae\x3b\xc8\x5f\xc4\x20\xbb\x73\x56\x92\xd4\x92\x5d\x03\x5e\x92\xf3\x6c\xe1\x9c\x35\x18\x20\xe8\xe3\x5e\xc8\x10\xc0\xdf\x49\x76\xe1\xc8\xc5\xd4\x12\xda\x16\xb8\xf4\x20\x4f\xd9\x03\xb5\xde\x6e\x5b\x35\x1e\x1a\xef\xd4\x34\x19\x7c\xc8\xb2\x69\x97\x87\xe9\x7c\x3e\xbc\xb7\xbd\x89\xad\x86\x16\xb8\xf1\x72\x51\x4b\x46\xab\x4c\xab\x21\xd6\x3b\x63\x65\x67\x22\x16\x3f\x58\x8d\x15\x83\x49\xb1\xe2\x00\xa2\x0b\x85\xf4\x36\xa6\x0c\xbc\x77\x5e\x70\xf1\xb6\x33\x1f\xec\x74\x9e\x93\xe4\x5e\x72\xe8\xac\x46\x42\x67\xa5\x31\x17\xe3\xd0\x36\x31\xd4\xa0\xf7\x62\x4d\xd9\x80\xce\x26\x7d\xd5\x86\x6f\x50\x94\xa1\xe6\xca\x79\xf2\xb2\xe7\x74\x75\xf5\xff\x0e\x0f\x93\xb2\x45\x43\x68\xbf\x66\x9c\x16\x85\x24\xf2\x58\xb6\x04\x45\xb1\xcd\x35\xcf\xd3\x3c\x4f\xb3\x0f\x22\x2e\x45\x9e\x0b\x2e\x8a\x54\x9a\x75\x57\x47\x7f\xfd\xad\xbc\x44\xad\xc1\xf6\x8d\xce\x8d\x54\xa7\xa0\xd9\x43\x20\x8f\x8a\x38\x80\xa2\xcd\x6c\x70\x15\x9f\x83\x3c\x15\x45\x21\xb6\x10\xbe\xe9\x73\x9b\x1c\x3a\xe3\xfc\x06\xe3\x45\x5d\x3a\x33\xd9\xe4\x7d\x9a\x0c\xb2\xf1\x68\xb8\xf7\xf7\x7f\xff\xeb\x3f\x93\xe9\x3f\x1f\xfc\xfa\x0f\xfe\xf0\xb7\xd9\x9c\x23\xf7\x38\x40\x5c\xc5\x1d\x34\x57\x75\x8e\x50\x73\x2a\xad\x66\xe7\x79\x15\x8b\xc6\x91\x48\x0b\xf8\x28\x66\x5c\x62\xac\x22\xe5\xea\xc6\xc4\x75\x54\x4a\xbb\xae\x67\x7d\x61\x65\x8d\x8a\x3d\xa0\x25\xf0\x8d\x07\xea\x4b\x4c\x14\x4a\x86\xad\x0a\x8b\xa0\xdf\x4a\x0f\x96\x96\x40\xa8\xa4\xf9\x1a\xf2\xd2\xc7\x40\x50\x88\xc8\x53\xf1\xf9\x32\x62\xcd\x38\xcf\xe7\xd7\x77\xbc\xb6\x04\x0b\xf0\xc9\x31\x12\x78\x69\x36\xe9\xe9\xe0\x48\x4b\x13\xdb\xd6\x65\x37\xbd\xd3\x48\x33\x3b\x18\x3f\xef\xc6\xf7\xee\x7c\xc8\xfb\xd9\xfe\xf8\xe9\x7a\x71\xb2\xea\xa4\x72\x5c\xbd\x18\x1f\xed\xce\x47\xbc\x9f\xfd\xb7\x9c\x67\xfb\x07\xf3\x91\x48\xb3\x77\xed\x7c\x96\x1d\x9b\x79\xfc\xcf\xf8\x6a\xd5\xc9\xc5\x2c\xcf\x4b\x71\x8d\xe7\x25\x28\xac\xa5\x49\x8e\xe2\x3b\x00\xed\x62\xdc\x38\xb4\xf4\x9d\xf0\xd2\x1e\x5a\x36\xe9\x41\x8e\xb8\x7f\x5e\x49\x86\x22\xcd\x5e\xc1\x3c\x1b\x8d\xe7\xb3\xfe\x4c\xcc\xae\xb4\x6e\x9e\x64\x47\x55\x44\xfa\x25\xc4\xff\xc3\x4a\xea\x1f\x80\xd9\x85\x2b\x5d\xc7\xeb\xd3\x8b\xf1\xfb\x6b\xc0\x9b\xfd\x1a\xf6\xd5\xee\xc6\xe9\x50\x64\x6f\x9b\x2f\x70\xde\x82\xb9\xe5\x3a\xbe\x3f\x37\xf1\x21\xdf\x02\x57\x32\xce\xc2\x9f\xdf\x1d\x1f\xb3\x6d\x8d\x89\xaf\xb7\xb5\xe1\x4d\xcb\xd8\x3c\x76\x31\xed\x79\x27\xb1\x65\x7d\xd7\xeb\x83\xc1\x95\x0c\xac\xbe\x21\x09\xa7\xd8\x74\x03\x21\xcf\x27\xd7\xd2\xad\xaf\x82\xcd\x6f\xdb\x53\x03\x0a\xa5\x39\x5c\x4a\xdf\x9b\xa6\x59\x3e\xd8\x95\x65\x65\x3d\x9d\xc5\xfd\x3c\x46\xe4\x51\x47\xf8\xe9\xfc\xf3\xc1\x83\x87\x97\xbc\x5a\x7f\x46\x1c\xc9\x71\xd5\x4b\xda\x6d\xc9\xe3\x4b\x7e\xb7\xbd\x7f\x76\xf9\x07\x28\xee\xde\x64\xb8\xfb\xa7\x08\x76\xb3\x76\x9a\x0c\x26\x93\xd1\xe0\xaf\xc3\xbd\xee\xc6\xee\x2d\xce\x7b\x7b\x37\x49\xdf\xff\x1d\x7a\xe4\xb4\x8b\xa5\xf5\xcb\x9b\x97\x6f\xf8\xe4\xe4\x84\x8f\x5e\x9f\xfc\xf4\x4a\x4c\x67\xdf\xe1\x2c\xcf\x87\xb7\xaa\x28\x1f\xee\xfd\x80\xc7\xdf\x02\x00\x00\xff\xff\x78\x29\x06\x1a\xd3\x0a\x00\x00"
-
-func runtimeSyntaxCppYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCppYaml,
-               "runtime/syntax/cpp.yaml",
-       )
-}
-
-func runtimeSyntaxCppYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCppYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/cpp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCrontabHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2e\xca\xcf\x2b\x49\x4c\xe2\x82\xd2\x2a\x5c\x71\xca\x7a\x5a\xf6\xfa\xa9\x25\xc9\xfa\x30\x29\x40\x00\x00\x00\xff\xff\x10\x7a\x06\x47\x23\x00\x00\x00"
-
-func runtimeSyntaxCrontabHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCrontabHdr,
-               "runtime/syntax/crontab.hdr",
-       )
-}
-
-func runtimeSyntaxCrontabHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCrontabHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/crontab.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCrontabYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x54\x5d\x4f\xdc\x3a\x10\x7d\xcf\xaf\x98\x6b\x56\x57\x09\x10\x58\x40\x57\x88\xbd\xa5\xb4\xea\x87\xd4\x07\xc4\x03\xa8\x5a\x95\x01\xd5\xbb\x9e\x25\x01\xc7\x5e\xd9\x0e\xab\xa8\xd3\xff\x5e\x39\x59\x02\x94\x05\xb5\x7d\xec\xbc\xcd\xcc\x99\x13\x1f\x7b\x4e\x66\xa5\xa6\xd0\xcc\x69\x04\x53\x67\x4d\x90\x93\x24\x51\x14\x68\x1a\x46\x09\x00\x40\x6c\x1b\x59\xd1\x08\xc4\xb2\x3f\x10\x6d\xa3\x20\xa9\xc8\x8d\x40\x5c\xae\x6d\xad\x1f\x6d\x53\x98\x6e\x2f\x01\x22\x49\x5c\xad\xc9\x77\x04\x00\x6b\xf0\x28\xce\x0a\x82\x50\x56\x04\xd2\x28\x50\x32\x10\xcc\x4a\xd2\xca\x83\x74\xf4\xcc\x48\x0b\xb8\x4f\xa5\xd6\x76\x41\x0a\x6e\xa5\xae\xc9\xaf\x1e\xc9\x63\xfc\x94\xf6\xb1\x7a\xa4\x2a\x4d\x1d\xa8\x4f\x87\xf9\x7f\x07\xab\x81\x85\xad\xdd\x83\x74\x98\xef\xee\xad\x06\x2a\xd9\x80\x9d\x41\x65\x4d\x28\x5a\xe0\xde\xce\x33\x9f\x5e\x22\x7a\xc6\x9d\x5d\x48\xad\x83\x78\xf3\x7e\x13\x3c\x11\x4c\x48\xdb\x45\xf6\xe2\x77\x16\x44\x37\xdd\xf8\x3e\xa4\x43\xb0\x0e\xf6\xa1\xf4\x70\x5a\x9b\xcd\x98\xd4\x9e\x3a\xc2\x2c\x69\x69\x72\xf0\x41\x06\xaa\xc8\x84\xf8\x8c\xe9\x39\xe2\xfa\x30\x3f\xd8\x44\xcc\x11\xb7\x2f\x36\x32\x44\xbf\xf1\x5b\xd5\xa7\x65\x4e\x11\x27\xe9\xb5\x34\x3c\xa3\x09\x57\xd2\xb1\x9c\x3b\xae\x64\xc3\xd7\xb5\xe1\xeb\x5a\xb3\xac\xaf\xd8\xd3\x9c\xed\x34\xb0\xb1\xb7\xac\x68\x9a\x21\x4e\xb2\x97\x19\x7d\x6d\xb8\xb2\x86\x43\x4d\xbc\x20\xc5\xa1\xa8\x79\xe6\x4a\xf6\x32\x3c\x98\xde\x5a\xcf\x06\x88\xe6\x48\x2c\xf5\x4e\xad\xf1\x41\x46\xb9\x7f\x9d\xde\x4e\x62\xbf\x1e\xa7\x05\x69\x0d\x9f\xef\x0d\x92\x43\x67\x72\x71\x79\xfe\x36\xff\x72\xb1\x81\x78\x28\x92\x1e\x7e\x1c\xf7\xcf\xb7\x8e\x8c\x4b\x14\xf7\xe9\x86\x9a\x85\x75\xca\x3f\xb9\x3a\xf1\x87\x0a\x9f\x3e\x82\xf8\x05\x65\xe2\xf1\xe9\x11\xdf\xa4\x8e\x26\xd6\x06\x6e\x48\x3a\xdd\xb0\x34\xa6\x96\x5a\x37\xdc\x7a\x48\x37\x1c\x05\xe8\x86\x95\x2c\x63\xb1\x54\xa6\xbc\x2a\x02\x47\xcf\xea\xa6\x63\xec\x65\xbf\xb3\x46\x95\xa1\xb4\x46\xea\x3b\x9d\x7e\x4e\xd3\x52\xea\x11\x88\x14\xf1\x1b\x23\x7e\x67\xc4\x94\x11\x33\x46\xfc\x9f\x11\x2f\x18\xf1\x9c\xbf\x32\x22\x22\x23\x0e\xf8\x15\xbf\xe6\x4b\xfe\x87\x0f\xf9\x5f\x46\xe4\x4c\x24\xbd\xd0\xaa\xf5\x56\x72\x67\x53\x1f\xa4\x8b\xb2\xd7\x44\x5f\x22\xa3\x46\x20\x06\xf7\x85\x47\x7f\xce\x2e\x72\x08\x56\xd9\x78\xa2\xb3\x93\xf7\x27\x3c\x1e\x8f\xf9\xe3\xa7\xf1\xf1\x87\x6c\x74\x24\x92\xe4\x47\x00\x00\x00\xff\xff\x0b\x8e\x5a\x12\xc0\x05\x00\x00"
-
-func runtimeSyntaxCrontabYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCrontabYaml,
-               "runtime/syntax/crontab.yaml",
-       )
-}
-
-func runtimeSyntaxCrontabYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCrontabYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/crontab.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCrystalHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2e\xaa\x2c\x2e\x49\xcc\xe1\x8a\xd1\x4b\x2e\x52\xe1\xe2\x02\x04\x00\x00\xff\xff\x1d\x33\x64\x59\x0f\x00\x00\x00"
-
-func runtimeSyntaxCrystalHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCrystalHdr,
-               "runtime/syntax/crystal.hdr",
-       )
-}
-
-func runtimeSyntaxCrystalHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCrystalHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/crystal.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCrystalYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xdd\x6a\xe3\x48\x13\xbd\xfe\xfc\x14\x85\x66\x42\x6c\x0f\x76\xbe\xdb\x35\x03\x4e\x98\xcd\x40\x60\x76\x03\xbb\xb9\x08\xe3\x76\xe4\x96\x54\xb2\x0a\xb7\xba\x95\xfe\x89\x9d\xa4\xf2\xee\x4b\x2b\xca\x9f\x1c\x66\x87\x85\x01\xe3\xa6\xab\xba\xcf\x39\x75\xaa\xd4\x25\x29\xf4\xb7\x0d\xce\x20\xb7\xb7\xce\x4b\x35\x18\x14\xe8\x31\xf7\xb3\x01\x00\x40\x4c\x6b\x59\xe3\x0c\x12\x21\xa6\xb9\xfd\x98\x0c\x06\x36\x28\x74\x8f\xe9\x0f\x70\xe2\x72\xa2\x0c\x3d\xe5\x52\x81\x22\xe7\xc1\x94\x60\xd1\xa1\xbd\xc1\x02\xb6\xc6\x16\xae\x3d\x39\x01\xe7\xa5\xc7\x1a\xb5\x6f\xb1\xb2\xa1\xcc\x9c\xb7\x32\xf7\x2c\x15\x49\xc7\xed\xaf\xe6\x0c\xd7\xa4\x39\xb3\x28\x37\x9c\x4b\x87\x9c\x2b\xe9\x1c\x17\x58\x72\x61\x18\x95\xc3\xf8\x47\x25\xa3\x2e\x18\xb5\x0b\x16\x19\x75\xa8\x19\x77\x3e\x86\x4a\x63\xb9\x0c\x9a\xa9\x64\xd2\x4c\x3a\x57\xa1\x40\x26\xed\xbc\xd4\x39\xa6\x8e\xee\xd0\x94\xac\x28\x63\x65\x4c\xc3\xb5\xcc\xad\xe1\xda\x14\x41\x21\x6b\xdc\x79\x36\x25\x9b\xe0\xb9\x31\xa4\x3d\x5a\x53\x72\x63\xe9\x46\x7a\xe4\xc6\x9a\xe8\x0b\x16\x6c\x25\x39\x64\x8b\xd7\x81\x6c\x5c\x5d\x1e\xe2\xe2\x83\xd5\xec\x50\x61\xee\xe3\x52\x72\x47\xe6\x1a\xb9\xd5\xec\xbc\x0d\x31\x11\x1a\xb4\xec\x2b\xd4\x1c\x6d\x6f\xff\x4c\xc9\x41\x93\x26\x4f\x52\xd1\x1d\x16\x71\x67\x34\x07\xad\xd0\x39\x0e\xda\x93\xe2\x1b\xb4\x99\xf4\x54\xf3\x36\x5e\xdd\x56\xa4\x90\xb7\xe4\x2b\xbe\x25\x54\xc5\x48\x88\x2c\x69\x7d\x8e\x3d\xf9\x62\xda\x72\xfd\x93\xf3\x79\xb7\xef\x8c\xf7\x36\x20\x97\x32\x5a\xa9\x49\xbd\x5c\x7d\x39\x38\xd5\xa1\xce\xd0\x3e\x9e\x5f\xfc\x7f\xf2\xdb\xf2\xd3\x1b\x82\x73\x8d\x0e\x7c\x25\x3d\xe4\x52\x1f\x7a\xc8\x10\x48\x83\xaf\x10\x9c\xac\x11\x2c\xae\x71\x07\x19\xe6\x32\x38\x8c\xe1\x5b\xe8\x1a\x01\xda\xe8\x49\x3b\x14\xd3\x67\xb0\x8b\x0a\x41\x93\x9a\x83\xd1\x08\x95\x74\xe0\x4d\x04\x94\xa5\x47\xdb\x62\x3e\xa9\xea\xee\xec\x4f\x92\x26\x25\xc4\x9c\xa5\x1b\xc6\x45\x88\x6c\xc4\xe4\x52\x19\x37\x16\x5d\x63\x74\xe1\x52\x6f\x84\x98\x8f\x9e\x0a\x7d\x9c\xf8\x64\x28\xc4\x47\x3e\xe6\xe3\xe3\xd1\x3c\x16\x7a\x32\xf9\xbe\xfc\x14\xcb\x3d\x99\x7c\x4f\xe5\xe4\x6e\x39\x7e\xe5\xe9\xe3\xd7\x01\x89\xbb\xad\x33\xa3\x5c\xdf\xb2\x19\x40\x32\x5c\xc0\xff\x96\x7c\x35\x9a\x3d\x61\xf4\x6c\xfb\xdb\xd4\x08\x41\xd3\x75\x88\xae\x90\x5e\x3b\xd8\x22\x6c\xa5\xf6\xb1\xe6\x08\x53\x80\x09\xfe\xfd\xae\xa5\xe9\xd7\xb3\x6f\xa7\x69\xca\x69\xfa\xed\xec\xcf\xd3\x34\x7d\xdb\xf3\xbf\x70\x1d\x94\xb4\x80\xbb\xc6\xa2\x73\x64\xf4\x3b\xdd\x3f\x1a\x2e\xae\x8e\x96\x3c\x14\x42\x88\xa3\xd1\x68\x7c\xb4\x20\x53\xef\x96\x63\x3e\xb0\x42\xdc\x0f\x17\x57\x0f\x5d\xf2\x61\x34\x1a\x0b\xf1\xd0\xa5\x93\xc1\x4b\x09\x15\x2a\x05\xb9\xa9\xeb\x28\x16\x77\x8d\xd4\x91\x0b\xc8\xc5\x09\x58\x65\x32\xdf\x78\xca\x37\x6e\x05\xc6\x82\xa2\x0d\xc2\xc1\xee\xde\x57\xe4\x1e\xa6\x10\x3b\xed\x10\xa4\xc5\x67\xb8\xa4\x30\x21\x53\x38\xb9\x0e\xc6\x93\xab\x12\x18\x7a\x03\x71\x68\x24\x34\x68\x15\xb9\x7a\x34\xed\xcf\xa6\xf3\x96\xf4\x7a\x06\xc9\x6a\x71\xb5\x5a\x8e\x57\x7c\xb0\x13\xe2\x3e\x6a\x8f\x92\x3b\xad\xfb\xe7\x3b\x4e\x88\x3e\xdb\x68\xc6\x2a\x79\x0e\xa1\x2e\xde\x06\x1e\x9f\x38\x58\x2c\x7f\x1a\xad\x15\xd1\x47\x6c\xf5\xfc\x77\x4c\x91\xec\x01\xbe\x8a\xb8\x0d\x35\x2d\x87\x10\xd3\x3e\xcb\xf3\xb6\xcf\xd4\x60\x4e\x52\x7d\xa9\xa4\xdd\xbf\xda\x7d\x5c\xed\x7c\x4f\x33\x2b\xf3\x0d\xfa\x1e\xd4\x6b\x75\x1f\xde\x14\xfc\x83\xc2\x7f\x20\xed\x85\xb6\xc0\x52\x06\x15\x71\xa7\xe3\x9f\xef\xe1\x61\xdf\xa0\xc3\x5f\xe0\xcf\xb3\x98\xba\x7d\x73\xf6\x44\x7c\xe8\x8b\xf8\xf8\x2f\x74\xde\x14\x26\xbe\x3e\x17\xe7\xbf\x9f\xf3\xe5\xe5\x25\x7f\x3d\xbb\xfc\xe3\x74\x34\x9b\xf7\xb9\xa6\x99\xa5\x75\xf5\x1e\xe5\x2f\xe1\xec\xde\x89\x3d\xb6\xcf\x9f\x27\xf3\xc3\xf9\xe9\xf9\xc5\xe1\xbc\x4f\x7b\x75\x7a\x7e\xf1\xee\x88\xff\x13\x00\x00\xff\xff\x1c\xad\x51\x3e\x58\x08\x00\x00"
-
-func runtimeSyntaxCrystalYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCrystalYaml,
-               "runtime/syntax/crystal.yaml",
-       )
-}
-
-func runtimeSyntaxCrystalYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCrystalYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/crystal.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCsharpHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2e\xce\x48\x2c\x2a\xe0\x8a\xd1\x4b\x2e\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\x0b\x10\x57\x51\x0e\x00\x00\x00"
-
-func runtimeSyntaxCsharpHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCsharpHdr,
-               "runtime/syntax/csharp.hdr",
-       )
-}
-
-func runtimeSyntaxCsharpHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCsharpHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/csharp.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCsharpYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x55\xdf\x6f\xe4\x34\x10\x7e\xdf\xbf\xc2\x84\x83\xee\x0f\xed\xb6\x48\xbc\x10\x01\xa5\x3a\xa8\x54\xe9\xe0\x40\xe2\xa1\x22\x89\xaa\x89\x3d\xd9\xf8\xd6\xb1\x73\xf6\x78\xb7\x39\x06\xfe\x76\xe4\xec\x2e\xdd\xb6\x02\x2a\xf1\x74\x2b\xad\x3d\x9a\x64\xe6\xf3\xcc\xf7\x8d\xd3\x68\x83\x34\xf4\x98\x0b\x19\x5a\xf0\xfd\x64\xa2\x90\x50\x52\x3e\x11\x42\x88\xf4\xd4\x42\x87\xb9\xc8\xca\x72\x25\xc3\xab\x6c\x32\xf1\xd1\x60\xd8\x3f\xfe\x54\xbc\x36\x10\xc2\x68\x2f\x85\x56\x68\x49\x37\x1a\xfd\x4a\x26\x77\x2e\xb2\x71\x17\x8b\xe2\x6a\xf9\x1b\x2c\x3f\x5c\x2c\xbf\xaa\x16\x62\x3e\x9d\xe6\xb3\x53\xdf\xaa\x5a\xcc\x2e\xb3\xc9\x98\x25\xe5\xbc\xb2\xd6\x11\x90\x76\xf6\x79\xe2\x2d\xf8\x5c\x64\xdf\x1d\x82\xab\xc5\x21\xec\xf4\x9d\x5c\x64\xd3\x87\xe4\x77\xd5\xbc\x28\xf2\xd0\x83\xc4\xbc\xaa\xe6\xc5\x74\x56\xcd\xb2\x43\xcc\xbe\xee\xac\x2c\xeb\x69\xed\x9c\xe1\x7a\x20\xe4\x30\xae\xb2\x05\xcf\x0a\xa5\xee\xc0\xb0\x72\xb1\x36\xc8\x8d\x71\x40\x7c\x63\xe9\x67\xf2\xac\x2d\x71\x4c\x8b\x71\x76\xcd\x71\x5c\x5d\xfd\x0e\x25\x71\x68\x9d\x27\x8e\xfb\x2d\x90\xd7\x76\xcd\x35\x04\x64\x6a\x75\xe0\x2d\x78\xde\x3a\xad\x66\x65\x59\x1f\x0f\x12\x08\x08\x3b\xb4\x74\x38\x0d\x18\x0d\x81\x21\xb0\x4c\x61\x12\x48\xb6\x2c\x5b\x94\x1b\x54\xac\xb0\x81\x68\x88\x95\x63\x35\x58\xe8\xb4\x64\x34\x01\xb9\xd1\x16\x8c\x19\xb8\xd1\xf7\xa8\xb8\x71\x3e\xfd\x11\x64\xcb\x6b\x47\x8e\x75\xc3\x3a\xb0\x71\x72\xc3\x16\x77\x6c\xa3\x31\xec\x91\xa2\xb7\x1c\x76\x3a\x01\x50\xeb\xdd\x8e\xc9\x0f\x1c\xed\x11\x6c\xd7\x6a\x83\xff\x7a\xd2\x3a\x90\x07\x49\x0c\x61\xb0\x92\x47\xbe\x59\x3a\x1b\x88\x15\x1a\x5c\x03\x21\xa3\x8d\x1d\xe3\x16\x2d\x31\xde\xf7\x46\x4b\x9d\x0c\x42\x6f\x79\x8d\xc4\xba\x3b\xf8\xb4\x4d\x5d\x45\x6f\xc1\xec\x8d\x06\x24\x72\x92\xdf\x48\x1f\xbb\x1e\x3d\x90\xf3\xec\x22\xb1\xdb\xa2\xf7\x5a\x21\xf7\xe0\xa1\x0b\x69\x23\x0d\x86\x7b\xaf\xb7\x09\xb4\xf7\x2e\xc9\x18\x15\xf7\xb1\x36\x5a\xb2\x47\x50\xce\x9a\x81\x3d\x36\x1c\x10\x0c\x2a\x0e\x48\x1c\xf4\x07\x74\x0d\x07\x02\xb9\x01\x63\x9c\x4c\x26\xe9\xb4\xf9\x28\x89\x93\x48\x5c\xc3\xd1\x06\x68\x90\x63\x48\x6c\x6e\xc1\x44\xe4\xad\xf6\x14\xc1\xf0\xd6\x19\x20\x6d\x90\x07\x8d\xe6\x84\xd7\xa4\xe5\x37\x37\x3f\xfd\xb2\x4c\xb0\x62\x83\xc3\xce\x79\x15\xc4\xd4\x59\x0c\x82\x5a\x20\x21\x21\x49\x5d\xd4\x28\x62\x40\x25\x5c\xa4\xa0\x15\x0a\xd7\x08\x18\x23\xc5\xfb\x88\x7e\x10\x4b\x61\x1c\x05\xe1\xa8\x45\x1f\x52\xd0\xec\x1f\xd8\x68\xbc\xeb\x78\xd7\xa2\x47\x0e\x68\x92\x16\xd7\xde\xc5\x9e\xb5\x6d\x1c\x3b\xaf\xd0\xd7\x03\xbf\x73\xda\xb2\xc1\xb1\xdf\xce\x32\xbe\x8f\x60\x02\xd7\x03\x43\x90\x68\x55\xaa\x4f\xe1\xd1\x7c\xc4\x7d\x8f\x52\x83\x39\x4e\x8c\x47\xd8\x24\xaa\x49\xdb\xf8\x48\x23\x23\xfd\x60\x69\x95\x86\xea\xf0\x36\xf9\x88\xdc\x80\x09\x8f\xd5\x34\x74\xb5\x33\xab\x23\xb1\xb9\xc8\x8a\xb2\x5c\x2e\xce\xe7\xdf\x7c\xfd\xed\x65\xfe\xc9\x9f\x9f\x7d\xce\xd5\xb3\xac\x36\x76\xf5\x38\xe5\x29\x6f\x91\xee\x8f\xbb\x6a\xc1\x17\xf7\xc5\xd5\xf2\x1a\x96\xcd\x38\xf3\x0b\xbe\xa8\x8b\x8b\xe5\x17\x77\xd5\x62\x56\x5c\xbf\xa9\x2e\x47\xd0\xa7\x99\xf6\xb3\x99\x1f\xc8\x12\xa9\x9d\x7e\x6c\x65\x96\xfd\xed\x43\xab\x9e\x78\xc2\x46\xf7\x23\x7a\x59\xae\x1e\xbc\x27\xb7\xe2\xf1\x77\x8a\xb4\x6f\xdd\xeb\x16\xfc\x21\x74\x5a\xd4\x64\x1b\x5f\xf1\x19\x97\x65\x99\xa5\xa5\x9c\x65\x2f\x8f\x8f\x0f\xe5\x56\xbf\x7f\xf9\xc7\xcb\x8b\x3b\x7b\x5a\xdb\xd9\xc7\x53\x5a\x37\x6a\xfd\x59\x49\xe7\xe7\x4f\x6b\x7a\xf5\x1f\xa7\x27\xa7\x5c\xfa\x4e\xfc\xfa\xf6\xfb\xb7\x7c\x7b\x7b\xcb\xd7\x37\xb7\x3f\xfe\x30\xcb\x2f\x5f\x00\x56\x96\xf3\x67\xf2\x28\xe7\xe7\xff\x03\xf1\xaf\x00\x00\x00\xff\xff\xd5\x63\x44\x89\x84\x07\x00\x00"
-
-func runtimeSyntaxCsharpYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCsharpYaml,
-               "runtime/syntax/csharp.yaml",
-       )
-}
-
-func runtimeSyntaxCsharpYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCsharpYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/csharp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCssHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2e\x2e\xe6\x8a\xd1\xd3\x48\x2e\x2e\xae\x29\x4e\x2e\x2e\xd6\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\x2a\xe5\xab\xb6\x13\x00\x00\x00"
-
-func runtimeSyntaxCssHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCssHdr,
-               "runtime/syntax/css.hdr",
-       )
-}
-
-func runtimeSyntaxCssHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCssHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/css.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCssYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x59\x4f\x8f\xe4\xb6\xf1\xbd\xcf\xa7\xe8\x5f\xff\x8c\x78\xc7\x08\xd7\xf7\x76\x10\x2f\xb0\x4e\x00\x1f\x02\x1f\x36\x08\x16\xb0\x36\x40\xb5\x54\x6a\x71\x9b\x22\x65\x92\x9a\x9e\xde\xa5\xf3\xd9\x83\xaa\x22\x25\xaa\xa7\x07\xc9\x25\x73\x50\xbf\xf7\x48\x91\x54\x91\xf5\x47\x9a\x5e\x1b\x8c\xd7\x09\x0f\xbb\x36\x84\x87\x87\x0e\x23\xb6\xf1\xf0\xb0\xdb\xed\x76\xd4\x64\x61\xc4\xc3\x6e\xdf\x34\x6f\xdf\xb4\x21\xa4\xd0\x86\xf0\xf8\xcd\xfe\xe1\xc1\xcf\x06\x83\x74\xfb\xff\xdd\x7b\x03\x21\x60\xd8\x81\xed\x76\x3f\xff\x14\x58\x55\xbb\x10\x21\xe2\x88\x36\x1e\x76\xfb\x37\x3f\xea\xc7\xb7\xfb\xdc\x5d\xed\xac\xf3\x23\x98\x72\x3b\xfd\x85\x08\x3e\xf2\x44\x5f\xf7\x95\x8c\xb6\x63\xf1\xf7\x5a\x94\xb9\x77\xbf\x7e\xca\x5a\x1b\xc2\xae\x75\xe3\x08\xb6\x2b\x73\xcb\x13\xed\xdf\x80\xd1\x27\xab\x5a\x67\x23\xda\x98\x84\xe9\x88\x63\x10\x4c\xab\x53\x47\x08\x68\xb4\xc5\xdc\x1c\xd0\xf4\x09\x8c\x49\x60\xf5\x08\x51\x3b\xbb\x22\xd5\xa1\x81\x6b\xcd\xb5\xc7\xf6\xb6\xcf\xec\x6f\x6f\xeb\xb5\x31\x6a\x74\x1d\x56\x9a\x8e\x28\xfd\x54\xeb\x66\x5a\xdc\xd2\x42\x36\xaf\xe8\x64\xe0\xaa\xd8\x98\x95\x18\xf5\xa8\xed\x49\xf5\xb3\xcd\xd3\x4f\x13\x82\x07\xdb\x62\x82\x2f\x7a\x9c\xe3\x90\x8e\xd0\x9e\x7b\x68\x51\x3d\xe9\xa0\x8f\xda\xe8\x78\x65\xed\xe4\xdd\x6c\xbb\x0a\x2a\x88\x11\xda\x81\x8c\x51\xab\x47\x83\xb6\x93\x55\x57\x6a\x6b\xf4\xb4\xe1\xce\x38\x5f\x0b\x7a\x84\xd3\xe6\x0e\xe7\xf5\x49\xdb\x5a\x99\x5c\xd0\xbc\xea\x4a\xf3\x38\x21\x6c\xe6\x0f\xfa\x0b\x8d\x23\x9b\xa3\xc2\xa0\xfb\x98\x8e\xce\x9d\x47\xf0\x67\x65\xe0\x88\xa6\xa2\xf8\x54\x53\xb1\xd6\xd1\xf9\x0e\x7d\xfe\x51\x47\x17\xa3\x1b\xb7\xac\xac\x7e\xa3\x19\xec\xa3\xf2\xd0\xe9\x39\xdc\xb4\x78\x7d\x1a\x5e\x69\x0a\xf1\x6a\xf0\x46\xbb\xe8\x8e\xb6\xa1\x68\xb3\xed\xc0\x5f\x0b\x6f\x9d\x31\x30\x05\xac\xf8\xba\x92\x6c\xc3\x8a\x28\x37\xc7\x80\x71\xab\x15\x9b\xd5\x5a\x30\xba\xbd\xb9\x35\xb8\xd9\xdf\x6a\x9b\xb5\xd1\x13\xd7\x78\xbb\x18\x56\x36\xcf\xc7\xca\x66\x84\xad\x4d\xd8\x4e\x1b\xb2\x1d\x51\xa4\xcd\x90\x22\x6d\xc6\x0c\x13\xb4\xda\x9e\x16\x5a\x77\x8f\x6e\xaa\xe0\x76\x74\x12\xee\xec\x21\xc9\xf7\x36\x90\xf4\xdb\xb1\xb7\x0b\x29\x24\x9f\x9f\x67\xd5\x61\xeb\xb2\xef\x1e\x3d\xc2\x99\xc5\x30\x40\xe7\x2e\x02\xf5\x17\x59\xf8\xb3\x0a\x16\x26\x01\xf3\x34\x79\x0c\x21\xf1\x1d\x0a\xfa\x48\x47\x93\xf1\x11\x7b\xe7\x31\x13\x6d\x83\xee\x30\xb5\x30\xf1\xf8\x99\x78\x8c\x72\x55\x6b\x54\x12\x2e\x8f\x2e\x38\x0c\x30\x61\x6a\x07\xd0\x36\xa4\xd6\x20\xf8\xc4\xee\x4a\x17\x35\x41\x1c\x04\x51\xfc\x4c\xf9\x3e\xba\x2a\x6d\x23\xfa\xc9\x99\x25\x58\x45\xf4\x81\xda\xe6\xb1\x44\xa7\x4c\x28\x90\x15\x7c\x82\xa9\xc0\x32\x62\xc1\x6a\x19\x7d\x51\xc4\xc4\xb5\x22\x66\x15\x65\x99\x2d\x4c\x60\x0b\x2e\x1d\x24\x78\xd3\xaf\xb6\x33\x8d\x31\xd3\x7a\x95\xb6\xad\xe7\xfc\xb2\x28\x1e\xc9\x45\x0a\x63\x4c\xfd\x67\xcc\xe6\x26\x94\x8d\xdd\xce\x3e\x38\x9f\xd6\xf8\xdd\xe9\x40\x81\x36\x75\x6e\xd4\x16\xea\xb4\x80\x06\x9f\xc4\xe2\x38\x4e\xf1\xaa\x5a\x34\x26\x24\xb1\x52\xea\x0d\x3e\xf3\x85\xfa\xeb\x20\x70\x1d\x95\x69\x6f\xdc\x45\xd0\xc9\x17\x14\x06\xaf\xed\x59\xf0\xc5\xc3\x94\x7a\xe3\x20\xca\x55\x75\xd8\xf3\xd0\x84\x5d\xdf\xd3\x83\x08\xf1\xd4\x80\x14\xe4\x7b\xe3\x5c\x09\xbe\x82\x1d\xb9\x4b\xbc\xa6\x3c\x9b\xbb\xa8\xde\xbb\x51\x90\xb6\xd1\xa5\xde\xd9\xc8\x17\xd5\xc3\xa8\xcd\x35\x63\x84\x38\x7b\x24\x6b\x45\x6d\x4f\x41\xd4\x33\x7a\x4b\x47\x98\x89\x01\x7b\x9a\x39\x06\x3d\xa1\xf7\x74\x20\x59\xe6\xf8\xbc\x20\x05\xdd\xe7\x39\xe4\x09\x42\xf4\x18\xdb\xa1\x10\xda\x79\x81\x57\x1b\x07\x64\x3b\x11\x7d\x02\xaf\xa1\x2c\x2a\x13\x05\x64\x57\x0b\x11\xb7\x9d\x54\x0b\xd3\x8d\x82\x10\xa2\x82\xa0\xc1\x6e\x75\xa3\x4f\xfc\x4c\x37\xdd\xed\x3c\xa2\xd7\xed\x56\x5c\x52\x11\xab\x17\xe4\xc8\xd5\x3b\x17\xad\x8b\xa8\xca\xa1\x58\x84\xc9\x19\xdd\x5e\xd3\xc9\x5c\xa7\x81\x12\x1b\xda\x28\x4e\xf3\x84\x3e\xea\x16\x4c\x3a\x79\xdd\xf1\x45\x81\x47\xc8\x68\x8e\x4e\x95\x83\xbe\x2a\xbc\x53\x2b\xf5\xee\x92\x5b\xa5\x6b\x8d\x15\xda\x6e\xc3\xc9\xf9\x6a\xce\xf5\x93\x28\x4b\x93\x2f\xc3\x7b\x77\x59\x07\x20\x52\x77\xa9\x6f\x8d\x38\x4e\x86\x52\xe7\x86\xf1\x93\x84\x1b\x6d\xf3\x38\x8b\xca\xcf\x30\x80\x3d\x51\x71\x32\x51\x71\x32\x8b\xeb\x0c\x62\xd9\xe1\x3a\x0d\x68\xf9\xfe\x01\x3c\xb4\xe4\x42\xab\x66\xf4\xa8\x23\xb7\x84\x17\xaa\x81\x10\x5f\x8a\xda\xe2\xcb\xae\x5f\x9c\xc5\x2c\x86\x94\xb3\xe7\xba\x55\xa9\xe4\x4e\xdb\xa1\xa7\x33\x5e\x78\x70\x66\x96\x0e\x56\x47\x0d\x46\x19\x8c\xb4\xbe\x2d\x55\x5c\x25\xde\x8a\xec\xc2\x3a\xe4\x10\x9a\xc8\x13\x74\x7f\x5d\x0a\xcf\xc2\xa5\xf4\x2c\x8c\x2b\x4d\xce\xbd\x79\x94\x92\xf1\x0c\xd9\x8a\x2c\x28\xfe\xcd\xf5\x8f\x24\x1a\x86\x7c\xc4\x18\x65\xab\x4a\x81\x44\x99\xc6\xe8\x50\x1c\x6e\x85\xb9\x9c\xa8\x84\xe5\xd4\x57\x1a\x95\xcc\x69\x04\x4f\xb5\x9a\xfc\x94\x92\x29\x33\x5e\x69\xc6\x92\xe1\x33\xa1\x64\x4c\x65\x17\xfa\xfc\xc3\x87\x2d\xc3\xb3\x75\xed\xd9\xcd\x71\xb9\x7d\x23\x2e\xe3\x90\x3a\xea\xe5\xae\x09\xc8\x20\xb6\xd0\x80\x27\x0e\xf4\x85\x52\x0c\x2a\x98\x4f\xef\x08\xfe\xb7\x19\xb1\x8a\xbc\x45\x31\x4e\x56\xc7\x24\x4c\x88\xdd\xca\xd8\x4e\x23\x84\x33\x5f\x54\xae\x17\x2b\x2c\xd5\x6f\x2d\xe4\x32\xac\x96\x72\x15\x56\x4b\x52\x84\x6d\x14\xa9\xc1\x6a\x49\xd2\x1b\x2b\x9c\xa5\x05\xb9\x91\x37\x27\x77\x95\x9d\x63\xb8\x2e\x25\x17\xd4\x8c\x97\x9d\x64\x56\x2f\x85\xc3\x33\xa3\xbc\xb3\xcf\xe5\xb8\x10\x14\xcf\x21\x94\x97\xa1\xed\xd2\xac\xed\x22\x3e\xd7\x6f\x01\xa3\x93\x99\xf8\xa7\x24\xa6\xcc\xb8\xba\xc8\xd8\xbb\xec\x69\x16\x9e\x54\xe7\x2e\x02\x78\xff\x09\xc8\x9e\x13\x9a\xa7\xe4\x8e\x9f\xb1\x8d\xaa\xd7\xb1\xc0\xe5\x89\x64\x82\x9c\xba\x33\xc9\xd9\x3b\x33\x3a\x66\x19\xca\x31\x28\x39\x50\x36\xd2\xf9\x69\x00\x1b\x92\x9b\x23\x27\xf2\xfc\x9b\xbd\xaa\xb0\xfc\x1c\x85\xca\xa1\x28\x4c\xec\x40\x79\x8f\x83\x75\x01\xa5\x57\xa1\xec\xfe\x0b\x7b\x5e\xe1\x35\x4d\xd0\x75\xe4\xd3\xf9\xb7\xf8\x54\xa1\x6c\x95\x42\xc4\x32\x85\x91\x5b\x4d\xb4\xfd\x74\x51\x75\xd9\x58\x09\xd9\x20\x95\x92\x0b\xc8\x09\xe6\x90\xaf\xcb\x5d\x84\xcb\x0d\xe8\xc3\x44\xae\xf2\xb4\xc1\xe5\x6c\x4d\x9a\xd2\x37\x5f\x95\x07\x4b\x8b\xa0\xb7\xd0\x6e\xe6\x88\x49\xa5\xa2\x57\x60\xdb\xc1\xf9\x85\x9c\x0c\x66\xdc\xe9\x10\xf9\x4d\x54\x68\x19\xb2\xec\x2b\x95\xc1\x4b\xde\x94\x17\xb7\xdf\x66\x47\xf9\xde\xe3\x89\x0b\x50\x0f\xe2\xee\x1e\xf9\x10\x7b\x0c\x8c\xcb\x59\x60\x98\x9f\xc3\xeb\x76\xb0\x54\x56\x8b\xed\x96\xa3\x57\x80\x9a\x9c\xa6\x91\xe6\xe3\x35\x47\x6e\x86\x23\xfa\x13\x0a\x5c\xd6\xe5\x67\xcb\x35\x4f\x68\xbd\x33\x46\x1d\x71\x80\x27\xed\x7c\xe1\x14\x5f\xf3\x10\xb5\x92\x23\xe6\x4b\x49\x1d\x8d\x6b\xcf\xaf\x36\xf0\xe1\x7d\xb5\x51\x8e\xf3\xbd\x66\x39\x3e\x77\x5a\xb4\xe5\x43\xfe\x6a\xcb\x6b\x13\xe6\xd6\x57\x67\xe4\x13\x7a\x47\x17\x83\xdf\x69\xa0\x73\x5b\xcb\xc5\x03\xee\x68\x77\x6c\xb4\x69\x79\xb1\xe6\x6d\xeb\xcb\x35\xdf\x78\xd9\xbd\xa6\x3b\x76\xda\x36\xbd\x3a\xe9\xab\x96\xda\x38\xf3\xbd\x86\x97\xb6\xaa\x9d\xbc\xd6\x39\x56\xf3\x7b\x5c\x7e\x51\x8f\x83\xc7\x30\x38\xd3\x15\x55\xdc\x5b\x48\x39\x7c\x4c\x28\x35\x71\x13\xf9\x4c\x98\xa8\x5c\xe0\xab\x82\x90\xc1\x80\x40\x71\x51\x08\x97\xc3\x60\x32\xab\x6b\x35\xca\x92\xec\xf7\x11\x13\x55\xf2\x21\xd0\x0f\xad\x96\x02\x65\x88\xde\x9d\x31\xff\xa8\xe5\x33\x5a\x11\x3a\xa0\x17\x61\x7e\x15\xa8\x15\xef\xe1\x5a\x0b\xad\xf3\x96\x96\xb2\x2a\x39\x0e\x67\x85\x2c\xdd\xc2\x54\xd3\xcf\x8e\x1e\x55\xf8\xa8\x23\x7a\xae\xf6\x8a\x52\x42\x7f\xa6\x12\xb8\x23\x1c\x0d\x2a\x03\x57\x37\x47\x22\x92\x14\x23\x3e\xc7\xec\xc9\x2b\x54\x60\x4c\x4d\xb9\xde\x64\xde\xba\xf1\x48\xfb\x3e\x4f\xb2\x8d\x2c\xae\x9f\x00\x6e\x79\x4e\x2f\xb7\x2a\x1f\xba\x5b\x31\x9c\xf5\xf4\x52\xe4\xdc\xc2\x2a\x8e\xd3\xc0\xaf\x95\x1b\x56\xcf\xb0\x68\x4b\x18\xdb\xca\xd5\x60\xda\x76\xb4\x4f\x8c\x73\x09\x2a\xa4\x2e\x8e\x45\x28\xf9\x8e\x59\xfe\xb0\x21\x78\x82\x16\xd7\x6f\x57\x95\x16\xbd\x1e\x57\x4e\xfe\xce\x24\x7a\xb0\xa1\x77\x3e\xb7\xcd\x54\x74\xb3\x17\x6d\xd7\xcb\x09\x94\x7c\xa1\xea\x5f\x90\x3a\xba\xe7\x8a\xe5\x74\xb2\x0a\xf9\x11\x89\xe7\x11\x17\x98\xbf\xd7\xd6\x42\xf9\x38\x5b\x69\x93\x77\x13\xfa\xb8\xe9\x77\xfb\x7d\x75\xb6\xba\x75\x1d\xaa\xa3\xee\x74\x9a\x03\xd7\xa4\x06\xdb\x98\xca\x8b\x5f\x3e\x50\xd5\xb7\xd6\x27\xa7\x5b\x54\x47\x30\x9c\x0b\x85\x2d\xd3\x0b\xcd\x2f\xe2\x42\x24\xe7\x0a\x96\x9c\x5b\x70\x2c\x30\x7b\xa3\x90\x27\x7a\x03\xa3\x16\xfe\xb9\x0c\x3a\xa2\xec\x45\xba\xe8\x8e\xde\xc3\xc4\x07\x2e\xda\x18\x7a\xa7\xa2\x01\x2f\xce\x77\xf9\x4d\x82\x61\xd9\x2a\x26\xbc\x07\x74\xc9\x69\x96\x61\x4e\xb3\x8c\xf9\x48\x30\xca\x41\x88\x71\x1c\xbc\x9b\x4f\x43\xba\x78\xcd\xef\x2c\x5c\x2a\x7e\xe1\xd3\xf6\xfc\x78\x58\xbf\xf9\x77\xd8\xc3\x6c\xe2\xbd\x8f\xfe\x87\x97\x9f\xfc\x7f\xfd\xe1\x9f\x4d\xf3\xf5\xd3\xeb\x9f\xfd\xd5\x8e\x6a\x16\x0d\xe6\xb0\xdb\xff\x9f\x1e\x27\xe7\x23\xd8\xb8\xcf\x6d\x9a\x8e\xba\xee\x35\x7a\x1a\x1e\xa4\xce\x39\xf4\xae\x9d\x43\x3a\x0c\x74\xbe\xd3\xc1\x68\x7b\x4e\x07\xda\xb0\x88\x5d\xa1\xf2\xe8\x87\xfc\xd8\xdf\xec\x5f\xcc\xf5\xa6\x69\xbe\xa6\xa6\xf9\x3d\x35\xcd\x9b\xd4\x34\x8f\xa9\x69\x7e\x48\x87\xd4\x34\x9f\xd2\xbf\xd2\x9f\xd2\x9f\xd3\x1f\x1f\xcb\xa2\x3f\xbc\xff\xf0\x61\xf7\x0f\xf0\xa0\x8f\x06\xef\xfd\x57\xe4\x9d\xac\x3b\xbd\x1b\xf5\xb3\xb6\xe9\x1d\x3e\x47\xb4\xdd\x72\x3b\xc7\xdc\x72\x5f\xeb\x2c\x55\x55\xf1\xad\x84\x62\x31\xe3\xe6\x3f\x27\xfb\xfd\xa2\xe5\x7f\x9b\x54\x0a\x45\x1a\xfe\x4f\x4a\xd3\xbc\x5d\xd5\xea\xbf\x38\xe5\xaf\x9e\x49\x1e\xfa\xfd\x00\x7e\x7b\xeb\x7f\xb1\x9a\x6f\x6f\x17\xf3\xed\xff\x6c\x2d\xeb\xde\x34\xfb\xf4\x6d\xb1\xde\x7b\x37\x92\x95\xc3\xee\x0f\xbb\xbf\xff\xf2\xd3\x2f\xab\x19\x59\xbe\x63\xbe\xe6\xfb\xa6\xf9\xee\x85\x09\x9b\xef\x9a\xe6\xfb\xff\xb0\xc8\xe8\x3a\x47\x27\x83\xe6\x49\x1f\x3f\x7e\x4c\x7f\xfd\xf9\xe3\xdf\xfe\xf2\x78\xf8\x71\xbf\xe9\xf8\xf0\xef\x00\x00\x00\xff\xff\x7e\xdc\x51\x61\x6b\x1b\x00\x00"
-
-func runtimeSyntaxCssYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCssYaml,
-               "runtime/syntax/css.yaml",
-       )
-}
-
-func runtimeSyntaxCssYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCssYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/css.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCsxHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2e\xce\x48\x2c\x2a\xd0\x2d\x4e\x2e\xca\x2c\x28\xe1\x8a\xd1\x4b\x2e\xae\x50\xe1\x8a\x53\x56\xd4\xd3\xd2\xd7\x48\xcd\x2b\x53\xd0\xd6\xb4\x4f\xc9\x2f\xc9\x4b\x2d\x81\x2a\xd1\x50\xa8\x51\xd1\xe4\x02\x04\x00\x00\xff\xff\xf8\x78\x99\x4c\x36\x00\x00\x00"
-
-func runtimeSyntaxCsxHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCsxHdr,
-               "runtime/syntax/csx.hdr",
-       )
-}
-
-func runtimeSyntaxCsxHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCsxHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/csx.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCsxYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8d\x41\x0a\x83\x30\x10\x00\xef\x79\xc5\x1a\x3d\x68\x45\x7b\xcf\xa5\xd0\x6f\x74\x5b\x48\x93\x2d\x0a\x69\x0c\x9b\x58\x5a\xc8\xe3\x8b\xc6\xeb\x30\xcc\xbc\x66\x47\xe9\x17\x48\x81\x89\x93\xe6\x30\x44\xc3\x73\x48\xc2\x52\x22\x93\x94\x00\x00\xd8\x1c\xaf\xdf\xa4\x40\x22\x8e\x26\x7e\x1b\xb9\xf3\x89\xb4\x25\x56\x20\x1f\x75\x35\x9e\xce\x2d\xf9\x0f\xf4\xdd\xc5\x2e\xc9\x53\x3a\x42\x2d\xe4\xa6\x2b\xba\xe0\xd5\x51\x2c\xc9\x01\x66\x6f\xdc\x6a\xb7\x66\x19\xcb\x83\x07\xa6\xc0\x8b\xd9\x5f\xd7\x16\xb1\xae\x32\x62\x7d\xe3\xec\x16\x6d\xf3\xbd\x47\x7c\x76\x52\xfc\x03\x00\x00\xff\xff\xbb\x93\xaa\x6d\xb7\x00\x00\x00"
-
-func runtimeSyntaxCsxYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCsxYaml,
-               "runtime/syntax/csx.yaml",
-       )
-}
-
-func runtimeSyntaxCsxYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCsxYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/csx.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCythonHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xae\x2c\xc9\xc8\xcf\xe3\x8a\xd1\x2b\xa8\xac\x50\xa9\x89\xd1\x2b\xa8\x48\x01\x53\x95\x99\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x1c\x17\xef\x77\x1d\x00\x00\x00"
-
-func runtimeSyntaxCythonHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCythonHdr,
-               "runtime/syntax/cython.hdr",
-       )
-}
-
-func runtimeSyntaxCythonHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxCythonHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/cython.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxCythonYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x94\x4d\x4f\xdc\x3e\x10\xc6\xef\xf9\x14\xf9\x2f\xfc\x0b\xb4\x65\x7b\xdf\xbe\x1d\x60\x57\x42\xa5\x02\xa9\x3d\xac\x44\x38\x38\xf6\x84\xb5\x70\x6c\x6b\x3c\x29\x1b\xf5\xe9\x77\xaf\x9c\x2c\x65\x79\xa9\xda\x0b\x4d\x0e\x96\xc7\xd6\x6f\x9e\x79\x66\x92\xc6\x3a\x92\x3e\xd2\xac\xd4\xbd\xac\x82\x2f\x0a\x43\x42\x5a\x66\x45\x59\x96\x65\x3e\xf5\xaa\xa5\x59\x39\xa9\xaa\x69\xec\xd7\xbb\xc8\xeb\xda\x8c\x6b\x6f\x77\x27\x45\xc1\x9d\xa3\x34\xde\xdf\x29\xcf\x07\x4a\xf9\x89\xfa\x9b\xc0\xa6\x3c\x0a\x2e\xf0\x70\x74\x58\x26\x51\x42\x2d\x79\x19\x68\xf5\xbe\xf2\x06\x2a\x41\xa5\x44\x2c\xd0\x4e\xa5\x04\x43\x0d\x8e\xe7\x0b\x18\x72\x20\x67\x1b\xcc\x4f\x4f\x16\x20\x97\x08\xf3\xd3\x2f\x73\xd0\x5a\x53\x14\xd0\x9a\x34\x1a\xeb\x95\x73\x3d\x9a\xc0\x68\x38\xb4\xb8\x72\xa1\x56\x0e\xb6\xc1\xc9\x02\xb6\x8d\x81\x05\xd6\xc3\x26\x38\xd5\xd6\x46\xa1\x55\x11\x3e\x08\x02\x23\xe6\x6c\x91\xad\x17\xb0\xb2\x89\x20\xdc\xe3\x66\x65\x1d\xe1\xc6\xca\x0a\xbd\x25\x67\x0e\xaa\xaa\x9e\xdc\xaa\x8f\xa4\xad\x72\x1b\xed\x3a\x78\xb1\xbe\x23\xd4\x4c\xea\x1a\x4c\xd2\xb1\x1f\xaf\x0f\xf7\xb3\x15\x47\xbf\xb7\xc2\x1a\xf2\x62\x1b\x4b\x3c\x6d\x95\xe6\x70\x4b\xcd\xe5\xeb\x8d\x72\x1d\x87\x5d\x8c\xa3\x33\x3a\x77\x29\x47\x68\x2d\xc4\x1e\xd6\x6b\xd7\x19\x42\x6e\x4f\x8a\x4a\x13\x22\x87\x48\x2c\x3d\x92\x70\xa7\x65\x5b\xfc\xd8\xe1\x21\x47\x9d\x4b\xd6\x2b\xc5\x30\xa1\xab\x1d\x21\xef\x63\x57\x3b\xab\xf1\x2d\x58\x83\xce\x27\x7b\xe5\xc9\x3c\xa8\xe6\x2c\x12\x2b\x09\x7c\xbf\xa5\x7d\x5b\x87\xec\xc9\xc5\x74\xf6\xf6\xf5\xab\x97\x78\xff\x5f\x55\xfd\x7f\x89\x77\xf8\x80\x37\x38\xc4\x8b\x2d\xc0\xb9\x62\xf2\xb2\x22\xb1\x5a\xb9\x27\x28\xd3\x9a\x95\xbe\x26\x49\x19\xb7\x7f\xf0\xfd\xc7\x25\xaa\xea\x02\x55\x75\xb9\x81\x1c\x96\x3a\xf8\x24\xca\xcb\x34\x09\x5b\x7f\x35\xdb\xb0\xcb\x3c\x5a\x3c\x8c\xd5\xf0\x4e\x7e\xc5\xc9\x9b\x27\xa2\x5b\x03\x7b\xfb\x6c\xb3\xc7\x46\x1f\xad\x14\x0f\x96\x55\xd5\xf4\xef\x05\xec\xed\xed\x3d\xcc\x7e\x2f\xf4\x8c\xa9\x9f\xaa\xfb\x2e\x92\xae\x6d\xbc\x63\xfe\x0b\x27\x1e\xf9\xf0\x9c\x62\xda\xe1\xbf\xf2\x48\xc4\xce\x43\x11\xbb\x7f\x48\x27\xc1\xe4\x8f\x71\xff\xeb\xd9\xf1\x19\x96\xcb\x25\x16\x27\xcb\xcf\xf3\x83\xd9\xc7\x49\x51\xfc\x0c\x00\x00\xff\xff\x14\x89\xfe\x81\x2b\x05\x00\x00"
-
-func runtimeSyntaxCythonYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxCythonYaml,
-               "runtime/syntax/cython.yaml",
-       )
-}
-
-func runtimeSyntaxCythonYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxCythonYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/cython.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxDHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xe1\x8a\xd1\xd3\x48\xd1\xc8\xac\x49\xd1\xb4\xd7\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\x4d\x4e\x48\x0f\x10\x00\x00\x00"
-
-func runtimeSyntaxDHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxDHdr,
-               "runtime/syntax/d.hdr",
-       )
-}
-
-func runtimeSyntaxDHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxDHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/d.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxDYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x96\x6d\x53\x1b\x39\x12\xc7\xdf\xf3\x29\xe6\x4c\x92\xf3\x40\x19\xc8\xab\xab\x70\x1c\xae\x24\xc0\x85\x3a\x02\x5c\x42\xee\x76\x6b\x34\x4c\xe4\x51\x8f\xad\x42\x23\xcd\x4a\x2d\x1b\x27\xbd\xf9\xec\x5b\x9a\xb1\xc1\xc6\xe6\x71\x37\x50\x85\x1e\x7b\xfe\xfd\x93\x5a\x6a\xb9\x90\x0a\x70\x5c\xc1\x76\x24\x56\x56\x04\x20\xe4\xb8\xbd\x12\x45\x51\x14\x26\x34\x2f\x61\x3b\x6a\x31\xb6\xd1\x16\x6d\x49\x22\xee\xc6\x2f\x5a\x2b\x2b\xd6\x2b\x70\x8d\xd5\x6a\x74\x52\x81\xe5\x68\xac\x8b\xb8\x16\x51\xe5\x75\x8e\x9e\xa3\x34\xba\x9e\xef\x44\x0e\x39\x42\x09\x1a\xb7\xa3\x56\x9b\xb1\x35\xda\xa4\x97\xc4\xd8\x3a\x75\x68\x77\x97\x76\x76\x68\x77\x77\x97\x5e\x11\x63\xe7\x6d\xc6\xce\xe3\x2e\x31\x46\xf4\x23\xee\xfe\xab\xb5\x44\x80\xb1\x8d\x00\xc3\xd8\x46\xdc\xa5\xbf\x51\x90\x7b\x45\x3f\x88\xb1\x36\x31\x16\x13\x63\x09\x31\x96\x12\x63\x8c\xd1\xe6\xc4\xcb\x4b\xda\xa1\x5d\x62\xac\x4b\xdb\xf4\xcf\xd6\x94\x3a\x47\xae\x22\xa9\x11\xfa\x60\x23\x25\x11\x2c\x57\x2e\xe2\x16\x22\x01\x95\x85\x9c\x23\x88\x09\x00\x58\x6b\x6c\xa0\xdf\x4a\xb6\x3a\xff\xc8\xd2\xb5\xb8\x7d\x94\xf8\x2f\x69\x97\x42\x79\xd4\x8d\xbb\x53\xd5\x3d\xc8\x65\xb9\x44\x77\x22\x94\x1b\xed\x90\x6b\xdc\xd0\xbe\xec\x41\x2d\x99\x6c\x75\xde\xa4\x94\xbc\xee\xbc\x49\x43\xf3\x2e\xf1\x77\x52\x73\x3b\xbe\x4f\xbb\xe1\xec\xbd\x4b\x93\xad\xd7\x0f\x41\x2d\x94\xe1\x78\x3f\x68\xcd\x39\x21\x0c\x11\x98\xed\xc7\xed\x04\xf6\xd3\x64\xbd\x93\x76\xe7\xc7\xe3\x6e\x52\x1c\x1c\xa5\x5d\xd9\x6d\x3d\x48\xf8\x56\x9d\x07\xc8\x9c\x6f\xa4\x3f\x91\xab\x31\xa7\xa4\x38\x48\xe3\xe9\x0e\x7e\x80\x4b\x2e\x1e\x1d\xf0\xad\xe4\xf2\x97\xb4\xc6\xe1\x9d\xe2\x6d\xe7\x20\xbd\x6e\x66\xe9\x1a\xcd\xf5\x66\xac\xe2\x5b\x03\x39\x8b\xf1\xc0\x60\x3e\x95\x21\xdc\xbb\xc7\x7f\xd5\x4d\xaa\xd3\x65\x51\xb8\x3f\x06\x35\xe7\x34\xaa\x8f\x73\xfa\x20\x9f\xab\xd1\xfb\x01\xb7\x3c\xc7\x3b\x22\xe7\xd0\x4a\xdd\x6f\x92\x5d\xf8\x73\xc8\x6d\xb8\x64\x7f\x6f\x5d\x0d\x81\x16\xf3\x03\xee\x42\x56\x75\xb2\x62\x6c\xe3\x7a\x74\x26\x6b\x4e\xff\x66\xfd\x54\x90\x4b\xae\x02\xd0\xfc\xa7\xab\xd1\x7f\x60\x3c\x32\x56\xb8\x49\x97\x77\x60\x69\x66\xec\xb5\x79\xcf\x61\x58\x0e\x71\x25\xb9\x0b\x65\x5f\x13\x77\x25\x71\xe7\xc0\x22\x71\x8f\x86\x7a\x46\x8c\xa9\x67\x81\x5f\x50\xce\x1d\x84\x02\x29\xe7\x98\x0f\x28\x57\xdc\x39\xaa\x91\x42\x89\x52\x7b\x20\x01\x3d\xdf\x27\x01\x05\xf7\x0a\x49\x80\x82\x3e\x47\x20\x61\x08\x94\x03\x02\xed\x4b\x82\xcb\xca\x58\x24\xb8\x44\xb0\x3a\x66\xac\x37\x45\x2f\x3a\xea\x16\xd6\x82\x87\xaf\x0b\xa9\xb9\x6a\x4a\x35\xa6\xc2\xd8\xf0\x0f\x3c\x1f\x4c\xeb\xcc\xc2\x10\x6c\xb0\x0c\x0f\x8b\x34\x9a\xfa\x06\x0d\xc9\x82\x64\x59\x7a\xe4\x3d\x05\x24\xcb\xda\xbb\xd4\x24\xb5\xf1\xa1\x81\x60\x0b\x9e\x03\x49\x3d\xe4\x56\x72\x8d\x24\x1d\x29\xfe\x6d\x3c\xcb\x56\x76\xec\x2d\x6c\x25\xcf\xad\xa1\x52\x5e\x4a\x4d\xa5\x11\x5e\x01\x69\x18\x91\x36\x38\xb0\x66\x44\xda\x2b\x45\xc1\x91\x19\x82\xb5\x52\x00\x55\x3c\xbf\xe0\x7d\xa0\xca\xf2\x7e\xc9\xa9\xb2\x72\x18\xf6\xa8\xb2\x26\xbc\xa7\x20\xa8\xf2\x3d\x25\x73\xaa\xbc\x05\xb2\x50\x90\x05\xf4\xf3\x3b\xe5\x3a\xa3\x5b\x68\x5c\x6e\x2a\x20\x37\xe0\x16\x04\x85\x49\x99\x93\x43\xeb\x73\x24\xe7\x2b\xb0\xe4\x46\x32\x44\xcf\x8d\x75\x3e\xb0\x46\xcb\x6f\x20\x08\xa1\xac\x54\x60\xc0\x81\x74\xd4\x70\xa3\xf5\x40\x68\xc7\x14\xde\x7b\x29\xea\xca\x14\xe4\x75\xd8\x56\xaf\x25\x22\x38\xa4\xb0\xdd\x61\x60\x34\x90\x0a\x68\x24\x71\x30\x8b\x99\x65\xb7\x50\x66\xd9\xc1\xe1\xd1\x7e\x96\x51\x96\x7d\x3c\xd9\xfb\x32\x69\x1e\x1d\x1e\x37\x8d\x83\x2f\xc7\xef\xcf\x0e\x4f\x8e\xeb\xce\xe9\xa7\xfd\xb3\xb3\x5f\xe7\xc7\xfa\x93\x05\x66\x19\x5a\x2e\xd1\x51\x96\x0d\x21\x47\x63\x29\xcb\x2a\x6e\x79\x09\x08\xd6\xcd\xa2\xec\x5d\xbd\xd3\xd1\xc5\xec\x0d\xb9\x7e\xb0\x03\x57\x38\xb0\xe1\xb8\x5e\x19\xd7\xcb\x16\x50\xd0\xd0\x28\x8e\x52\xc1\xac\xe6\xa9\x95\xa5\x44\x39\x84\x28\x58\x4d\xf5\x9a\xdf\x47\xb5\x5c\xcf\x18\x45\xbd\x31\x02\xe5\xc2\xf8\x70\xfa\x72\xd0\x48\x79\x9d\x79\x29\x1f\x70\x4b\xb9\x05\xae\x48\xd4\xed\x89\x4d\x33\x2b\x27\x3d\x39\xe9\x86\x63\x59\xdb\x2a\xa3\xfb\x54\xb7\xdc\x20\x9c\x64\x5f\x3b\xf0\xb5\xb2\x0f\x66\xbe\xb6\xf0\xcd\xec\xd0\x48\x41\xa3\x20\x3f\x4b\xfe\x6f\x65\x7a\xe1\x12\x45\x02\x0a\xa9\x41\x44\x6e\x5c\xf6\x8c\x5a\xb2\x84\x26\xa3\xd1\x68\x52\x8b\x49\xed\xe4\x37\xc8\x90\x2a\xb4\x42\x16\x45\x86\xb3\xe2\x9f\x9b\xe4\x14\xa1\xb9\x00\xbd\xe4\x17\x47\x73\x00\xf6\xde\x9e\x35\xc1\xde\x3f\x39\xa8\xeb\xb3\xc3\x8f\xfb\x57\x8d\xcf\x67\x6f\x3f\x9e\xd6\xbd\xff\xed\x1f\xef\x9d\x7c\x9a\x34\x3f\x7d\xae\x4f\xc0\x9c\xb7\x1a\x68\x3e\x23\xaf\x46\x7b\xf5\xe6\xfd\xd7\x1b\x04\xd1\x58\xdc\x92\xaa\xa3\x85\x5c\xcd\x5a\x37\x93\xf5\xec\xc8\x5d\xd9\x3a\x7a\x42\xba\xfe\xff\xd8\xc9\xd1\xb8\x7f\x27\xe3\x02\xa2\xbd\x9b\xf1\x89\x6f\xc7\x03\x1c\x7f\xbd\xe9\xf6\xeb\x5f\xf0\x62\x7d\x80\xcb\xc7\x2d\xff\xf2\xa7\x2c\x3f\xe4\x08\x15\x2e\xf4\x3d\x27\x66\x01\xe7\x37\xd6\x62\xac\xbd\x40\xc4\xe2\xe7\x89\x49\xed\xfe\xfb\x4d\xf7\xf5\xe8\xef\xcf\xe6\x3f\x59\xea\x3f\x7d\x26\xff\x3b\x4b\xbc\xef\xfe\xf9\xdb\xf9\x30\xe7\xc9\x79\xfb\x7b\xb2\xc3\x5a\x69\x72\xce\x5a\xe9\xda\x8b\x9b\x2c\xe7\xf5\xf8\xfa\xb3\x1d\x86\xf6\x15\x50\xfc\x53\x6e\xc9\x7b\x53\x86\x97\xfc\x3a\xb1\x97\xcd\xc3\xbe\xc0\xb2\xb9\x79\xd3\xff\x8b\x85\x98\x24\xe9\x0d\x99\x45\x15\xc6\xd6\x16\xef\xd6\xda\xe6\xd3\xa4\xd6\x17\xa5\xd6\x97\x4a\xad\xfc\x11\x00\x00\xff\xff\xb7\xae\x06\xa1\xeb\x10\x00\x00"
-
-func runtimeSyntaxDYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxDYaml,
-               "runtime/syntax/d.yaml",
-       )
-}
-
-func runtimeSyntaxDYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxDYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/d.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxDartHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x49\x2c\x2a\xe1\x8a\xd1\x03\x51\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x3e\xc9\xfd\x80\x0e\x00\x00\x00"
-
-func runtimeSyntaxDartHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxDartHdr,
-               "runtime/syntax/dart.hdr",
-       )
-}
-
-func runtimeSyntaxDartHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxDartHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/dart.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxDartYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\x41\x6f\xdb\x3a\x0c\xc7\xef\xf9\x14\x7e\x46\xdf\x6b\xe2\xc0\x71\xde\x69\xa8\xb1\xcd\x28\xb6\xf5\x54\xa0\x03\xb6\x5d\x26\xa9\x85\x6c\xd3\x8d\x50\x59\x36\x24\xba\x69\x06\x62\x9f\x7d\x90\xe2\xb6\x59\xda\x6e\xc1\x80\xf9\x40\x49\x14\xf9\xff\x51\x92\xd9\x28\x0d\xb8\xe9\x21\x8f\x6a\x69\x71\x32\xa9\x01\xa1\xc2\x7c\x12\x45\x51\xe4\xf7\x8c\x6c\x21\x8f\x62\xce\x17\x7e\xff\x28\x9e\x4c\xec\xa0\xc1\x6d\x03\xd2\xa8\xea\x8c\x43\x69\x70\x61\x86\xb6\x04\x1b\x22\x4b\x96\xce\x45\x31\x65\xff\xa7\x27\x82\x2d\xd3\x13\x91\xd0\x92\x2d\xd3\x57\x7e\xbc\xf3\x0e\x99\x36\xa7\xe9\x99\x98\xcf\xa6\x6c\xf8\x22\x98\x3e\x17\x05\x79\xeb\x57\xc5\xac\xe0\xbc\x8c\x0f\x90\xf7\xca\x73\xce\x17\x23\x62\x3b\xdc\xaf\xbd\xf6\x07\xf8\xd8\x0b\x36\x4f\x45\x31\xba\x0a\xd6\x9c\x79\xd8\xc1\xea\x4f\x25\xf6\x14\x54\x0d\x06\x55\xa3\x42\x32\x3b\x4d\xbf\xca\xf4\xdb\x95\x18\x27\xcb\xf4\xe4\x4a\x24\x8c\xe5\xae\x97\x15\xe4\x42\x24\x6c\x2a\xee\x33\x1d\x4a\x84\x16\x0c\x6e\xa9\xd3\xd2\x82\xbc\xa1\x4a\x3a\xa0\x4a\x62\xb5\xa2\xaa\x33\xa8\xcc\x00\x54\x43\x23\x07\x8d\x04\xda\x01\x35\xca\x48\xad\x37\xb3\x9d\x3b\xda\x57\x6a\x3a\x4b\xcd\x60\x2a\x54\x9d\xa1\x6b\x40\x52\x0d\x29\x43\xd2\x91\x72\x64\x60\x4d\x16\x70\xb0\x86\x1c\x20\xb9\xb5\xf2\xac\xa0\x4a\x72\x2d\x15\x92\x74\x1b\x53\x91\x37\xbf\x82\x8c\x89\xb8\x52\x8e\x70\x65\xbb\x35\xa1\xdd\xd0\xad\xb4\x74\xdb\xa9\x9a\xd6\x2b\xa5\x81\xd6\x0a\x57\xa4\xda\xbe\xb3\x48\x5a\x95\x56\xda\x0d\xf5\xd2\x22\x85\x8b\x27\xb8\xf3\x3b\xb3\x67\x9e\x7b\x84\xa0\x1d\x80\x1a\xe9\xcf\x6d\x06\xad\x77\x23\xb7\xbf\x6c\x88\x3a\x57\x0e\xe9\x13\x5a\x65\xae\x5f\x88\x50\x06\xc9\x0c\x2d\xd5\xdd\x50\x6a\xa0\xb2\xeb\xf4\x4b\x67\x63\xe9\x3c\x4b\xde\xbc\x7e\xfb\xcf\xf7\x7f\x8b\xfc\x3f\x12\xcf\x54\x96\xb1\xcb\x44\x4c\xd9\x65\x26\x68\xca\x39\xe7\xd9\x6c\x96\xb0\x4b\x3f\x13\x19\xbb\x56\xad\x48\x9e\x3d\x0e\xe7\xa1\x07\x82\x29\xb6\x96\xbc\xf7\xa7\x8e\x08\x1e\x56\x36\xc6\xe2\x31\x8f\x39\x2f\x82\x6c\x3c\x79\x10\x6c\x43\x9d\x61\xe9\x3f\x87\xd2\x86\x9a\xb2\xf8\xc1\x07\xa6\xce\xa3\xf8\xe8\xd1\xb1\xd3\xb0\xf7\x5f\x1a\x61\x57\x77\x79\x14\x7f\xbe\x78\x7f\x91\x17\x07\x00\x38\x4f\xf6\x11\x9c\x27\xd9\x1f\x52\xc6\xbe\x73\xe1\xd5\x9e\xd2\x78\xfc\x84\xb5\xe3\x71\x37\xaa\x1f\xaf\x74\xf1\x1b\xfe\x23\xa9\x87\x4a\x49\xfd\x6e\x25\xed\x63\xea\xa1\xe5\x1c\xef\x57\x73\xfc\x37\x8a\xf9\x11\x00\x00\xff\xff\x7a\xf4\xbf\x0c\x8a\x05\x00\x00"
-
-func runtimeSyntaxDartYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxDartYaml,
-               "runtime/syntax/dart.yaml",
-       )
-}
-
-func runtimeSyntaxDartYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxDartYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/dart.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxDockerfileHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xc9\x4f\xce\x4e\x2d\x4a\xcb\xcc\x49\xe5\xd2\x70\x81\xb3\xa3\xe3\xf4\x63\xb5\x54\x6a\x62\xf4\x10\xd2\x2a\x9a\x5c\x5c\x80\x00\x00\x00\xff\xff\x2c\x4e\xd6\x72\x2d\x00\x00\x00"
-
-func runtimeSyntaxDockerfileHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxDockerfileHdr,
-               "runtime/syntax/dockerfile.hdr",
-       )
-}
-
-func runtimeSyntaxDockerfileHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxDockerfileHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/dockerfile.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxDockerfileYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x90\x51\x6f\xda\x30\x10\xc7\xdf\xf3\x29\xac\x80\x28\x99\x54\xf6\x9e\x97\x2a\x24\x6e\x89\x48\x62\xe4\x84\x2e\x15\xa6\x92\x97\xdc\xd6\x08\x70\x22\xdb\xd5\x54\xe9\x3e\xfc\x64\x28\x05\x75\x0f\xdb\xcb\xfc\x76\x7f\xdd\xdd\xef\xe7\xfb\xd1\xed\xc1\xbe\x0d\x10\x92\xb6\x6f\x76\xa0\x5d\xed\x79\x2d\x58\x68\x6c\xe8\x11\x42\x88\x4b\x94\x3c\x40\x48\xfc\x69\xf2\xd1\xb3\x79\xfe\xba\xfd\x32\x46\x21\x66\x97\xb9\x71\xe0\x7b\x9e\x7e\xdd\x83\x39\x4d\x8e\x46\x64\x09\x6f\xbf\x7a\xdd\x9a\x63\x7d\x4b\x1c\x69\xb6\x3b\x65\x6e\xdf\x5d\x17\x3c\x4f\xef\x39\xcb\x31\x8f\xd2\xa2\x8a\xd2\x82\x72\xe4\xeb\x02\xe3\x3c\xc1\x2c\x9a\xd3\x0c\x69\xbd\x62\x25\x45\x5a\x3c\x62\x94\x24\x18\xb3\xd5\x13\xd2\xa2\xe2\x4f\x2b\x96\x16\x15\x3e\xb2\x6c\x9d\x53\x5c\x97\x94\xe3\x37\xc6\x97\x49\xca\x91\x15\xf3\x75\x9a\x25\x18\xf1\x07\x5c\xd0\x28\xab\x16\xf1\x82\xc6\x4b\x2c\x2b\xb6\x2a\xd3\x87\x22\xca\xb0\x5c\xd0\x2c\x0b\x36\x9b\xd0\x0c\xb2\x81\x70\xbb\xf5\xbd\xa3\xe2\x51\x7a\xae\x65\xb3\x03\x6b\xc8\x84\x0c\x52\x83\xb2\x2f\x60\xba\xf3\x17\x8c\x95\x16\x0e\xa0\xac\xf3\x17\x62\x8a\x42\x04\x28\xc4\x06\x85\xd8\x06\xd7\x5b\x92\xfe\xf5\xfb\x1e\x88\x3c\x0c\xa0\x8d\x54\xed\x79\x7e\x80\xa6\x93\xfb\x90\xf8\x93\xc9\x75\x7b\xdc\x1f\xdc\xd6\x33\xa6\x39\x95\xe1\x7b\x03\x71\x5c\xed\x98\x23\xff\x23\x02\xe5\x8e\x38\xbe\x04\x57\xb7\x3f\xbf\x5b\x62\xfb\xb6\x77\xae\x15\x4b\x18\xd6\x75\x8d\xf7\x69\x9d\xd3\x20\xbc\x7b\xa7\x3b\x96\x32\x56\x2a\x3b\x33\x56\x77\xea\xe7\x9f\x4c\xe1\x7f\x86\x5e\x27\x66\xd7\x0d\x2e\x12\x42\xcc\xfe\xe2\x72\x21\x9d\xae\x10\xbf\x48\x7d\x19\xfd\x57\x9d\x9b\xcf\x36\x37\xff\x43\xe6\x77\x00\x00\x00\xff\xff\xda\x2b\xb9\x29\x1a\x03\x00\x00"
-
-func runtimeSyntaxDockerfileYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxDockerfileYaml,
-               "runtime/syntax/dockerfile.yaml",
-       )
-}
-
-func runtimeSyntaxDockerfileYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxDockerfileYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/dockerfile.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxDotHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xc9\x2f\xe1\x8a\xd1\xd3\x48\xc9\x2f\xa9\x49\x2f\xd3\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\xb0\x0c\xf2\xbd\x11\x00\x00\x00"
-
-func runtimeSyntaxDotHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxDotHdr,
-               "runtime/syntax/dot.hdr",
-       )
-}
-
-func runtimeSyntaxDotHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxDotHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/dot.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxDotYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x8b\xdb\x40\x0c\xbd\xfb\x57\x18\xb3\x07\x7b\x21\x9b\xbb\xa1\xf5\xa1\x1f\x50\x68\xd9\x52\x5a\xc8\xc1\xb0\xc8\x1e\xc5\x16\x19\xcf\x0c\x1a\xa5\x21\x45\x3f\xbe\x8c\x67\x9b\xec\xc7\xa1\x85\xfa\xe4\x91\xf4\xf4\x9e\x9e\xb4\x27\x8b\x72\x0e\xd8\x96\xc6\x4b\x51\x18\x14\x1c\xa5\x2d\xca\xb2\x2c\x53\xca\xc1\x82\x6d\x59\xf5\xfd\x5d\x6d\xbc\xe8\xf4\xb3\xb9\xa9\x8a\x82\x8f\x16\x63\x2e\xda\x94\x19\x5d\xa6\xa2\xa1\x36\x34\x31\x84\x59\xd1\x4c\xa8\xf9\xd7\x79\x83\x1a\x8f\xc3\xfa\x6a\xfa\x7e\xa8\x1e\x81\x51\x40\x70\x41\x27\x6d\xc6\x02\xb3\x3f\xd5\x33\x82\xd1\x48\xbf\x50\x05\xc8\x36\x5a\x0f\x93\xee\xc9\x5a\xdd\x7b\x27\x4d\x37\x7a\xeb\x59\x47\x74\x82\xac\xa3\x77\x51\x18\xc8\x89\x1a\x1c\x3d\x83\xe0\x57\x35\xc4\x6a\x28\x8a\x67\x21\xef\x56\x58\x9d\xc6\x58\x9b\x36\x9a\xfa\xd7\xa3\xa5\xa0\x16\x06\xb4\x29\x40\xd3\x2c\xf9\x55\x83\x9b\x2c\xae\x70\x70\x23\x66\x70\xa6\xbc\xb6\x68\x3a\xb5\x70\x46\xae\x63\xd3\xe9\x02\x3c\x91\xd3\x65\xb4\xb4\x90\xe8\x42\xce\xa2\xcb\xc5\x69\xf0\x88\x41\x5d\xcc\x39\xcf\x06\x99\xdc\xa4\x9e\x09\x9d\xc0\x2a\x2f\xc0\x84\xb5\x21\x6e\x3a\x0d\xc8\x14\x66\x64\xc2\xa8\xc1\xb3\x3c\xac\x92\x1e\x2e\x62\x18\xdc\x21\x95\x6a\xc4\xd0\x74\xca\xa9\x81\x32\x4e\x47\x0b\xac\xec\x93\x9b\x1a\x61\xc1\x6c\x61\x76\x2f\xce\x10\xb0\x4e\x9b\x6c\x3a\x8d\x64\x30\x66\x6f\xe3\x01\x4f\x1a\xe5\x6c\xb3\xcd\xcf\x0c\xf9\xf1\xed\xb3\x9e\xb2\x29\x27\x32\xf2\x7c\x67\xe7\x65\xf0\xb6\x2d\xcb\xea\x8d\x6e\xde\xea\x66\x53\x15\x8f\x99\x75\x17\xe0\xe4\x2e\x4a\x1a\x32\x5f\x47\xfa\xa2\x00\xaf\x2b\xae\xaa\x4b\x0c\x9d\x79\x11\x89\x07\x0a\xeb\x1d\xf4\xfd\xdd\x35\xfa\xe4\xd0\xfe\x7c\x4f\x99\x02\x8e\x04\xf6\xdd\x0c\x7c\x85\x5e\xe4\x2c\xeb\x69\xbd\x92\xb1\xdd\xbe\x94\x71\xf3\x17\x3e\xf1\xc6\xb7\x65\x55\x7f\xbf\x7f\x7f\xaf\xbb\xdd\x4e\x3f\x7e\xda\x7d\xf9\xd0\xb4\xdd\x3f\x90\xf5\xfd\xed\xab\xa9\xfb\xdb\xed\x7f\x30\xfe\x0e\x00\x00\xff\xff\xd2\x53\x55\xa9\xb1\x03\x00\x00"
-
-func runtimeSyntaxDotYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxDotYaml,
-               "runtime/syntax/dot.yaml",
-       )
-}
-
-func runtimeSyntaxDotYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxDotYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/dot.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxElixirHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcd\xc9\xac\xc8\x2c\xe2\x8a\xd1\x4b\xad\x50\xa9\x01\x91\xc5\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x2e\xb5\x63\xa5\x15\x00\x00\x00"
-
-func runtimeSyntaxElixirHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxElixirHdr,
-               "runtime/syntax/elixir.hdr",
-       )
-}
-
-func runtimeSyntaxElixirHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxElixirHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/elixir.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxElixirYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\x7f\x6f\xdb\x36\x10\xfd\xdf\x9f\xc2\x71\x5d\x44\x72\x11\xa3\xff\x36\x18\x9a\x15\x4d\x06\x14\xe8\x0f\xac\xeb\xd6\x60\xa2\xc4\x50\xe2\xc9\x26\x4c\x91\xca\xf1\x14\xdb\xcd\xf5\xbb\x0f\x94\x14\xc7\xd9\x16\xc3\xd0\x51\xef\x9e\x8e\x8f\xc7\xbb\xab\x8d\x05\xda\xb7\x70\x3e\x05\x6b\x76\x06\x27\x13\x0d\x04\x15\x9d\x4f\xa6\xd3\xe9\x34\x7a\x9d\x6a\xe0\x7c\x3a\x13\x62\x09\xbb\x39\xf7\x26\xcc\x67\x93\x09\x76\x16\xc2\x40\x3b\x9b\x06\x52\x04\x0d\x38\xea\x99\x65\xa2\xca\xc0\x84\x9d\xab\x18\xa1\x61\x6d\xee\x18\x7d\xe7\x34\x37\x6a\xc7\x8d\x71\xac\x9c\x66\x8f\xec\x3c\x31\xad\xd1\x6f\x19\x95\x09\xc0\x08\x83\x5d\x6b\x26\xcb\xc6\xb1\x05\xb7\xa2\x35\x83\x85\x86\xdb\x8e\x64\xbf\xd0\x10\x08\xbb\x8a\x3a\x04\x26\x2f\x93\x40\x68\xdc\x8a\xab\xb5\x42\x6b\x02\xa5\x6c\x82\x4c\x14\xf9\x86\x4b\xe3\x14\xee\xb9\x34\x34\x72\x4a\xef\x2d\x28\xc7\xb5\xf5\x8a\xb8\xee\x5c\x45\xc6\x3b\x36\x8e\x60\x05\xc8\xf1\x73\x6e\x54\xcb\xce\x58\x76\x5d\x53\x02\x72\x6b\x34\xb7\x1e\x89\x11\x6a\x40\x70\x15\x30\x75\xad\x85\x94\x93\xd2\x10\x97\x7b\x82\xfe\x93\x01\x94\xc1\xfc\x80\x71\x5f\xd9\x2a\x24\xd6\x50\x27\x1a\x2c\xac\x14\x01\xc3\xae\x82\xb6\xdf\x72\xd5\x29\xd4\xc3\xb3\x65\xd3\xb4\x96\x1b\x55\xa1\x1f\x9e\x2d\x37\x5e\x77\x16\xd8\xdf\x01\xa2\xd1\xaa\xb4\xc0\x2d\xb7\xe8\xc9\x57\xde\xf2\x70\xfe\xf4\x82\x83\x59\x19\x2b\xb3\x0a\xc3\xf6\xfd\xd7\x3f\xbe\x5f\x7e\xfe\x96\xb3\xa9\x19\x6c\x00\xee\x9c\x85\x10\xb8\xf2\x4e\x47\x41\x3a\x9e\xdf\x79\x0d\x1c\xc0\xd6\x1c\x5a\xb5\x75\xc3\x53\x5a\xe3\x36\xe3\xb2\xf1\xce\x90\x47\x0e\xe0\x34\xc3\xce\xd0\xb8\x17\xaf\x80\xa4\x72\x5a\x76\xad\x56\x04\xd2\xb8\x1e\x31\xae\xbf\x96\x68\x7c\x1b\xcd\xa3\x5b\xb5\xad\xdd\xb3\x71\xa1\x85\x2a\x26\x75\x03\x12\xa1\xe6\x2e\x00\x6b\xcf\xe0\x74\x2a\x44\x39\x7b\xae\x7e\xac\x51\x21\xa6\x65\x48\xfc\x6d\x67\x10\xb8\x52\x01\xb8\x76\x8c\x50\x81\xb9\x03\x56\x35\x01\x32\xe1\x9e\x2b\x45\xd5\x9a\x11\x42\xd5\x01\x87\xae\x05\xe4\xdb\xce\x53\xcc\xc1\x13\x2b\x43\x6b\x4d\x15\x13\x51\x7b\xe4\xad\xa1\xf5\x20\x62\x54\x51\x79\x17\x48\x3d\x88\x10\x22\x7b\x77\xf6\x77\xfe\xea\x48\xe6\x03\x61\x39\xd4\xc6\xc0\xcb\x5e\x9f\xbd\x19\x59\xff\xa6\x0d\x55\x77\x3e\x9d\xdd\x64\xc5\x4d\xbe\xb8\xe1\x97\x3b\x21\xee\xb3\xe2\x67\xbe\x10\xe2\xe7\x7f\xa2\x1e\xe8\x62\x96\x64\x85\x98\xe5\x9c\x88\xf8\x9b\xa5\xe9\x42\xcc\xf8\x65\xf6\xfb\xf7\xfc\xe2\x28\xc0\x01\x49\xb2\x22\x8d\x48\x3a\x22\xbf\x64\xc5\xdb\x7c\xf1\xf6\xe0\xcf\xb2\x22\x8f\xfe\xfc\x80\xcc\xb3\x62\x1e\x91\xf9\x01\x29\xb2\xa2\x88\x48\x31\x22\x27\x59\x71\x92\x2f\x4e\x9e\x17\x79\x9a\x64\xc5\xe9\x28\xf1\x34\x4d\x17\xa7\xfc\x32\xbb\xdd\xe6\x4f\xf5\xf5\xc0\xb1\xbc\xdb\x6d\xfe\xa8\xae\xf7\x1e\x8b\xeb\x81\x63\x6d\x3d\x70\x2c\xed\x76\x9b\x1f\x94\x3d\x14\xcf\xbe\x29\xbd\x5d\x96\xa8\xaa\x0d\x50\xe8\x6f\xe5\x9e\xe3\xfe\x42\x64\x1c\x03\x0b\x91\xb0\x10\xe9\xd1\x05\x35\x63\xb1\xbd\xc8\x8a\xfb\x7c\xb9\x98\xf3\x8b\xf9\xec\xa9\x73\x59\xa2\x59\xad\x7b\xce\x23\x29\xb2\x46\x5a\x9c\x9a\xcb\x0d\xec\xb7\x1e\x75\xbf\xe5\x79\xa6\xce\x7e\xc4\x8a\x19\xed\xeb\xb3\x37\x32\x5f\xcc\x9e\xa3\x97\x89\x86\x50\xa1\x29\x81\x09\x02\xa5\xcf\xb5\x02\xec\x62\x03\x81\x66\x15\x02\x20\x8d\x46\x0e\x83\x72\x7c\x31\x4e\x6a\xb0\xa4\x0e\xce\xa1\x43\xf4\xd0\x18\x12\x10\x3d\x8e\xeb\x61\xdc\xd6\xb6\x73\x9b\x38\xd1\x3a\x82\xd1\x3c\x06\x19\xdf\x1f\x82\x3c\xe9\xd3\x21\xd5\xa4\x62\x01\x14\x42\x84\x85\x10\xbf\xfe\xef\xb9\x8f\xfb\xc1\x68\x70\x64\x6a\x03\xb8\xec\xc7\xdb\x78\x32\x29\xdf\xbf\xfb\xf8\xf1\xea\xab\x94\x2c\xe5\xe5\x87\xc1\x5e\x7d\xfe\xab\xb7\x9f\xbe\x5c\xfe\xf9\xf1\xaa\x5f\xf6\xc3\x00\x42\xbf\x2e\xad\xaf\x36\x52\xc6\xa9\xda\x87\x7a\xd2\xbf\xe4\x75\x8c\x9d\x5c\x5f\x5f\xf3\xb7\x2f\x97\x5f\xf8\xb7\x0f\xd7\x9f\xae\x58\x88\x8b\xe1\x7f\xc8\x71\x8b\xd0\xa2\xaf\x96\x61\x0d\xa5\x1a\x3a\x4e\x7c\x5f\xbc\x38\x59\xbe\xba\x48\xa6\x3c\x4f\x67\x93\x7f\x02\x00\x00\xff\xff\x5b\x2b\xa6\x36\x18\x07\x00\x00"
-
-func runtimeSyntaxElixirYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxElixirYaml,
-               "runtime/syntax/elixir.yaml",
-       )
-}
-
-func runtimeSyntaxElixirYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxElixirYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/elixir.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxElmHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcd\xc9\xe5\x8a\xd1\x4b\xcd\xc9\x55\xe1\xe2\x02\x04\x00\x00\xff\xff\x4d\xbc\x1f\x55\x0c\x00\x00\x00"
-
-func runtimeSyntaxElmHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxElmHdr,
-               "runtime/syntax/elm.hdr",
-       )
-}
-
-func runtimeSyntaxElmHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxElmHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/elm.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxElmYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x92\xdd\x4a\x33\x31\x10\x86\xcf\xf7\x2a\xc2\x52\x68\xfb\x41\x7a\x01\x0b\x9f\x22\xfe\x80\x07\xd2\x13\x0f\x16\x3b\x15\xd2\xdd\xd9\x36\x98\x9f\x65\x33\x05\xad\xe3\xbd\x4b\x52\xaa\xb5\x5b\x29\x08\x3a\x81\x39\x78\x67\x92\xf7\x99\x30\x8d\x36\x48\x2f\x2d\x16\x02\x8d\xcd\xb2\x1a\x09\x2b\x2a\x32\x21\x84\x88\x25\xa7\x2c\x16\x22\x07\x98\xa0\xb1\x83\x3c\xcb\xba\xb5\xc1\xb0\xad\x4b\x11\x48\x11\x5a\x74\x94\x5a\x16\x23\x15\x58\x19\xad\x02\x57\x2a\x20\xa3\x89\xe9\xb9\xf5\x41\xbb\x25\xeb\x86\xb5\x6d\x7d\x47\xac\x1d\x1b\x24\xb6\xbe\x5e\x1b\x64\xdf\x70\x52\x69\x85\x8e\x23\x09\x8f\x01\x16\xf9\x11\x87\x11\xc0\x7f\x06\x28\x18\x40\x9e\x8d\x77\x1d\x5b\xf8\x64\x3f\xbb\x90\x0f\xf3\x98\x94\xdc\x00\xd4\xf3\x7f\xfb\x2f\xe9\x1a\x1d\xe9\x46\x63\x57\x88\xfc\x71\x34\x53\x72\xf3\x6d\x6f\xe5\x5d\x20\xe5\x68\x12\xa8\xd3\x6e\xb9\x1d\x37\x46\x20\xd5\xa5\x61\xd3\xc9\x3f\x74\x74\xf5\x11\x35\x3c\xe9\x36\xa1\x01\x4c\x3e\xd5\xbd\x1f\xdc\xc5\xbe\x63\x8b\x95\x56\xe6\x72\xa5\xba\xaf\x57\xfb\x54\xe2\x08\x56\x1f\xe9\xcf\x70\x7a\x34\xc3\x43\x98\xe1\x2f\xb2\xd8\xb4\x24\x3d\x06\x29\x0f\x21\x06\x27\xec\xc8\xd7\x3e\x2e\xdb\xfd\xf4\x6a\xca\x65\x59\xf2\xcd\x6d\x79\x77\x3d\x2e\xce\x4f\x7a\x01\xbc\xf6\xdc\x24\xc0\xdb\xcf\x0d\xdf\x03\x00\x00\xff\xff\x24\x7c\xac\xca\x9d\x03\x00\x00"
-
-func runtimeSyntaxElmYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxElmYaml,
-               "runtime/syntax/elm.yaml",
-       )
-}
-
-func runtimeSyntaxElmYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxElmYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/elm.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxErbHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2d\x4a\xe2\x8a\xd1\x4b\x2d\x4a\x52\xa9\x89\xd1\x2b\xca\x28\xc9\xcd\x51\xe1\xe2\x02\x04\x00\x00\xff\xff\xf9\x74\xbd\xae\x15\x00\x00\x00"
-
-func runtimeSyntaxErbHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxErbHdr,
-               "runtime/syntax/erb.hdr",
-       )
-}
-
-func runtimeSyntaxErbHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxErbHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/erb.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxErbYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\x7f\x6f\xdb\xc8\x11\xfd\xbb\xfe\x14\xb4\x22\xd5\xbb\x72\x25\xb7\xff\x04\xa8\xce\x67\xe6\xda\x28\x45\x80\x6b\xdc\x02\x01\x9a\x1e\x7f\x28\x4b\x72\x48\x2d\xb4\xdc\xa5\x77\x97\xb2\x75\x79\xfe\xee\xc5\x52\xb2\x65\xc7\x6e\x0c\x7a\x21\xbc\x19\xce\xbc\xd9\x79\x33\xac\xa5\x22\xbf\xeb\x68\x11\x91\x2d\x4e\x4e\x2a\xf2\x54\xfa\x45\x74\x12\x45\x51\x14\x6c\x5a\xb4\xb4\x88\x46\x69\x3a\x27\x5b\x8c\x91\xa6\x73\xbb\xf6\xad\x1a\x8f\x4e\x4e\x6c\xaf\xc8\x2d\x06\xcf\x59\x44\xd6\x1a\xbb\x88\x46\x97\x49\x7e\x9a\xcd\xa7\xf1\xd5\xe8\x60\x70\xbb\xb6\x30\x6a\xee\x45\xb3\x88\x46\x2c\x96\xfc\x32\xb9\xc8\x62\x26\x58\x51\x58\x94\xd6\xe8\x5d\x8b\xaa\xb2\xe4\x1c\xba\x4e\x91\x87\x25\x01\xeb\x65\xa9\x08\x4e\x56\x84\xbe\x92\x86\xc7\x28\x98\x70\xc4\x6a\xa3\x3d\x8f\x51\x31\x09\xc3\x21\x1b\x28\x53\x6e\x6e\x7a\xe3\x09\x96\xc7\x28\x05\xd3\x5b\xe1\xd0\x79\x69\x34\x47\x49\xda\x93\x45\x29\x3d\xa1\x34\xac\x22\x28\xa8\xc6\x9a\xbe\xe3\xa8\x98\xf0\x82\x29\xe9\x86\x78\x20\x05\xf2\x42\x2a\x87\x5a\x43\x0a\x65\x1a\x48\x0b\x05\xcf\x41\x2d\x2b\xa8\xe2\x31\x6a\x49\xaa\x72\xe4\x51\xcb\x86\x95\x62\x48\x82\xde\x12\x47\xa0\x85\xda\xd8\x16\x4c\xf2\xb8\xb6\xa2\x25\x0c\x67\xf0\x5e\x27\x7f\x99\xbd\xcd\xb0\xb6\x90\x90\x6d\x03\xa9\x59\xd7\x7b\x38\x8e\x4d\x51\x61\x43\xbb\x86\x34\x94\x28\x48\x41\x51\x43\xba\x82\x92\x4c\x6f\x78\x8c\x56\x30\xa9\xd1\xc1\x6e\x38\x5a\xd2\x3d\x93\x9e\xda\x80\x93\x67\x02\x64\x39\xb4\xd8\x42\x1b\xb6\xcf\x05\x57\x5a\xd9\x79\x0e\xc3\x14\x3a\xcf\x86\x4a\x31\xdc\x44\xef\xbb\xde\x73\x74\x4c\x58\xd1\x42\x96\xbe\xb7\x84\xf0\x98\x26\x5c\x3d\x8f\x71\x03\xcb\x3a\x78\xf4\xc5\x8e\xc3\x31\x6f\xe5\x86\x78\x0c\x27\xda\x0e\x8e\x58\x39\x14\xab\xa8\xf4\x1c\xae\x15\x4a\xc1\x99\xde\x96\x04\xd7\x09\x0d\xe7\xad\xd1\x0d\x5c\xcf\x0a\x74\x68\x5b\x61\x77\x1c\x9e\xee\xbc\x08\xdd\xf4\xb2\x25\x78\x2b\xca\x0d\x7a\xa6\x78\x8c\xad\xb0\xd8\xca\x8a\x0c\x6e\x0b\xcb\x59\x34\x9f\xe2\x8a\xbf\xaa\x99\x39\xdd\x79\xd2\x15\x55\xcf\xc4\x53\x98\x6a\x87\x4a\x6e\x11\xa4\x88\x35\x89\x8a\x51\x68\x7f\x6d\x4c\xe8\xb7\x97\x5e\x11\xbc\x28\xc2\x79\x70\xc6\x9a\x91\x08\x4d\xb4\x83\x17\x7f\x25\x6b\x67\xa9\xb3\xa6\x7c\x96\x69\x7f\xa3\x70\x7e\xa7\xe8\x35\xa2\x1d\x95\x52\xa8\x45\x34\xfa\x63\x92\xff\x94\x24\x0b\xd7\x89\x92\x16\x59\x96\x4d\x7f\x7a\x5e\xcc\x22\x1a\x25\x8b\x9f\xb3\x07\x50\x56\xa4\xbd\xac\x25\x85\x99\x61\x42\x79\x14\x4d\x69\x94\xb1\x58\x93\x6c\xd6\x1e\x6b\x4b\x35\x64\xf5\xa0\x0b\xa3\x9b\x8a\x5c\x89\x30\x8e\x30\xba\x54\xb2\xdc\xc0\xe8\xda\x94\xbd\x83\xd1\xca\x88\x0a\x46\xb7\xa6\x77\x64\xb6\x64\xe1\xe4\xef\x0f\xad\xb1\xe5\x9e\x3e\xbc\xb0\x0d\x79\x84\x69\xc7\x56\xa8\x9e\x70\x2b\x2b\xbf\xe6\x3f\x3f\x90\x2a\x8d\x76\x5e\x68\x3f\x77\xde\x4a\x1d\xe6\x35\x1d\x25\x79\x3a\xca\xa6\xe9\xe8\x85\x8f\xee\xdb\x62\xcf\x3e\x96\xfc\x4d\xf2\xe7\xd9\x5f\x7f\x99\x7d\xc8\xbe\xbd\xfd\xd3\xdb\xfb\xff\x13\x6f\xde\xdb\x70\x0d\xac\xf6\x1d\x0b\x8a\x5b\xfb\xc3\x8f\x46\x7a\x94\x6b\x6b\x5a\xe2\x8b\x8b\x8b\x24\x8f\xfe\x90\x9d\x1f\x63\xb4\x2d\x69\x1f\x36\xcb\xe9\x6c\x36\x3f\x8f\x67\xb3\x57\x1a\x76\x79\xfa\xfe\xfa\xef\x9f\xff\xfb\xaf\xe5\xfc\xfc\xd8\x9c\x8a\x6a\xd1\x2b\xbf\xdf\x50\xe1\xcf\x79\x61\x87\x48\x93\xd1\x23\x46\x3a\x48\x6b\x72\x75\x44\xf6\x6b\x2d\x4a\xb2\x93\x97\x69\x26\x98\x3c\x86\xb7\x83\x28\x7f\xd0\x77\x2f\x3c\x1d\xb8\xa7\x69\xc1\xfe\xb6\xfc\xc7\xc7\x4f\x58\x7e\x7a\x0f\xa1\xa4\x70\x10\xba\x42\x41\x8d\xd4\x28\x2c\x89\x0d\x4a\xe1\x08\xa5\x12\xce\xa1\xa2\x3a\xfc\x4b\x4d\x55\x9a\xc6\xa8\x0c\x48\x39\x0a\x87\xac\x11\x16\x04\x69\x17\x06\xb8\x16\x01\xae\x8d\x85\xac\x21\x35\x5a\x53\xf5\x8a\xa0\xe9\xce\x43\x4b\x05\x6d\x3c\x8c\x85\xa5\xca\xc0\x92\x2b\xfb\x30\xf3\xde\xee\xc2\xd9\x5b\x0d\x47\xaa\x86\xeb\xbb\x30\x33\x6b\xd2\xf0\xb6\x27\xf4\x3a\xa4\xef\xb5\x0a\x2b\xb9\xd7\x5e\x2a\xdc\x06\xe3\xed\x5a\x2a\xc2\x2e\xec\x40\x9e\xa6\xc5\x4b\x25\xcf\xb7\x62\xd0\x43\x9a\x8e\xf1\x0e\xef\xde\xf1\x38\x4d\x8b\xe4\x97\xd9\x6f\xd9\xf9\x5e\x1e\xbf\xad\xc4\xec\xf7\x6c\xfa\xf0\x66\x2b\x1a\xd2\x5e\x1c\x24\xc4\x92\x28\xca\x90\xf3\xc5\x83\x6f\x76\xfe\x7a\x96\x56\x94\xd6\x1c\xee\x74\xb5\xfa\xf0\xf1\xd7\xe5\x6a\x85\xd5\xea\xd7\x8f\x9f\x96\xab\xd5\x53\x66\x85\x0d\x93\x74\xcc\x72\x7a\xc1\x92\xfc\x22\x03\x4b\xd3\x34\xbd\xe0\x7c\x7a\x91\x48\xd3\xde\x65\x53\x4c\x6c\x9a\x7e\x63\x49\x7e\x7f\x30\xde\x73\x3e\x4d\xd3\xfb\x83\xf9\x79\xbc\x42\xf5\xe1\x83\xf8\x35\xc9\xbf\x66\xd3\xaf\x98\xdc\xa5\xe9\xb7\xf0\x66\x78\xe1\x47\x83\xc4\x86\x49\xda\xc7\x4f\x47\x21\xc1\x08\x93\xe4\xdf\xff\xc9\xe2\x27\x01\x1e\x11\x96\xe4\x3c\x20\xfc\x80\x5c\x26\xf9\x55\x36\xbd\x7a\xb4\x27\x49\x9e\x05\x7b\xf6\x88\x8c\x93\x7c\x1c\x90\xf1\x23\x92\x27\x79\x1e\x90\xfc\x80\x9c\x86\x4f\xf3\xf4\xf4\x79\x39\x8d\x25\xd2\x8b\x68\xf4\xe6\x95\x32\x1e\x6c\x67\x2c\xc9\xcf\x0e\xd4\xcf\x38\x9f\x9e\x61\x92\xdc\xdc\x66\xcf\x79\x0f\xc0\x53\xda\x37\xb7\xd9\x91\xf5\x60\x7d\x4a\x7a\x00\x9e\x72\x1e\x80\xa7\x94\x6f\x6e\xb3\xef\x18\x1f\x77\xc1\x9b\x24\xff\x96\xcd\xa7\x63\xbc\x19\x7f\x67\x9c\xef\xcb\x0a\x3e\x47\xa7\xa3\xd7\x0b\x1d\xbd\x5c\x0e\x97\xb3\xf8\x2c\x5e\x5e\x7f\x3e\x8b\xbf\xdf\x12\xf9\xf2\xfa\xf3\x0f\xf6\x84\x37\x55\xd0\x25\xfb\xf2\xe5\x0b\x3e\x5f\xbf\xbf\xc6\x87\x8f\x5f\xfe\xb9\x44\x9a\xc6\xfb\x87\x8f\x4e\xfe\x17\x00\x00\xff\xff\x6d\x99\xea\xb9\x6e\x09\x00\x00"
-
-func runtimeSyntaxErbYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxErbYaml,
-               "runtime/syntax/erb.yaml",
-       )
-}
-
-func runtimeSyntaxErbYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxErbYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/erb.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxErlangHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2d\xca\x49\xcc\x4b\xe7\x8a\xd1\x4b\x2d\xca\x51\xe1\xe2\x02\x04\x00\x00\xff\xff\x11\xca\xcc\x3c\x0f\x00\x00\x00"
-
-func runtimeSyntaxErlangHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxErlangHdr,
-               "runtime/syntax/erlang.hdr",
-       )
-}
-
-func runtimeSyntaxErlangHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxErlangHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/erlang.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxErlangYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\x5f\x8f\x13\x37\x10\x7f\xcf\xa7\x88\x72\x54\xec\xd2\x26\x07\xb4\x52\xcb\xbd\x44\x27\x0a\x2a\xaa\xca\x3d\x40\x55\x44\x7c\xb2\xbc\xf6\xec\xc6\x3a\xaf\xbd\x1d\xcf\xde\x25\x30\xf9\xee\x95\xbd\xd9\x5c\xe0\x10\x50\x2a\x35\xd2\xee\xac\xff\x8c\x67\xe6\xf7\x1b\xcf\xa4\xb6\x0e\x68\xdb\xc1\xd9\x14\xd0\x29\xdf\x4c\x26\x06\x08\x34\x9d\x4d\xa6\xd3\xe9\x34\xad\x7a\xd5\xc2\xd9\x74\x26\xc4\x02\xd0\xdd\x9b\x4d\x26\xd8\x3b\x88\xc3\xfa\x7c\x6a\x0d\x78\xb2\xb5\x05\xcc\x7b\xaa\xd5\xf9\xfc\xed\xe5\xea\xe1\xfc\x89\x9a\xbf\x93\x97\x0f\x84\xa8\x66\x79\xe7\xc9\xf4\x15\xc0\xd9\x74\x4d\xd4\x9d\x9d\x9e\x0e\xb6\x16\x01\x9b\x53\x13\xf4\x29\x42\x0d\x08\x5e\x83\x6c\x95\xef\x95\x3b\x35\x8a\x94\x4c\x6e\xc5\xc5\x9a\x5a\xb7\xb7\xa5\x83\x8f\xa4\x3c\x2d\x7c\xdf\x56\x07\x83\x0f\xe7\x4f\x2e\xbf\x2f\x84\x58\x0c\x5f\xe5\xb2\x80\xf9\x72\xfc\x3e\xd8\xff\x9c\xf6\xfb\x47\x3f\x3c\xde\x09\x71\xb2\x52\xf3\x77\xe7\xf3\xb7\x59\xf5\x53\x8a\x55\x08\x6e\x50\x2b\x08\x7b\xe0\x5a\xb9\x08\xe5\x17\x4c\xdc\x13\x42\x88\xa5\x10\xaf\xde\x3f\xda\x7d\x0b\x14\xd6\x13\x06\xd3\x6b\xb2\xc1\x1f\x83\x11\x49\x11\xb4\xe0\x69\xef\x91\xaa\x09\x90\x95\x37\xe9\x51\x2e\x06\xae\xd2\xa0\x82\xc6\x7a\xae\x7c\x20\xae\x02\x72\x15\x1d\x57\x11\xb9\xda\x04\x64\xad\x22\xb0\x56\xa4\xd7\xac\x83\x37\x6c\xec\x35\x83\x37\x5c\xf7\x9e\x6d\xcd\x0e\x88\x93\x5e\xa8\x39\x20\x07\x04\x17\x81\x11\x34\xd8\xeb\x24\x5b\x26\xdc\xf2\xcd\x1a\x3c\x6f\x02\x96\xdf\xc8\x74\xab\x34\x86\x0f\x58\xee\x10\x3a\x0c\x3a\x87\x35\x2f\xda\x60\x7a\x07\x0c\x9b\x2e\x20\x25\xeb\x01\x0d\x5b\xaf\x5d\x6f\x60\x94\xd2\xd9\x8a\x0d\xd4\xd6\x03\xf7\xde\x40\xcd\xb6\x1e\xde\x79\x90\xfd\x06\x6f\x6c\x9a\x61\x70\xe9\x85\x18\x90\x6f\x14\x7a\xeb\x9b\x63\x06\x6f\xd3\x79\x91\x3d\xcb\x5e\x2c\x57\x43\x56\xc8\xa3\xb4\xf8\x6c\x94\xad\xf2\xe3\xd4\x31\x63\x1d\x68\xab\xc6\x0c\x82\x0d\xc9\xca\x7a\x85\x5b\xde\x0b\x1b\xae\x41\x73\x0b\x31\xaa\x06\xe4\xdf\x3d\xf4\x20\xd3\x45\x60\xb2\x2d\x14\xb2\xf7\x96\x38\x92\x6a\xbb\x92\x55\x15\x59\x75\x9d\xdb\xb2\xa2\xd0\x16\x92\xc2\x78\x56\xfa\x74\x36\x52\xb9\x3f\x55\x16\x9d\x42\x62\x0a\x32\xed\x4c\x12\x36\x36\x92\xf5\xcd\x61\xa2\x76\x41\xe5\x1d\xd6\x13\x34\x80\xbc\x3f\x22\x49\x02\x6c\xd3\x51\x54\xc8\x68\xdf\x01\x47\xc2\xa4\x7a\x6b\x64\x4b\x30\xac\x68\xb0\x8e\xf5\x1a\xf4\x95\x2c\x82\x33\x52\x07\x03\x9c\x88\x84\x18\xf3\xa0\x64\xa3\x08\xd8\x80\x03\x02\xb9\xe7\xd5\x40\x1b\xbc\xa5\x80\x6c\x6c\xd4\xc1\x7b\xd0\x24\x7d\x52\x05\x97\xb3\x9b\x01\x53\x96\x0e\x84\xc1\xc6\x12\x67\x77\x3f\x19\xf2\x32\xad\x05\xe4\x46\x61\x95\x20\xd4\xc1\x39\xd0\xc4\x0d\x10\x37\x18\xfa\x4e\x3a\x50\x06\x90\xd7\xca\x11\xef\xa3\x3d\x3e\xe9\x10\x96\x0d\x49\xca\x22\x47\x76\x58\x2f\xd9\x46\x59\x28\x97\xf2\x3f\x83\x77\xe0\x8f\x06\x5c\x38\x55\x08\x50\x7e\xf0\x31\xdd\xa3\x7c\x6d\x47\x53\x9c\x51\x6d\x55\x97\x1e\x79\x05\x5b\x1e\xea\x04\x77\xd6\x70\xce\xef\x11\xaf\xc1\xc6\x3e\xdb\x0f\x77\x86\xa9\xef\x1c\xb0\x03\xdf\xd0\xba\x64\x67\xfd\x55\x3e\x32\x45\x50\x7c\xda\xa1\x0f\xc9\x1e\xdc\x1a\xbd\x39\x58\x45\xa8\x87\xa3\x4b\x76\x41\x99\x91\x9b\x56\x5d\x81\x4c\x6b\xc9\xdb\x22\x81\x98\xe0\x28\xb9\x55\x1b\x6e\xad\xe7\x61\x9b\x4c\x2a\x60\x78\xcf\x63\x91\xd9\x2b\x97\x9c\x44\x4c\xe2\x86\x43\x07\x5e\x0e\xf1\x59\x33\xb2\x95\x4d\x17\x52\xbb\x90\x8a\x50\x68\xdb\x54\xad\xf6\x19\x90\x24\x61\x70\xb7\x84\x74\x78\x30\xb4\xc7\xa8\x90\xb5\x53\x0d\x4b\xeb\xeb\xc0\x10\x4b\xee\x7a\x6c\x0e\x79\xd5\xf5\x29\xac\xc6\x46\x02\x2c\xc0\x94\x4b\xc6\xd0\x7b\xc3\x11\x5c\xcd\x11\x68\xcc\xae\x21\xa9\x3b\x75\xe3\x0b\x99\xf1\x94\x63\x3e\xca\xd0\x11\x8f\xc4\x2f\xd3\xc5\xa3\x04\xa5\x8e\x4c\xd8\x7b\x3d\x00\x76\x9b\x21\x83\x9b\xbd\xcf\x87\xf4\x7e\xb4\x9d\xea\x23\x82\x8d\xdf\x5a\x1e\x3f\x6a\x84\x27\x89\xc6\xb1\x9c\x6c\xdb\x2a\xb8\xa1\x0f\xa7\x5f\x24\x85\xa9\x19\xdc\x9f\x1d\xa6\xc0\x9b\x0f\x27\xe2\x95\xed\x72\xfd\x11\x62\x71\x3b\x3b\x34\xf4\xe9\xea\x72\x72\x32\x3d\xfa\x1d\xf5\xb3\x7d\xe9\x7a\xba\x56\xa9\xa9\x7d\xb7\x98\x7d\xe5\xce\x64\x68\xa5\xaa\xda\x23\x5d\xdf\x17\x42\xe4\x89\xcb\x7f\xa3\x5d\xac\x1e\xce\x7f\xbe\x7c\xff\xe3\x8e\x37\xab\xf3\xf9\x73\x35\xaf\x73\xc7\x7e\xbc\xe3\xfe\x78\xfc\xd3\x8e\xff\x3c\x1e\xff\xb2\x2b\xef\x34\xe5\xe1\x4a\xdc\x05\x4c\xcc\x3e\x46\xec\x78\xe6\x73\x90\x4d\xbe\x1a\xae\xff\x84\xd6\xff\x0a\x56\x9b\xff\x53\xdc\x05\x49\x14\x42\x3c\xb8\x03\x94\x78\x20\x44\xf9\x05\x58\x28\x98\xd4\x47\x8b\xd7\x17\xbf\x5e\xf0\xf3\x17\x6f\xfe\x78\xc6\x7f\x5d\xbc\x7c\xfd\xfc\xc5\x1b\x7e\x79\xf1\xfa\x19\xff\x76\xfe\xf4\xf7\xf2\x6c\x39\xfb\x27\x00\x00\xff\xff\x80\xeb\x8d\x34\x8b\x0a\x00\x00"
-
-func runtimeSyntaxErlangYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxErlangYaml,
-               "runtime/syntax/erlang.yaml",
-       )
-}
-
-func runtimeSyntaxErlangYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxErlangYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/erlang.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxFishHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcb\x2c\xce\xe0\x8a\xd1\x03\x51\x2a\x5c\x71\xca\x8a\x7a\x5a\xfa\x1a\xa9\x79\x65\x0a\xda\x9a\xf6\x20\x31\x0d\x85\x1a\x15\x4d\x2e\x40\x00\x00\x00\xff\xff\xb7\x31\x12\xaf\x25\x00\x00\x00"
-
-func runtimeSyntaxFishHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxFishHdr,
-               "runtime/syntax/fish.hdr",
-       )
-}
-
-func runtimeSyntaxFishHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxFishHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/fish.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxFishYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5b\x73\x54\x37\x12\x7e\xf7\xaf\x38\x8c\x5d\xcb\x0c\xec\x78\x81\x05\x6a\xd7\x7b\x71\x52\x24\x54\xe5\x21\xe1\x25\x0f\xae\x58\xc6\xd1\x48\x7d\x46\xe2\xe8\x86\xd4\x9a\xb1\xc3\xc7\x7f\x4f\x49\x33\x36\x60\x28\x82\xcb\xba\x4c\xf7\xd1\xd7\xdd\x5f\xb7\x5a\xa3\x75\xc4\xd7\x89\x4e\x86\xd1\x16\x73\x70\xa0\x89\x49\xf1\xc9\xc1\x30\x0c\x43\xd3\x05\xe9\xe9\x64\x98\x09\x71\xdc\xf4\x47\xb3\xae\x30\x24\x35\xe5\x93\x61\xf6\xfa\xf0\xde\xf1\x83\x7f\xcc\x29\x6c\x86\x87\x8b\xd3\xf6\xc5\x7c\xc0\xd1\x62\x76\x70\x90\xab\xa3\xb2\x83\x19\x86\xc3\xe1\x97\xea\x57\x94\x4b\xff\xbd\x1c\x54\x0c\x85\x65\xe0\x0e\xbc\x3a\x7f\xb4\xfc\xf7\xc5\x43\x21\x56\xb3\x83\xdb\xef\x5f\xc4\xa0\x2d\xdb\x18\xa4\x2b\x83\x0c\xba\x1d\xe1\x1c\xdd\x30\xba\xb8\xdd\xa3\x14\x96\x4c\x9e\x6e\x60\xe6\x32\x68\xac\x68\x6d\x03\x56\x99\xe4\x04\x25\x0b\xa1\x9d\xb3\xa1\x12\xc8\x15\x02\x05\x8d\x31\x66\x8c\x35\xa8\x86\x0e\x3b\xc2\x06\x84\xc8\x88\x19\x99\xb8\xe6\x80\x42\x8e\x14\xa3\x18\x3b\x32\xca\xd6\xb2\x32\xd8\x1a\xeb\x68\xd1\x7d\xdc\x1b\x4f\xa4\xac\x74\x27\xc3\x6c\x2e\xc4\x3b\x08\xf1\x1e\x42\xcc\x21\xc4\x02\x42\xfc\x07\x42\x5c\x40\x88\x73\xfc\x0e\x21\x84\x80\x10\x47\xf8\x2f\xfe\x8f\xd7\xb8\x87\xff\xe1\x6f\x10\x02\x8b\x8f\xa2\x7d\x69\x8b\x19\x54\xf4\x5e\x06\x7d\xc3\xd1\x2e\x29\x3d\xb0\xd5\x1a\x2b\xdb\x82\x73\x51\x4d\xbb\xe0\x52\xb4\x81\xb1\xaa\xd6\xb1\x0d\x50\x1a\x2a\xd6\xc0\xd8\x63\xdc\xac\xce\x86\xc6\x80\x4f\x8e\x98\xa0\x6d\x36\x6d\x2a\x20\x65\x22\xc8\x5b\x06\x6d\xa4\x03\x5d\x91\x02\x5d\x59\xc6\xb8\x46\x4b\x62\x9f\x2e\x55\x0c\xa3\xdd\x09\x2e\xad\xa6\xc0\xbb\x6d\x92\x6b\xca\xfb\x6d\x8e\x3e\xed\xc5\xd9\xae\x0d\x7f\x22\xa9\x49\x4b\xa6\xcb\xbd\x7d\x1b\x43\xe9\x72\xdd\xd9\xa7\xdd\x52\xe4\x86\x6e\xb3\x51\x60\xc8\x25\x18\x5b\x38\xe6\x6b\xbc\x89\xab\x02\x2f\xd9\xc0\x5b\x4f\x7a\x85\x40\x57\xac\x11\x13\x05\xa4\x98\x34\x52\xa6\x8d\x46\x2a\x75\x85\x54\x1b\x70\xda\x6a\x64\x19\x74\xf4\xc8\x24\x35\x0a\x71\x1b\x97\x2a\xba\x98\x51\x62\xcd\x8a\xd0\xca\xa6\x16\x14\xce\x36\xac\xc1\x59\x26\x34\xae\x51\x9d\x6d\x8c\x54\x2f\xcb\x84\x8d\xcc\xa4\x17\x77\x6b\xd2\xfb\x18\x06\x67\x43\xbd\xfa\x4a\xb6\xe6\x6b\xd8\xf5\xe2\x54\x6e\x27\xac\x64\x31\xd0\xb2\x13\x1a\x34\x84\xd8\xbe\x7b\xf4\xf7\xa7\xef\xd7\x99\x12\x26\xeb\x5c\x9f\xa4\x73\xb7\x1a\x47\xa5\x85\x3c\x11\x52\xd7\x17\xd2\x28\x06\x2c\xf3\x67\xbe\x64\xaa\x6c\x5d\xf9\x5a\xd9\xc8\x42\xcf\x9f\x36\x27\xfa\x2d\x86\x92\x0c\x65\x54\x0c\x50\x66\x9d\x13\x94\xf1\x51\x43\x99\xb8\x6d\x92\x1c\x23\x43\x4d\xa5\xfa\x5e\x3d\x50\x09\xaa\x24\x67\x19\xaa\x32\x5a\x26\xa1\x35\xf4\xd8\x2a\xa8\x8d\xce\x69\x69\xbb\x0e\xae\x2b\x28\x6c\x40\x57\xa9\xd5\x1f\x5d\xa5\x8c\x51\x2a\x6e\x77\x4d\xb6\x9b\x37\x7a\xc6\x18\x9d\x46\xeb\x1d\x30\xb1\xb0\xd5\x68\xff\xad\x13\x38\x87\x37\xd1\x06\x38\x1b\x26\xb8\x00\x17\xd7\x1d\xd4\x15\x78\xfd\xac\xb9\xe4\xa7\x66\xd6\x4f\xa3\x1d\x23\xfc\x14\xa2\x86\x9f\x98\x7c\x82\xdf\x20\x58\x45\x08\x0e\x21\x9a\x9a\x10\x52\x8e\x0a\xa1\xfa\x66\x32\x6a\x24\x59\x98\x90\x24\x1b\x65\x26\x24\x1b\xa6\x6b\xa4\x8c\x94\x6d\xe0\xe6\x72\xdf\x8c\x48\x7c\xb5\xab\x1f\x92\xba\xfb\x91\x49\xba\x76\x0a\xd9\x23\xfb\x66\x3e\xd7\xd0\xd8\x2b\xf4\x16\xf3\x62\xe4\x63\x14\x23\x9f\x3c\x79\xda\x97\x67\xcf\xdb\xf2\xcf\x7f\xf5\x5f\xcf\x1e\x3f\x59\x34\xaf\x8b\xc9\x3d\x81\x75\x44\x71\x44\x09\x25\x66\xc6\x8e\xd5\x56\x86\x28\xac\x57\x4d\xc9\x7c\x8d\x7e\xe0\x3a\x28\xb0\x6c\xc3\x3a\x30\x11\x98\x0a\x83\xad\xa7\x3e\xc5\xca\xe0\x58\x95\x01\x67\x70\xae\xd4\xa6\xa0\x5a\x72\xb8\x63\x37\xa0\xda\xb9\xab\x61\x9f\x8b\x1a\xec\x5b\xd4\xd0\x63\xaa\x85\x72\xc1\xa6\x05\xb3\x55\xd8\x9a\xd8\x86\xf4\x16\xd7\x54\x3e\xab\xb0\xdb\x0e\x3c\x8c\x4e\xae\xcb\x17\xba\xee\x72\x79\x2e\x97\x7f\x2c\x2f\x1e\xce\xbe\xd8\x92\x87\xae\x6e\xda\xbd\xba\x77\x11\x3b\xda\xfe\x76\xcc\x4f\xed\x42\x88\x23\x21\xde\x9d\xb6\x17\xe0\xfb\xe5\x6f\x97\xf7\xbe\x3b\x3c\x7a\x70\xba\x6c\x8f\xc1\xfb\xd3\xdb\x53\x37\xaf\xc5\xf1\xee\xca\xde\x3c\x2a\x43\xb3\x96\xbb\xa5\xd9\xec\x56\x46\x41\xdf\x91\x94\xc9\xa6\xee\x8e\x10\xc7\x1f\xa4\x9f\xbc\x4f\xbb\xbf\x8f\x2d\xed\xba\xfb\x0b\x23\xf3\x87\xa3\xdf\xea\xce\xfd\xbb\xde\xdc\xff\x36\x67\x86\xf3\x8b\x0f\x36\x7c\x67\xf1\x33\xec\xc3\xbb\xd8\x47\x7f\x11\x12\x47\x1d\x1b\xd9\xbf\xbe\xfa\xe1\x15\xce\xce\xce\xf0\xf2\xa7\xb3\x9f\x7f\x5c\x9c\x34\x7a\xff\x0c\x00\x00\xff\xff\xd8\xe9\x5d\x6d\xfc\x07\x00\x00"
-
-func runtimeSyntaxFishYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxFishYaml,
-               "runtime/syntax/fish.yaml",
-       )
-}
-
-func runtimeSyntaxFishYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxFishYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/fish.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxForthHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcb\x2f\x2a\xc9\xe0\x8a\xd1\xd3\x00\x33\x6a\x4c\x4a\x32\x6a\xd2\x8a\x6b\xd2\x8a\x2d\x6a\xd2\x4a\x6a\xd2\x40\xbc\xa2\x12\x4d\x15\x2e\x2e\x40\x00\x00\x00\xff\xff\x51\x5f\x4e\xdb\x28\x00\x00\x00"
-
-func runtimeSyntaxForthHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxForthHdr,
-               "runtime/syntax/forth.hdr",
-       )
-}
-
-func runtimeSyntaxForthHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxForthHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/forth.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxForthYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\x4f\x8f\xd3\x3e\x10\xbd\xe7\x53\x58\xf9\xf5\x90\xfc\x96\x54\x7b\xe0\xc0\x86\x43\x44\xc5\x22\x71\x80\x1e\xd8\x43\x45\x1d\x90\x13\x8f\x5b\x4b\xce\xb8\xb2\xa7\x65\x17\xcd\x87\x47\x71\xda\x2c\x2a\x7b\x40\x22\x87\xd8\xce\xbc\x3f\xce\x7b\xc6\x3a\xa0\xa7\x03\xd4\xc2\xf8\x40\xfb\x2c\xd3\x40\xd0\x53\x9d\x09\x21\xc4\x38\x44\x35\x40\x2d\x72\x29\x97\x45\x42\xf0\x6b\xda\xb3\x89\x6c\xe2\x1b\x36\xc4\x66\x3c\x05\x2a\x17\x79\x96\x85\xa3\x83\x38\x31\x2b\x61\x35\x20\x59\x63\x21\x24\x76\xb7\x7d\x57\x7d\x55\xd5\xcf\xef\xb7\xd5\x5d\xd5\xfe\x2f\x65\x97\x27\xe0\x19\x1d\x49\x11\x0c\x80\x34\x81\x8b\xc6\xd6\x85\x35\x0c\x2e\x02\xd3\x1e\x90\xb5\x67\xe7\xfd\x81\x7b\x15\x81\x01\x75\x5a\xbd\x19\xb7\xde\x70\x07\x3b\x8b\xfc\x63\x6f\x1d\x70\x80\x03\x28\xe2\x23\x92\x75\xac\x76\xca\x22\x1f\x31\x71\x1d\xa8\x13\x30\x3c\x5a\x62\xed\x11\x18\xe1\x91\x58\xca\x46\x7b\x96\xf2\x26\xbd\xab\x69\x9f\xe0\x52\x56\xe7\xb5\x49\xcc\xb2\x4c\xb7\x7e\xe1\xc6\xc5\xb7\x9a\xdf\x2e\xca\x79\x36\x05\x3a\xff\xc8\x49\x05\xab\x3a\x07\xdc\x7b\x8c\xa4\x90\xb8\x07\xe7\xe2\x95\xde\x01\x7a\xab\x5c\xa2\xad\xb6\xcd\xb2\x95\x72\x95\x8b\xff\x8c\x0f\x22\xfa\x01\x44\x00\x15\x3d\xbe\x12\xb2\x13\x0a\xb5\x90\x2b\xa1\x02\x08\x8b\x27\x08\x04\x5a\x24\xdc\xd3\xd0\x79\x17\x2f\x8a\x17\xb7\x25\x1e\x87\x6e\xae\xe1\xb6\xba\x6b\x6f\x7e\x37\x9e\x61\x91\x82\xc5\xdd\xd4\xdf\xf8\x44\x52\xe1\xd2\xc7\xf6\x4b\x5c\xb6\x32\x17\x65\x3e\x8f\x01\xf5\x38\xcc\x9f\xbf\x4c\xfd\x8b\x6d\xfb\x2c\x3d\xa4\x84\x5e\x90\x2c\xfe\x10\x92\xe5\xb5\xd2\x7c\x3c\xa7\xea\xb5\x1f\xc3\x7e\x58\xbf\x5f\xf3\xe7\xf5\xc3\x3d\x6f\x36\x1b\xfe\xf0\x71\xf3\xe9\xbe\xac\x9b\xfc\x2f\x4c\xa5\xbc\x76\x5d\xfc\xa3\xe7\xaf\x00\x00\x00\xff\xff\x44\x4c\x9c\xb0\x3f\x03\x00\x00"
-
-func runtimeSyntaxForthYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxForthYaml,
-               "runtime/syntax/forth.yaml",
-       )
-}
-
-func runtimeSyntaxForthYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxForthYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/forth.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxFortranHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcb\x2f\x2a\x29\x4a\xcc\xe3\x8a\xd1\xd3\x88\x76\x4b\x8b\xad\x01\x11\x96\x06\x10\xca\x14\x4c\x45\xfb\xe7\xc7\x46\x07\x15\xc5\x6a\xaa\x70\x71\x01\x02\x00\x00\xff\xff\xec\xb9\xd8\x96\x2e\x00\x00\x00"
-
-func runtimeSyntaxFortranHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxFortranHdr,
-               "runtime/syntax/fortran.hdr",
-       )
-}
-
-func runtimeSyntaxFortranHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxFortranHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/fortran.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxFortranYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x96\xdf\x8f\x23\x35\x0c\xc7\xdf\xf7\xaf\x98\xeb\x1d\xdc\xf6\xe0\x0a\x2f\x3c\x50\x84\x56\xe8\xe0\x24\x1e\xd0\x22\xc4\xc3\x4a\x6d\xa9\xdc\xc4\x33\x35\x9b\x71\xb2\x89\xb3\xdb\x82\xf9\xdf\x91\x67\xba\x3f\xee\x07\xed\xbd\x50\xa9\xf1\x24\x93\x7c\xea\xc4\xdf\xd8\x6d\x29\xa0\xec\x13\xce\x9b\x36\x66\xc9\xc0\x67\x67\x1e\x05\x9d\xcc\xcf\x9a\xa6\x69\xec\x35\x43\x8f\xf3\x66\xb2\x5c\xce\xce\x17\x6f\xdb\x95\x5a\xf3\xed\xd7\xa3\xf9\x66\x30\x8b\xcb\xb8\x5a\xfc\x96\x57\xd3\x17\x93\xb3\xb3\x5c\x03\x96\x71\xf5\xeb\x66\x44\x37\x93\xf3\x0b\x9a\x2e\x97\x9b\x73\x70\x42\x91\x15\xfc\x2d\xb0\x43\x85\x10\xec\x1b\x1d\x08\x6c\x02\xde\x3f\xa3\x57\xe0\xbd\x42\x8a\x45\x72\x4c\x5b\xb4\xb5\x93\xff\x42\xa6\x84\xec\x15\x0a\x15\x85\x52\xa8\xe3\x83\xe9\x91\xc5\x1e\xa3\xa3\x01\xe9\xb6\x90\xc1\x09\x66\x75\xb1\xef\x23\x1f\x83\xba\xd8\xa7\x80\x3b\xf5\x20\xa0\x1e\x5b\xa8\x41\xd4\x63\xa0\x5e\x3d\xf5\xc8\xc5\x76\xe1\x63\xdd\x04\x6c\x52\x46\x47\x36\x70\x0c\x88\x01\xcd\x1f\x08\x8a\xa9\x50\x88\xac\xb8\x13\xcc\x0c\x41\xed\x8c\xb5\xed\x45\xdb\x98\xfb\xa1\x01\xd1\x6d\xed\x8e\xee\x9a\xfa\x14\xc8\x91\x28\xb1\x0b\xd5\xa3\x12\x7b\xdc\x29\xf1\x4d\xa5\x6c\x3d\xc1\x0e\xf3\x60\x59\x06\x93\x5b\x70\xc7\x91\x2c\x99\xb8\x90\x53\x8a\x45\x40\xf4\x9a\xd8\x6b\x88\x1d\x39\x08\xda\x47\x5f\x03\x2a\x47\x46\xe5\x1a\x82\x46\x0e\xfb\xe9\x72\x79\x04\x18\x13\x66\x90\x98\x35\x26\x8b\x3a\x04\x4d\xe0\xae\x35\x41\x86\x1e\x2d\x0e\x29\x0e\x8e\x69\x8a\x85\x06\x5d\xa4\x4c\xb7\x20\x47\xbd\x4c\x39\x76\x19\x7a\x4d\x75\x13\xc8\x69\x46\x08\x9a\xd1\x0d\x4d\xcd\x85\x6e\x51\x0b\x06\x74\x82\x7e\x4d\x2c\x6b\xdb\xc4\x31\xde\xc3\x64\x23\x0d\xb3\xb5\xd4\x4d\x8e\x55\x88\x51\xed\x1c\x6a\x19\xd7\x1f\x00\x2e\x72\x11\x60\x79\x47\x83\x9b\xa2\x60\xfa\x52\xf0\x7f\xd6\x22\xe1\x60\xf3\x83\xa2\x75\x43\xb2\x2e\xf4\x17\xaa\x33\xd1\xdb\xdc\x81\xda\x1c\xa1\xba\x10\x0b\xaa\x8b\x2c\x40\x5c\xd4\xc5\xca\xa2\x2e\xd5\xb5\x50\x8f\xea\xca\x96\x5a\x31\x85\xe2\x1a\xd8\x0f\x83\x27\x91\x1e\x1f\x1c\xf2\xd4\x91\x14\xf5\x51\xd6\x29\x47\x5f\x9d\x28\xc6\xac\x18\x47\x6e\x5b\x79\xbc\xab\x04\x9f\xe4\x2c\x01\x7b\xa5\x8d\x0b\x59\x69\x63\x60\xda\x14\x14\xa5\xe1\x54\xc8\xc8\x14\x03\x72\x27\x5b\x25\xeb\x94\x6d\x2b\x63\xeb\x4e\xb2\xc3\x26\x56\x93\x22\xb2\x7d\xd7\x92\xa9\xd7\x1e\xa4\xaf\x41\x7b\xd8\xe1\x2e\x45\x36\x95\xf7\xb0\x0b\xd1\x99\xb9\x35\xc1\x62\xee\x4e\x1f\x48\x4f\xfc\xb8\x9e\x78\x58\x4f\x3c\xac\xbf\x1d\xb6\x61\xd9\x2f\x50\x11\x65\x84\x8c\x66\x6b\x08\xd4\xee\x4f\x92\x63\x42\xd6\x04\x5e\x53\xc6\x62\xf8\x94\x69\x68\xc7\xb3\x4e\x35\xa3\xde\xd4\x28\xa8\x19\x3c\xed\x4e\xf2\x32\xb0\x8f\xfd\x9a\x6b\xbf\xc1\xac\x87\x5e\x41\xf4\xf6\xdc\xa1\xdd\x04\x3f\x34\x77\x99\x0c\x8a\x29\xdc\x5f\xf8\xa3\x58\x2c\x5b\x48\x36\xff\x6e\xd0\x3e\xd8\x05\x72\xc0\x5a\xf0\xa6\xa2\x25\xe9\xf1\xfd\x90\x58\x07\x01\x97\x04\x8e\xb8\x3b\x49\x2e\x69\x70\xa9\xd4\x5e\xcb\xbe\x08\xf6\x6b\x17\xa2\xbb\x56\x81\xdc\xa1\xa8\x15\x9b\xd2\x62\x1e\x1f\x92\x49\xdd\x02\x7b\x12\x5b\x47\x31\x54\x1e\x92\xc9\x2d\x66\x6a\xf7\x3a\xee\x59\x88\xf7\x6a\x17\x5c\x6b\x41\xdd\xe3\xbb\x17\xd7\xee\xf2\x90\x84\xe7\x8f\xb0\x19\xb0\x9f\xa9\x83\x82\xea\xa3\x62\x28\x38\x34\x17\xd4\x8e\xf6\x6e\x8b\x19\xd5\xea\x0b\xb2\xbf\xb0\x29\xec\x2f\xa8\x7d\x9a\x50\x3e\x86\xb5\x59\x63\x62\xd1\x19\xde\xdc\xce\x2c\xab\xdb\xb5\xa7\x56\x43\x87\x1a\x3a\xd1\x10\x50\x43\x10\x9d\xf1\x30\x61\xc6\x51\x66\xa7\xb0\xb3\x98\x67\x16\x58\x04\x39\x24\xb9\x66\x70\x5d\xb6\xc8\x3a\xba\x7a\xb7\xa5\x80\xef\x6e\x3b\xa1\x23\x08\xf3\xa7\xc5\x8d\x85\xb8\xa2\xba\xbd\x0b\xa8\xb8\x23\xd1\x2e\x5e\x48\xd4\x8c\xc5\x0a\x5d\x46\xa9\x99\x9f\x50\x9a\xe6\xf9\xe5\x21\x99\x37\x6f\x62\x88\xf9\x9e\xbd\xef\x37\x31\xcc\xee\x13\xfd\xbc\x99\x2c\x66\xf3\xef\xbe\xfc\xe2\x95\x7e\xff\x6c\xb9\xfc\x6c\xa5\x5f\xe9\x6b\xfd\xfc\x11\xf2\x2b\x64\x64\xd9\xa2\x58\x49\xf9\x18\x69\x93\xc1\x5d\xa3\xed\x79\x71\x3e\xfd\xfb\x9f\x95\x2e\x97\x0b\x5d\x2e\x57\x8f\x88\xe6\x07\xef\xad\xe4\xa6\x1c\x1d\x96\x12\x73\x63\xd5\x1c\xd8\x97\xd9\x01\x75\x78\x39\x6f\x26\x7f\x2c\x16\x73\x53\x2b\xce\x57\xab\x57\xcf\x9f\x76\xce\x3d\xb6\x96\xdf\xef\xab\xe7\x79\x65\xa5\x96\x2f\xa6\x1e\x5b\x8b\xf1\x10\xff\x73\x6a\xb5\xe0\xd4\xa2\x76\x07\x99\x89\x3b\xc5\x9c\x63\x9e\x7e\x50\x0b\x66\xc5\x4a\x67\x37\x3f\x38\xd9\x58\xf4\xb2\xed\x62\x39\x99\x3c\x8c\x21\xfb\xf7\x46\xca\x35\xa5\xe1\x9f\xd5\x72\x39\x7b\x1c\x7d\xf2\x07\xea\xfe\xf3\xf4\x97\xc6\x70\xbe\xd9\x42\x7e\x5c\xfa\xa9\xee\xbc\x7c\xdf\x9b\x97\xff\xa7\x33\xfd\x20\xdf\x0f\x9c\x78\xf6\xbe\x13\x2f\x4e\xfc\x9c\x44\x1f\x4d\xbe\xbf\x5f\xfe\x78\xa9\x57\x57\x57\xfa\xf6\xe7\xab\x5f\x7e\x9a\xce\x2f\x26\x67\x67\xff\x06\x00\x00\xff\xff\x80\x03\x11\xed\xc0\x0a\x00\x00"
-
-func runtimeSyntaxFortranYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxFortranYaml,
-               "runtime/syntax/fortran.yaml",
-       )
-}
-
-func runtimeSyntaxFortranYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxFortranYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/fortran.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxFsharpHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2b\xce\x48\x2c\x2a\xe0\x8a\xd1\x4b\x2b\xb6\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x47\x1c\xd5\x73\x0f\x00\x00\x00"
-
-func runtimeSyntaxFsharpHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxFsharpHdr,
-               "runtime/syntax/fsharp.hdr",
-       )
-}
-
-func runtimeSyntaxFsharpHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxFsharpHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/fsharp.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxFsharpYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x94\xcd\x6e\x23\x37\x0c\xc7\xef\x7e\x0a\xc5\x6d\x91\x64\xd1\x49\x83\x6d\x81\x76\x73\x29\x16\x05\xfa\x06\xbd\xd4\x63\x14\x1c\x89\xf2\xb0\xab\xa1\x06\x12\xe5\x8f\x84\x7e\xf7\x42\x63\x3b\x6b\x27\xd9\x45\x7b\xae\x01\xcf\x68\x28\xf1\x4f\xea\x47\x4a\x9e\x02\xca\x6e\xc4\x07\xe3\x73\x0f\x69\x9c\xcd\x1c\x0a\x5a\x79\x98\x19\x63\x4c\x9d\x65\x18\xf0\xc1\xcc\xdb\xf6\xce\xe7\x5f\xbf\x9d\xcf\x66\xa9\x04\xcc\x87\xf9\xc6\x90\x43\x16\xf2\x84\x69\x5a\xd3\x2d\x3e\x36\x7f\x2e\x17\xf7\xcd\x07\x68\x1e\xff\x5a\x3e\xbd\xff\x7e\xdf\xb6\xdd\x7c\x5a\x6c\xcc\x37\x0e\x6d\x80\x04\x42\x91\xf3\x51\x20\x0b\x08\x0e\xc8\x72\xf0\xbf\x09\x28\xba\x86\xa0\x03\x4a\x1f\x9d\x12\x2b\xb0\xd3\x84\x56\xc7\x44\x6b\x10\xd4\x35\x25\x29\x10\xd4\x46\xce\x92\x80\x58\x6e\xcf\x63\x64\x49\xc5\x4a\x49\x68\x48\x70\x38\x85\x39\xec\x71\x8a\x50\x87\x1a\x47\x64\xb5\x01\x72\xd6\x21\xba\x12\x50\x71\x6b\x71\xac\x99\x29\x6e\x05\x13\x43\xb8\x90\x1d\x41\xaa\xf5\x4b\x69\xfb\xc2\xea\x0b\xdb\x49\x60\x1a\xc4\xa4\x03\x88\xed\x55\xd2\x4e\x37\x24\xfd\x9b\x72\xcd\x10\xdd\x84\xef\x4b\xc2\x90\x75\xd3\x23\x6b\xf4\x93\xbf\x39\x09\xd8\xc8\x8e\xbe\x06\x92\xbc\x4a\x75\xc4\x90\xf1\x22\x74\x17\xa2\x7d\x03\x4b\x87\x2b\x62\x45\x76\x1a\xbb\xbf\xd1\x8a\x1e\x40\x6a\xa6\x95\xfa\x98\x74\xd3\x53\x40\x75\x51\x5d\x64\x54\xa9\xef\x0d\x4b\xbc\x90\x9e\x4a\x02\x2c\x78\xd2\x3f\x19\xee\xba\x18\xc3\x89\x7f\x2a\xa8\x1e\x5e\xa6\x75\x28\x43\xfe\x61\x2a\xca\xb3\x40\x1e\xd1\x12\x9c\x5c\x89\x6d\x28\x0e\x95\xb8\xc7\x44\xa2\xc4\x24\x04\x81\x1e\x31\x5d\x68\xe1\x76\x4c\xe6\x15\xd9\x0b\x29\xc6\x8d\x26\xf4\x3a\x14\x81\x2e\xa0\x06\x78\xdc\x69\x8d\x9c\x44\x13\xd0\x8b\xe4\x3e\xe1\x6e\x13\x93\xcb\x66\xd3\x93\xed\x8d\x8b\x7c\x2d\x06\xb7\x94\xc5\x10\x9b\x68\x61\x08\x6f\x10\x85\x8c\xea\x30\xe0\xaa\xb6\x6d\xc5\x65\x21\xcb\xb1\xbd\xd4\x13\x43\x08\x3b\xf5\xb4\x45\xa7\xab\x10\x3b\x08\x4a\x1c\x88\xeb\xfe\x04\x93\x07\x7b\x1c\x31\x04\x0d\x28\x57\x3a\xe0\xd0\x61\xd2\x7a\x24\xf3\x58\xa7\xb9\x84\xa0\x71\x8d\x29\x91\xc3\xe7\x13\x32\x96\x2e\x90\xfd\xbc\x81\x8b\xac\x12\x4a\x49\xac\x87\xd7\x95\x66\x0c\x87\x62\x83\x90\xd5\x32\x4e\x29\x96\x8c\xf5\x7f\xa5\xeb\x48\x4e\x77\x84\xe1\xf8\xbc\x3a\x17\x7d\x2e\x6e\x96\x44\xbc\x7a\x38\xc2\x32\xb5\x15\x53\x6d\xc3\xeb\xf9\xb3\x09\xd9\x5d\x1a\xf2\x27\x1a\xa7\x8c\xda\xf6\xee\xb3\xf5\xec\x6e\x39\xfd\xce\xe3\x1c\x2a\xf8\x5b\x0f\xf5\xb6\xf9\xee\xcc\xef\xab\x0b\x6b\x8c\x05\x74\x9e\x93\xac\xaf\xdb\xb6\x9d\x0c\xcb\xff\xe0\x7c\xb3\xb8\x6f\x7e\x5e\x3e\xfd\xb8\xd7\xed\xe2\x63\xf3\x3b\x34\xfe\xbe\xf9\xb0\x7c\x7a\xbf\xd7\x72\xfe\xfd\xd3\x5e\xff\x38\xff\xfe\x65\x7f\xfb\xaf\x51\xb5\xf3\x97\xac\xce\x2d\xff\x37\x58\xc3\x74\x8f\xbd\x86\xd4\xde\xb4\xed\xbb\x57\xa0\xda\x77\x6d\x7b\xfb\x12\x8b\x59\x2c\x67\xff\x04\x00\x00\xff\xff\x83\x0b\x31\xb7\xdd\x06\x00\x00"
-
-func runtimeSyntaxFsharpYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxFsharpYaml,
-               "runtime/syntax/fsharp.yaml",
-       )
-}
-
-func runtimeSyntaxFsharpYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxFsharpYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/fsharp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGdscriptHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x4f\x29\x4e\x2e\xca\x2c\x28\xe1\x8a\xd1\x4b\x4f\x51\xe1\xe2\x02\x04\x00\x00\xff\xff\x52\x41\xa3\x8f\x10\x00\x00\x00"
-
-func runtimeSyntaxGdscriptHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGdscriptHdr,
-               "runtime/syntax/gdscript.hdr",
-       )
-}
-
-func runtimeSyntaxGdscriptHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGdscriptHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/gdscript.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGdscriptYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x55\xff\x4f\x1b\xc7\x12\xff\x9d\xbf\xc2\x8f\xe4\x3d\x42\xf2\x4c\xa3\x4b\xa5\xb6\xf4\xab\xc1\x41\x45\x6d\xc0\x05\xa7\x42\xc5\x28\x1a\xdf\xce\xd9\x5b\xf6\x66\x2f\xbb\x73\x80\x93\x0f\xff\x7b\xb5\x77\x87\x4d\x89\xa3\x54\xf9\xa9\x87\x98\x9d\xaf\x3b\x3b\x33\xfb\x59\x17\xd6\xb1\x2e\x2a\xde\xed\xcd\x4c\xcc\x83\xad\x74\x63\xc3\xb0\x72\xae\xbb\x1b\xbd\x5e\xaf\x97\xec\x42\x25\xef\xf6\x36\x27\x93\x9d\x99\x79\xbc\xb9\xb1\x11\x6a\xc7\xb1\x35\x3f\xea\xed\xd5\xd6\x69\xdf\x4a\x2f\xf7\x12\x95\x44\x63\x63\xe8\x2f\xe5\x26\x72\xfa\xe4\xf0\xe8\x00\x47\x83\x23\x8c\x0e\x31\x1e\xbc\xde\x9e\x4c\xa6\x9b\x0f\x1c\x77\xa6\xde\xbb\xce\x5b\x6a\xe7\xa0\xa1\x66\x14\xe4\x22\xaf\xdc\xef\x25\x2c\x6a\xc9\xd5\x7a\xb9\x4b\x68\x0d\x8b\xda\xc2\x72\xe8\x36\xa1\x69\x04\xe5\x3e\x82\xa2\x15\x90\x52\x4b\x32\xe4\x6c\x1d\x72\x47\x65\x85\xdc\xcb\x15\x07\x45\x72\xcb\x7d\x9c\xc3\x4c\x33\x67\x85\x29\xc0\x70\x6e\x4b\x72\x11\x86\x67\x59\x20\x03\xa6\xc8\xe0\x9b\x0a\x85\xf3\xa4\x89\xfa\x80\xa2\xf4\x06\x45\xe5\x63\x5a\xe7\x14\xe7\xb0\xa2\xb0\xd1\x4a\x01\x1b\x85\x04\x8e\x43\x85\x76\xcf\xcc\x4c\xe1\x3c\x19\x38\x3f\x43\x49\x37\x28\xad\x20\x19\x38\xea\x9b\xca\x67\xa8\xfc\x35\xaa\xc0\x8d\x4f\x15\xd2\x4e\x0d\xe5\x10\x5a\x26\xd0\x75\xcb\xc4\x76\x51\x04\x32\x99\xe1\x19\x02\x89\x79\x13\x48\x66\xdc\xb2\x91\xd9\x34\x9c\x2f\xed\xbb\x56\x67\x1b\x5a\xa0\xf3\xf2\xb5\x18\x34\x6e\xa9\x3d\xb1\x39\x66\x7c\x1b\x14\x51\x43\xfa\xcf\xae\x28\x20\x35\x2d\xdd\x0f\x5f\xe0\x8a\x42\x96\x4c\xd7\x4c\x97\x81\x8b\xb5\x33\x11\x6f\xb8\x97\xee\xcb\x47\x87\x32\x10\x5b\x52\x1a\xdb\xc8\xd1\x82\x03\x96\xf2\x38\x30\x77\xba\xbd\x5a\xd5\x0b\xf6\xbd\x68\xf0\x0e\x2f\x65\x66\x85\xf1\xf3\x78\x3c\xda\x77\x96\x45\x1b\xf6\x84\xdf\xd6\x1c\x15\x87\x52\xd5\x1d\x7d\x79\x95\x8c\xaf\xc8\xca\xaf\xde\x57\x38\xf2\x86\x1b\x92\x0d\x71\x7c\x8a\xd3\x9c\x85\x53\x16\x9c\x56\xa4\x96\x1c\x4e\x35\x30\x95\x23\xe6\x80\x11\xe5\x97\xac\x0f\xd8\xd7\xc3\x11\xc6\xb6\xe4\x80\xf1\x35\xb3\xdc\xaf\x78\xbc\xa8\x96\x35\xb6\xf8\x69\xab\x1b\xec\xed\x61\x10\x02\x2d\xb0\x47\xd1\x46\xec\x7b\xe7\x03\x86\xb6\xb9\xa9\x14\x16\xcd\x79\x46\xa4\x73\x1c\x4f\xff\xe4\x5c\x31\x72\x24\x8c\x91\xf7\x6e\x6f\xa1\xdc\x86\x26\xa9\x09\x5c\x89\x87\xa2\x2b\xe1\x84\xc9\xad\xa4\xdf\x39\x57\x1f\xb2\x87\x8a\x17\xad\xe2\xb7\x9a\x14\x27\x9c\x6b\x86\x93\xc3\x61\x2a\xd9\xca\x0c\xe3\x40\x12\x0b\x1f\xca\x15\x97\x0d\xd1\xed\xd4\xad\x2f\xee\xd7\x3b\xe4\xc2\x8a\xfd\x28\xdc\x12\x16\x7b\xe7\xd4\x7f\x37\xe8\xff\xf1\xe6\x79\xff\x9b\x8b\x67\x77\x81\xbf\xf0\xe2\xda\x07\x73\x17\x15\x95\x94\x4b\x5e\x3e\x0b\x24\x06\x94\x10\x1a\x13\x0a\xa7\x81\xe9\xb2\xa5\x95\x4f\xb7\x3f\x77\x14\x13\x30\x25\x26\x88\x8a\x5a\xa9\x19\xec\x6c\x01\x76\x09\x8c\x52\x97\x09\x91\x3e\x28\xf8\x46\x59\x4c\x44\x91\x40\x59\x4b\x0e\x5b\xc0\x0a\x6c\x44\x49\x15\x4a\x8a\xca\xa1\x5b\xe2\x42\x72\x94\xa4\xf9\x1c\xe2\x15\x5e\x02\x93\x59\xc0\x07\x54\x29\x5d\xe0\xd2\x2b\x77\x4b\xe3\x1b\x58\xeb\x20\x88\xec\x0a\x44\xd6\x19\x2b\xa2\xa3\x2b\x6e\x69\xe3\x12\xed\x4c\xc8\xa1\xe1\xd5\x7b\x97\xe0\x82\xeb\xb9\x75\x8c\x85\x65\x67\xda\x66\x76\x4d\x39\xae\x38\x90\xfa\xb0\xae\x2b\xe7\x3b\xbb\xdf\xfe\xff\xd9\x53\x7c\xff\x9f\xc9\xe4\xbf\x3f\x5d\xe0\x3b\xfc\x80\x2f\xd0\xc7\xff\x96\xd1\x23\x0a\x2c\x3a\xe7\xc8\x6b\xe3\x9f\x6c\xbf\xbf\xbd\xc0\x64\x72\x8e\xc9\xe4\x62\x19\x74\x54\x97\x53\x0e\xeb\x1f\xe7\xf3\x66\x62\xeb\x9e\x64\x69\xa2\xba\x59\xb5\x6e\x78\x7e\x93\x18\xea\x17\x83\xfe\xc1\xc5\xd3\x54\x17\xb6\x76\xb6\xba\x44\x29\xb6\x6c\x4e\xd2\x88\xe9\x8b\x4a\xa1\x49\xd4\xfc\x6d\x2e\xf5\x2c\x66\x8d\xf6\xde\x8f\xcb\xdd\xd7\xef\xa9\x37\x7e\xb7\xb7\xf9\x64\x7c\x3c\x3c\xc6\xd9\xd9\x19\x0e\x0e\xcf\x5e\xbd\xdc\xde\xfd\xf1\xd3\x59\xb7\xb6\xb6\x1e\xa6\xfc\x9b\xea\xb3\xf3\x75\x1d\x8a\x0d\xa0\xd6\x55\xfb\x61\xa5\x2b\x4d\xbc\xb4\x55\xd3\xd5\xc9\x64\xe7\x13\x67\x59\x65\xaa\x38\xb7\xe4\xf6\xe7\x14\xba\xd0\x34\x91\xaf\x2e\xde\xbf\xb8\xc5\xcd\xf9\xa0\x7f\x40\xfd\x22\x4d\xe8\x7d\x76\x8b\xfa\xbe\xfc\xe5\x2d\x5e\xdf\x97\xbf\xbe\xdd\xfe\xe7\x75\x7c\xd8\xbd\x7f\x65\x15\x1f\x99\xfe\xa3\x87\xa7\x7f\xfc\xf9\x93\xff\x2b\x00\x00\xff\xff\x87\x84\xe4\x7b\x2b\x09\x00\x00"
-
-func runtimeSyntaxGdscriptYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGdscriptYaml,
-               "runtime/syntax/gdscript.yaml",
-       )
-}
-
-func runtimeSyntaxGdscriptYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGdscriptYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/gdscript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGentooEbuildHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x4d\x2a\xcd\xcc\x49\xe1\x8a\xd1\x4b\xd5\x00\xb3\x6a\x92\x73\x12\x8b\x8b\x35\x55\xb8\xb8\x00\x01\x00\x00\xff\xff\xc4\x91\x08\xd1\x1a\x00\x00\x00"
-
-func runtimeSyntaxGentooEbuildHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGentooEbuildHdr,
-               "runtime/syntax/gentoo-ebuild.hdr",
-       )
-}
-
-func runtimeSyntaxGentooEbuildHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGentooEbuildHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/gentoo-ebuild.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGentooEbuildYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x5d\x73\xdb\xb6\x12\x7d\xf7\xaf\x60\x14\xcf\x0d\x99\x5c\x69\xf2\x1a\xdf\xdb\x6a\x54\x89\x8e\x35\x51\x2c\x8d\x24\x27\x6e\x83\x44\x05\x89\xa5\x88\x0a\x04\x58\x00\xb4\xec\xe4\xe4\xbf\x77\x40\x49\xce\x47\xad\xb6\x2f\xf5\x8c\x25\x61\xb1\xc0\x9e\x3d\x7b\x76\x51\x48\x45\xfe\xae\xa6\xb3\x88\xb2\x46\x2a\x71\x72\x22\xc8\x53\xee\xcf\x4e\xa2\x28\x8a\xc2\xae\xe6\x15\x9d\x45\x1d\xc6\x7a\x14\xb7\x2e\xc8\x15\x77\x2e\x39\xed\x9c\x9c\xd8\x46\x91\xdb\xb9\x3e\x8e\x06\x4a\x45\xbe\xa4\xc8\x79\xae\x05\xb7\x22\xaa\x8d\xf5\x7c\x4d\x51\xd1\xe8\xdc\x4b\xa3\x5d\xeb\xd8\x8d\xa4\x20\xed\x65\x21\xc9\x9e\x45\x9d\x0f\xce\xe6\xab\xb8\xd1\x35\xcf\x37\xc8\x4d\x55\x4b\x45\x90\xda\x79\xae\x14\x3c\x39\x9f\xe0\x43\xbd\x59\xaf\xe2\xdc\xe8\x42\xae\xa1\x4d\x41\x3e\x2f\xe1\xc8\x37\x35\xe2\xda\x12\x6a\xe3\x7c\x12\x87\x33\xb0\x55\x92\x74\xda\x30\x01\xd1\x85\x5c\x97\x4a\xae\x4b\x1f\x65\xdc\x95\x91\x25\xc5\x3d\x89\xc8\xdd\x69\xcf\x6f\xf7\x60\x9c\xe7\x9e\x2a\xd2\xbe\xcd\x31\x8b\x73\xee\x08\xc2\x40\x18\x4d\x20\x25\x0b\x90\x72\x04\x72\x3c\x07\xdd\x4a\x8f\x42\xa2\x30\x16\x87\xa4\x20\x0b\x48\x0d\x65\x72\xae\x60\x89\x0b\x58\xf2\x8d\xd5\x70\xa4\x28\xf7\x70\xa5\x2c\x3c\x7c\x49\x1a\x5e\x56\x84\x46\x7b\xa9\xb0\x2d\x43\x9a\xb9\xd1\x5e\xea\x86\x90\x59\xe2\x9b\x84\xb1\xac\xf3\x00\xaa\x98\xb1\x4f\x60\xec\x33\x18\x8b\xc1\x58\x02\xc6\xfe\x07\xc6\xde\x83\xb1\x77\xf8\x15\x8c\x31\x06\xc6\x4e\xf1\x7f\xfc\x88\x47\xf8\x01\xff\x01\x63\x48\x1e\xba\xa9\x1b\x13\x04\x0a\x58\xac\xd1\x60\x8b\x5b\x4c\x8e\x05\xed\xc6\xf4\x3b\x34\x61\xed\xa1\x3c\xd6\x04\x45\x70\xd0\xf8\xf8\xe5\xc0\xb7\x0c\xdf\x70\x2b\x79\xa6\xc8\x45\xbd\x5e\x2f\x32\x45\x21\x73\xc9\xd5\xbd\x06\x8c\x26\x17\x49\x1d\x59\x12\xff\x8d\xb8\x52\x91\xf1\x25\xd9\xd6\x94\xd9\xf6\x02\x4b\x62\x8f\xa3\xb6\x54\x5b\x93\xb7\x05\x39\x65\xec\x53\xff\x1d\xef\x7e\x1c\x74\x7f\x59\x3d\xef\xbe\x78\xff\x8c\xb1\xcf\xfd\x7b\xc4\x35\x85\x28\xfb\xd2\x0d\xe6\xc3\x0b\x5c\x4c\x5f\xa7\xb3\xc1\xcb\x14\xa3\x74\x31\x9c\x8f\x67\xcb\xf1\xf4\x12\xe3\xab\x45\x8a\xc5\x7c\xb8\xba\x9a\x8f\x31\x19\x0f\xd3\xcb\xb0\x9e\x4c\x97\x78\x95\xfe\xfc\x76\x3a\x1f\x2d\x70\x3e\x9e\xa4\x8b\xd1\x78\x8e\xb7\xd3\xf9\xab\xf0\x1d\xcf\x30\x4f\xfa\xa3\x74\x96\x5e\x8e\x30\x9b\x4f\xdf\x8c\x47\x29\x46\xe3\xc5\x32\x6c\xce\xd3\xc5\x72\x3e\x1e\x2e\x71\xb5\x48\xe7\x93\xc1\xe5\xe8\x1b\x1e\xbf\x41\xb5\xc0\x08\x4b\xcc\xde\x60\x76\x8e\x19\x66\x97\x18\x04\x5f\x30\x96\x0d\xe3\xeb\xeb\xa4\x7f\x3e\x19\xbc\x5c\xec\x2d\x93\xd1\xd7\xab\x61\x7c\x31\x5d\x2c\xb1\x1c\xcc\x5f\xa6\x4b\xfc\x74\x35\x9e\x8c\x8e\xb1\x7f\xa0\x39\x37\x55\xc5\xb5\x78\xb0\xd3\x18\xcb\x1a\x47\xf1\x2a\xde\x4a\x5f\x82\x74\xa8\x56\x92\xf4\x19\xcb\xa2\x77\x8f\x76\x0c\x3f\xef\xbe\x58\x3d\x8b\xba\xef\x9f\x42\xea\x92\xac\xf4\xbd\xa7\x0f\x89\x83\xb1\x8c\xe2\x8c\xd6\x52\x83\xb4\x08\x32\x2e\xee\x5b\xb6\xe2\x1b\xc2\x96\x5b\x0d\xa9\x0b\xa3\xfb\x20\x6b\x8d\x85\x32\x6b\xd4\x3c\x34\xae\xa6\x6d\xbc\xb6\xa6\xa9\xd1\x38\xb2\xc9\x31\x01\x32\x96\x09\x49\x7b\x26\x8e\xe0\x0e\x5b\x7b\xa0\xfb\x55\xc9\xdd\xfe\x57\x5c\x72\x87\x2c\xcc\x8f\xd5\x0d\x59\x27\x8d\x3e\xdc\xd5\x8e\x9a\xe3\x51\x63\x61\x02\xc6\x76\xa0\xc0\xf5\x33\xa9\x21\x4c\x0e\x25\xb3\x98\xb1\x9e\x33\x60\xac\xc7\x13\x54\x7c\x97\x21\xe8\x36\xcc\x2b\xe9\x77\x3c\x08\x90\xbe\x11\xa8\x79\x85\x8a\x74\x03\x99\x1b\xfd\x57\x29\x9a\xb8\xbe\xf3\xa5\x09\xe3\x42\x40\x48\x8b\x92\x5b\x01\x77\x57\xa1\xf4\x95\xc2\x6f\xdc\xa2\x32\x07\xc1\x6c\x88\x6a\x21\xed\x91\xeb\x42\xdb\x70\xa5\x62\x61\x72\xb7\x83\x16\x30\x3a\x6f\x65\x9d\x20\x6c\xc6\xad\x51\xc9\x2c\xfc\x33\xd6\x8b\x9d\xc1\x3e\x93\x9d\xd7\x71\x46\xf2\x50\xdf\x90\x6a\x22\xb5\x37\x7b\x38\x45\x6c\xb6\x9a\xac\x43\x4d\xb6\x72\x07\x90\xf1\x8e\x10\x17\xb2\x49\x4c\xed\xdd\x11\xc9\x06\xa9\x1a\x7d\xaf\xd8\xa8\x71\x24\xc2\x38\xd8\xbd\x43\x07\x05\xef\xde\xa6\x80\x22\x08\xeb\x10\x22\xe7\x1e\xb9\x40\x5e\x56\x26\x7c\x9a\xad\x46\x5e\x83\xf2\xd2\x04\xfa\x41\xb7\xa1\x1f\xb0\xb6\x54\x43\x91\x87\xd2\xa8\x36\x81\xdc\xea\x06\xb6\x6a\xa9\x76\xe4\xe1\xb9\x85\x37\x4d\x5e\xa2\xd1\x8e\xfc\xae\x4c\xfb\xb8\xb9\x09\x7a\xd6\xbe\x17\x98\xd1\xeb\xb3\x7d\x02\x51\xe0\xc6\xb6\xbc\x74\x3a\xf7\x36\xd2\xe2\x3b\x8b\xdb\xc8\xba\x85\xcd\x58\xef\x8b\xf5\xab\xe7\xf2\xf0\xf7\x75\xa4\xdd\xd8\x18\x96\xdc\x7e\x39\xfa\x4f\xe1\x3c\xf9\x1e\xcd\x93\x7f\x13\x4c\xd5\x8a\xe3\x4f\x20\x1e\x7f\x0f\xe2\xf4\x6f\xc2\x79\x23\x4c\x78\xe1\x96\xd3\xd1\x14\xd7\xd7\xd7\x38\x1f\x5f\xbf\x4e\x93\xb3\x7e\xe7\xe4\xe4\x8f\x00\x00\x00\xff\xff\xe2\xea\x68\x25\x9a\x08\x00\x00"
-
-func runtimeSyntaxGentooEbuildYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGentooEbuildYaml,
-               "runtime/syntax/gentoo-ebuild.yaml",
-       )
-}
-
-func runtimeSyntaxGentooEbuildYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGentooEbuildYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/gentoo-ebuild.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGentooEtcPortageHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2d\x49\xd6\x2d\xc8\x2f\x2a\x49\x4c\x4f\xe5\x8a\xd1\xd3\xc8\x4e\xad\x2c\xcf\x2f\x4a\x29\xae\xc9\x4d\x2c\xce\xae\x29\xcd\x83\x50\xc5\xa9\x9a\x1a\xfa\x7a\xda\x9a\xf6\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x90\x22\x80\x75\x31\x00\x00\x00"
-
-func runtimeSyntaxGentooEtcPortageHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGentooEtcPortageHdr,
-               "runtime/syntax/gentoo-etc-portage.hdr",
-       )
-}
-
-func runtimeSyntaxGentooEtcPortageHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGentooEtcPortageHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/gentoo-etc-portage.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGentooEtcPortageYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x5b\x8b\xdb\x3e\x10\xc5\xdf\xfd\x29\x84\x93\x87\x5c\x90\x77\xe1\x1f\xc2\x7f\x45\x2e\x2c\xfb\xda\x3e\xf6\xa5\xb6\x5b\xc6\xf2\xc4\x11\x91\x25\xa1\x51\xda\xa6\x0c\xfb\xd9\x8b\x9b\xcd\x85\x65\xa9\x61\x30\x33\xe8\x77\xce\x61\x98\x9d\xb1\x98\x4e\x01\x95\xc0\xa4\x65\xf0\x31\x41\x87\x59\xd6\x62\x42\x9d\x54\x26\x84\x10\xc3\x13\x07\x3d\x2a\x91\x57\x55\x31\x39\xe0\xe9\xa7\x8f\x2d\x71\x0f\x74\xe0\xa3\x3b\xff\x08\xa7\x93\x87\x62\x3e\xdd\x8e\xf3\x2c\x8b\x47\x8b\x74\x86\x47\xe2\x0b\xa1\xd8\x59\xe8\xde\x06\x52\x68\xef\x28\x81\x4b\x45\xe3\xbd\x2d\x76\x60\x69\x90\x2e\x4b\x45\x01\x34\xaa\xba\x9e\x57\xd5\x7c\x5b\x82\xfc\xfd\x2c\xbf\x3e\xca\xa7\xef\xb2\x9e\xe7\x1f\xb2\x29\x1e\xdf\xa3\xf2\x23\x6e\x24\x3e\x99\x03\xda\x93\xf8\x81\x91\x8c\x77\xc2\x1d\xfb\x06\xe3\x35\x11\x05\xd4\x06\xac\x12\xb9\x2c\x4b\xd5\x9a\xce\x24\x55\xd7\xc5\x6c\x72\xa7\xcc\xe3\xe9\x45\xec\x59\x6b\x0c\x09\x5b\x01\x51\xef\xf1\xaa\x62\x5a\x74\xc9\xec\x0c\xc6\x42\x5b\x20\x1a\x92\xbd\xca\x7a\x5b\x55\xcd\x04\x6c\xd8\x03\x43\xdf\x2e\x17\x0c\xb1\xe7\x7d\x08\xc0\x06\x96\x0b\xee\x4d\x20\x0e\x41\x0f\xb5\x5c\x30\xfd\xf7\xf4\xc8\xb4\x67\x0a\x10\x35\xff\xfa\x7f\x39\x94\xdc\x35\xd4\x4e\xab\xaa\xc9\xff\x61\x75\x8b\xfa\xe6\x3a\xbb\xe4\x7d\x81\x84\x9d\x8f\xe6\x16\x95\x12\x24\xec\xd1\x25\x25\xf2\x6f\x77\xe4\xac\x98\x3d\x5c\xa8\xcf\x40\x07\xe3\x3a\x11\xb1\x3b\x5a\x48\xfe\x6e\x5d\xa7\xbe\xf1\xf6\x3d\x3a\x59\xf3\x2b\xaf\x78\xb5\xe6\xf5\x8a\x37\xbc\x59\xf3\x7a\x73\x5d\xd9\x8b\xef\x07\xbb\xbb\x1b\xf8\xdb\x9f\xdb\xe1\xa3\x04\x71\x48\x33\xca\xaf\x23\x74\xad\x12\xf9\xf8\x36\x38\x9f\x95\x28\xeb\xec\x4f\x00\x00\x00\xff\xff\x7c\x89\xb4\x8b\xb6\x02\x00\x00"
-
-func runtimeSyntaxGentooEtcPortageYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGentooEtcPortageYaml,
-               "runtime/syntax/gentoo-etc-portage.yaml",
-       )
-}
-
-func runtimeSyntaxGentooEtcPortageYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGentooEtcPortageYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/gentoo-etc-portage.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGitCommitHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcf\x2c\xd1\x4d\xce\xcf\xcd\xcd\x2c\xe1\x8a\xd3\xd0\xd3\x8a\x8e\xd1\x8f\xd5\xb4\xd7\x70\xf6\xf7\xf5\xf5\x0c\x89\x77\x75\xf1\x0c\xf1\x0d\x76\xaf\x09\x71\x74\x87\xb1\x35\x55\xb8\xb8\x00\x01\x00\x00\xff\xff\x2e\x11\x61\xbe\x34\x00\x00\x00"
-
-func runtimeSyntaxGitCommitHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGitCommitHdr,
-               "runtime/syntax/git-commit.hdr",
-       )
-}
-
-func runtimeSyntaxGitCommitHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGitCommitHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/git-commit.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGitCommitYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x6f\x9b\x40\x10\xbd\xf3\x2b\x46\x24\x52\x20\x11\xb4\xd7\x72\xb1\xaa\xf8\x43\x96\xea\xfa\x50\x5f\x2a\xc0\xd5\xc2\x0e\xb0\xea\xb2\x8b\xf6\xc3\x49\x24\x7e\x7c\xb5\x60\x6c\x2b\x4a\x55\x54\x4e\xec\xe8\xcd\x7b\x6f\x86\xb7\x54\x8c\xa3\x79\xeb\x30\x81\x9a\x99\xa8\x94\x6d\xcb\x8c\xe7\x51\x34\x58\x9a\xc4\x03\x00\x70\x08\x41\x5a\x4c\xc0\x3f\x06\xf1\x63\x9a\x65\x9f\xf2\x70\x11\x3c\xef\x77\xbb\xed\xe1\xd7\x6a\xb9\x3d\xec\x7e\x6c\xfa\xc3\xd7\xcd\xf4\x1e\xde\xfb\x9e\xa7\x2c\x47\x3d\x12\xdc\xc1\x9a\x71\x84\xb2\x21\xa2\x46\x3d\x94\x22\x70\x9a\xf1\x6f\x7c\x7b\x91\x8a\x26\xe0\xdf\xa5\x69\xa2\x3b\x52\x62\x92\xe7\x01\x45\x8e\x06\x69\xdf\x4a\xca\x2a\x86\xb4\x17\xf8\x32\xd8\xe8\xd5\xe0\x84\x86\xc9\x0d\x3c\x7e\xf4\xff\xcd\x79\xa6\x4c\x66\x40\x27\xd5\x39\xd8\xc9\xd8\x1c\xec\xd9\xfb\xdf\xa0\xc7\x5b\xec\xf3\xb8\xab\xf8\x31\x4d\xf2\x39\xf8\x9f\xd2\x2a\x28\x14\x11\x65\x03\x44\x50\x78\x48\x8f\x0f\xf9\xd3\x7f\x75\xce\x69\xda\x8b\xa9\x25\x3d\xc2\x3c\x9d\x4b\x8b\x7f\xce\xc4\xb3\xe4\x52\xc1\x19\xad\xa1\x92\x0a\x4a\x2e\x35\x13\x35\x30\xad\x2d\x6a\x08\xb4\x75\xa6\x34\x48\x01\x1b\x66\x1a\x5b\x84\x1f\x0b\x65\x59\x11\x2c\x58\x18\x04\x15\x7b\x0d\x50\xf7\x48\xc3\x45\xef\xc8\x30\xd0\x3d\x0d\x17\x21\xdc\xa5\x9f\xa3\x2f\xf9\x53\x98\x65\x85\xef\x5d\x0c\xb4\x2d\x0a\x33\x05\xb2\x1c\x8f\x31\x67\x02\xc7\xdc\xba\x47\x1b\xa2\xcc\x30\x8b\x7f\xa9\xa1\x70\xa2\xf7\xd7\xc2\x98\x75\x48\xf3\x89\x7a\xc9\xaa\x4a\x43\xc0\x62\x8c\xdd\xb5\x82\xf1\x5a\x41\x14\x9d\x50\x15\x52\xe3\x34\x07\xc5\x8a\x58\x6e\x3e\x90\xa3\xac\xaa\x20\x8a\x6a\x66\xae\x32\x23\x2f\x48\x6b\x3a\x6b\xa0\xb3\x46\x03\x81\x61\xbf\x50\x60\x25\x15\x0e\x51\x84\x52\x0a\xe3\xe6\x72\x6b\x43\x52\x36\xe0\x26\x02\x2d\xc1\x34\x4c\xdf\x90\xe9\x46\x5a\x4e\x41\xe0\x09\x15\xb4\xc4\x94\x0d\x9c\x08\x67\x14\xe8\x8d\x8a\x8b\x04\xbe\x1a\x14\x14\x1a\x56\x37\x9c\xd5\x8d\x71\x9f\xc8\x38\x3a\xbc\x61\x73\x08\x59\xb9\xe2\xe0\xe2\xdd\xb2\x8e\xab\xef\xcb\xfd\x7a\xbd\xfd\xb6\xba\x8e\xc3\x59\xcb\x4c\x54\x2b\x69\xbb\x04\xfc\x96\xd4\x28\x0c\x79\xbf\xd4\xcb\x71\x5c\x18\x13\x25\xb7\xd4\xfd\x8a\x3a\x67\xd8\xf7\xfe\x04\x00\x00\xff\xff\x8b\xd7\x0c\xa4\xbf\x04\x00\x00"
-
-func runtimeSyntaxGitCommitYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGitCommitYaml,
-               "runtime/syntax/git-commit.yaml",
-       )
-}
-
-func runtimeSyntaxGitCommitYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGitCommitYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/git-commit.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGitConfigHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcf\x2c\xd1\x4d\xce\xcf\x4b\xcb\x4c\xe7\x4a\xcf\x2c\xd1\x80\x30\x6b\x72\xf3\x53\x4a\x73\x52\x8b\x35\x55\x6a\x62\xf4\xd2\x33\x4b\xf4\x21\xc2\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x4b\xff\xb8\x40\x2f\x00\x00\x00"
-
-func runtimeSyntaxGitConfigHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGitConfigHdr,
-               "runtime/syntax/git-config.hdr",
-       )
-}
-
-func runtimeSyntaxGitConfigHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGitConfigHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/git-config.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGitConfigYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xd1\x6a\x84\x30\x10\x45\xdf\xf3\x15\xc3\x54\x50\x03\x6b\xdf\x43\xb7\x3f\x92\x89\x10\x74\x94\x50\x8d\x8b\x99\xa5\x2c\xe4\xe3\x4b\x70\x59\x29\x6d\x1e\x4f\xce\x5c\xee\x9d\xc2\xc2\xf2\xb8\xb1\x81\x39\xc8\x65\xd8\xe2\x14\x66\xa5\x46\x16\x1e\xc4\x28\x00\x80\x62\x44\xbf\xb2\x01\x9c\x83\x34\x87\x92\xd7\x6d\xbc\x2f\x9c\xda\x2a\x13\x75\x73\x90\xf7\x83\x57\xa8\xd4\x5e\x3e\x8e\xdb\x0b\x0c\x5b\x4c\xe2\xa3\x18\x40\xa2\x8f\x46\xf6\x3b\xe7\xc9\x2f\x89\x5b\xa2\x4f\x7c\x4a\xa5\x40\xf7\xc5\x8f\xef\x6d\x1f\x0d\x60\x6f\xad\x49\x37\x3f\xb0\x71\x4e\xdb\xfe\xea\xf4\x15\xff\xc6\xfd\xb2\x88\x6c\xa7\x89\x5c\xf5\x8f\x48\xd8\x10\x11\x75\xd9\xf6\x84\xae\xd5\x84\xb9\x7e\x91\xda\xb5\xba\x3e\x8f\xd6\x95\xe3\x73\x77\x79\x49\xfc\x5e\x22\xde\xf0\x85\x38\x96\x8a\xd5\x09\x8e\xb9\x60\x9d\xfa\x09\x00\x00\xff\xff\x9d\x79\x43\xdc\x4c\x01\x00\x00"
-
-func runtimeSyntaxGitConfigYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGitConfigYaml,
-               "runtime/syntax/git-config.yaml",
-       )
-}
-
-func runtimeSyntaxGitConfigYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGitConfigYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/git-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGitRebaseTodoHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcf\x2c\xd1\x2d\x4a\x4d\x4a\x2c\x4e\xd5\x2d\xc9\x4f\xc9\xe7\x8a\xd3\xd0\xd3\x8a\x8e\xd1\x8f\xd5\xb4\x4f\xcf\x2c\x89\x81\x4a\xc5\x80\xe5\x54\xb8\xb8\x00\x01\x00\x00\xff\xff\xef\x2d\x8f\x29\x2e\x00\x00\x00"
-
-func runtimeSyntaxGitRebaseTodoHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGitRebaseTodoHdr,
-               "runtime/syntax/git-rebase-todo.hdr",
-       )
-}
-
-func runtimeSyntaxGitRebaseTodoHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGitRebaseTodoHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/git-rebase-todo.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGitRebaseTodoYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x6f\xe3\x20\x10\x85\xef\xfe\x15\x23\x27\x07\xd8\x5d\x67\x73\xa8\x54\xd5\x17\x0e\xad\x54\xf5\xda\x6b\x70\x25\x6c\xc6\x09\x8a\x0d\x2e\x8c\x55\x47\xa5\xff\xbd\xc2\x76\x52\xa9\xdc\x78\xcc\x7b\x6f\xf8\x5a\xd3\x21\x5d\x06\x2c\xe1\x68\xa8\xf0\x58\xab\x80\x05\x39\xed\xb2\x4c\x23\x61\x43\x65\x06\x00\x90\xc6\xac\xea\xb1\x84\xfc\x8d\xed\xfe\x1c\xa4\xfc\x5f\x71\x71\x34\x24\xe5\x6a\x92\x72\xb6\x6d\xf3\x2c\xf3\x63\x87\x61\xf1\x6d\xe0\x75\x7e\x85\xc6\xf5\xbd\xb2\x3a\xcc\x6a\x01\x81\x14\x61\x8f\x96\xe6\xc0\x81\x99\xe6\xcc\x45\xf4\x0c\x3f\x9c\xd7\x5c\x44\x64\xda\x10\x17\x31\xb0\xf7\x51\x85\x13\x17\xb1\x65\x66\x1a\x07\x2e\xe2\x14\x71\xc2\x26\x6a\xe6\xdd\xc0\x05\x97\xb2\xce\xd7\xaa\x47\xd7\xf7\x86\xe0\xe5\xe9\xda\x62\x34\x5a\x32\xad\x41\x5f\x42\x2e\x65\xcd\x0e\xfb\xe2\x41\x15\x6d\xf5\x79\xff\xef\x6e\xff\xb5\x78\x6f\xe6\xce\x79\x38\xe3\x25\x6d\x10\xa0\x75\x1e\x9e\x0d\x9d\xc6\x1a\x98\xb2\x1a\x1c\x9d\xd0\x07\xbe\x06\x27\x62\xbb\x75\x76\x8d\x16\x86\x33\xd6\x9a\x89\x61\x88\x98\xbe\xd0\x74\x2e\x20\x0b\x51\x73\xc1\x61\x93\x9a\xab\xbf\xbf\x1a\xfb\x44\xe0\xba\x6c\xb3\x5c\x77\x9d\xb1\xb8\xc0\x4b\x27\x90\xf2\x33\xa4\x4d\x7e\xd3\xd0\xa6\xd2\xed\x8f\xb0\x00\x87\x43\x95\x7d\x07\x00\x00\xff\xff\x8f\x8c\x0f\x68\xcf\x01\x00\x00"
-
-func runtimeSyntaxGitRebaseTodoYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGitRebaseTodoYaml,
-               "runtime/syntax/git-rebase-todo.yaml",
-       )
-}
-
-func runtimeSyntaxGitRebaseTodoYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGitRebaseTodoYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/git-rebase-todo.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGlslHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcf\x29\xce\xe1\x8a\xd1\xd3\x48\x2b\x4a\x4c\xaf\x29\x4b\x2d\x2a\xa9\x49\x2b\xa8\x29\x2b\xa8\x01\x89\x6b\xaa\x70\x71\x01\x02\x00\x00\xff\xff\x9c\x66\x9c\x6e\x20\x00\x00\x00"
-
-func runtimeSyntaxGlslHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGlslHdr,
-               "runtime/syntax/glsl.hdr",
-       )
-}
-
-func runtimeSyntaxGlslHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGlslHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/glsl.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGlslYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x4f\x6f\xd3\x4c\x10\xc6\xef\xf9\x14\x7e\xad\xbe\x28\x75\xe5\x24\x24\xbd\xd4\x02\xaa\x42\xe8\x89\xaa\x15\x85\x0b\x59\x13\x8d\xed\xb1\xb3\x62\xbd\x6b\xed\x8e\x53\x82\x46\x7c\x76\xe4\x75\xfe\xd1\x20\x24\xf6\x30\x9a\xf9\xf9\x19\x3f\xb3\x5e\x6f\x29\x15\xd2\xa6\xc1\x24\xa8\x94\x53\x83\x41\x81\x84\x39\x25\x83\x20\x08\x82\xee\x99\x86\x1a\x93\x20\x14\x62\x34\x2c\x2d\x54\xbc\x46\x4b\x5c\x36\xbc\x6e\xb8\x6b\x38\x3f\x0b\x07\x03\xdb\x2a\x74\x7d\x4b\x1c\xc8\x02\x35\xc9\x52\xa2\x4d\x82\x70\x71\x13\x7f\x81\xf8\xc7\x32\xdd\x26\x93\xf8\x6a\x99\x46\x8b\x45\xe2\x1a\xc8\x31\x49\xd3\x68\x31\x3c\x4f\xc3\x6d\x6b\x3f\x47\x28\x44\x36\x5c\x1b\x59\x70\x66\x8c\xe2\x6c\x8d\xf9\xd4\xc7\x99\x8f\x97\x2c\x35\xb1\xf4\x54\x7a\x2a\x3d\x2d\x95\x01\x62\x8f\x3d\xf5\xb0\x06\x9a\x76\x61\xd6\x85\x4b\x76\x64\xdb\x9c\xd8\x41\xdd\x28\xb4\x2f\xe7\xbb\x6c\xba\xcf\x66\xfb\xec\xdd\xe7\xb7\xef\x0f\xca\xc7\x15\x14\xe6\xe9\xa0\xef\xeb\x73\x21\xb2\xf0\x4f\xfb\x16\x22\xab\xd4\x72\x38\xc7\x86\x56\x1f\x41\x57\xf8\x00\x16\x6a\x24\xb4\x8e\x1f\x8c\xd4\x74\x54\xdf\x01\xa1\x95\xa0\x8e\xd0\x07\x59\xad\xe8\xd1\xb4\x36\xc7\xe7\xf4\xce\x14\x78\x22\xed\xa1\x35\x45\x9b\xd3\x16\xed\xab\x5b\x53\x1d\xe4\xc7\x03\x3b\x02\xc2\x1a\x35\x6d\x3f\x79\x6e\xb4\x23\x06\x22\x2b\xb3\x96\x90\xd7\x60\x37\x52\x57\xdc\x6a\x59\x1a\x5b\xb3\xd4\x6c\x5a\x62\xa9\x7d\x2c\x19\x95\x43\xb6\x48\xad\xd5\x5c\x48\x97\x83\x2d\xf8\x69\x25\x15\x72\x69\x2c\x17\xe6\x6f\x5e\x99\x45\xf8\xc6\xb9\xd1\x24\x75\x8b\xc7\x4a\x3f\x05\x68\x1a\x75\x87\xbf\x55\x93\x6d\x91\x4b\x50\xee\x37\xa5\xdb\xd4\x99\x51\x23\xd3\xa0\x05\x32\xfe\x6f\x8b\x2f\xc6\xd1\xeb\x57\x6f\xae\x93\xff\x7e\xfe\xff\x82\xbf\xa6\x27\x2f\xd5\x6d\x9d\xed\x0e\x68\xb8\x98\xc4\x57\xe9\x05\x4f\xbe\x77\x09\xc4\xe5\x4d\x7c\x9b\x46\xbd\xc3\xbe\xaf\xee\x87\xf6\x75\xb7\x1c\x81\xed\x36\x31\x1e\x87\x7b\x86\xba\x48\x82\xf0\xec\x00\x8e\xee\xc3\x6e\xc5\x01\x99\xc2\x24\x41\xf8\xe9\x7e\x7e\x9f\x5c\x9f\x38\x9c\x1a\x08\x11\x3d\xb7\x10\x22\x1a\xff\x9b\xcb\xaf\x00\x00\x00\xff\xff\xb8\x3f\xae\xfa\xde\x03\x00\x00"
-
-func runtimeSyntaxGlslYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGlslYaml,
-               "runtime/syntax/glsl.yaml",
-       )
-}
-
-func runtimeSyntaxGlslYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGlslYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/glsl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGoHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcf\xe7\x8a\xd1\x4b\xcf\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\xe7\x61\x51\x76\x0a\x00\x00\x00"
-
-func runtimeSyntaxGoHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGoHdr,
-               "runtime/syntax/go.hdr",
-       )
-}
-
-func runtimeSyntaxGoHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGoHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/go.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGoYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x94\x41\x6f\xe3\x36\x10\x85\xef\xfe\x15\xac\xba\x5b\x5b\x4e\x2d\xef\x66\x83\x34\x15\xba\x0d\xb6\xdb\x06\xe8\xa1\xdd\xcb\x16\x30\x60\xba\x08\x45\x8d\x64\xc2\x14\x49\x50\xa3\x38\x46\xc6\xfd\xed\x05\x25\x25\x51\x1c\x20\x49\x73\xac\x4f\xe6\xe8\xcd\x1b\xbe\x4f\xa4\x0a\xa5\x01\x77\x0e\x52\x56\xda\xd1\x28\x07\x04\x89\xe9\x88\x31\xc6\xc2\x13\x23\x2a\x48\x59\xc4\x79\x52\xda\x37\xd1\x68\xe4\x1b\x0d\x75\xf7\xf8\x5b\xf6\xd9\x9a\x5c\xa1\xb2\x46\xe8\x9a\x09\x93\x33\x69\x0d\x7a\xab\x59\xa1\xed\xb6\xd5\xcc\x58\xed\x40\x2a\xa1\x5b\x8f\x6c\x92\x79\x10\x1b\x92\xa2\x06\x0a\x5a\x65\x1a\xa0\x1c\x0a\xd1\x68\xa4\xd2\x52\x69\xd1\x92\x17\xa6\x04\xf2\x80\x8d\x37\xe4\xbc\x32\xa8\x0d\x15\x42\x6b\x5c\x7b\xdb\x94\xeb\x98\xf3\x2c\xba\x75\x47\x81\x50\x81\xc1\xde\x1f\x74\x0d\x54\x58\x4f\xaa\xa0\x7a\xab\x50\xae\xa9\x06\x0d\x12\x87\x4d\xce\x83\xf3\x56\xf6\x2d\x4e\xc8\x8d\x28\x81\x54\xe5\xac\xc7\xb0\xad\x1a\xe9\x4a\x78\x0a\x50\xa8\x46\xdf\x48\xa4\xa2\x31\x32\x6c\x14\x3c\x29\x8b\x82\x2a\xb1\x01\x32\xb0\x25\x69\xdd\x8e\x34\x18\x92\xc2\x91\x13\x46\x49\x12\xce\x81\xc9\x49\x6a\x5b\x87\x70\x1a\x10\xba\x18\xe4\x41\xda\x2b\xf0\x0f\x02\xec\xaa\xcc\xea\xc4\x3a\xf0\x02\xad\x4f\x59\xb4\x9c\x1d\xcd\xa7\x1f\x7f\xfa\xf9\x9b\x7f\xde\x7e\x47\x7f\xaf\x28\xfd\x18\x8d\x5a\x71\x20\xfe\x75\xe7\xa0\x7e\xd0\x9a\xb2\x68\xf2\x3d\x71\x9e\xc4\xb7\x96\xdd\xcb\x6c\xb3\x35\xe7\xca\xe0\xe4\x8c\xde\x9f\xd2\x87\x63\x3a\x3d\x89\xcf\xa9\xd0\x56\xe0\xa4\x5b\x91\xb4\x95\xd3\x70\x3d\x39\x3d\xa1\xf7\xc7\x67\xf1\x70\x63\x43\x17\x65\xd0\xa1\xa7\x6c\x87\x40\xbe\x31\x2d\x15\x65\x4a\x52\x06\xc1\x17\x42\x02\x65\xd6\x6a\xaa\x84\x23\xb9\x16\x86\xc0\x7b\xeb\x0f\xcd\x92\x0d\xec\xb6\xd6\xe7\xbd\x69\x07\x76\x28\x6a\xc9\x0b\x83\x49\x30\xeb\x55\xe8\x1b\x08\xef\xbe\x06\x32\x4a\x77\xea\x3b\x18\xbf\x78\x21\x37\x80\x0f\x79\x24\x59\x5f\x0d\x60\x38\xbf\x21\xce\xf7\x71\xf4\x94\x64\x42\x9c\xc7\x4f\x4b\x96\xc4\xf9\x2a\x1e\x8c\xfe\xb3\xa9\x32\xf0\xdd\xa1\xef\x60\xd4\x87\x29\x4c\x2b\xe9\x73\x2c\xdf\xcd\x7e\x5c\x1d\xd1\xbb\xeb\xf0\x47\xcc\x8a\x4f\xb3\x8b\xd5\x34\xc4\xa1\x71\x32\xee\x7d\x07\xbd\x9d\x65\xda\x8f\x63\xe1\x98\xfb\xf6\x88\x47\xd1\x5d\x0d\x4c\x7e\x50\xa9\x37\xca\xb5\xf3\x38\x4f\xee\xab\x83\x1b\x7b\xfb\x1b\x4e\xea\xae\xe7\xe7\xb5\x08\x5b\x7d\x3b\xe8\x7b\x52\x18\x66\x2c\x45\x56\x18\x8f\x57\x63\xce\x79\x5b\x58\xfd\x87\xe6\x40\xe4\x87\xd5\xcd\x87\x3d\x5d\x2f\x3f\xcd\x2e\xc4\xac\x08\x84\x6e\x8e\xf7\xd4\x0c\xd7\x27\x7b\xfa\x6b\xb8\x3e\xdb\xc7\x2f\xa7\x35\x3e\x84\x35\x7e\x15\xab\xf6\x34\xa7\x2c\x4a\x92\xa3\x17\x06\xfc\x7f\x61\xbc\x3c\xc4\x78\x79\x08\x8c\x2d\x57\xf7\x6e\x55\xfb\x39\x7e\xe4\x32\x9f\x1f\xda\xbc\x79\x86\x3b\xda\xdc\x86\xeb\xf7\xf5\xcb\xaf\x5f\x68\xb1\x58\xd0\xc5\xef\x8b\x3f\x7e\x8b\xd3\xf3\xe8\xf9\x61\x9c\x4f\x1f\xdd\x14\x3e\x9d\xbf\x7e\xe2\xbf\x01\x00\x00\xff\xff\x62\x86\xdc\xce\x26\x07\x00\x00"
-
-func runtimeSyntaxGoYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGoYaml,
-               "runtime/syntax/go.yaml",
-       )
-}
-
-func runtimeSyntaxGoYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGoYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/go.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGodocHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcf\x4f\xc9\x4f\xe6\x8a\xd1\x03\xd3\x2a\x5c\x05\x89\xc9\xd9\x89\xe9\xa9\x7a\x5a\x99\xb9\x05\xf9\x45\x25\x5c\x80\x00\x00\x00\xff\xff\x10\xe1\x31\x92\x1f\x00\x00\x00"
-
-func runtimeSyntaxGodocHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGodocHdr,
-               "runtime/syntax/godoc.hdr",
-       )
-}
-
-func runtimeSyntaxGodocHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGodocHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/godoc.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGodocYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8d\x31\x4b\xc4\x40\x10\x85\xfb\xf9\x15\x8f\xb9\x2b\xf4\x20\xb9\x7e\x1a\x1b\x15\x2c\xe4\x1a\x8b\x80\xe7\xc1\xb2\x3b\xc6\xe0\x6e\x66\xd9\x5b\x41\x21\x3f\x5e\x12\xa3\xde\x2b\xdf\x37\xdf\xbc\x0d\x7a\x0b\xe6\x69\x03\xfd\x74\x29\x47\x15\xf4\x86\x60\x1e\x8d\x8b\x11\x13\xd2\xe0\x8b\x81\xe8\x75\x88\x5a\xbf\xf2\xc2\x67\x81\x82\x56\xf5\x55\x08\x00\x66\x38\xba\xa4\x02\x3e\x1e\xdb\xe5\x60\xcb\x0b\x79\x53\x17\xb4\x08\xb2\xf3\xef\xae\xd7\x76\x37\xa4\x6c\xa5\x12\x95\x8f\xa8\xe7\x1f\xbb\x41\x2e\x9a\x8b\x79\x01\x9f\x9e\x4f\x78\x69\x77\x4c\x2b\xf1\x96\x92\x8e\xeb\xcc\x9c\x73\x75\xa5\x0a\x78\xbf\xe7\xbf\x4e\xc7\x20\xe0\xed\x7f\x71\xf1\xfc\x37\x0d\xaa\x05\x13\xf0\xd5\xd3\xe1\xf6\x30\x75\x5d\x37\xdd\x3f\x74\x8f\x77\xd7\x72\xc3\xf4\x1d\x00\x00\xff\xff\x73\xe8\x65\xe9\x06\x01\x00\x00"
-
-func runtimeSyntaxGodocYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGodocYaml,
-               "runtime/syntax/godoc.yaml",
-       )
-}
-
-func runtimeSyntaxGodocYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGodocYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/godoc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGoloHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcf\xcf\xc9\xe7\x8a\xd1\x03\x51\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\xa8\x1f\xae\x3d\x0e\x00\x00\x00"
-
-func runtimeSyntaxGoloHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGoloHdr,
-               "runtime/syntax/golo.hdr",
-       )
-}
-
-func runtimeSyntaxGoloHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGoloHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/golo.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGoloYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x5f\x73\x1c\xb7\x0d\x7f\xf7\xa7\x50\xd5\xb4\x8e\x93\x91\x9a\xd7\x6a\x9a\x76\x54\x5b\xd7\x51\x9b\x58\x19\xfb\xea\x78\xc6\xe7\xda\xd8\x25\xf6\x8e\x39\x2e\x41\x83\xe0\x9d\x36\x45\xfb\xd9\x3b\xe0\xde\xea\x6f\x3d\xd9\x3e\x54\x33\x22\x41\x2e\x01\x02\x20\xf0\x03\xae\xf3\x01\x65\x48\x78\x76\xb4\xa6\x40\x4f\x9e\x38\x14\x6c\xe5\xec\xc9\xd1\xd1\xd1\x91\x7d\x8b\xd0\xe3\xd9\xd1\xf1\x6a\x75\x6a\xdf\xbf\x38\x7e\xf2\x84\x4b\xc0\x3c\x1e\x38\x39\x1a\x59\x8f\x57\xab\xe6\xcb\xae\xc4\x56\x3c\x45\xed\x4a\xd4\x67\xab\x55\x73\xfc\xf8\x4c\x16\x2e\xad\xe8\x8b\x21\x42\xef\xdb\xab\xe6\x27\x6c\x45\x4b\x34\xae\x73\x07\x49\x90\x17\xd0\xb0\x6f\xa7\xd5\x74\xf2\x0d\xb0\x87\x26\xa0\x5e\x35\x19\x79\x67\xe4\x67\x6e\x08\x3e\x8b\x66\x14\x05\x66\x18\x74\x87\xad\x10\xab\x94\x14\x50\x7b\x48\x9f\xe1\xba\xda\xea\x05\x33\xb1\x5e\xf4\x49\x06\x7d\x49\x11\xf5\x35\xf5\xa8\x57\xa9\x9a\xf4\x0a\x73\x09\x72\x98\x4e\x69\x3b\x51\x1d\xf8\x30\xd1\x58\x05\x4c\x8b\x2a\x67\xe4\x86\xf0\x70\x49\xdd\xa8\xc7\x41\x11\xef\x30\x8a\xef\x3c\xf2\x69\x1b\x20\xe7\x83\x52\x50\xd6\x3d\x46\xd1\xe4\xfb\x7b\x7a\x7f\xe6\xb8\x8f\x82\xdc\x41\x8b\x59\x7d\x9f\x02\x1a\x6f\x56\xbc\x16\x8c\x2e\x2b\xed\x90\xd9\x3b\xcc\xda\xc3\x16\x59\x23\xee\x2f\x63\x16\x88\x2d\xce\x91\x9d\x47\xc7\xf8\x5c\x5d\xe3\xf3\x0f\x8c\xd9\x74\xf3\xb9\xba\xc9\x0b\x32\x98\xa3\xbb\x00\x22\x18\xd1\xa9\xd0\x77\xf6\x14\xb6\xf1\x3d\x24\xfd\x08\xd1\x29\xf1\x45\xc8\xf8\x17\x14\xfd\x68\x8f\x42\x07\xb7\x42\x4a\x61\x50\xf4\xb2\x41\x9e\xa1\x0c\x8f\x5c\x34\x3e\x8d\xf0\xe0\xe3\x5a\x19\x7c\xb6\x39\x96\x10\x7c\x37\x68\x0b\xd2\x6e\x7c\x5c\xcf\x90\x97\x98\x7a\x9f\xd1\xa2\x66\x51\xa4\x30\xaa\x3d\x2b\xba\xc3\x02\x42\x50\x88\xc3\xac\x17\xf0\xe2\x21\xf8\x9f\x51\x6f\xc9\x1f\xbd\x6c\x7c\x5c\x6e\x18\xc1\x69\x16\x60\xd1\x6e\xba\x25\x84\x06\xda\xed\x92\x94\xe2\x6b\x14\xa5\xb8\xb0\x78\x6a\xed\x51\x82\x62\xfc\x54\xb0\xcc\x79\x9d\xc4\x3e\x4a\x88\x5a\xe7\xea\x09\x54\xbb\x2e\xc4\x3a\xfd\x00\x39\xef\x89\x9d\x66\x6c\x0b\xe3\xab\xbb\x5b\x8c\x9f\x8a\x67\x7c\x49\xf2\xb2\x84\x30\x2d\x2d\x3a\x96\x43\x42\x77\x5e\x93\x88\x21\xae\x4d\xe2\x0e\x39\xa3\x7b\x55\x57\x3d\xa4\x8b\x28\x3c\x28\xe4\xcb\x29\xf0\xa6\x80\x52\xc8\x8b\x03\x18\x40\xb8\xf9\xaa\x3e\x3f\x0f\x94\xab\xe5\x3e\xe0\x92\x96\x78\x2d\x2a\x78\x2d\x4b\x5a\xf8\x30\xee\x5e\x5c\xfb\x2c\x59\xdb\xc2\x8c\x51\x5e\x78\xd6\x1c\x10\x93\x96\xe2\x9d\xfa\x3c\xea\x53\x53\xdb\xf4\xbb\xea\xb4\xdd\x00\xbf\x81\x50\xcc\xe5\x32\x12\x81\xe2\x7a\xa4\x1c\x95\x26\xe0\x48\x77\x81\xe0\x70\x80\xb1\xa7\x1d\xfe\x79\xb8\x8c\x0e\xaf\xb5\xa1\xeb\x19\x3e\x0e\x7e\x8b\x61\x78\x5d\x52\x22\x16\x34\xc7\x19\xc8\x34\x14\x9c\x96\xe8\x90\x73\x4b\x8c\xda\x04\x1f\xb7\x93\xa7\x3e\xec\xbc\x43\xd2\x96\x62\x8b\x10\xd0\x69\xb7\xfe\xd0\x04\x68\xb7\x46\xf0\xb8\x5e\x33\x62\x34\x62\xc0\x10\x68\x3f\x1e\x31\x6d\xd7\x1f\x7a\x58\x63\x14\x30\xb2\x1d\xa0\x1e\xda\x6f\xbc\xa0\x36\x93\x98\x66\x14\xd3\x4c\x62\x9a\x1b\x31\xcd\x41\x4c\x73\x2b\xa6\x39\x88\x69\x26\x31\x6d\xe1\x4c\xfc\x21\x51\xf6\x35\x91\x0e\xeb\x0c\x3b\x7c\xb4\xc9\x98\x85\xf8\xf1\x7e\x49\x13\xe5\x68\x7f\xb3\xdb\x11\xef\x81\xdd\xb4\xb4\x18\xaf\x6b\x64\xc8\xf8\xc1\xf9\x9c\x02\x0c\x87\x55\xf0\x71\x4e\x88\x57\x00\xad\x80\xd2\x52\xcc\x1a\xe0\xe7\x71\xd5\x31\xf5\x97\x56\x28\xd6\x18\x0f\x10\xc4\x98\x10\xe4\x00\x49\x73\x64\x43\xfe\xee\x46\x1c\x05\x17\xea\xc8\x2a\xb0\xc5\x3a\xfc\xb8\xb1\xe8\x74\x4c\xa9\x0e\xe3\x32\x97\xc6\x38\xe6\xa0\x42\x6f\x21\x33\xe3\x60\x4f\xae\x84\x39\x0a\xff\xf5\xf5\xd5\xcb\x19\xc7\xb2\xb0\x8f\x6b\x03\xc3\x04\x9c\x51\x85\x8c\x51\x85\x1e\x94\xdf\xe4\x40\x70\xc1\xd4\xcf\x94\x7b\xa7\x74\xa8\xc3\xce\x47\xd4\x35\xca\xdf\x70\xb0\x69\xcc\xb0\xc4\x94\x90\xc5\x63\xbe\x41\xb9\x19\x82\xc5\xf7\x98\xb5\xa4\x25\xa9\x85\xd3\x92\x66\xf0\x74\xc4\x3d\x88\x0a\x5d\xc6\xc3\x88\x6b\xb4\xda\xf2\xa2\xe6\xbe\x0a\x2d\x2c\xf1\xad\x1c\xd1\xac\x6a\xb0\x31\x9c\x16\xc3\xe1\xa9\xe8\x31\xba\xd2\xa2\x22\xb4\x1b\x6d\xa9\x44\x51\xac\x28\x35\xcf\x55\x86\xff\xaf\xa1\x47\xc3\x2b\x75\x78\xe8\x80\x20\x25\x8c\x4e\xc1\xd5\xff\xcb\xee\xbc\xa9\xe5\x34\x59\xf0\x46\xa7\x3e\x66\x64\xd1\x00\xd9\xda\xa3\x9e\x9c\xef\x6a\xff\xf3\xc6\xe3\x5e\x3b\x1f\x9d\x81\xa5\x85\x7d\x0f\x49\x7f\x22\x1f\x27\xcc\xb9\x41\x69\x25\x76\xc8\xe3\x58\xe1\xca\x20\xef\x5c\xd4\xc7\x36\x14\x87\x8a\xd7\xe3\x3c\x7e\x50\x87\x01\x05\x75\x03\xd9\x12\x4c\xc0\xc7\x6c\xaf\x79\x55\x0b\xb6\x0a\x55\xe0\x9d\x93\x4b\xa3\x41\x4b\xd2\x5c\xda\xd6\xec\x71\xda\x97\xa0\x11\xd7\x96\x32\xca\x36\x38\xbf\x53\xb6\xa1\x27\xa7\x6c\x43\xa2\xbd\xb2\x0d\x59\x58\x83\xe8\x5a\x14\x3f\x69\x0d\x2c\x0d\x38\x36\x0f\xd6\x32\x7c\x8c\x24\x7a\x4d\xac\xb8\xc3\xa8\xe4\xdc\xad\xb6\xd3\x6b\x7d\xf4\xd9\xfe\xa3\xf5\x18\x9d\xb5\x78\xc6\x78\xd9\xd5\xf2\xd6\x59\x6f\x18\x9d\x59\xe6\x05\x7b\xab\xf8\x75\x5e\xa3\x98\x33\x7d\x15\x97\x45\x17\x60\x56\x2f\xb9\xa0\x56\x3e\x2b\x47\x83\x96\x38\xcd\xc0\x83\xe6\x64\xb5\x15\x59\x77\xc0\xc0\xeb\xac\x79\x0f\xe9\x7c\x22\x9e\xd7\x93\x95\xa2\xda\x7b\x1a\xa9\x3e\xee\x68\x5b\x3b\x02\x4d\x3e\xa1\xb6\xd4\x27\xca\xa8\x9e\x14\xa2\x5b\x6e\x30\x6a\x89\xe2\xad\x0e\xb7\x85\x4d\x19\x37\x27\x6d\xe8\xef\x29\x21\x3f\x87\x8c\x8a\x9f\x0a\x84\x3c\xf6\x19\xd9\x2e\xba\xd7\x68\x66\x01\xa9\x7d\xe1\x04\x4d\x9d\x62\x7d\x5f\xbb\x79\x6f\x43\x6b\x42\x7a\xeb\x9d\x94\xac\x1d\xdb\xfb\x7c\x0f\x91\x72\xc2\xd6\x43\x38\xf0\xef\xcd\x92\x86\x11\xb6\xf5\x1d\x7c\xac\xc5\x55\x0a\xc7\xbb\x3c\xb5\x31\x9e\x74\xe5\x43\x6b\x66\x51\x0c\x21\x0c\x2a\x1b\xa6\xfd\x7f\xb7\x72\xc2\xb1\x92\x2c\xa3\x37\x3e\x6b\x40\x31\x7f\x6b\xa0\x16\xc2\x3d\xbd\x86\xbe\xa1\x70\xda\x30\xb4\x5b\x14\xf3\xcc\xbb\x2f\x9f\xfd\xf3\x5f\xef\x75\xb5\x7a\xa7\xab\xd5\xfb\xe3\xcf\x78\xa0\x23\xd6\x7d\x05\xf4\x8e\xb8\x66\xb8\xbf\xa7\x7b\x8d\x07\xb8\x39\x0e\x35\x37\xd5\x67\xb5\x40\x24\xd6\x1a\x68\x53\x7c\xdd\xf3\xf5\xc4\x79\xda\x10\x85\x1b\xeb\x4b\x6d\xfb\xee\xfb\xf4\xf6\x8e\x03\x68\x58\xc8\x59\x53\x61\xd0\xea\xee\x3f\xe0\x68\xa6\x81\xab\xd5\x3a\x33\x73\xb5\x3a\xf9\xfa\x77\x5f\x7d\xfb\x87\x3f\xfe\xea\xdf\xbf\xf9\xad\xfe\xe3\xbd\x9e\x7d\xfb\x50\xf0\x69\x2c\x7d\x63\xee\x3c\x5c\xf0\xee\x9b\x93\xdf\xbf\xff\x5a\xbf\xb9\x36\x02\x4e\xba\xf3\x93\xc5\xfb\xaf\xec\x1e\x7d\x7a\xfa\xf4\xb1\x01\x63\x1d\x19\x7f\xf1\xd9\x5f\x0d\x2e\xb3\xe8\xf8\xf8\x66\x0f\xa3\x7b\xb0\x93\xb7\x3e\x55\xb3\x57\xab\xd3\xdb\xdd\x3b\x3f\x1e\xa7\xbf\xbb\x37\x8d\xd1\xf5\x7c\x03\x7c\xcb\x3a\x57\x9d\xa7\x0f\xb5\x79\xfa\xff\x54\xa6\xaf\x41\xf4\x48\x89\x5f\x3f\x54\xe2\x8b\x5f\xb8\x4e\xc8\xd1\xd9\xd1\xf1\x97\xcb\xab\x17\x57\xfa\xf6\xed\x5b\x5d\x5c\xbe\xfd\xfe\xe2\xd9\xd9\x9f\x7e\xf9\xae\x93\x93\x93\x93\x87\xd7\xdd\xdf\xfb\x9f\x6f\xfc\x4f\x00\x00\x00\xff\xff\x8f\x72\x85\xf4\x0e\x10\x00\x00"
-
-func runtimeSyntaxGoloYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGoloYaml,
-               "runtime/syntax/golo.yaml",
-       )
-}
-
-func runtimeSyntaxGoloYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGoloYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/golo.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGraphqlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2f\x4a\x2c\xc8\x28\xcc\xe1\x8a\xd1\xd3\x48\x2f\xcc\xa9\x81\x72\x35\x55\xb8\xb8\x00\x01\x00\x00\xff\xff\xa8\xdb\x12\x45\x1a\x00\x00\x00"
-
-func runtimeSyntaxGraphqlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGraphqlHdr,
-               "runtime/syntax/graphql.hdr",
-       )
-}
-
-func runtimeSyntaxGraphqlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGraphqlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/graphql.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGraphqlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\xed\x6e\xdb\x38\x10\xfc\xef\xa7\xe0\x39\xfe\x21\xdd\x21\x79\x00\x01\x07\x9f\x62\xcb\x39\x15\xb6\x92\x4a\x56\x81\x22\x1b\x18\xb4\xbc\x71\x84\x52\xa4\x4c\x52\x69\x83\x6e\xdf\xbd\x10\x65\xf9\x2b\x8d\x7e\x08\xd8\xe5\xec\xcc\xee\x70\xf9\x5c\x0a\xb4\x6f\x35\x06\x6c\xab\x79\xfd\xb2\x13\x83\xc1\x06\x2d\x16\x36\x18\x30\xc6\x58\x7b\x2c\x79\x85\x01\x1b\x02\xdc\x78\xdb\x9d\xa0\x3d\xce\x1f\x0d\x07\x03\xdd\x08\x34\x1d\xf2\x9a\x75\x34\x43\x80\xb5\x37\x0e\xbc\x5d\x83\xfa\x8d\xaa\xc6\x72\x5b\x2a\x49\xa6\x59\x9b\x42\x97\xb5\x0b\x5a\x24\x95\xb2\x6e\x2c\x99\x82\x0b\xae\xe9\x59\xf3\x6d\x85\xb2\x8d\x5f\xb0\xe2\xd4\xc8\x16\xa7\x24\xe1\x0f\x8b\x72\x63\xc6\xbe\x0f\xb0\x1e\x0e\x9c\xd4\x15\xeb\xaa\x9c\xa2\xd9\xab\x1b\xcb\x2d\xb6\x14\xfb\x16\xe2\x29\xc5\xd2\xd2\x4c\x28\x6e\xe9\x56\x29\x81\x5c\x52\x66\x75\x29\xb7\x34\xe5\x16\x6d\x59\x21\x25\x8d\x10\x67\xc4\xa5\xb4\x5a\x99\x1a\x8b\xb6\xcf\x0f\xf9\xbd\xd5\x0a\xe0\xfb\x3f\xfe\xa1\xac\xe6\x9a\x57\x68\x51\xff\x11\xed\x39\xb0\x37\x0e\x00\x02\xef\x11\xc0\x3c\xfd\xed\x8f\xbb\x78\xe4\x1f\x49\x36\xa5\x6e\x75\x5f\x91\x09\x55\x38\xd7\x3e\x9a\xed\x73\x1e\xa5\x5f\x69\x91\x2f\xc3\x65\x7c\x9f\x50\x96\xdf\x66\x93\x34\x7e\x70\xc1\x2c\x8e\xe6\x53\x9a\xa5\xe1\xdd\x22\x4a\x96\xab\x69\x34\x8b\x93\xb8\x3b\xe9\x73\xd9\x43\x1a\x85\x53\x8a\x93\x79\x9c\x44\xab\x3e\x4d\xd9\xe4\xff\x68\x11\x52\x36\x09\xe7\x61\x4a\xf7\xb7\x9f\xa2\xc9\xb2\xa3\x3b\x65\x09\xd3\xbb\xfc\x92\x39\x4e\x96\x51\x3a\x0b\x27\x11\xe5\x49\x1b\x47\x49\xbe\x70\xbf\xd5\x97\x70\x9e\x47\x14\x27\x0f\xf9\x72\xb5\x67\xec\x82\x4b\xde\xb3\x5b\x38\x38\xd1\x1b\x50\x28\x69\x2c\xef\xdc\xfc\xef\xdc\x7a\xad\x94\x3d\xbb\xa8\x13\xac\xf3\xca\xed\xe1\xa2\xdf\xc3\xec\x74\x0f\xb3\x6e\xd9\x52\xa5\xec\x99\xfe\x2b\xd7\x25\x5f\x8b\xe3\xdd\xd7\x58\x94\x5c\xb4\xea\x00\xa3\x0b\x7d\xdc\x35\xa5\xc6\x0d\x33\x6f\xd5\x5a\x89\xf7\x15\x7f\xf5\xd8\xeb\x3d\xa4\x4d\x06\xf4\x2f\x01\x10\x01\x78\x04\xe0\x13\xc0\x4f\x02\xf8\x45\x00\x8f\x04\xf0\x74\x2c\xe9\xa7\xb9\x59\x2b\x57\xd9\x8e\x64\x75\x83\xf4\xcc\x85\x41\xd7\x35\x63\xef\xc0\xc6\xed\x79\xf7\x30\xdb\xcf\x58\xae\x9d\x21\xc3\xe1\x21\x87\x72\x73\x91\x31\xdf\xca\xda\x49\x00\xdc\x1c\xb3\x27\x6f\xbc\xff\x4e\x95\xba\x41\x27\x2f\x5c\x1f\x4b\x0f\xed\x54\x6e\x69\xdf\xb5\x71\x75\xd9\xc5\xe8\x52\x8e\x3d\x3e\xfd\x0e\x00\x00\xff\xff\x8f\x8a\x78\xa2\x9a\x04\x00\x00"
-
-func runtimeSyntaxGraphqlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGraphqlYaml,
-               "runtime/syntax/graphql.yaml",
-       )
-}
-
-func runtimeSyntaxGraphqlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGraphqlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/graphql.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGroffHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2f\xca\x4f\x4b\xe3\x8a\xd1\xcb\x8d\x4e\xcd\x2d\x8e\x55\xa9\x89\xd1\x2b\xca\x4f\xab\x89\xd1\x2b\xc9\x4d\x4c\x56\xa9\x89\x03\x51\x7a\x5c\x5c\x80\x00\x00\x00\xff\xff\xc1\x42\xbc\xff\x26\x00\x00\x00"
-
-func runtimeSyntaxGroffHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGroffHdr,
-               "runtime/syntax/groff.hdr",
-       )
-}
-
-func runtimeSyntaxGroffHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGroffHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/groff.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGroffYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\xc1\x4e\xc3\x30\x0c\xbd\xf7\x2b\xac\xa8\x87\xb6\x68\x11\x1c\xc9\x85\x03\x9f\x11\x67\x52\xd4\xba\x23\xd2\x92\x56\x89\x39\x20\xf5\xe3\x51\xd2\x31\x26\xca\x06\xf3\xc5\x6d\xf2\x9e\xfd\xfc\x9c\xd1\x1d\x89\x3f\x66\x52\x70\x88\xd3\x38\x56\xd5\x40\x4c\x3d\x2b\xa8\x00\x00\xf2\x6d\xb0\x9e\x14\x08\x44\xe9\x35\xf9\x64\xea\x05\x51\xc6\x69\xcc\x89\xbd\xed\xeb\x65\x9f\x93\x14\x55\x15\xdf\x8f\x94\x54\x61\xee\x20\xb1\x65\xf2\x14\x58\x81\xd8\x23\xca\x66\x48\x4b\x88\x2d\xe8\xbd\xd6\x2a\xcd\xb6\x27\x65\x8c\xe9\xc4\x09\xde\x4f\x21\xb1\x0d\x2c\xd3\x4c\xbd\xb3\xc7\xd7\x37\x1b\x4b\x5b\x44\xf9\x0f\xcc\x28\x97\x92\x10\x1b\xb9\x7e\xa6\x06\xf1\x61\x41\xdc\xb5\x2f\xfa\x71\xf7\x6c\x7e\x16\x51\x20\x9a\x8c\x2b\xe0\x1c\x6d\x68\x32\xb3\x91\xb2\xdd\x60\xcb\x7f\x8e\xc4\x36\xfe\x46\x45\xd4\xe2\x0c\xa2\x30\x28\x10\xe6\xfb\x60\x35\x06\xb4\xa9\x4e\x85\x57\xcb\x8b\x2f\x17\x6e\x74\x57\xbd\xf1\x17\x46\x96\x8e\x42\x76\xf5\xd6\x16\x8e\x2e\x1c\xb6\xea\x10\xbb\xab\xa3\x7d\x91\xfe\x9a\x10\xb1\xbb\x73\xc6\x1b\xdb\x2a\x52\x6e\x6e\x75\x23\x67\xa5\xdd\x25\xc0\x0d\x14\xd8\x8d\x8e\xa2\xf4\xb6\x8f\xd3\xb9\x4a\x8e\x5a\x3f\x95\x47\xf1\x19\x00\x00\xff\xff\xb6\xd6\x2a\x2f\x01\x03\x00\x00"
-
-func runtimeSyntaxGroffYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGroffYaml,
-               "runtime/syntax/groff.yaml",
-       )
-}
-
-func runtimeSyntaxGroffYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGroffYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/groff.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGroovyHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2f\xca\xcf\x2f\xab\xe4\x8a\xd1\xd3\x80\xb0\x6a\xd2\x2b\x6b\xd2\x41\x54\x71\x46\x4d\x7a\x51\x62\x4a\x4e\xaa\xa6\x0a\x57\x9c\xb2\xa2\x9e\x96\xbe\x46\x6a\x5e\x99\x82\xb6\xa6\x3d\x44\xa1\x82\x96\x0a\x17\x20\x00\x00\xff\xff\x5f\x02\x10\x8c\x3d\x00\x00\x00"
-
-func runtimeSyntaxGroovyHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGroovyHdr,
-               "runtime/syntax/groovy.hdr",
-       )
-}
-
-func runtimeSyntaxGroovyHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxGroovyHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/groovy.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxGroovyYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\x6d\x6f\xdb\x36\x10\xfe\x9e\x5f\x71\x75\xbd\xc5\x76\x22\xc7\x29\x8a\x75\xf1\x5e\xdc\x2c\xa9\xbb\x6e\x6b\x53\x20\xd9\x10\x54\x52\x03\x4a\x3a\x49\x5c\x68\x52\x23\x29\x3b\x6a\x98\xfd\xf6\x81\x94\xe2\xf8\x6d\x5d\xd2\x02\xc3\x3e\x4c\x1f\x6c\xeb\x48\x3e\xcf\xf1\xee\xf8\x1c\x9d\x52\x86\xba\x2a\x70\x08\x99\x14\x62\x5a\x6d\x6d\x25\xa8\x31\xd6\xc3\x2d\x00\x00\x3b\xca\xc9\x04\x87\xd0\x0a\x82\x7e\xa7\x9e\x62\xb2\xca\x64\xf6\x4b\xe5\x26\x93\x24\x61\xd8\x6d\xb7\xdc\xf4\x1c\x49\x82\x72\x08\xad\xf7\x8f\x1f\xf5\x7b\x7b\x1d\xe4\x53\xd8\xe9\x8e\xea\x65\xd0\x6b\xb7\xb6\xb6\x64\xc9\x50\xd5\xe0\x8f\xe1\x90\x27\xa0\x73\x04\xa5\x2b\x86\x90\x95\x34\x41\x48\x85\x84\x58\x70\xa5\x09\xd7\x0a\xa8\x82\xa3\x93\x37\xa7\x67\x87\x6f\xce\x2e\x8e\x0e\x4f\x5f\xb8\x85\x1e\xd0\x04\xb9\xa6\x29\x75\x64\x41\x10\xf9\x87\xde\xbb\x8b\x76\xb8\x13\x04\x51\xab\xc1\x3e\xdb\x80\xfb\xd3\x6f\xaf\x81\x11\x9e\x95\x24\x43\x87\xfd\x96\xa8\x98\xb0\x23\xa2\x1a\x5e\x46\x94\x42\x05\x84\x27\x40\xb9\x46\x99\x92\x18\xd5\x1a\x67\xdf\xcd\xbb\x63\x0e\x7d\xe2\x7d\x38\xf4\xde\x0d\xbc\x83\x45\x1f\x1a\x47\xde\x4a\x3a\xa1\x9a\x4e\x11\x6c\x9c\x6f\xd1\xea\x98\x5b\x84\x4e\x54\x69\x34\x2a\x17\x52\x1b\xca\xb5\x61\x82\x67\x26\x65\x82\x68\x93\x88\x32\x62\x68\xe2\x9c\x48\x13\x09\xc1\x90\x70\x33\x15\x34\xe9\xae\x72\x9c\x55\x05\x7a\x12\x19\xd1\x98\xc0\x25\x56\x33\x21\x93\x45\xa6\x7e\x63\x6b\x18\x0b\x49\xa7\x44\xa3\x29\xca\x88\xd1\xd8\x14\x52\xd8\x94\x63\x62\x94\x26\x9a\xc6\x26\xa5\x9c\x30\x33\x25\xd2\x24\x98\xae\x91\xfd\xbc\x8c\x6f\xd7\xe0\x04\xb9\x6e\xc0\x53\x21\xcd\x2c\xa7\x0c\x4d\x22\x0c\x4d\x0d\x32\x85\x46\xcd\xa8\x8e\x73\x13\x13\x85\x16\x93\x94\x4c\x1b\x2d\x2b\x13\x13\x6b\x76\x7c\xac\xba\x63\x5a\x47\x8d\x24\x92\x4b\x13\x0b\xae\x29\x2f\xd1\x48\xd4\xa5\xe4\x46\xe7\x52\xcc\x8c\x4d\x9a\xd4\x1f\x5b\x5d\x90\xf8\x92\x64\x68\xe8\xa4\xb0\x61\x76\xf9\x33\xf3\x0c\x1b\x2d\x09\xd5\x06\x79\x39\x31\x78\xa5\x91\x27\xca\xce\x64\x0e\x41\xd5\x24\xea\x63\xf0\x3a\xa7\xca\xa8\xb2\x40\xd9\x5d\xa8\xc0\x5f\xb9\x2a\x15\x26\xbb\x10\x95\x1a\x24\x2a\x94\xd3\xf5\xec\xac\x42\x65\x42\x0b\xe3\xea\x7f\x2d\xee\x27\x05\x4a\xa2\x85\xac\xeb\xb3\x28\x79\xac\x4b\xa2\xa9\xe0\xb7\x50\xd5\x24\x12\xac\x2f\x9a\x69\x43\x68\xf9\xde\x4e\x6f\xef\x8b\xef\xbe\xfd\xfe\xfd\x9f\x5f\x9a\x47\xa3\xe1\x37\xbb\xfd\xe7\xa1\xb1\x34\x94\x1b\xaa\x0c\xb1\x41\xb0\x27\x2d\x46\x91\x1a\x8e\xb3\xa5\x4d\xd6\x70\x91\x24\xf1\x25\x6a\x5b\xee\x7e\xa7\x7b\x7d\x63\xd7\xfb\x26\x08\xc2\x25\xdf\x8e\x31\xa6\x13\xc2\xdc\xa9\xc9\x50\x02\xa3\x1a\x25\x61\x0d\xd4\xed\x79\xee\xf3\x72\x12\xb9\x33\xdb\x19\x51\xcb\xe5\xef\x7b\x07\x61\xc7\xbf\x18\x78\x07\x61\xcf\xb7\x9f\xdd\x91\xff\xf2\x97\x57\xc7\xe3\x70\xb4\x10\xc9\x1f\x28\x27\xb2\x7a\x28\xf8\x20\xf2\x07\xfb\x61\xc7\x1f\xec\x5f\x58\xf0\xfd\xcd\xd8\x27\xb1\x7e\xb8\xdf\x03\x7f\xe0\x3d\xb3\xd0\xde\x33\x87\xed\x3d\xdb\x0c\xfe\x23\x5e\x91\xe4\xd3\x42\x33\xb8\xb2\xf1\x20\x5e\xea\x68\xec\x8f\x9a\xc9\x99\x36\x92\x8d\xad\x66\x50\x9e\x79\x85\xa0\x5c\xdf\x3b\x05\x03\x97\x82\x81\x77\x70\x31\x4f\x41\xc7\xef\x87\x9b\xec\xdd\x51\x07\xfd\x1d\x2f\x1c\x6d\x1e\xf4\x97\x1c\x5a\xe0\xb4\xda\x75\x7b\x54\x64\x89\x26\x25\x56\x13\x78\xc9\xd8\x5a\x91\x1f\x72\x2e\xb4\xab\xea\x75\xdd\x1d\x42\xeb\xb9\xd5\x5b\xe2\x7d\xb8\x68\x87\xcd\x2f\xeb\x43\x3b\xec\xad\xe2\x9c\x52\x9e\x31\xf4\xfe\x28\x85\x95\x44\xa5\x25\xe5\x99\x5a\xf5\xab\x36\xd7\xdd\xc8\x3e\x4a\x13\x69\x0f\xe2\x76\x6b\x6e\x42\x9e\x2c\x1b\xd4\x25\x2d\xdc\x5e\x82\xa0\x7f\x67\x5d\x68\x6b\xb7\xcf\x22\x4f\x81\x31\x25\xec\x28\x27\xb2\x59\xda\xf1\x83\xd6\x76\x94\x72\xa9\x74\x10\x5c\x3d\x79\x6a\x6d\xa1\x29\x7d\xe2\xa5\x87\xde\xd8\x06\xf4\xfa\xe9\x4d\x77\x59\xe3\x73\xaa\x80\x30\x25\x60\x62\x45\x13\x95\x6b\x9d\x67\x92\x16\x0c\xbd\xba\x53\xac\x6c\x17\x24\x66\x54\xf0\x5a\x80\x5e\x41\x4c\xf8\xb6\x15\x22\x2b\xb5\x90\x52\x9e\x00\x81\x19\xa9\x40\x0b\xb0\x0d\x2a\x23\x1a\x81\xea\x5d\x20\x8c\x39\x68\x27\xe2\xa0\x34\x65\xac\xa6\xa4\x3c\x83\x56\x0b\x88\x02\xd2\x50\x40\x2c\xa4\xc4\x58\xb3\xea\x36\x7d\x4c\x89\x5d\xe0\xa8\x6c\x21\x42\xfb\xfa\x06\x88\x44\xe0\x38\x45\x09\x99\xb0\x36\x2d\x20\xc2\x66\x0b\xc9\xdd\x7a\x98\x51\x9d\xc3\xef\xa5\xb2\x1e\x66\x78\x05\x48\x75\x8e\x72\x17\x94\x80\x9c\x66\x39\xa3\x59\xee\x30\x67\xd6\x1d\xd7\x0d\x80\xa6\x20\x38\xda\x3e\xae\x85\xe3\xac\x9b\x76\x21\xd8\x9d\x2c\xba\x8b\x80\x42\xd0\x33\x01\x85\x14\x11\xc3\x89\x82\x58\x4c\x22\xca\x31\x81\x09\x12\x0e\xca\x61\xc3\x84\x2a\x4d\x2e\xed\xbd\x80\xcf\x19\x9d\xc3\x39\xd1\x2e\x1e\xa5\x42\x69\xc9\x9c\x93\xf3\xcd\xe4\xc4\x76\x76\x01\x09\x12\xe6\x36\x71\xab\x88\x9b\x32\x72\xdf\x02\x0c\x5a\xab\x15\xb8\x68\xf9\xf7\x4b\xf0\x0e\x70\xe1\x16\x34\x6d\xa0\xae\x9e\x3c\xf5\x83\x60\x16\x94\x83\xc1\xd1\xc0\xb3\x5f\xc7\x5f\xb9\xcf\xaf\xdd\xcb\xd8\xbd\x8c\x9b\x97\x71\x50\x0e\xf6\x07\x76\xda\x78\x3c\x7e\x11\xee\x38\xa9\x99\x5f\x9f\x2e\x3e\x0d\xa4\xdb\xfb\x7b\x37\xe7\x2e\x5e\x87\xfd\x9e\x7f\xb3\xdc\xb6\x3e\x76\x7a\xee\x9f\xab\x60\x63\xbe\x82\xff\x73\xf6\xc9\x39\x5b\x1a\x59\x0c\xb6\xdf\x0e\xfd\xeb\xb0\xb5\x36\x5e\x07\x7d\x9e\xde\xc5\xa7\x8e\x31\xf8\xe1\x86\xc4\xab\xcf\xea\x12\xdb\xeb\x7d\x62\xfb\xbf\xd0\x29\x4e\x19\x51\x79\x35\xef\x02\x56\x81\x19\xa6\x1a\x44\xa9\x77\x21\xc2\x98\x94\x56\x10\x73\xac\x6a\x19\xb6\x82\x57\xf2\x19\xe1\x36\x06\x05\xb3\x7f\x79\xa0\x90\xa8\x75\x05\x93\x32\xce\xe7\xfd\x40\xd3\x09\xce\xc5\x8d\x31\x22\x3d\xb5\x44\x74\xdf\xb8\xf9\xed\x70\x6f\x35\x70\x7b\x7e\x3b\x5c\x8d\xd1\x4a\xca\x9a\x8e\xce\x28\x47\x2b\xe0\xee\x6e\x3e\xa7\x74\xaf\xeb\x54\x7b\x6b\x44\xed\x7f\xc8\x84\x16\x89\xb0\x97\xa3\xb3\x93\xe3\x13\x73\x7e\x7e\x6e\xc6\xaf\xce\x5f\xbf\xe8\x0e\x47\x4b\x11\x7e\x5d\x32\x4d\x1f\xe6\x89\xdf\x0b\x57\x7d\xf1\x7b\x8b\x81\xf8\x0c\x77\x5e\xba\x3f\xd8\x89\x88\x1f\xe4\x8e\xdf\x0b\x9f\x8f\xee\xe3\x93\x4d\xc4\x5f\x01\x00\x00\xff\xff\xc4\x23\x99\xf3\x28\x10\x00\x00"
-
-func runtimeSyntaxGroovyYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxGroovyYaml,
-               "runtime/syntax/groovy.yaml",
-       )
-}
-
-func runtimeSyntaxGroovyYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxGroovyYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/groovy.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHamlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x48\xcc\xcd\xe1\x8a\xd1\x03\x51\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x47\x1a\x0c\x70\x0e\x00\x00\x00"
-
-func runtimeSyntaxHamlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHamlHdr,
-               "runtime/syntax/haml.hdr",
-       )
-}
-
-func runtimeSyntaxHamlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxHamlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/haml.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHamlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6e\x82\x30\x14\x87\xef\x79\x8a\x5a\x31\x50\x0c\x64\xb7\x23\x93\xb9\x47\xd8\xd5\x92\x9d\x9e\x63\x3a\xad\x1b\x09\xe0\x1f\xea\x8c\x5a\xdf\x7d\x29\x43\x64\x73\xe3\xf2\xfb\x7d\xa1\x5f\xd3\x65\x5e\x68\x73\x58\xeb\x94\x7d\xa8\xb2\xf0\xbc\x85\x36\x7a\x6e\x52\xe6\x31\xc6\x98\x1b\x2b\x55\xea\x94\x71\x29\x13\x27\xf8\xdc\xf3\xb6\xbb\x42\xd7\x69\x23\xc4\xac\x3e\x94\x6f\xab\x22\x65\x3c\xb6\x13\xde\xb2\x85\x5e\xaa\x5d\x61\x1c\xcc\xec\x24\xbb\xe0\xf9\xaa\xaa\x8d\xaa\x1c\x0f\x81\x31\xb4\x24\x46\x70\x17\xdf\x3f\xc5\xaf\x2a\x3e\xce\x70\xdc\x99\xf5\x5a\xcf\x73\xe5\xfe\x9a\xfe\x2d\x7c\x17\xbb\x28\xb8\x1d\x2f\xe7\x24\xb5\xd9\xe6\xd5\xbb\xf3\x78\x08\x24\x39\xda\x50\xba\x8f\x0b\x11\x49\x6e\x47\xf0\xfc\x82\x8f\x52\x9e\x80\xce\x18\x49\x79\xee\x48\x08\x24\x1c\x11\x2d\x79\x00\xca\x30\xca\xba\xdd\x07\xf2\xdd\xee\x77\x84\x80\xc8\x11\x6a\xc9\x00\x68\x80\xd1\xe0\xff\xa4\x20\x04\x0a\xda\xa0\x40\x88\x28\xb0\x23\xd8\xec\xf1\x67\x4d\x03\xfa\x31\x9b\x3d\x5e\x5b\x9a\x15\x80\xd0\xad\x78\x01\xfd\xb6\x06\xf4\xd3\x36\x7b\xfc\x55\x96\x2f\x74\x65\xf2\x65\xae\xb7\x29\xe3\xc3\xde\xf1\xb7\x42\xf2\xa9\x9c\x14\x4e\xed\x74\x2a\xda\x77\x99\xa9\xf8\x88\xe3\xeb\x35\xcb\x52\x37\x0f\x3c\x04\x3a\x61\x12\xf9\x76\xe8\x73\xef\x2b\x00\x00\xff\xff\x82\x41\x7f\x6a\x64\x02\x00\x00"
-
-func runtimeSyntaxHamlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHamlYaml,
-               "runtime/syntax/haml.yaml",
-       )
-}
-
-func runtimeSyntaxHamlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxHamlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/haml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHaskellHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x48\x2c\xce\x4e\xcd\xc9\xe1\x8a\xd1\xcb\x28\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\xbf\xb7\xe2\xf8\x0f\x00\x00\x00"
-
-func runtimeSyntaxHaskellHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHaskellHdr,
-               "runtime/syntax/haskell.hdr",
-       )
-}
-
-func runtimeSyntaxHaskellHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxHaskellHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/haskell.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHaskellYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x53\xef\x4f\x1b\x39\x10\xfd\x9e\xbf\x62\x6f\x0f\xa1\x44\xba\xe4\xbe\xe7\x08\x77\x57\x48\x2a\x5a\x20\x2d\x44\x55\x54\x06\x55\xce\x7a\x36\x6b\xe1\xb5\x83\xed\x25\x8d\x78\xf4\x6f\xaf\xec\x04\x08\x41\x2a\x1f\x1a\x45\x6b\xcd\x9b\x1f\xef\xcd\x78\x5c\x2a\xcd\x61\xb5\xe0\x7e\x56\x09\x7f\xc3\x5a\xb7\x5a\x92\x03\x17\xa1\xdf\xca\xb2\x2c\x8b\x6e\x23\x6a\xee\x67\x39\x51\xaf\xf2\x7b\x79\xab\xe5\x1a\xcd\x7e\xed\xfe\x33\xfb\xc8\xab\xa5\x75\xd2\x27\xb3\x9b\xf9\x20\x02\xd7\x6c\x42\x4a\x98\xb5\x85\x47\x21\x3c\xc3\x96\x28\xb4\xf0\x1e\x52\x04\x01\xc9\xa5\x68\x74\x80\x64\xa7\xee\x94\x99\x43\x5a\x94\xd6\x09\xad\xe3\xc1\x6a\x6e\x50\x29\x19\x1d\xaa\x44\xa8\xd8\x80\xb5\x67\xa8\x7a\x61\x5d\x80\x32\xa5\xfa\xbe\xfe\xea\xf5\xe1\xa0\x8c\x0f\xc2\x14\x0c\xcd\x31\x00\xb5\xb4\xa8\xad\x6c\x34\xc3\xf0\x32\x36\x88\xdb\x46\x68\x55\x2a\x96\x48\xe6\xb2\x62\xc7\x1d\xa2\x59\xde\x4a\xda\x63\x33\x5f\x84\x53\xb6\xf1\x99\x5f\xd5\x33\xab\x9f\x7a\x4a\x56\x3f\xcb\xdb\x44\xc0\x7f\xf8\x03\x7d\x7c\xc3\x0f\x0c\x40\x44\x84\x7f\x40\xd4\x26\xea\xe0\x2f\x10\x5d\x81\xe8\x1a\x44\xf7\x20\x7a\xe8\x6c\x95\x1e\x2f\xd8\x89\x60\xdd\xcb\xa2\x3d\xbb\x81\x63\xf5\xc1\x00\x7f\x0f\xb0\xbf\x0f\xa2\xf8\xc7\x01\x0e\x71\x30\xc0\xe1\xa0\xf3\xb6\xc4\x05\x17\x4a\x24\x8d\xdd\x43\x1c\x74\x3b\xf9\xae\x76\xa2\x1e\x88\xf6\xb6\x2a\x1d\x8b\x20\xb2\xc2\x1a\x1f\x5c\x53\x6c\x29\x4b\x90\x30\xa1\x37\xb3\x9b\xcc\x59\x7b\xe2\x1a\xc6\x48\x68\xbf\x99\xd8\xcb\xc8\x4d\xd0\xb9\x0d\x55\xbc\xb3\x0f\x8d\x0f\x38\xe5\x32\xe0\x42\xcd\xab\x80\xd3\x09\x86\x9f\xf1\x7e\xb2\x33\xec\x35\x7f\x5c\x0a\x7e\xa4\x56\x92\x4d\x88\x77\xe4\x7a\xc9\xb1\x29\x7c\xc1\x42\xe2\xb2\xb2\x4b\x0c\x4d\x53\x63\x78\x8b\xb1\x93\x88\xf9\x78\x67\x1b\x23\x59\x62\xb2\x5a\xb0\x98\x69\xc6\x79\x53\xe3\x82\x85\xc6\xc8\x89\x22\x28\x6b\x84\xc6\x89\x09\x3c\x77\x42\x27\x47\xc4\x31\xd2\x56\x84\xa8\x35\x21\xd1\xc0\x99\x35\x42\xae\xbf\x9f\x74\xe3\x31\x6a\x4c\x9c\x0a\x46\x56\xcb\x54\xf9\x7f\x29\x55\x50\x77\x8c\xaf\x6a\xd1\xb9\xca\xae\xb7\x5a\xb9\x0c\x4e\x99\xf9\xab\x01\xfa\x04\xf7\x37\x61\x59\x7c\x1c\x2e\x0d\x2b\xcf\x9f\x30\x36\x72\x07\xf1\x37\x6a\x91\x1a\x27\xea\x3d\xa3\x5b\x8f\xee\xf1\xb7\xcd\xb4\xbe\xff\xa3\x4a\xb8\xe7\xd4\x27\x79\x47\xb6\x8e\x4f\xf2\x59\x5f\x32\x5f\xeb\xea\x76\x77\x75\xed\xbd\x21\x20\x58\x69\xe3\xd2\x4d\xc6\xc7\x63\x4c\xa7\x53\x8c\x4e\xa6\x67\xc3\x4e\xff\xdf\x0d\xfb\x2f\xc8\x88\xee\x5f\xd1\x75\x89\x1e\x7e\x9b\x71\x6b\x89\x6a\x55\xb8\x18\x1d\x77\xa4\x54\x86\x65\xde\xfa\x19\x00\x00\xff\xff\xff\xf1\xc5\x3b\xf0\x04\x00\x00"
-
-func runtimeSyntaxHaskellYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHaskellYaml,
-               "runtime/syntax/haskell.yaml",
-       )
-}
-
-func runtimeSyntaxHaskellYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxHaskellYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/haskell.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHtmlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x28\xc9\xcd\xe1\x8a\xd1\xcb\x28\xc9\x8d\xce\x89\xb5\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x5c\xf7\x51\xaf\x11\x00\x00\x00"
-
-func runtimeSyntaxHtmlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHtmlHdr,
-               "runtime/syntax/html.hdr",
-       )
-}
-
-func runtimeSyntaxHtmlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxHtmlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/html.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHtmlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\xdd\x6e\x1b\x37\x13\xbd\xd7\x53\x30\xf2\x07\x47\x8a\x3f\xc9\x4d\x2e\x0a\x54\x4e\x6d\x18\x49\x8a\xf6\x22\x75\x51\x04\xe8\x8f\xd7\x85\x67\xc9\xd1\xee\x44\x5c\x72\x3d\x9c\x95\xa3\x60\x1e\xbe\xe0\xae\x6c\xc7\xb1\x12\xa0\x68\x2f\x5a\x20\x0b\x88\x5a\x71\xf8\x33\x73\xe6\x1c\x0e\xb5\x24\x8f\xb2\x69\x71\x61\x6a\x69\xfc\x68\xe4\x50\xd0\xca\x62\x64\x8c\x31\xd9\x16\xa0\xc1\x85\x19\x17\xc5\xbc\x96\xe6\xdc\x5f\x9c\xfc\x6f\x3c\x1a\x71\xe7\x31\x0d\x63\xf6\xcc\xcb\x68\xf3\x02\x86\x92\xb1\x90\x70\x46\x21\x61\x48\x24\xb4\xc6\x7e\xc4\xcc\xb4\x8c\x2d\x47\xbb\x30\xe3\xe7\x8f\x26\x27\x34\x9d\xbc\x3c\x7b\xf1\xe6\xb7\x9f\x5e\xf5\x5b\xce\x9f\x4c\x8f\xc7\xdb\xa5\xce\x5a\x0c\x14\x2a\x23\x50\x6d\xa7\xa6\x4d\x53\x46\x3f\x17\xa8\x86\xed\xf2\x93\x04\x58\xf2\x62\x13\x50\x28\x4b\x56\xb0\x1c\xc3\xa6\x51\x70\x8e\x31\x25\x85\xb6\xf5\x28\x0a\x8c\xa0\xc0\x42\xd6\xa3\x42\x22\x87\x0a\x9d\xa3\xa8\xa5\x96\x90\x50\x4b\x47\x5a\xba\xa8\x25\x55\x5a\xfa\x68\x57\x57\x5d\x14\xd4\x32\xba\x8d\x96\xac\x65\x27\x12\x83\x5a\x08\x6b\x48\x6a\xa1\x15\xca\x3f\x31\x08\xb2\x5a\x12\x54\x1b\x5d\x6e\x7c\xfe\x54\x1c\xbb\x56\x6d\x6c\x1a\x08\x4e\x1d\x08\x78\x4a\xa2\xce\xa9\x43\xaf\x0e\x05\xc8\x27\x75\xcb\xa0\x8e\x58\x1d\xad\xd5\x79\x75\xa2\xd8\x28\x36\x25\x3a\x5d\x12\x7a\x97\x50\x74\x49\xd5\xcd\x66\x4b\xaa\x3a\x46\x5d\xc6\x20\xba\x8c\x31\x6f\xbc\x8c\xdc\xe8\x92\xa1\xc1\xa1\xcd\x33\xea\xf3\xa7\xb3\xaf\x2f\xb4\x46\x70\x7d\x83\xac\xf5\xe0\x4f\xcd\x9a\x31\x56\x52\x1a\xe6\x50\x53\x29\x85\xb6\x13\xa5\x90\x74\x55\x3a\x5d\xe1\xa6\xc2\xa0\x1e\x4a\xf4\xea\xb1\xc2\xe0\xd4\x93\x7a\x0a\x2b\x6d\xa0\xd5\x06\x78\xa5\x0d\x86\x4e\x1b\x14\xc8\x0d\xb2\x06\x58\x6b\x88\x83\x03\x1a\x62\xb2\x4c\xad\x68\x2c\xdf\xa2\x15\x8d\x5e\x63\x2b\x83\x03\x71\x08\x24\x76\x92\xf7\x6c\xb5\x05\x86\x46\x5b\x46\x6d\x39\x56\x7d\xb6\xae\x94\x5b\x65\x51\xee\xca\x8d\x26\x4d\xd0\xb4\x9a\xd0\xf6\xf3\x12\xfa\xbc\x62\x6a\xc0\x7b\x4d\xb1\x63\x8b\x9a\x5a\x08\x9a\x84\x69\x85\xf9\x2b\x86\x4a\x53\x57\x6a\xea\x9a\x06\x78\xa3\xa9\x6b\x55\xa0\xf4\xa8\xd2\x67\x52\x9c\x0a\xbe\x93\x9e\x0c\x92\x41\x54\xa9\x55\x7a\xac\x84\x1a\x54\x21\xc9\x63\x59\x85\xc1\xae\x54\x44\x3b\xed\xbc\xae\x81\x75\x4d\x0e\xa3\x5e\x97\x3c\x2d\x8a\x72\x7c\xcb\x3f\x0c\x6e\x61\xc6\xc7\x77\x1d\x1f\xc8\x61\x78\x66\x86\x1c\x06\xa1\x25\x21\xf7\xe2\x29\x27\xad\x07\x8b\x75\xf4\x39\x39\x49\x36\x99\x91\x5e\xb4\xac\x6c\xf4\x91\xb5\x46\xaa\x6a\xd1\x9a\x71\xa9\xe4\x74\x02\x4c\xd0\x93\x68\x5a\x14\xb3\xf9\xc1\x4d\x76\x62\xa8\x1c\x26\xab\x59\x94\x1a\xc3\xc4\x7a\xb2\x2b\x5d\x46\xdb\x25\xf5\x11\x9c\x36\xb1\x4b\x18\xd7\xc8\x53\x4d\xf4\xfe\x06\x2b\xb6\x2a\xc0\x15\x8a\x66\xa1\xea\x1a\x7c\x87\x7a\x4d\x4e\x6a\xb5\x1e\x52\x52\x5b\x03\x67\x22\xd9\x18\x04\x83\x28\xa3\x57\x0a\x82\x15\x93\x6c\xd4\x72\x4c\x29\x32\x55\x14\x32\xfd\x34\x86\xd4\x95\x0d\x89\x7a\x08\x95\x72\xf4\x78\x1f\x9f\x5e\xb7\x2d\x5a\x02\xbf\x0d\x9e\xf1\xaa\x23\x46\xf7\xf1\xb8\x3d\xf3\x1a\xc4\xd6\xc6\xc5\xae\xf4\x38\xeb\xf5\x67\x72\x6a\x43\x95\xee\x2d\x67\x63\x48\x02\x41\xe6\x83\xf1\x43\xac\xef\x9f\x09\xc5\x78\xfc\xc0\x36\xe4\x6b\x97\x25\xad\xa8\xed\x5d\x2c\x8a\xf9\x43\xeb\x83\xb4\xee\xf2\x67\x88\xf3\x45\x0d\xfc\xe9\x85\x76\x44\x30\xef\x38\x83\x33\x99\x2c\xa5\x9d\xa4\xe9\x89\xd6\xb2\x7d\xa9\x48\xd4\xd6\x1c\x1b\x9c\x2e\x0e\x0f\xcf\xff\x28\x8a\x74\x71\x30\xdd\x85\x5a\xa2\x50\xfd\x33\xa8\x3d\xfe\x14\x68\x3b\x0c\xff\x55\xcc\xbe\xa7\xaa\xf6\x59\x65\x46\x6a\x34\x78\xd5\x81\x4f\x06\x82\x33\x10\x36\x26\xab\x30\x98\x12\xe5\x1a\x31\x98\xeb\xc8\xee\x3e\x92\x43\x19\xda\xb2\xf9\x5b\x5d\x14\x45\x39\x1d\x8f\xb6\x55\xeb\x85\x8f\xe9\x2f\x54\xad\xc3\x2f\x65\xeb\x4b\xd9\xfa\x57\x96\xad\x3d\x73\x1a\x36\x52\x67\x2e\x53\xe8\x65\x62\xef\xa8\x9d\xef\x77\x10\x0c\x32\x47\xbe\xa7\x8d\xbe\x67\x61\xc6\xf3\x5b\x41\xfc\x8c\x09\x79\x8d\xce\xe4\x1a\x28\x84\xc9\x78\x5a\xa1\x81\xfd\xbd\xa7\xcf\x8e\xcc\x7e\x28\x53\x7b\xd4\x4b\x6f\x7f\xef\xdd\xd3\x67\xa7\x47\x37\xaa\xb9\xad\x19\x93\xc9\x39\xcc\xde\x9f\xce\x7e\xbf\xd8\xdf\x3b\xff\x6a\xf6\xcd\xc5\x81\xee\xdf\xf4\x1c\xe8\xfe\xde\xf6\xbd\xb7\x4c\x8f\xee\x94\xf8\xe6\xec\xe5\xd9\xc2\x9c\x3a\x67\x2e\x3d\x35\x24\xb3\x3e\xc4\x4b\x23\xd1\x94\x51\xea\x3e\xa4\x4b\x87\x4b\xe8\xbc\x5c\x0e\xf1\x9b\x12\x7d\xbc\x36\x31\x58\x34\x24\x8f\x93\xa1\xa6\xf5\xd8\x64\xb9\x38\x43\x41\xa2\x79\x4d\x96\xe3\xd6\xc5\xed\xdc\x1d\xaa\x1e\xb8\x34\x7f\x72\x72\xfc\x31\xe2\xcf\x0f\x77\xd9\x06\xff\x7a\xb6\x2d\x3e\x38\x2f\x3e\x7b\xa7\x08\xd6\x77\x2e\xdf\xc6\xdf\xc2\x1a\x86\x45\xb7\xa1\x7f\xd6\xb3\x7c\xdb\xf8\x84\x63\x0f\x4d\x7f\xcb\x2f\x9b\xd2\x5d\x2e\x6a\x4a\xe6\x1a\x89\x9d\xc1\xa6\x95\x7c\xc6\x36\x19\x56\xb3\x25\x58\x32\x82\xb6\x0e\x64\xc1\xfb\x8d\x59\x83\x27\x37\xba\x39\xf6\xfb\x81\xfd\xdf\x85\xe3\xdb\x00\xb7\xbd\xf3\xfe\xc8\xdb\x11\xe6\xa3\xa2\x98\x15\xc5\xec\xe3\x20\x87\xde\xcf\x5f\xd6\x24\xba\x98\x59\xf7\xdd\x0f\xbf\xbe\x7e\xa5\x3f\x9e\xbd\x79\xa5\x99\x49\xd3\xc5\xc9\xfd\x12\xf2\x4b\x4d\x1e\xef\xb9\x1d\xa2\x18\x30\x63\xe1\x0e\xc7\x83\x10\xfe\x9f\x49\x96\xd0\x00\xa3\x61\x1c\x9c\x76\xe8\x32\x05\xf3\xe0\x12\x4d\x97\x7a\x66\xe5\x83\xdd\xc0\x4d\x58\x3b\x15\x35\x19\x9c\xd7\xe3\xe9\x78\xf4\x67\x00\x00\x00\xff\xff\x81\x0a\x94\x06\xa8\x0d\x00\x00"
-
-func runtimeSyntaxHtmlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHtmlYaml,
-               "runtime/syntax/html.yaml",
-       )
-}
-
-func runtimeSyntaxHtmlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxHtmlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/html.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHtml4Hdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x28\xc9\xcd\x31\xe1\x8a\xd1\xcb\x28\xc9\x8d\xce\x89\xb5\x37\x51\xe1\xb2\x51\x74\xf1\x77\x0e\x89\x0c\x70\x55\xf0\x08\xf1\xf5\x51\x08\x08\x75\xf2\xf1\x74\x56\x50\xd2\xd5\xd7\x0f\x37\x76\xd6\xd7\x77\x09\x71\x81\x48\x98\xe8\x19\x18\xea\xeb\xbb\xfa\xd5\x64\x94\x94\x14\x58\xe9\xeb\x97\x97\x97\xeb\x95\x1b\xeb\xe5\x17\xa5\xeb\x87\x04\xe9\x83\xcd\xd5\x2f\x2e\x29\xca\x4c\x2e\xd1\x4b\x29\x49\x51\xb2\xe3\x02\x04\x00\x00\xff\xff\x48\xee\xe7\x28\x6b\x00\x00\x00"
-
-func runtimeSyntaxHtml4HdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHtml4Hdr,
-               "runtime/syntax/html4.hdr",
-       )
-}
-
-func runtimeSyntaxHtml4Hdr() (*asset, error) {
-       bytes, err := runtimeSyntaxHtml4HdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/html4.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHtml4Yaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\x71\x8b\xdc\xb6\x13\xfd\xfb\x77\x9f\xc2\xf1\xaf\x14\xe9\xd2\xb5\x13\x12\x02\x75\x2e\x67\xda\x24\xa5\x85\xb4\x0d\xe5\x4a\x29\xbb\x7b\x20\x4b\x63\xaf\x58\x59\x72\xa4\xf1\x6e\xb6\x7d\xfd\xee\x45\xde\x5c\xd3\x90\xab\x58\xc4\xa2\x19\xeb\x8d\xe6\xbd\x79\xbd\x75\xc4\xa7\x89\x9a\x62\xc7\xa3\x7b\x7a\x71\x61\x88\x49\x73\x53\x5c\x14\x45\x51\xe4\xa8\x57\x23\x35\x45\xb9\xd9\x54\x3b\x1e\xd7\x6e\xdb\x3e\xfd\xa2\x5c\x82\x3b\x52\x86\x62\x53\x94\x57\x0f\x5e\xfd\xfc\xf2\xe6\xf7\xb7\xaf\x8b\xef\x6f\x7e\x7c\x53\xbc\xfd\xf5\xdb\x37\x3f\xbc\x2c\x36\xe5\xaa\xae\x7f\x7b\xf2\xb2\xae\x5f\xdd\xbc\x3a\x47\x9e\x56\x8f\x1e\xd7\xf5\xeb\x9f\xb0\x63\x9e\x9a\xba\x3e\x1e\x8f\xd5\xf1\x49\x15\xe2\x50\xdf\xfc\x52\x2f\x05\xd4\x89\xa3\xd5\x5c\x19\x36\x9b\xf2\xba\xbc\xb8\x88\xb3\xa3\xd4\x2c\x80\xab\x82\x62\x0c\x0b\xe2\xfa\xf6\xc1\xb6\xba\x6c\xaf\xcb\x0f\x81\x74\x1a\xbb\xe0\x2a\x56\x43\x53\x94\xa2\xb5\xf2\x6a\x5d\x6f\x5b\xa1\x44\xd7\x45\xe8\x18\xfc\x69\x84\x31\x91\x52\xc2\x34\x39\x62\x44\x52\x88\x6c\xb5\x23\x24\x6b\x08\xb3\xb1\x41\xb6\xe8\x84\x4a\x24\xfa\xe0\x59\xb6\x30\xc2\x22\x48\xd8\x01\x2e\xe8\xfd\xbb\x39\x30\x21\xca\x16\x5a\x09\x7f\x50\x09\x13\xdb\xe0\x25\x34\x79\xa6\x08\x6d\x99\xa0\x83\x30\x04\x07\x37\xc4\x30\x4f\x12\x46\x28\x56\xc2\xd9\xb4\xdc\x07\x72\x20\x56\xd6\x25\xf4\x1e\x56\xb9\x30\xc0\x46\x38\xb0\x04\x8d\xa2\x23\x23\x5b\xf4\x96\x9c\x49\xc4\xe8\xed\x20\xb4\x5a\x40\x30\x47\x92\xc8\x65\xa1\x0f\x71\x84\xb0\xb2\xed\xa3\x1a\x09\xcb\x9e\xb3\x77\xeb\xc7\xab\x67\x5b\xec\x22\x2c\xec\x38\xc0\x7a\x31\xcd\x8c\x24\xb1\xef\x0c\xf6\x74\x1a\xc8\xc3\xa9\x8e\x1c\x1c\x0d\xe4\x0d\x9c\x15\x7e\x2f\x5b\x8c\x4a\x58\x8f\x09\x71\x2f\x31\x92\x9f\x85\x65\x1a\xf3\x39\xb1\x50\xa0\x28\xe1\xd5\x01\x3e\x88\x33\x16\x92\x8e\x76\x62\x89\x20\x1c\x26\x16\xcb\x4b\xb1\x74\x62\xe6\x69\x66\x89\x49\xa8\xa8\x46\x58\xcd\x73\x24\xe4\x5f\x18\x72\xeb\x65\x8b\x77\x88\x62\x02\x63\xee\x4e\x12\x49\x70\xb4\x7b\x92\x2d\x92\x1a\x27\x24\x12\x7a\x79\xac\x23\xcd\x12\x69\x54\xce\x21\x85\x39\x6a\x42\x9a\x94\x47\xe2\x18\xfc\x80\x34\x8b\x0e\x13\xc6\x51\xc5\x93\x04\xd3\x7b\x56\x99\x4d\xb6\x23\x81\xa3\xd2\x7b\xcc\xc2\xc9\x16\x07\x15\x71\xb0\x86\x02\x8e\x5d\x94\xa2\xa8\x2e\x71\x2d\xef\xd5\x4c\x45\xef\x99\xbc\x21\xf3\x89\x78\xba\x60\x4e\x30\xf6\x80\x2c\x4c\x64\xb5\x0b\xca\xf4\xf7\x21\x64\xbe\xd9\xb2\x23\xb0\xea\xf2\xfe\x21\x19\x3b\x41\x2a\x93\x18\x97\x2c\xb9\xa0\xfe\x1b\x73\x8a\x34\xc5\xa0\x3f\xc1\x39\xf7\x13\x89\x4f\x8e\x3e\xfb\x20\x4d\xa4\xad\x72\x4d\x51\x7e\xb9\xbe\x7d\xbe\x5e\x37\x69\x52\x9a\x9a\xed\x76\x7b\xf9\xfc\xd3\x87\x34\x45\xb9\x6e\x5e\x6c\xef\x0e\xad\x21\xcf\xb6\xb7\xcb\x84\x0a\xe5\x18\xdd\xa0\x83\x0b\x11\x3b\xb2\xc3\x8e\xb1\x8b\xd4\xc3\x9a\x3b\x4d\x04\x3f\x18\x4a\x1a\x79\xdc\x11\xbc\xd0\xce\xea\x3d\xfa\xa0\xe7\x04\x17\x94\xc1\x18\xe6\x44\xe1\x90\xf5\x90\xec\x1f\x77\x94\x44\x7d\x2e\x1c\xac\xe2\x40\x8c\xec\x25\x38\x28\x37\x13\x8e\xd6\xf0\x4e\xbe\xb8\x2b\x48\x07\x9f\x58\x79\xae\xf2\x84\xfb\x3c\xa7\x9b\x72\x7d\xbb\x29\xb7\x97\x9b\xf2\xb3\x1c\x3f\x8f\xdd\xb9\xf2\xd6\xca\xff\xaf\x1f\xad\xbe\xfe\x66\xf5\xdd\xf6\xcf\x67\x5f\x3d\xfb\xeb\x2e\xd7\x50\xaf\x66\xc7\x67\x6b\xc8\x2b\xb1\x8a\xdc\x14\xe5\x87\xde\xe5\x45\x3e\x53\x7a\xf5\xf1\xe0\xec\x26\xc5\x7a\x7b\x71\x9f\x71\x5c\xe1\xfa\x3f\xaa\xad\xe6\x98\x1b\x2c\x7a\x9e\x44\xd6\x71\x36\xb0\xe5\xcf\x60\x19\x7a\x17\xc3\x48\xb2\xa9\xeb\xf5\x6d\xf1\xbf\xed\xc3\x8f\x77\x8c\x23\x79\x5e\x1c\x72\xb5\xaa\x1e\xb6\xab\xd5\x3d\x42\xf8\xc7\x3d\xab\x87\x99\xf6\xbf\x03\x00\x00\xff\xff\x65\x55\x73\x5e\x91\x05\x00\x00"
-
-func runtimeSyntaxHtml4YamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHtml4Yaml,
-               "runtime/syntax/html4.yaml",
-       )
-}
-
-func runtimeSyntaxHtml4Yaml() (*asset, error) {
-       bytes, err := runtimeSyntaxHtml4YamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/html4.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHtml5Hdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x28\xc9\xcd\x31\xe5\x8a\xd1\xcb\x28\xc9\x8d\xce\x89\xb5\x37\x55\xe1\xb2\x51\x74\xf1\x77\x0e\x89\x0c\x70\x55\x00\xcb\xd9\x71\x01\x02\x00\x00\xff\xff\x12\x3e\x4e\x3a\x23\x00\x00\x00"
-
-func runtimeSyntaxHtml5HdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHtml5Hdr,
-               "runtime/syntax/html5.hdr",
-       )
-}
-
-func runtimeSyntaxHtml5Hdr() (*asset, error) {
-       bytes, err := runtimeSyntaxHtml5HdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/html5.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxHtml5Yaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\x5d\x6f\xe4\x34\x14\x7d\x66\x7e\x45\x36\x20\x64\xb7\xcc\x14\x1e\xb6\x12\xd9\x6e\x47\x88\x8f\x57\x78\xe0\x05\xa5\xa9\xe4\xd8\x37\x89\x19\x7f\x64\xed\xeb\xd9\x1d\x38\xfc\x77\x94\x74\x86\x55\xd5\x62\x29\x56\xec\x7b\xe4\xfb\x75\xce\x1d\xac\x23\x3e\xcd\xd4\x54\x13\x7b\xf7\x76\xb3\x31\xc4\xa4\xb9\xa9\x36\x55\x55\x55\x8b\x35\x28\x4f\x4d\x55\x3f\x3c\xec\x26\xf6\xad\xeb\xf6\x6f\xbf\xaa\x57\xe3\x44\xca\x50\x6a\xaa\xfa\xee\xcd\x4f\xbf\xfe\xf8\xfb\x1f\xbf\xfd\xfc\xf4\xc6\x7d\xbd\xd9\xa4\xe2\x28\x37\x2b\x6c\x5b\x51\x4a\x71\xc5\xb5\x8f\x6f\xba\xdd\xd5\xfe\xbe\x3e\x1b\xf2\xc9\xf7\xd1\xed\x58\x8d\x4d\x55\x8b\xbd\x95\x77\xed\x4d\xb7\x17\x0a\x4a\xf4\x7d\x82\x31\x89\x72\x46\x22\x85\xc4\x56\x3b\x42\xb6\x86\x50\x8c\x8d\x12\x3d\x7a\xa1\x32\xc1\x08\x8b\x28\xe1\xa2\x3e\x7c\x28\x91\x09\x09\x85\x39\x06\x09\xad\x44\x38\xaa\x8c\x99\xed\x7a\xa4\xc0\x94\xa0\x2d\x13\x74\x14\x86\xe0\xe0\xc6\x14\xcb\x2c\x61\x84\x62\x05\xc5\xca\xd9\xcc\x30\x20\x07\x62\x65\x5d\xc6\x10\x60\x95\x8b\x23\x1c\x58\x82\x3c\xc8\xf7\x64\x30\x58\x72\x26\x13\x63\xb0\xa3\xd0\x6a\x75\x81\x92\x48\x62\x88\xc9\xc3\x0e\x49\x79\xc2\xd4\x7e\xb7\xbd\xed\x30\x25\x58\x58\x3f\xc2\x06\x31\x17\x46\x96\x38\xf4\x06\x07\x3a\x8d\x14\xe0\x54\x4f\x0e\x8e\x46\x0a\x06\xce\xc2\xd9\x70\x80\x57\xc2\x06\xcc\x48\x07\x09\x4f\xa1\xac\x9b\x65\xf2\xf0\xc4\x42\x81\x92\x44\x50\x47\x84\x98\x75\xb2\x33\x23\x8a\xfe\x4f\xd2\x0c\x87\x99\xc5\x9a\x15\xd6\xac\x0b\xcf\x85\x25\x66\xcc\x2a\x29\x8f\xd9\x6a\x2e\x89\x30\xaf\x5f\x1c\xd7\x02\x7f\x40\x12\x33\x18\xa5\x3f\x49\x64\x64\xe5\x67\x64\x12\x7a\x4d\xca\x91\x66\x89\xec\x95\x73\xc8\xb1\x24\x4d\xc8\xb3\x0a\xc8\x9c\x62\x18\x91\x8b\xe8\x31\xc3\x7b\x95\x4e\x12\x4c\x9f\x58\x2d\xfd\x62\xeb\x09\x9c\x94\x3e\xa0\xa0\x38\x1c\x55\xc2\xd1\x1a\x8a\xf8\xd8\x27\x29\xaa\xdd\x95\x7c\x95\x07\x3b\xfa\xc4\x14\x0c\x99\x67\x84\xe8\xa3\x39\xc1\xd8\x23\x16\x7e\x61\xe1\x9d\xa0\x24\xf7\x18\x62\x5c\x5a\xca\x96\x1d\x81\x55\xbf\xec\x67\x30\x26\x41\xca\xc8\x3d\xd2\x8a\x92\x2f\x7c\xce\x89\xe6\x14\xf5\x33\x3f\xe7\x5a\x66\x3e\x39\x7a\x19\xe4\x4c\xda\x2a\xd7\x54\xf5\xd7\xed\xe3\xbb\xb6\x6d\xf2\xac\x34\x35\x5d\xd7\x5d\xbd\x7b\x9e\x48\x53\xd5\x6d\xf3\xbe\xbb\x5c\x5a\x43\x81\xed\x60\x57\xad\x08\xe5\x18\xfd\xa8\xa3\x8b\x09\x13\xd9\x71\x62\x4c\x89\x06\x58\x73\x61\x42\x0c\xa3\xa1\xac\xb1\x08\x0f\x31\x08\xed\xac\x3e\x60\x88\xba\x64\xb8\xa8\x0c\x7c\x2c\x99\xe2\x71\xe1\x40\xb6\x7f\x5d\xfa\x91\xf4\x53\xe0\x60\x95\x46\x62\x2c\xaa\xc6\x51\xb9\x42\xf8\x68\x0d\x4f\xf2\xfd\x25\x20\x1d\x43\x66\x15\x78\x97\x39\xd9\xb0\x68\xef\xa1\x6e\x1f\x1f\xea\xee\xea\xa1\x7e\x81\x09\xc5\xf7\x4f\x91\xef\xad\xfc\xb2\xfd\x76\xfb\xfd\x0f\xdb\x5f\xba\xbf\x6f\xbf\xb9\xfd\xe7\x82\x35\x34\xa8\xe2\xf8\x49\xee\xcb\xca\xac\x12\x37\x55\x7d\xae\xdd\xb2\x28\x2c\x2d\xbd\xfb\x7c\xf1\x34\x21\xaa\xb6\xdb\xbc\x36\x0c\xee\x70\xff\x3f\xd1\xee\x4a\x5a\x0a\x2c\x06\x9e\x45\x96\x7b\x4c\x7c\xfe\x19\x2d\x43\x4f\x29\x7a\x92\xcd\xcd\x4d\xfb\x58\x7d\xd1\x5d\x7f\x7e\xc3\x7b\x0a\xbc\xce\xaa\xed\x76\x77\xbd\xdf\x6e\x5f\x21\xc2\x7f\x73\x6c\x77\xbd\xb4\xfd\xdf\x00\x00\x00\xff\xff\x14\x2c\xef\x1d\x1b\x05\x00\x00"
-
-func runtimeSyntaxHtml5YamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxHtml5Yaml,
-               "runtime/syntax/html5.yaml",
-       )
-}
-
-func runtimeSyntaxHtml5Yaml() (*asset, error) {
-       bytes, err := runtimeSyntaxHtml5YamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/html5.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxIniHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xc1\x0e\xc2\x30\x08\x00\xd0\x7b\xbf\xa3\x87\x2d\x26\xf8\x43\xbd\x2c\x94\x4e\xb4\x2b\x04\x50\x2f\x7c\xfc\x1e\x2f\x2e\x0d\x36\x5e\x9c\x9d\xfc\x13\xa2\x39\xc7\x4c\xf9\x91\x19\x77\xca\x70\x5c\x19\x46\xbe\xd7\xdc\x2e\xbe\xe8\x50\xf5\x06\x93\x3d\x52\x79\x0d\x31\x4c\xa7\xf8\x6a\x03\x1c\x67\xaa\xc9\x9b\x30\x1a\x9c\xd2\x25\xf6\x9a\x7f\x22\x7c\x1d\xf1\x84\x47\x03\x94\x35\x6a\x29\x77\x00\x00\x00\xff\xff\x17\x9d\xbf\xed\x73\x00\x00\x00"
-
-func runtimeSyntaxIniHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxIniHdr,
-               "runtime/syntax/ini.hdr",
-       )
-}
-
-func runtimeSyntaxIniHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxIniHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ini.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxIniYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xc1\x6b\xdb\x30\x14\xc6\xef\xfe\x2b\x84\x66\x88\xed\x11\xed\xae\x10\x76\xd9\x06\x3b\x8c\x5c\x76\x30\xf8\x39\xa0\xc8\xcf\x99\x56\x59\x12\xd2\x4b\x4b\x41\x7f\x7c\x71\xd2\xb8\xa1\x2d\xf4\xd2\x77\xfa\xf4\xe9\x27\x7d\x1f\x6f\x34\x16\xe9\x31\xa0\x64\xc6\x99\xa2\x18\x90\x50\x93\x2c\x18\x63\x6c\xbe\x72\x6a\x42\xc9\x38\x80\xa8\x8c\x33\x79\xc0\x74\x47\x3e\x64\x3b\xda\xec\xef\x31\x46\x33\x60\xa6\xa4\x5d\xa6\x88\xa9\x2e\x73\x35\x99\x09\x55\x08\x09\x40\x58\x93\x28\x07\xe3\x46\x1f\x75\x4e\x48\xa7\x00\x20\xf4\x78\xcc\x21\xfa\xff\xa8\x09\x40\x1c\xfd\xe0\xa9\x2e\xf3\x03\xa2\xfe\xa7\xe8\x9b\xf8\x3a\x23\xde\x8d\x25\x2f\x8a\x78\xb2\x98\x2e\x55\xd6\x4c\x7b\x97\x48\x39\x12\x07\xef\xad\xa0\x78\xba\xd4\x3a\xcc\x0a\xe0\xc0\xdf\xc5\x46\x65\xd3\x33\x77\x96\x37\xa0\x19\xd0\x91\x19\x0d\x46\xc9\xf8\xbe\xeb\x64\x0a\x4a\xa3\xec\xfb\xa6\xdb\x6f\xfb\x66\x7b\xe5\x52\x40\x6d\x94\x7d\x0d\x01\x74\xa2\x01\xe8\xcb\x85\x23\x45\x38\xa1\x23\xc9\x78\xb7\xdd\xf4\x6f\x0a\x25\x8a\xc6\x1d\xe7\x32\xbc\x02\x00\x10\xb9\xdb\x03\xef\xeb\x06\x78\x5e\x2d\xce\xaa\xaf\x9b\x15\x2f\x96\xc7\xd3\xf9\xcb\xf3\x71\x9e\x44\x2a\xce\x09\x5f\xf8\x62\xa1\x1b\x24\xe3\xe5\x8b\x71\xb3\xb6\xeb\xac\x19\xf9\xc1\x4b\xc6\xab\xbf\xbb\x1f\xbb\xdc\xb6\x6d\xfe\xf5\xbb\xfd\xf3\xb3\x96\xdf\xf9\x47\x51\x9b\x4f\x8c\x7a\x0a\x00\x00\xff\xff\xff\x58\x08\xe3\x6d\x02\x00\x00"
-
-func runtimeSyntaxIniYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxIniYaml,
-               "runtime/syntax/ini.yaml",
-       )
-}
-
-func runtimeSyntaxIniYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxIniYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ini.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxInputrcHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2b\x28\x2d\x29\x4a\xe6\x82\xd2\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x16\x24\xb8\x80\x12\x00\x00\x00"
-
-func runtimeSyntaxInputrcHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxInputrcHdr,
-               "runtime/syntax/inputrc.hdr",
-       )
-}
-
-func runtimeSyntaxInputrcHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxInputrcHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/inputrc.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxInputrcYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x4f\x6a\xf3\x30\x10\x05\xf0\x75\x74\x8a\x41\x5f\x20\x76\x4c\x74\x00\x6d\xb2\xf8\x8e\xe1\x71\x40\x51\xc6\x8d\x40\x19\x09\x69\x4c\x29\xd5\xe1\x4b\xfe\xb4\x0d\x34\xdb\x79\xbf\x37\x6f\x0e\x91\xe4\x23\x93\x85\xc0\x79\x91\xe2\x95\x3a\x91\x90\x17\x0b\x0a\x00\xe0\x9a\xb3\xbb\x90\x05\xfd\x00\x6b\xad\x54\x59\x22\x55\x7b\x03\x3b\xf0\x89\xab\x38\x16\x73\x4c\x29\x9a\xd9\xc5\x7a\xd5\x88\xc7\x2e\xcd\x73\xe3\xc4\xd4\x23\x1e\xf5\x4b\x2d\x65\x79\xe0\xc4\x4f\x28\x17\xca\x25\xf9\x7b\x52\x49\x1a\xe2\x3a\xb0\x8f\xcb\x89\x5e\xbd\xaa\x52\x02\xbf\x5d\xb5\xee\x10\x11\x4d\x1b\x0f\xa8\xa7\x7e\x8b\xba\x6d\x7e\x2e\x9b\xa9\xdf\x6e\xfe\x76\x33\xf9\xe0\xe2\xff\xb3\x2b\xb7\x39\x44\xb3\xff\x45\x97\x0b\xb1\x58\xd0\xdd\xa1\x8d\xa3\xad\xd9\x79\xb2\xd3\xd4\xff\xeb\xc6\xc3\xe7\x64\xb6\xfd\x7e\xfd\x6d\x03\x9f\x88\x65\xe7\xcf\xae\x98\xf7\x73\x10\xba\x63\xd0\x4f\xbd\xe1\x95\xb6\xa0\x57\x03\x0c\x0d\x86\xd5\xa0\xd5\x57\x00\x00\x00\xff\xff\x33\x3d\x95\x68\x90\x01\x00\x00"
-
-func runtimeSyntaxInputrcYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxInputrcYaml,
-               "runtime/syntax/inputrc.yaml",
-       )
-}
-
-func runtimeSyntaxInputrcYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxInputrcYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/inputrc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJavaHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4a\x2c\x4b\xe4\x8a\xd1\x03\x51\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x78\xb5\xb9\x55\x0e\x00\x00\x00"
-
-func runtimeSyntaxJavaHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJavaHdr,
-               "runtime/syntax/java.hdr",
-       )
-}
-
-func runtimeSyntaxJavaHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxJavaHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/java.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJavaYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x79\x0a\xc3\x28\xd0\xad\x45\x93\x5d\x97\xeb\x1e\xa3\xea\x81\x96\xa9\x58\x8b\x4c\x09\x14\xe5\xcc\x03\x1f\x7e\x90\xbd\xac\x81\x5b\x60\x45\x75\x91\x41\x91\xff\xff\x91\xa6\xf3\x01\x65\x4e\x78\x6c\x7e\xc2\x04\xbb\x5d\x8f\x82\x56\x8e\xbb\xa6\x69\x9a\xfa\x46\x30\xe2\xb1\x69\x8d\xd9\xd7\xf7\xbb\x76\xb7\xe3\x12\x30\xaf\x09\x4f\xcd\x5a\xda\x1a\xd3\x7d\xe9\x62\x0c\x08\xa4\xdd\x2c\xa8\x76\x00\xd6\x3e\x96\x2e\xa0\xba\x10\x41\xd4\x93\x68\x88\x74\x52\xc2\x8b\xe6\x21\xb2\xa8\x0c\x3e\xab\x30\x50\xf6\x48\xa2\x53\xf4\xfd\x57\x63\xba\xf6\xaf\x76\x16\x10\x1c\x91\xe4\x6a\xc0\x08\x67\xb5\x90\x51\x2d\x88\x1d\xd4\x46\x12\x4f\x05\xb5\x47\x07\x25\x88\xf6\x51\x31\x64\x54\xe7\x09\x42\x98\xd5\x45\x56\xef\x94\x51\x0a\x93\xe6\x8b\xaf\x55\x32\x70\xbc\xa8\xf0\xac\x97\xc1\x07\xbc\x75\xbc\xe9\x06\xba\x2c\x0c\x56\xd4\x06\xc8\x59\xf1\x97\x20\xf5\x79\x55\x56\x3f\xa6\xb0\x90\xe5\xfa\x59\x5b\xf1\x94\x05\xc8\x62\x74\xb5\x51\x64\x07\x16\x95\x40\xfc\x84\x9a\xc0\x9e\xe1\x84\x9a\xd8\x4f\x20\xf5\x8e\x75\xc6\xd8\x6b\x2a\x5d\xf0\x56\x6b\xa3\xcb\xc5\xde\x8a\x4b\x9a\x4b\x42\xd6\x3c\x93\x1d\x38\x92\xff\x8d\xfd\x0a\x9d\x75\x8a\x01\x64\x03\x6d\xe3\xe2\x7d\x9d\x92\x70\x41\x75\x50\xc7\x40\x25\x84\xf7\x32\xf7\x54\xc6\x0e\x79\x2d\x78\xfe\xf6\xf4\xfd\xe5\x71\xc9\xda\xa6\x55\x20\x3a\xad\xbf\xba\x9e\x2c\xc0\x8b\x4d\xdb\xfe\x8b\x21\xf5\x9b\x48\x3e\xfb\xb4\x48\x1b\xb3\x7f\x8d\xde\x6c\xcd\xf5\xdc\x3a\x25\xb4\x1e\xc2\x8f\x01\xf8\xb5\xf4\xa3\x38\xf7\x5b\x9a\xfb\x4f\xc1\x24\xc6\xc4\xd1\x1e\x9b\x76\xbf\x7f\x6c\x3f\x47\x3a\x2e\xeb\xfa\x86\xf0\x70\xd8\x22\xde\x6d\x61\x9a\xe7\x97\xff\xcb\x18\xf3\xf0\x66\xf2\xe6\xe1\xf0\xae\xd6\x9f\x00\x00\x00\xff\xff\x38\x5c\x13\xf4\xd9\x03\x00\x00"
-
-func runtimeSyntaxJavaYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJavaYaml,
-               "runtime/syntax/java.yaml",
-       )
-}
-
-func runtimeSyntaxJavaYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxJavaYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/java.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJavascriptHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4a\x2c\x4b\x2c\x4e\x2e\xca\x2c\x28\xe1\xd2\x88\xd1\xcb\x2a\x56\xa9\x89\xd1\x4b\x2d\x8e\x36\x35\x33\xb7\x88\xb5\x07\x71\x72\xb3\x8a\x55\x34\xb9\xe2\x94\x15\xf5\xb4\xf4\x35\x52\xf3\xca\x14\xb4\x35\xed\xf3\xf2\x53\x52\x35\x14\x6a\x54\x34\xb9\x00\x01\x00\x00\xff\xff\x6d\x28\xf1\xe4\x3f\x00\x00\x00"
-
-func runtimeSyntaxJavascriptHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJavascriptHdr,
-               "runtime/syntax/javascript.hdr",
-       )
-}
-
-func runtimeSyntaxJavascriptHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxJavascriptHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/javascript.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJavascriptYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x6d\x6f\xdb\x36\x10\xfe\x9e\x5f\xc1\x3a\xdd\x6a\x2b\x90\x9d\xbe\xac\x5d\x8d\x6d\x42\xda\x26\x83\x81\x35\x2d\x9a\x16\x0b\x26\x2a\x2d\x25\x9d\x6c\x26\x14\x29\x90\x27\x3b\x5e\xae\xfb\xed\x03\x65\xb9\x76\x9c\xc6\xcd\x30\x0c\xf3\x07\xbe\x9c\x1e\x3e\x77\xbc\x3b\xde\xb9\x90\x0a\x70\x5e\xc1\x90\x9d\x8b\xa9\x70\x99\x95\x15\xee\xec\xe4\x80\x90\xe1\x70\x87\x31\xc6\x3c\x42\x8b\x12\x86\xac\xd3\xe5\xbc\x7f\xee\xee\x13\xe7\x7d\x70\xf1\x0f\x4f\x9f\xfd\x98\x44\xcd\xae\x3c\x77\xf7\x7b\x9d\x06\x3e\x01\x91\x83\x1d\xb2\xce\xd9\xee\xbd\x7e\x30\xe8\x82\x9e\xb2\xbd\x5e\xa4\x4d\x0e\x5d\x46\x1e\xb5\x63\x6b\x05\x6e\x41\x1e\xb2\xcc\x68\x87\x42\x63\x5f\xd7\x65\xda\x1c\xe4\x3c\x8d\xc3\xbd\x24\xea\xc6\x0f\xc3\xe7\x49\xbc\x1f\x3e\x4f\x02\xda\x8f\xf7\xc3\x67\x7e\xbe\xf4\x02\x11\x16\x07\xe1\x51\xb2\xd7\xeb\xc6\xf5\x87\x24\x56\xbf\x25\x11\xf9\xd1\xef\xa2\x5e\xc4\x79\xda\xb9\x03\xbd\x67\xde\xe3\xbc\xdf\xaa\x58\x4c\xcb\xbd\xe7\x3e\x84\xb7\x55\x12\xef\x85\x49\xd4\x8a\xa2\xb8\x38\xf2\xca\xee\xcc\x7e\x93\xe2\x1a\xc3\x6e\xc8\x64\x0e\x1a\x65\x21\x9b\xd3\xf1\x41\xf8\x87\x08\xff\xfc\x98\xb4\x8b\xfd\xf0\xf9\xc7\x24\x88\xe3\xa1\xab\x44\x06\xc3\x24\x09\xe2\x6e\xd2\x1e\x65\x67\x0c\x27\xd2\x31\xe9\x98\x36\xc8\x32\x63\x2d\x64\xc8\x6a\x27\xc6\xc0\x4c\xc1\x70\x02\x6b\xe4\x2c\x33\xca\xd8\xd6\x6c\x37\x2f\x53\xa3\xfa\xa9\x15\xd9\x05\xa0\x5b\x44\xf6\x8a\x38\xff\xdc\xeb\x6c\x83\x74\x89\xf3\xde\x76\x48\x4c\x9c\x27\xdb\x21\xff\xa1\x22\x53\x81\x15\x68\xbc\x2b\xbb\x71\xb8\x37\x08\x7e\xfe\xe9\x97\x7b\x7f\x7d\x17\x0d\xbf\xa7\x84\xe2\x7e\x72\xf5\x78\x4d\x31\x0a\x84\x12\x34\x2e\xa2\xd6\x15\x6e\xae\x33\x12\x33\x21\x91\x52\x0b\xe2\x82\x32\xe1\x80\x32\x81\xd9\x84\x9a\x40\xfb\x11\xa5\xae\x81\x72\x48\xeb\xf1\x18\x2c\xe5\x50\x88\x5a\x61\x6f\x2d\xe3\x36\x79\x73\x50\x80\x40\xb9\x21\x50\x0e\x08\x2e\x2b\x63\x91\x0a\xa9\x85\x52\x73\x2a\x8c\xa5\xa2\xd6\x19\x4a\xa3\x39\x0f\x22\xca\x94\x70\x8e\xe0\x12\x41\xe7\x6e\x1b\xef\x18\x90\x64\x41\xb2\x5c\xf0\x59\x53\x92\xd4\x64\x0a\x92\x4d\x4e\x66\x60\x0a\x52\x80\xa4\x61\x46\x16\xce\x21\x43\xb2\xe0\x8c\x9a\x02\x59\xc0\xda\xea\x6d\xe4\x0e\x90\xbc\x4c\x66\xe4\xea\x0a\x2c\xb9\x99\xf4\x7e\xf0\x19\x47\x38\xb1\x66\x46\x68\xe7\xe4\x2b\x87\x29\x68\x2a\x2c\x4d\x8d\xcc\x69\x36\x91\x0a\x68\x26\x71\x42\x73\x09\x2a\x5f\xa9\xd8\x65\x16\x1c\xd8\x29\xe4\x2c\xad\x91\xd5\x5a\x38\x27\xc7\x1a\xf2\xd6\x00\xb0\xd6\xb4\xef\xa7\x0b\xba\x2e\xfd\xbd\x54\x63\x91\x23\xa9\x11\x6c\x21\x32\xa0\x4a\x64\x17\x62\x0c\x54\x59\x39\x15\xe8\x67\xe3\x0b\x15\xe4\x54\xd5\xa9\x92\x59\x6f\xf3\x61\x2e\x7d\xa5\x4c\x2a\xd4\x7b\x6f\xfc\x48\x17\x52\x4b\x9c\x93\xae\x95\xa2\x5a\xe7\x50\x48\x0d\x39\x1d\x8b\xe3\xde\x57\xea\x46\x4b\xf0\x8f\xc0\x68\x6b\xa0\x42\x28\x07\xeb\xa0\x45\x95\x6d\x00\x07\xd6\x8a\x39\xbd\x30\x46\x81\xd0\xf4\xca\xdf\xe4\x50\xd7\xe5\x22\x77\xe9\xd0\xbb\x82\x8e\xda\xa4\xa0\x5f\x41\xb7\x1f\x5e\x8b\x8a\x5e\x0b\x9c\xdc\xc2\x7a\xdc\xd4\x20\x7a\x93\x36\xb1\x7e\x6b\x4d\x29\x1d\xf8\xf9\x72\x4e\xef\xa0\x50\x5e\xfa\x0e\xc6\x87\x97\x15\x9d\x00\xd2\x09\x5a\xa9\xc7\x74\xd2\xbc\x1c\xfa\x1d\xc4\x85\xe7\xf7\xf3\x09\xe0\x2d\x2a\x5e\xc8\xf1\x48\xe3\xd3\x27\xed\x05\xe4\xf8\x83\x5c\x6d\x8f\x94\x11\xf8\xf8\xd1\xda\x66\xf9\x65\xa4\xf1\xe1\xd3\x66\xb9\xe0\x6d\x33\xe2\x9a\xe3\x06\xf1\x59\x90\x74\xe3\xb3\x41\x42\x5d\xce\x39\x1f\xf4\x7a\x41\x7c\xe6\x57\xc9\x20\x1e\xcb\x32\x09\xbe\xea\x6d\xce\x9b\xc6\xd0\x0c\xd1\x62\x24\x2f\xbd\xd6\x26\x1a\x49\x9c\x16\xda\xe2\x03\xde\xe1\x3c\x6a\x68\x57\x7c\x65\x9b\xf9\xb7\xb7\xac\x05\xf2\x5a\xad\x6e\x6a\x86\x02\x8b\x94\x43\x66\x72\xf8\xf0\x6e\xb4\x5a\xbd\x34\x65\x65\x34\x68\xa4\xdc\x64\xb5\xa7\x27\xd0\x4b\xd4\x97\xd5\x0a\x05\x2e\x13\x15\x10\x4c\x85\x22\xe9\x8e\x7c\x86\x02\x49\x77\x2c\x8e\xa9\x12\xd6\x41\xe3\xce\xc5\x72\xa4\x91\x6a\xdd\x1e\xa8\x75\x73\x64\x26\x75\x6e\x66\xeb\x41\xbb\x61\xea\x48\xa3\x8f\x72\x7a\xe0\x1c\x94\xa9\x9a\x6f\x05\x1f\xd8\x71\x63\x74\x5b\x80\x76\x36\xdb\x9d\x6b\x72\x67\xd1\xc2\xfd\xcf\xa1\xb0\x4d\x3c\x3a\x9d\x2f\x32\xd0\xf9\x86\xc4\x5d\xc8\xaa\x0d\x5a\x7f\x25\x5d\xfb\x37\xb0\xfc\xad\x6b\xaa\x20\x93\x42\xbd\x9c\x08\xbb\x3a\x7a\x57\x73\x1e\x6c\x5a\xf3\xe0\x7f\x34\xe6\xd3\xa6\x31\x9f\xfe\x95\xda\xeb\xd8\x8d\x08\x5e\x3e\x7a\xc2\xf9\x55\x3f\x88\x38\xff\x7c\xd3\xc2\xd4\x18\xb5\xb5\x54\x5d\x43\xf6\x9b\xcf\x2d\xfe\x1b\x50\x4f\xb7\xc6\xbc\xf6\xda\x57\xcf\xec\x86\x63\x06\x83\x4d\xcf\xdc\xff\x86\x67\xd0\xe4\xc6\xb7\xf8\xf7\x6f\x5e\xbd\xa1\xd3\xd3\x53\x3a\x1a\x9d\xbe\x3e\xec\xdd\x41\x15\xe7\xc1\x8d\x0c\xe5\xc1\x60\xab\xbe\x5d\xb6\x6c\xd0\x6c\xf9\x98\x85\xdf\x6d\x0f\x81\xe3\x3c\xe0\xdc\xf5\x83\xcd\x50\xdd\x6a\xfc\xdf\x01\x00\x00\xff\xff\xc6\xc3\xdb\xb7\x8b\x0b\x00\x00"
-
-func runtimeSyntaxJavascriptYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJavascriptYaml,
-               "runtime/syntax/javascript.yaml",
-       )
-}
-
-func runtimeSyntaxJavascriptYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxJavascriptYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/javascript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJinja2Hdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xca\xcc\xcb\x4a\x34\xe2\xe2\xe2\x02\x04\x00\x00\xff\xff\x15\x55\xdb\x7b\x09\x00\x00\x00"
-
-func runtimeSyntaxJinja2HdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJinja2Hdr,
-               "runtime/syntax/jinja2.hdr",
-       )
-}
-
-func runtimeSyntaxJinja2Hdr() (*asset, error) {
-       bytes, err := runtimeSyntaxJinja2HdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/jinja2.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJinja2Yaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x6e\xeb\x38\x0c\xbc\xe7\x2b\x8c\x14\x05\xda\x43\xf6\xb0\xc7\x5c\xfa\x21\x9b\x3d\xc8\xd2\xd8\x61\x56\xa6\x14\x8a\x4a\x9a\x86\xf9\xf7\x85\x1c\xa7\x68\xfb\x80\x87\x27\x04\x21\x2d\x8e\xc4\x19\x52\x1c\x28\x42\x2f\x19\xdb\xee\x40\x7c\x70\x7f\xaf\x56\x52\x23\xca\x76\xd5\x75\x9b\x8e\xd8\xc7\x1a\xb0\xed\xd6\x7b\x9d\xe2\x7a\xde\x2b\x19\x9e\x5c\xdc\x76\xeb\x97\xeb\xd5\x6e\x37\xbb\x3e\x6f\xde\x6c\xf3\xf6\x7c\x7b\xbd\x03\x02\x06\x57\xa3\xb6\x1b\xee\xab\xa8\x13\x9d\xf1\x0d\x79\xbd\xce\xb8\xfb\x02\x87\x16\x68\xa7\xed\x76\xfb\x12\x88\x34\x91\x6e\x46\x49\x35\x6f\x1f\x29\x3f\x83\x9f\x0c\x1f\xeb\x2b\xd3\x7c\xd1\x7d\xe2\xf5\xb7\x68\x51\xa7\x98\xc0\x8d\xc5\x6e\xd7\xbf\xd0\xc8\x49\xd0\x4d\x54\x0a\xf1\x68\x67\xd2\xfd\x4b\xaa\xfa\xfa\xd6\xf9\xc4\x8a\x77\xb5\x3e\x26\xff\x9f\x79\x17\xa3\x81\xc3\xfd\x0b\x1c\x1e\x1b\x03\x45\x85\xcc\x5e\x9a\xcd\xe4\xbc\xa4\xe6\x88\x3b\x37\x53\xa0\x86\x77\x6d\x9e\x2d\xe0\x86\x5c\x68\xda\x1d\xde\xb0\x02\x5f\xa5\xd0\x09\x56\x7c\xca\x08\x56\xa0\xaf\xbb\x5d\xff\x5d\x00\x05\xb0\xd2\x40\x90\xbf\xfa\x4a\x51\x89\x87\xca\x7e\x51\xe3\x54\xc5\x7a\xa7\x7e\x6f\xde\x65\x52\x17\xe9\x03\xe6\xc1\x2d\xab\x4f\x95\xd5\x82\x2d\x5d\xb1\x40\x5e\x4b\x12\x35\x18\x8a\x77\x19\x8d\x1e\x0a\x7d\x60\x48\x32\x39\xb5\x81\xa4\x68\x23\xeb\xb1\x00\xe6\x2e\xf4\x17\x23\x6e\x2c\xec\x90\x88\x2d\xba\xa2\x16\xc1\xa3\xee\x2d\xa6\x33\xc4\x72\x16\x62\x35\x71\x1c\xd2\x64\x82\x03\xbc\x2e\x66\x26\x28\xc8\xd1\x79\x98\xe0\x04\x29\xb0\xe2\x06\x58\x41\x6c\xb0\xbb\x99\x61\x45\x85\xb2\xba\xb1\x98\x92\x46\x98\xa6\x43\x49\x6c\x2a\x34\x99\x4a\x65\xef\x14\x56\x99\x8e\x15\x56\x73\x86\x58\x95\x08\xf6\x29\xa0\x79\x4d\xf9\x39\x49\xb8\xcb\x6e\xde\x59\x5c\xb6\xf7\x29\xb6\xdb\xff\xa4\xb0\x8a\xf2\x78\x26\xad\xdb\xae\x8f\x68\xc5\x23\x46\xb0\x40\x27\x2a\xd4\x47\xf4\x17\xc3\xd1\x70\xac\x2e\x6a\x5a\x0a\x19\x0c\x27\xb0\x8d\xb0\x51\x8d\x14\x32\x1f\x6d\xbf\xb9\x3e\x51\x6d\x72\x39\xb7\xf7\xc6\x30\x4e\xed\xaf\x4e\x3d\xc4\x52\x08\x56\xdc\x04\x57\xac\xe0\x58\xc1\x1e\x73\x19\x78\xb4\xca\x8f\xd4\xb3\xd6\xdf\xf2\x5f\x3a\x3c\xc6\xd4\xcf\xe3\xd9\x14\x44\xca\xa5\x4e\xe6\x2f\x3e\x42\xe6\xce\x41\x8c\xdd\x84\x92\x9d\xc7\xe3\xba\x4d\xe7\xd3\x34\x8f\xc7\x2f\x33\x7b\x7d\xfa\x39\xac\x4f\xb7\xf5\x8f\x41\xec\xfe\xf9\x77\xf5\x7f\x00\x00\x00\xff\xff\xb4\x53\x06\xfd\x47\x04\x00\x00"
-
-func runtimeSyntaxJinja2YamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJinja2Yaml,
-               "runtime/syntax/jinja2.yaml",
-       )
-}
-
-func runtimeSyntaxJinja2Yaml() (*asset, error) {
-       bytes, err := runtimeSyntaxJinja2YamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/jinja2.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJsonHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x2a\xce\xcf\xe3\x8a\xd1\x03\x51\x2a\x5c\x71\x31\xd5\x2a\x5c\x80\x00\x00\x00\xff\xff\x32\xc0\x2c\x31\x12\x00\x00\x00"
-
-func runtimeSyntaxJsonHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJsonHdr,
-               "runtime/syntax/json.hdr",
-       )
-}
-
-func runtimeSyntaxJsonHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxJsonHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/json.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJsonYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x3b\x6b\xf3\x30\x14\xdd\xfd\x2b\x84\x08\xf8\x85\xfc\xe5\x83\x42\x89\x16\x53\x4a\x33\x75\xe8\xd2\x49\x57\x01\xd9\xb9\x6e\xdc\x3a\x8a\x91\x64\x68\x89\xfb\xdf\x8b\x1c\xa7\xcd\xab\x90\xa5\x1a\x2c\xdf\x73\x74\x1e\x58\xae\xea\x06\xdd\x47\x8b\x9c\xbc\xda\x8d\x0e\x82\x25\x3a\x2c\x1d\x0f\x08\x21\xc4\x73\x5a\xad\x91\x13\x0a\x90\x79\x7e\x42\x07\x62\x85\x6a\x89\x86\x13\xba\x00\xd8\x4e\x68\x10\x98\xae\x41\xbb\x13\x31\x52\x6e\xb4\x75\x4a\xbb\x4c\x77\xeb\x62\x38\x06\x50\x08\x96\xca\x3c\x12\xff\xd9\x4c\x8a\x29\x9b\xc9\xa4\x9f\x8a\x29\xbb\xf5\xfb\xbb\x07\x14\xab\xee\xd8\x5c\xa6\x71\x24\xba\x67\x29\x9a\x47\x99\xf7\xfe\xe9\xa7\x3c\xce\x01\x0a\x7a\x85\xbd\x77\x4e\x01\xb2\x31\x62\xb7\xed\x67\xef\xfd\x80\x4f\xad\x14\x29\x93\xf9\x08\xe5\xa2\x9a\xfb\xb0\xab\xdd\xcf\x2d\x7e\x71\xd8\x49\x23\xdd\x35\x4d\x7c\xa1\xfe\x48\x3b\xd3\x61\x5f\xa9\xc6\xe2\xa5\x43\x99\x75\xa6\xd6\x2f\x9c\x0c\xb8\x5f\xd6\x29\x33\x68\x29\xfd\xc6\x50\x2f\x4f\x10\xfb\x56\xb7\x43\x00\x40\xf6\x83\x1e\xdc\xd2\x7e\x1d\x46\xb5\x58\xd6\xaa\xb9\x5f\x29\x73\x2c\x3d\xaf\x73\xd6\x26\x3c\x2d\x13\xfe\x41\x97\xb1\x8c\x75\xca\xe1\x1a\xc7\x2f\x08\x34\xf2\x34\xd0\x5e\x2c\x80\xca\x38\xf1\xef\x42\x70\xdb\xaa\x12\xb9\x94\x09\x07\x4a\x08\xd0\x30\x02\x08\x7b\xb1\x08\x65\x9c\x84\x47\xfc\xc5\x8b\x01\xe8\x0e\xfe\xca\xed\xcd\x67\xef\x31\x51\x54\xda\xb8\x10\xe8\x3f\x3f\x49\x1a\x7c\x05\x00\x00\xff\xff\x67\x47\xd8\x55\x3e\x03\x00\x00"
-
-func runtimeSyntaxJsonYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJsonYaml,
-               "runtime/syntax/json.yaml",
-       )
-}
-
-func runtimeSyntaxJsonYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxJsonYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/json.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJsonnetHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe2\x8a\xd1\xcb\x2a\xce\xcf\xcb\x4b\x2d\x51\xe1\xe2\x02\x04\x00\x00\xff\xff\x8a\x33\x16\xa7\x0d\x00\x00\x00"
-
-func runtimeSyntaxJsonnetHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJsonnetHdr,
-               "runtime/syntax/jsonnet.hdr",
-       )
-}
-
-func runtimeSyntaxJsonnetHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxJsonnetHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/jsonnet.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJsonnetYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\xfd\x6e\xdb\x46\x12\xff\x5f\x4f\xb1\xa7\xf8\xce\x92\x1c\x49\x09\x90\x3b\x5c\x74\x1f\x39\x5f\x6d\x23\x6e\x13\x24\xa8\x93\xd8\xad\xa8\x14\x4b\x72\x28\x6e\xbc\x9c\xa5\x77\x86\x95\x94\x4c\xde\xbd\x58\x92\x92\x25\xd9\x40\x9b\x00\x0d\x61\x8b\x33\xb3\xbb\xbf\xf9\x1e\x6e\x66\x2c\xa0\x2e\x60\xa2\x3e\x90\x43\x04\xee\x74\x52\x60\x48\x78\xd2\x51\x4a\xa9\xdb\xe5\x6e\x14\x8d\xda\x2d\x07\xdd\x4e\xe7\x81\xba\x28\x21\x99\xa8\x9c\xb9\xa4\xc9\x78\xdc\x2e\x8d\x9c\x9f\x8f\x3d\x64\x63\x2a\x21\x19\xe5\x5c\xd8\x4e\xc7\x57\x16\xa8\x81\x7b\xa0\xe2\xca\x58\x1e\x1a\x54\x2e\xfe\x00\x09\x53\x2b\x3e\x3b\xbf\x7a\x79\x3a\x51\x07\x6a\xe1\xf0\x90\x55\xa1\x39\xc9\xeb\xa5\xa1\x4a\x1c\x12\x6b\xe4\xda\x84\xb8\x47\x60\x33\x89\xa2\x03\xa1\xaa\x04\xdf\x8f\xa2\xb8\xbb\x86\x76\xce\x82\xc6\xcd\x01\xda\x03\x18\x85\x0d\x2d\x0a\x56\xd6\x0a\xfb\x0a\x24\xd3\x96\x60\x1b\x86\x73\x50\x61\x7f\xaa\x7d\xaa\xac\x89\xbd\xf6\xab\x16\xc9\xa4\x80\x6c\x32\x03\xbe\x81\x21\x4e\xa3\x68\xd4\x83\x25\xbf\xd3\x5e\x38\x37\x74\x66\x2c\x08\xaf\x4a\x10\x0b\x38\xe7\x5c\x1a\x37\x9f\x6b\x6a\xa9\x33\x03\x36\xa5\x5b\xf1\xb1\xb5\x3b\x2b\x81\x2f\x7d\x85\x20\x85\x2e\x2f\x0d\xe7\x3f\xc0\x4a\x74\x4c\x42\x66\x8e\x52\xe8\xa5\x14\x06\xa5\x74\x0b\x81\x65\x29\xd6\xcd\xc3\xdb\x21\x20\x4b\xa1\x91\x0d\x91\x96\xcc\x3a\xe7\x25\x01\x63\x85\x6e\x3c\x0b\x19\x94\xc4\x91\xb0\x46\xd1\x81\xd1\x81\xd3\x81\x2d\x5c\x2a\x9a\x08\x3c\x9f\xde\x54\xda\x0a\xbb\x0b\xf6\x06\xe7\x92\xb8\x14\x4a\x67\x90\x25\xc9\xb5\x17\xaa\x62\x62\x2f\x99\xc1\xf4\xa2\x21\x89\xb5\x67\x0a\x16\x0a\x60\xda\x10\x54\x5a\xc3\xcd\xef\x0b\x53\x04\x92\xfd\x8f\x50\x5a\x9d\x80\x68\x4a\x8c\x79\x5b\x96\xe0\x1b\xf2\x85\x5b\x40\x40\x09\xda\xbe\xcb\xb5\x27\xc9\x9c\x2f\x34\x0b\x50\xa2\x4b\x68\xcc\x38\x71\xd6\x86\xa5\x6d\xd9\xeb\x15\xe7\x0e\xa5\xd4\x9e\xe0\x1c\xb9\x21\x5e\x25\xac\x6d\x43\x3e\x87\x65\x43\x7c\x4f\x0e\x05\x30\x78\xf2\xf6\xcd\xd9\x3f\x25\x85\x0d\x59\x68\x34\x19\x10\x9f\xa3\xd9\xd0\x2d\xee\x2e\xfb\x2e\x68\x5f\x8b\x02\xe0\xe9\x72\xc3\xfe\xa4\x0b\x7b\xe2\x92\x1d\xfe\x82\x3d\xe8\x62\x23\xba\x2a\x6c\x38\x54\x58\x29\xf4\x35\x1c\x7b\xaf\x57\x92\xb8\x0a\xb9\x8e\x64\x48\xf1\x3a\xcd\xe7\x98\xc2\x52\x32\x63\x19\xfc\x4b\x5d\xb6\x94\x64\xce\xa6\xb6\xfe\xf5\xe2\x35\xce\x41\x3e\x38\x83\x62\x0d\x02\x49\x66\x35\x33\x60\x0d\x4b\x42\xce\xb3\x54\x68\x6e\x84\x80\xc3\xff\x39\x06\x04\x02\x7e\x8b\xc6\x61\x20\x4e\x4c\x96\x85\xf7\x4b\x28\x62\xf0\x12\x6b\x82\x7f\x3c\x69\x5f\x27\x75\x74\xfe\xbf\x62\xa0\x1d\x89\x14\xe9\xdf\xa5\x00\x3f\x87\xd7\xa1\x29\x85\xbd\x4e\x76\xfa\xa5\xc2\x9b\xca\x31\xa4\x6d\x47\xab\x6b\x58\xad\x3b\x2f\x34\xc2\x44\x75\xa7\xbf\xe8\xe1\xc7\xe3\xe1\xcf\xb3\x35\xf1\x68\xf8\x74\x36\x88\x22\x1a\x4c\xd6\x20\xb7\x67\x15\x41\xa9\xbd\x66\xe7\x5b\x10\x62\xcd\x50\x40\x3d\x00\x36\xfb\xaf\x61\xb5\x70\x3e\xa5\x7b\xf6\x84\xf6\x6e\x4a\x5a\xc0\x12\x08\x78\xef\x42\x20\xbd\x64\x15\x26\x1c\x42\x61\x32\x31\x45\x19\xe2\xd5\xbc\x42\x3d\x87\xa8\xba\x24\xb4\x80\x36\x36\x94\x65\xc2\xc2\x39\xe0\xb6\xab\xae\x84\xda\xb2\x8d\xda\x55\x11\x3b\x3b\x5a\x8b\x27\xaa\xdb\x9b\x8e\xfe\xf5\xf0\x68\x20\xff\xf9\x4b\x14\xfd\x75\x26\xff\x96\xff\xca\x58\x86\xf2\xb7\xfe\x1a\xa2\xd4\x1e\x90\x73\x20\xd8\x03\x89\xbd\x4e\xae\x81\xa9\x06\xe9\xf5\x3f\x7d\x9e\x49\x14\x4d\x25\x8a\x66\x9b\xb3\x58\x85\xb4\xdd\x19\x6b\x8d\xb8\xf5\xfc\x91\xf4\xa6\x8f\x87\x4f\x67\xd3\x3a\xc6\xfd\x7e\x2f\x8a\x46\x35\x7d\xd4\x7f\xd6\x9b\xc2\xe9\x6c\x1a\x45\x47\xc3\xd9\xb3\xb5\xac\xf6\xae\xc5\x4f\x5d\x15\x5b\x18\xb6\xe9\x6c\x5a\x73\x5f\x59\x23\x6d\xa6\x79\x78\xea\x31\x10\x74\x77\xbb\x1b\x19\x60\xba\x27\xa1\x6b\x53\xd6\x06\x46\xd1\xb6\x78\xeb\xcb\xb0\x7e\xb6\x55\x95\x90\x18\x6d\xc3\x70\x68\xcf\x56\xc1\x6a\x3d\xcc\x8e\x87\x67\xb3\x4f\x4f\x3e\x4b\x90\x4d\xe3\x0c\x3d\x1f\x46\xdd\x71\xe0\x66\x1b\x67\xc8\xe0\xfc\x6b\x9d\x39\xdc\xf7\xe5\xf0\x5e\x57\x0e\xbf\x8d\x27\xbb\x69\xf9\x15\x7c\xac\xd9\x14\x5f\xe8\xd2\xff\xbe\x49\x82\xb6\xcf\x86\xe7\xde\x5c\x7c\xad\x07\x7f\x7e\x56\x0e\x37\x31\x8f\xad\x4b\xae\xff\xa0\x81\xeb\xdb\xcb\x96\xe0\x4d\x6e\x48\x19\x0a\x57\x99\x9b\xca\x30\x28\x6f\xe6\x39\x8f\x76\x76\x80\x0a\x06\x28\xd2\x2b\x52\xe1\xea\x30\xe9\x6c\x2d\xc7\x30\x37\x88\x06\xe7\x6a\x61\x38\x57\x22\xf2\x50\x65\xce\x5a\xb7\x80\x54\xc5\x2b\xe5\xca\x30\xc8\xb4\x55\x8b\xdc\x30\x50\xa9\x13\x50\x1a\x53\xa5\x15\xc2\x62\x18\x3e\x0f\xfb\xca\x10\x96\xac\xd0\xe1\x30\xb6\x1a\xaf\x55\xd8\xa2\x8a\x8a\x58\xc5\xa0\x4a\x0f\x99\x59\x42\xda\x28\x23\x57\x40\xbd\xf3\x23\x78\xa7\x9a\x7b\xcc\x16\xd8\x96\xc6\xcb\x51\x0d\xdd\x04\x2b\xdc\x02\x94\xe6\xfa\xfe\x94\x19\x4f\xac\xc2\xa5\x01\x6e\x2a\x40\x6e\xd4\x71\xae\x59\xa5\xae\x9d\x7c\x0d\x1a\x3a\x6e\x9c\x6d\x74\x5f\x3e\xac\xdd\x30\xac\x0c\x29\x8d\xaa\x1e\xde\xca\x64\x75\x84\x1a\x94\x00\x50\x1f\x4b\x1c\xb2\x36\xb8\x05\x56\x5b\x7e\x5f\x68\xb6\x43\x27\x22\xa3\xed\x50\x5f\x86\xd8\x40\xaa\xd8\x35\xd7\x4e\xf5\xbe\x17\xd1\x51\x5f\x39\xdc\x72\x65\x2f\x70\x3a\x63\xf0\x01\x69\x37\xc8\xa8\x16\xb7\x60\xa1\x24\xd5\xfb\xe8\xf1\x68\x70\xd0\xb9\x3b\x2e\x23\x69\xfe\xd4\xe0\x60\xbf\xac\xdf\xab\xc1\x66\x79\xbf\x96\xd5\x74\xb6\x2e\xd1\xa2\xb2\x6c\xea\x54\xab\xc4\x15\xe1\xe3\xb7\x29\xd4\x9a\xbb\xdb\x41\xe3\x28\x1a\xdc\x19\x02\xd1\x60\xfc\x3b\x0d\xc3\x2e\x75\xe1\xab\xf4\xe6\xd5\xc9\x2b\xb9\xba\xba\x92\xba\xdc\xfb\x93\x67\xfb\xb3\xf6\x4b\x6c\x79\x20\xbd\xf1\xb8\xbf\x6f\xcd\xc1\xd7\x9b\xf2\x5b\x00\x00\x00\xff\xff\x22\x3e\xa1\x0e\xc9\x0c\x00\x00"
-
-func runtimeSyntaxJsonnetYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJsonnetYaml,
-               "runtime/syntax/jsonnet.yaml",
-       )
-}
-
-func runtimeSyntaxJsonnetYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxJsonnetYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/jsonnet.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJuliaHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x2a\xcd\xc9\x4c\xe4\x8a\xd1\xcb\xca\x51\xe1\x8a\x53\x56\xd4\xd3\xd2\xd7\x48\xcd\x2b\x53\xd0\xd6\xb4\x07\xcb\x68\x28\xd4\xa8\x68\x72\x01\x02\x00\x00\xff\xff\x6f\x4a\x9c\x08\x25\x00\x00\x00"
-
-func runtimeSyntaxJuliaHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJuliaHdr,
-               "runtime/syntax/julia.hdr",
-       )
-}
-
-func runtimeSyntaxJuliaHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxJuliaHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/julia.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxJuliaYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x6f\x6f\xda\x3a\x14\xc6\xdf\xf3\x29\x7c\x03\xf7\x36\x01\x85\xc2\xdd\xd4\xaa\xd1\x58\xd7\x37\x93\xf6\xa6\x1f\x60\x49\x40\x76\x72\x02\x6e\x1d\x9b\xd9\x27\x6d\x59\x4f\xf7\xd9\xa7\x98\x7f\x05\xba\x49\x9b\x90\x0c\x7e\x7c\xce\xcf\xcf\xf1\x39\xa2\x92\x0a\x70\xb5\x84\x84\xdd\x35\x4a\xf2\x4e\xa7\x04\x84\x02\x93\x0e\x63\x8c\xb5\x87\x9a\xd7\x90\xb0\x20\xcb\x86\x77\xaa\x17\x78\x79\x01\xbc\x04\x9b\xb0\x60\xda\xfd\x67\xd8\x3f\x0f\x41\x3f\xb0\x41\x74\xed\x01\x21\xa3\x5e\x14\x74\x3a\xb6\x51\xe0\x92\x8e\x8f\xef\x32\xd1\x48\x85\xb1\xd4\xcc\x88\x3b\x28\xd0\x79\x39\x66\x85\xd1\x0e\xb9\xc6\xa1\x30\x46\xf9\x4b\x44\x88\xb6\x01\xaa\xb8\x72\x10\x65\x99\x08\x8e\x22\x37\x41\xda\xe0\x42\xea\x39\xd5\xd2\x39\xa9\xe7\xfb\xc8\x83\xcb\x38\xa2\x95\xa2\x41\x38\xbe\x2f\x61\xc1\x6c\x96\xde\xc4\x5f\x79\xfc\x7d\x14\x5f\xcd\xf2\xc1\x6c\xb6\xcf\x2f\xa1\x92\x5a\xa2\x34\x7a\x9b\x27\x4b\xd0\x28\x2b\xe9\x8b\xde\xe4\xcd\xf2\xd7\x80\x7e\x9a\x26\x6e\xc9\x0b\x48\xf2\xbc\x9f\x86\xf9\x9e\x76\x0f\xab\x47\x63\xcb\x2d\xca\x21\x47\xa8\x61\x57\x89\xe0\x16\x6a\x53\x36\x0a\x48\xc0\x5c\x6a\x12\x16\xf8\x3d\x15\x1c\x8b\x05\x79\xbf\xed\x8a\x52\x37\x40\xa5\x21\x50\x0e\xfc\x22\x2b\x02\x5d\x12\x3c\x2d\x8d\x45\xaa\xa4\xe6\x4a\xad\xa8\x32\x96\xaa\x46\x17\xad\x79\x9a\x2b\x23\xb8\x22\x59\x91\xac\x7d\x94\x02\x24\x65\x0a\xae\xa8\xe6\x85\x35\xb4\xb9\xf7\x5b\x63\x10\xc8\x02\x36\x56\x93\x43\xdb\x14\x48\x68\x57\xd4\xb4\x4f\x4b\x8f\x0b\xa9\x0e\x5a\x71\x5c\x01\x17\x0e\x2d\x2f\x30\xcb\xdc\xa0\x9d\x24\x5a\x5a\x59\x4b\x94\x0f\xb0\x53\xea\x06\xb9\x50\x7e\xbf\xe6\x1f\x36\xac\x84\xc2\x58\x8e\xc6\x9e\xbe\xf7\xd0\x3b\x4d\x58\xf0\xe9\xa0\x5d\xfb\x5c\xb3\x84\x83\x54\xb7\xaa\x85\x51\xc3\xad\xdc\xf6\x2b\x1e\xf4\xcf\x69\xf2\xef\x87\x8f\xff\xfd\x98\xe6\xd4\x5a\x96\x9a\xa4\xe3\xf4\xb8\x00\x0b\x87\x56\x96\xdc\x82\xc6\x05\x38\x38\x02\x0a\xcb\x8b\x7b\x40\x97\xb0\x20\x4c\xc3\xe8\xf9\xa5\x25\xa5\x94\x65\x79\xb4\xcf\xd6\x4d\x2d\xc0\x9e\x4c\xf7\x5a\xde\x3c\x57\x3a\x8a\xaf\xf2\x41\x38\x5b\x7f\x47\x7d\x1a\x3d\xb5\x3f\x79\x5c\xdd\xc4\x9f\xb7\x07\xdb\x5d\x7b\x2c\xd2\xd1\x78\xad\x8f\xd7\x82\x49\x47\xf1\xe5\x26\xf2\xd2\x4b\x5f\x74\x15\x8e\x2f\xe8\xdd\xff\x74\xf1\x3e\xba\xa6\x5b\x7e\xfb\x6a\xbb\x2e\xf0\xd8\x93\x43\x2b\xf5\xbc\xf5\x14\x84\x59\x96\x65\x43\x4a\xa7\x59\x90\x47\xfd\x2c\xa0\xb3\x9d\x72\x96\x47\xcf\xe3\x97\xb3\x5f\xa6\x6f\x2a\x67\xed\x50\x58\x3f\x10\xfe\x13\xec\x74\xd0\xe5\x1b\xea\xfa\xcf\x81\xa5\xf9\x1f\x70\xbd\x3d\xca\x82\xde\x29\xfc\xb7\xe0\xda\x8f\xea\x09\xb0\x9b\x4e\x27\x39\x75\x4f\x68\xbd\xbf\x82\x4d\x8e\x31\x93\xee\x5b\x9c\x9f\x01\x00\x00\xff\xff\x2a\xdd\x6b\xb0\x6d\x05\x00\x00"
-
-func runtimeSyntaxJuliaYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxJuliaYaml,
-               "runtime/syntax/julia.yaml",
-       )
-}
-
-func runtimeSyntaxJuliaYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxJuliaYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/julia.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxKeymapHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4e\xad\xcc\x4d\x2c\xe0\x8a\xd1\xd3\xc8\xae\xc9\x4e\xad\xd4\xb4\xcf\x4d\x2c\x50\xa9\x89\xc8\xcd\x4f\x01\x31\xb8\xb8\x00\x01\x00\x00\xff\xff\x2e\xbb\x4e\x47\x20\x00\x00\x00"
-
-func runtimeSyntaxKeymapHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxKeymapHdr,
-               "runtime/syntax/keymap.hdr",
-       )
-}
-
-func runtimeSyntaxKeymapHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxKeymapHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/keymap.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxKeymapYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x90\xd1\x6a\x33\x21\x10\x85\xef\x7d\x0a\x7f\x09\x24\xe1\x27\x4b\x6f\xbb\x50\x7a\xd1\x97\x28\xc4\x14\x66\x75\xd2\x2c\xeb\xa8\xe8\xa4\xb0\xe0\xc3\x97\x5d\x69\xbb\xdd\x50\xe8\x4d\xe7\x66\x64\xf4\x9c\xf3\x39\xe7\xde\x21\x8f\x11\x5b\x39\xe0\x48\x10\x85\xb0\xc8\x68\xb8\x15\x52\x4a\x39\xdd\x7a\x20\x6c\xa5\xd2\xba\xd9\x0d\x65\xc0\x71\xff\x48\x10\x37\xe5\x99\x82\x9d\x0e\x4a\x88\x74\x75\x98\xab\xe0\x20\x33\x03\x23\xa1\xe7\x59\xd3\xed\xc0\xda\x62\x1c\x42\x2a\x26\x50\x0c\x19\x27\x0f\x13\xec\xdc\x09\x62\x9e\x7a\x1e\xa9\x24\xa4\xf0\x86\x25\x73\xea\xfd\xeb\x5e\xeb\x4e\xfd\xe0\x68\x82\xe7\x14\x5c\x01\xc7\x25\x5f\xfa\x33\x2f\x1f\x9b\xe0\x33\x83\xe7\xc6\x5f\xa9\xc3\x54\x25\xc7\xbb\xc3\xfd\xe9\xff\xd2\x32\xa2\xe9\xc1\xb5\x52\x3d\xdc\x08\x2b\x40\xfd\xce\x54\x99\x21\xcd\xd1\x4a\x7d\xce\xd0\xdb\xd5\x24\x0f\x7d\x9c\xc3\xb4\x6e\xbe\xa6\x8b\xcd\x7c\xd4\x32\xa9\x52\x3c\x5d\x20\x7d\x97\xfe\x82\x66\xbb\x86\xd9\xfe\x21\x0b\xcd\xdb\xbf\x61\x78\xf9\xb7\x86\xd8\xac\xe3\xe4\xf1\x24\xc4\x7b\x00\x00\x00\xff\xff\x2a\x3b\x25\xf2\x64\x02\x00\x00"
-
-func runtimeSyntaxKeymapYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxKeymapYaml,
-               "runtime/syntax/keymap.yaml",
-       )
-}
-
-func runtimeSyntaxKeymapYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxKeymapYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/keymap.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxKickstartHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xce\x4c\xce\x2e\x2e\x49\x2c\x2a\xe1\x8a\xd1\xcb\x2e\x56\xa9\x89\xd1\x83\x8b\xa8\x70\x71\x01\x02\x00\x00\xff\xff\xde\xfc\x28\xd1\x1e\x00\x00\x00"
-
-func runtimeSyntaxKickstartHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxKickstartHdr,
-               "runtime/syntax/kickstart.hdr",
-       )
-}
-
-func runtimeSyntaxKickstartHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxKickstartHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/kickstart.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxKickstartYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xe1\x6e\x9b\x30\x10\xc7\x3f\x97\xa7\xb0\x58\x26\x41\x90\xa3\x7d\x1d\xd2\xba\xf6\x35\x1a\x12\xe9\x30\x17\xb0\x30\x36\x3a\x1f\x49\xdb\xdd\xc3\x4f\x66\x45\x6b\xa5\x7c\xe1\xa4\xbb\xdf\x5f\xdc\xfd\x7c\xb1\x0e\xf9\x6d\xc6\x5a\x8d\xd6\x8c\x91\x81\x38\xcb\x3a\x64\x34\x5c\xab\x4c\x29\xa5\x12\xe1\x61\xc2\x5a\xe5\x4d\x73\x18\xe3\x4e\x52\xd9\xe0\x5d\x9e\x65\xb4\x38\x8c\xf5\x0a\x6b\x15\x67\x34\x16\x5c\xad\xf2\xef\x47\xd0\xef\xa7\x2a\xdf\x06\x0c\x8c\x13\x7a\xae\x55\x7e\x3e\x1e\xeb\x38\x83\xc1\xfa\x74\xda\x17\xd6\x47\x06\xe7\xc4\x74\x14\x26\x61\x7c\x65\xe9\x09\xe6\xc1\x1a\x70\x72\x0d\xae\xa7\xb0\xcc\xe2\x42\x7f\x0d\x4e\x08\xdb\x10\x58\xd8\x4e\xf8\x1e\x3c\x8a\x03\xdf\xcb\x88\x6f\x6d\x00\xea\x04\x16\x1e\x4c\xf0\x17\xdb\xcb\xc5\x52\xe4\x95\xa5\x10\x78\xbe\xc9\x12\x91\x52\x17\x6f\xe9\x67\x11\x9d\xf5\xcb\xab\x10\xce\x41\x66\x20\x5e\x3f\x96\x6d\xf0\x62\x1c\x02\xad\xbd\x94\x77\x01\x3a\xa4\x72\xbb\xc3\x84\xb4\xee\x7a\x86\xd6\x45\x32\x23\x93\x25\x0a\xe4\x6c\x64\x69\x21\xe2\x42\x4e\x16\x36\x65\xf1\x4b\x9a\xe6\xb1\xbc\x27\xa0\x69\x76\x05\xa1\x43\x88\x78\x45\x5a\x53\x40\x66\x28\x9b\xe6\x71\xc3\x5b\xb2\xfd\xc0\xad\x03\x33\x26\x63\x4f\xc7\x67\xfd\x92\x84\x7e\x54\x7d\xda\x7f\x25\x09\xbb\xc4\xe9\xa7\xa4\xfd\x59\xbf\xfc\xd0\x3f\xf7\xfa\xbf\xfe\x6d\x7c\x7f\x6a\xc2\xf4\xb1\x59\x71\x96\x4f\x8f\x53\x7e\x2b\x8e\xe7\x3f\xa7\xc3\xbe\xfc\xbd\xdb\x58\xeb\x3b\xf4\xac\xcd\x00\x74\xb8\x0d\x96\xf1\x1f\xac\xf2\x4f\xb9\xea\x1e\x5d\xab\xfc\xa1\x52\x95\xa8\xea\xa1\xca\xb3\xbf\x01\x00\x00\xff\xff\x96\xbc\x1a\x8d\x7a\x02\x00\x00"
-
-func runtimeSyntaxKickstartYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxKickstartYaml,
-               "runtime/syntax/kickstart.yaml",
-       )
-}
-
-func runtimeSyntaxKickstartYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxKickstartYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/kickstart.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxKotlinHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xce\x2f\xc9\xc9\xcc\xe3\x8a\xd1\xcb\x2e\x29\xb6\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x0a\x47\xba\x0c\x10\x00\x00\x00"
-
-func runtimeSyntaxKotlinHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxKotlinHdr,
-               "runtime/syntax/kotlin.hdr",
-       )
-}
-
-func runtimeSyntaxKotlinHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxKotlinHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/kotlin.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxKotlinYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x5d\x6f\xe3\x36\x10\x7c\xf7\xaf\xe0\xe9\xfa\x61\x27\x8d\x7d\xaf\x55\x3f\xd2\x26\xb9\x03\x0e\xbd\x6b\x1e\x12\x03\x01\xc2\x14\x58\x51\x2b\x9b\x35\xb5\x14\xc8\x95\x13\xa1\xdb\xff\x5e\x50\x92\xdd\xc4\xf5\xb5\x40\x71\x06\x4c\x5b\xdc\xe5\xec\xec\xec\x50\x95\x75\xc8\x5d\x83\xb9\xda\x78\x76\x96\x26\x93\x12\x19\x0d\xe7\x13\xa5\x94\x4a\x51\x82\x1a\x73\x95\x69\x3d\xdf\x70\x3c\xff\x22\x9b\x4c\x42\xeb\x30\x0e\x09\xaa\x5f\x5f\xab\xeb\x06\x03\xb0\x0f\xb1\x7f\x3e\x53\xb1\xab\x0b\xef\xe6\x7e\xdc\xce\xd5\xf4\x7e\x9e\x7f\xf7\xcd\xe9\x89\xfc\xf0\xea\x5c\xeb\x2f\x1f\xe4\x7b\xf9\x51\x16\x72\x26\x5f\xcd\x06\xa0\x3d\xd4\x0d\x03\x63\x8d\xc4\x51\xfd\x82\xdd\xa3\x0f\xe5\x1e\x74\x17\xc9\x95\x2e\xa6\x10\xa5\xe8\xc4\x38\x88\x51\x8c\xa7\xc8\xa1\x35\xec\x83\x18\x5f\x37\x40\xd6\xd3\xb0\x2b\x55\x4b\x62\xeb\xc6\x07\x16\x4b\x62\xa9\xb2\x4f\x62\x89\x31\x54\x60\x50\x2c\x39\x4b\x28\x36\x8a\x6f\x59\x76\x7c\xa5\x01\xb3\x81\x15\x4a\x40\x6e\x03\x49\x6c\x63\x83\x54\x4a\x6c\x1b\x0c\xc2\x6b\x1b\xe5\x71\x8d\x24\x5b\x70\xb2\x85\x30\xd3\xc5\x21\xc5\x79\x13\x12\x18\x5b\x8c\x3d\xdb\x15\xb2\x44\xe4\x63\x99\xc6\x13\x07\xef\xfa\xb4\x22\x20\x6c\x12\x71\xb6\xd4\xa2\xa0\x8b\x28\xa5\x17\x5b\x09\x87\x4e\x0c\xb0\x59\x4b\x65\x09\x9c\xeb\xa4\xf2\x41\x1e\xd7\xd6\xe1\x51\xd0\xa4\xcb\xa0\x53\x11\x39\x80\x61\x01\x22\xcf\xc0\x49\x99\x12\x18\x04\xa9\xad\x07\xb0\xd4\x37\x49\x44\x70\x58\x1e\x03\xab\xb1\x2e\x30\xf4\x68\x7e\x8b\x21\xd8\x12\xc5\x01\xa3\x25\x9b\x44\xb5\x47\xdb\x02\x63\x70\xa4\xd0\xcb\x9d\xea\x34\xc1\x6e\x81\x51\x9a\xe0\x93\xc9\xb0\x94\xa6\x2d\x9c\x35\x47\x05\x84\x00\x35\xf2\x58\xd7\x04\x1f\xe3\x38\x2c\xf2\xe3\x9f\x80\xb6\xb2\x58\xa6\x11\x40\x58\xed\x40\x46\x1f\xbd\x7d\x6a\x02\xc6\x68\x3d\x29\xa0\x52\x25\x93\xef\x8c\x34\x18\x5e\x17\xd3\xb2\x23\xa8\xad\x11\x5f\xfc\x8e\x86\x85\xd7\xc1\x3f\x4a\x8a\x82\xb3\x10\x67\xba\x50\x93\x11\xed\x23\x32\x1c\xd1\x85\x21\x57\xfa\xa7\xa9\x2e\xd2\x4d\x91\x12\x1d\xae\x52\x7f\x95\x45\x57\x4a\x9a\xf9\x68\x83\x4e\x02\x1a\xb4\x5b\x0c\xc9\x05\xe9\xdb\xb7\x27\xc3\x9a\x98\x8f\x75\x2e\x93\x67\x81\x78\xac\x65\xc6\xc7\x9e\x2d\x87\x16\xa5\x82\xe4\x09\x6a\x9d\x9b\x1d\xe4\xcc\xa9\x1d\xc6\x34\xbd\x7f\x73\xf6\xed\xc3\xe9\x6c\xf2\xe2\x56\xf9\x00\x2b\x54\xb7\x07\x32\xcc\xe3\x10\xe8\x0b\x5c\x74\x8c\xb2\xec\xd7\xcb\x35\x04\xb9\xf2\x6d\xe1\x50\xde\x39\x0f\x2c\xef\x89\x65\x99\x96\x0f\x9e\x56\xb2\xec\xd7\x9b\x75\xba\x56\xcb\xe1\xe7\xc2\x7b\x87\x40\xb2\x4c\xae\xf8\xd5\xf3\xda\xd2\xe1\x4c\x2e\xbd\x73\x68\x92\x05\x5f\x70\x30\x7f\x6f\xf7\x3c\x7e\x0e\x01\xba\xbd\x28\x3d\xfb\x60\x69\x75\xd8\x6f\xec\x77\xf3\xdd\xfb\x23\x0d\x26\x24\xa5\xb2\xfd\x0e\x52\xf9\xe2\x39\x6e\x6c\x93\x2b\xad\xe7\xfb\x9d\xe7\xef\xb2\xf1\xf3\xbc\x42\x83\xc6\x82\x4b\x62\xe4\x6a\xaa\xf5\x1b\xd1\x5a\x6b\xd1\x9a\x45\x6b\x12\xad\x83\x68\x9d\x89\xd6\x5f\xcf\x3e\x05\xd1\x92\x35\xbe\x4c\xfa\xea\x56\xff\x71\x7f\x9f\x3f\x95\x76\x65\x39\x7f\x78\x38\xfd\x73\x37\xf4\x9b\x35\x16\x40\x2b\xf5\xc1\x12\xee\x9b\xac\x7b\x8b\xc5\x21\x94\xab\xdf\xa6\xaf\x5f\xcd\xe6\x27\xcf\xd5\x4c\xe9\xea\x72\x48\x3c\x38\x96\xae\x47\xae\xb2\xc5\x62\x7e\x92\x3d\x3f\x72\xe1\xbc\xd9\x7c\xe2\x4c\x91\x62\xff\x50\x33\x5b\x68\x7d\x72\xa0\x68\xa6\xf5\xc9\x22\xfb\x77\x0d\xd9\x97\x3e\x57\xd9\xf4\xf6\xfa\xea\x5a\xee\xee\xee\xe4\xdd\xfb\xbb\x8f\x6f\x67\xf9\xf9\xee\xdc\xc8\xe8\xca\x9b\xff\xcb\xea\xb3\x13\x1b\x29\xdd\xfa\xd2\x4f\xfe\x33\xf9\xaf\x00\x00\x00\xff\xff\xe9\x14\xd7\x09\x3a\x07\x00\x00"
-
-func runtimeSyntaxKotlinYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxKotlinYaml,
-               "runtime/syntax/kotlin.yaml",
-       )
-}
-
-func runtimeSyntaxKotlinYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxKotlinYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/kotlin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLedgerHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x49\x4d\x49\x4f\x2d\xe2\xd2\x88\xab\x89\xd1\xab\xd1\xd7\xd4\x80\xf0\x6b\x72\x52\xd2\x8b\x6a\x92\x52\x13\xf3\x92\xf3\x4b\xf3\x4a\x6a\x92\xf2\x92\x4b\x34\x55\xb8\xb8\x00\x01\x00\x00\xff\xff\x53\x35\x53\x93\x2e\x00\x00\x00"
-
-func runtimeSyntaxLedgerHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLedgerHdr,
-               "runtime/syntax/ledger.hdr",
-       )
-}
-
-func runtimeSyntaxLedgerHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxLedgerHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ledger.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLedgerYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\xd1\x4a\xc3\x30\x14\x86\xef\xfb\x14\x67\xc5\x8b\xa4\x23\x9b\x88\x37\x46\x46\xf1\x35\x6c\x32\x49\xd3\xb3\x51\x68\xd3\x92\x9c\x09\xd3\xb8\x67\x97\xac\x8e\x75\x20\x78\xe1\x5d\x7e\xfe\x7c\xdf\xe1\x9c\x5d\xdb\x21\x1d\x47\x94\xd0\x61\xb3\x47\x9f\x65\x0d\x12\x5a\x92\x90\x01\x00\xa4\xda\x99\x1e\x25\xe4\x6c\x1b\x95\x5a\xc5\x35\x67\xd3\xcf\xd8\x35\x7b\x1f\x6b\x34\xce\x0e\x07\x47\xb1\x76\x96\xf8\x5d\x9e\x65\xfe\xd0\x61\x90\x67\x5c\x40\x18\xd1\xb6\xa6\x93\x90\x6f\x59\x75\x2f\x9e\xf4\xe7\xe3\x17\x5b\x47\xc1\xa7\xf0\x70\x1b\x62\xb5\x39\x69\x0e\xab\x22\xff\xc1\xed\xe0\x02\x19\x47\x89\xff\x1b\xbf\x50\x81\x0c\x61\x8f\x13\x76\x9a\xe9\xda\x06\x1d\xb5\xbb\x16\xfd\xea\xdd\xf8\xd4\x6e\x7e\x6d\xcf\xe3\x2a\x19\x46\x63\x51\x6a\xbd\x64\x8b\x79\xe2\xa5\x52\xac\xac\x5e\xc4\xab\x11\x1f\xa0\x97\x4c\x5e\xdf\xbc\x50\x8a\x97\xff\x32\xbe\x29\x25\x66\xd2\x29\xde\x7a\xc3\xb1\xaf\x87\x74\xd4\xaa\x58\xe8\xeb\xad\xfa\xcb\xce\x33\x77\xf1\x9c\x16\xfc\x0e\x00\x00\xff\xff\x6c\xff\x51\x0c\xe7\x01\x00\x00"
-
-func runtimeSyntaxLedgerYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLedgerYaml,
-               "runtime/syntax/ledger.yaml",
-       )
-}
-
-func runtimeSyntaxLedgerYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxLedgerYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ledger.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLfeHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x49\x4b\xe5\xca\x49\x4b\x55\xa9\x89\xd1\x03\x51\x5c\x5c\x80\x00\x00\x00\xff\xff\x33\x09\x01\x19\x11\x00\x00\x00"
-
-func runtimeSyntaxLfeHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLfeHdr,
-               "runtime/syntax/lfe.hdr",
-       )
-}
-
-func runtimeSyntaxLfeHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxLfeHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/lfe.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLfeYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xed\x6e\x82\x30\x14\x86\x7f\xcb\x55\x9c\x34\x26\x82\x4d\x99\x7f\xed\xd4\x65\xd9\x5d\x8c\x53\xb7\x02\x87\x49\x06\x85\x94\x92\xe9\xd2\x8b\x5f\x00\xdd\x97\xfe\x7a\xfb\xf1\x9c\x27\x6f\x4e\x51\x56\xe4\x4e\x2d\x49\xa8\x0a\x0a\x82\x9c\x1c\x65\x4e\x42\x00\x00\x30\xfc\x19\x5d\x93\x04\x56\x15\x34\xf7\x88\xf1\x90\x2c\x08\x6c\x5f\x51\x27\x47\x48\x40\x77\xaa\xd3\xa6\x8a\x53\xab\xb3\x77\x72\x9d\x04\x86\x18\x7a\xc4\x88\x9d\x81\xc9\xcf\x72\x2a\x7a\xe3\x73\x2a\x4a\x43\xa2\x3b\x19\xa7\x8f\xe7\xdb\x10\xb5\xce\x6c\x33\x1e\x9a\xbc\xaf\xc8\xd3\xb1\x6d\xac\xbb\x28\xb2\xc6\x74\x4e\x1b\x37\xca\x21\x79\x14\xcf\x5a\x7c\xaa\x73\xae\xc4\xfa\x45\x28\x8e\x08\xec\x6f\xa5\xa6\x25\xab\x5d\x63\xa7\x4a\x61\x82\x28\xf8\xf2\x6e\xb3\x53\x7e\xb3\xf5\xbb\x6d\xe4\x17\xff\xfd\xb1\xe9\xeb\x94\xa6\x81\x34\x59\x89\xf5\xa0\x4d\xaf\xa8\xce\xd9\xd2\xbc\x8d\x14\xb2\x10\x11\x31\xf6\xc9\x1e\x99\x8a\x96\xc3\xcb\x77\x8d\x96\xb2\x52\x57\x12\x58\xb2\xf0\xaf\xea\x46\x6d\x44\xa1\xf8\xb5\x7e\x9a\x7b\x3a\xe8\xa9\x09\x62\xfc\xf0\x03\xd5\x35\x8d\x8b\x08\xf7\x3e\x49\x64\xd7\xea\x8c\xa4\x52\xd1\x7d\xbc\xbc\x30\xa5\xc9\xc9\x38\x91\x1d\xb4\x8d\x3f\x0e\xa5\xa3\x09\x02\xf6\x8b\xe7\xf3\x1b\xb4\x04\x36\xe3\xc0\x3d\xf0\x19\x67\xc1\x57\x00\x00\x00\xff\xff\x83\x15\xa2\x2c\x1c\x02\x00\x00"
-
-func runtimeSyntaxLfeYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLfeYaml,
-               "runtime/syntax/lfe.yaml",
-       )
-}
-
-func runtimeSyntaxLfeYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxLfeYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/lfe.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLilypondHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xc9\xcc\xa9\x2c\xc8\xcf\x4b\xe1\x8a\xd1\xcb\xa9\x54\xa9\x89\xd1\xcb\x84\x50\x39\x39\x95\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x45\xdd\x2b\xe6\x1e\x00\x00\x00"
-
-func runtimeSyntaxLilypondHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLilypondHdr,
-               "runtime/syntax/lilypond.hdr",
-       )
-}
-
-func runtimeSyntaxLilypondHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxLilypondHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/lilypond.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLilypondYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x57\x71\x4f\x1c\xb9\x0e\xff\x9f\x4f\xb1\x0f\xb5\x7a\xf0\xde\x03\xa9\x7d\x55\x55\xa1\xd3\x21\x16\x5a\x7a\x6a\xa1\xa8\xa0\xfe\x71\xcc\x36\xf2\x64\xbc\x33\x11\x99\x64\xea\x64\x80\xa5\xe9\x77\x3f\x39\xd9\x65\x33\xb3\x7b\xba\x95\x0c\xf1\xcf\x9e\xc4\xb1\x1d\x3b\x99\x2b\x8d\x7e\xd1\xe1\xd1\x44\x2b\xbd\xe8\xac\xa9\x76\x76\x2a\xf4\x28\xfd\xd1\xce\x64\x32\x99\xb0\xdc\x40\x8b\x47\x93\xdd\xa2\x38\xd4\x8b\x17\xa1\x28\x0e\xd5\xf2\xbf\xd6\x8b\x17\xbb\x3b\x3b\xd4\x6b\x74\x49\xfd\x60\x22\xad\x71\x1e\x8c\x3f\x34\x7d\x5b\x22\xc5\xef\xaa\xff\xee\x2e\xa5\xaa\x42\xe3\xd5\x5c\x2d\x05\xe5\x9e\xf3\x30\x9f\x07\xd7\x81\x54\xa6\x0e\x4e\xd5\x06\x7c\x4f\x18\xc8\xf6\x5e\x19\x0c\xc6\x7a\x74\xa1\x01\x53\x69\xa4\x20\x2d\x11\x4a\x8f\x55\x28\x11\x5a\x17\x80\x3a\xac\x6b\x65\x5d\xf8\x66\xb5\x07\x81\xa6\x26\xb8\x47\x0a\xdf\xac\x92\x18\xbe\x21\x79\x25\x41\x0b\xd0\xaa\x36\x99\x14\x18\x36\x20\xb4\xaa\xe3\x72\x9b\xa2\xe5\x04\x4b\xee\x3a\x5a\x79\xf3\x80\x70\xb7\x56\xbd\xe9\x3b\x8d\x3e\xe3\x49\x69\x2d\x5c\x07\xc6\x20\x65\xb0\x6a\x95\xa9\x85\x27\x30\x4e\x83\xb7\x11\x41\xf1\xbc\x55\xd1\x21\xcd\x2d\xb5\xb8\x21\xc8\xa6\x18\x6a\xe5\x22\x7c\xf4\x5b\xd6\x64\x34\xe3\xda\xce\xe6\x13\x40\x29\xbc\x42\x31\xb7\x5a\xdb\x87\x4c\x0f\x4a\x11\xe3\x21\xdc\xa2\x2d\xad\x1e\x4a\x38\x12\xa2\x41\xa8\xdc\x00\x4f\x8e\xba\x81\x32\xf9\xe8\x7a\xe1\x3c\xb6\x3c\x0d\x79\x51\xa1\x56\xad\xf2\xb9\x65\xd7\x2c\xcd\x38\x30\x4f\x20\x52\xaa\xfc\x1d\x3c\x0a\xde\xf5\x56\x0b\x13\xba\xde\x63\xe2\xa5\xd5\x1a\xa5\x67\xff\x0f\x35\xcf\xc9\xf6\x5d\x58\x9a\xbc\xf4\x5e\x49\x1c\xde\xb9\xa5\x52\x55\x99\x7a\x07\x46\x94\x40\xc2\xf9\xbe\xdc\x02\x0f\x91\x55\x42\x0e\x60\x39\x5c\x5f\xf7\x94\x1b\xca\x6c\x26\x04\xd7\x08\xc2\x0e\x21\x0b\xe0\x35\x76\x40\x10\xb7\xa1\x95\x41\x51\xb3\xf5\x99\x58\x92\xea\xbc\xa0\x3c\x96\x4b\x6c\xcc\x4b\xab\xfb\x36\x77\xa6\xb4\x84\xe1\x6b\xb3\xf0\x4d\xab\xe4\x86\x78\x25\x48\x8e\xfa\x8a\x2e\x9b\x31\x72\xec\x60\xe5\x94\xcd\xbf\x49\xc6\xfb\x3c\x4b\x97\x18\xc8\x3b\x63\x1f\x34\x56\x75\x26\xbb\xe2\x54\x9f\x93\x6d\x85\x41\x55\x37\xa5\xcd\xdc\x71\xa5\xbc\x6c\xb0\x12\x3e\x1e\xad\x21\x2c\xdc\x8f\x9e\x9d\x95\xa1\x60\x38\xcd\x2b\xd0\x99\x7f\x73\x74\xab\xea\x28\xbd\xa2\x28\xed\xf7\xaa\x21\x70\xec\x74\x37\x88\xd1\x15\x7a\xea\xa5\x54\x29\xf3\x57\xdc\xf2\x13\x24\x89\xc6\x6f\x44\xf0\x8a\x8f\x83\xb4\x6d\xc9\xe1\xcb\x51\x34\xbe\x41\xa7\x5c\x0e\x76\x48\x1b\x91\xf8\xd2\xfb\xae\xf7\xa2\x23\xdb\x21\xf9\x45\x26\xf0\x1e\xee\x61\xb3\x04\x7c\x31\x98\x4c\xba\xec\xb5\x4e\xa6\x5e\xf2\x09\x76\xe3\x7c\x8c\xe8\xda\x5f\x91\xe5\x8a\x3f\xd2\x18\x9d\xfc\x67\x2c\x65\xe4\x00\xbf\x84\x16\x8b\x22\x0e\x3f\x22\x54\xe1\x12\x1f\xc4\x5c\x99\x1a\x69\xb0\xf0\x45\xaf\xbd\x12\x2d\x82\xe3\x0c\xa0\x41\x72\x5d\xa8\x4a\x09\x69\x8d\x27\xab\xc5\xbc\x37\xd2\x73\x8e\xad\xad\xbc\x40\x4f\xd6\xd8\x16\x45\x0b\x94\xd5\xe4\x0b\x34\xae\x27\xd0\x5b\x2a\xfb\x4a\x94\x7c\xb1\xe2\x92\x8f\x2e\x06\x93\x7c\x5e\x90\x92\x2e\xfd\xcb\xd6\x4c\xfc\x5a\x6b\xb5\x42\x49\x20\xef\xf2\x46\xf0\x99\x13\x9c\x46\x8e\xf9\x0c\xca\x39\x7c\x12\xf7\xaa\xa4\x3c\x4e\x9f\x14\xde\x83\xd9\x62\x6f\x12\x24\x6b\xd3\x38\xd9\xfa\x09\x17\x99\x51\xcc\xad\x3f\x41\xec\x38\x9f\xef\x51\x78\x5b\xa3\x6f\xf2\x85\xfe\x30\xce\x53\xdf\x72\x76\xba\x87\x78\x80\xb6\x89\x86\x91\xff\xb8\xe8\x1a\xcc\xb2\xf0\x9c\x6c\x29\xba\x1f\x39\x80\xb5\x25\x05\xe6\x86\xdb\x5b\xac\x31\xca\x2e\x8d\xde\x2e\x4b\x9b\x38\x27\x30\xd5\xf3\x50\x6e\x49\xcb\x04\x8f\x58\xee\xfa\x63\x0c\x7a\x6f\xc7\x02\x6d\x4b\xd0\xe1\x5c\x2b\xe7\xc0\x54\x59\x35\xfe\x40\xe8\x4b\x0b\x54\x0d\xa1\x29\x43\x2e\x7c\x48\xb5\x3f\x06\x2e\x75\x83\xb5\x96\xb5\x3e\x76\xc0\x0c\x61\x4f\xaa\xa7\x1c\xda\x4c\xf2\x35\x34\x3e\xd1\x1f\x54\xdd\x13\x56\xa2\x04\xe7\x44\x67\x9d\xf2\x83\x32\x3a\x10\x8f\xd1\x29\x38\x17\xde\x3f\x7a\x34\x55\x1e\xe2\xf7\x9d\x72\xd8\x66\xd7\xa0\xb3\x85\x81\x96\x73\x79\x39\xc8\x12\x67\x85\x8c\x75\xc7\xf5\xf0\x8c\xfa\x36\xf6\x7e\xb7\x05\xcb\xe7\xa3\xbe\x4d\x71\xe7\x51\x0a\xed\x99\xed\x4b\x1d\x95\xb6\x16\xc5\x33\xeb\xdd\x80\xdb\xf0\xd1\x19\xde\x9b\x5e\xeb\x70\x86\x73\xe8\xb5\x8f\x0d\x77\x78\xac\x4e\x7b\xe7\xad\xcb\x79\x14\x52\xe3\x7c\x80\x24\xbb\x4e\x97\xe5\xc4\xf3\x79\xcd\x2c\x3f\xb5\x46\xf6\xc4\x95\x58\x34\xa0\xa8\x53\x99\x01\xa7\x9b\xfd\xed\x54\xf7\x8e\xaf\x34\x1b\x15\xf7\x74\xb8\x6c\x63\x89\x1b\x17\xb6\x56\xdb\x31\x3c\x3c\x65\x11\xe3\xa2\xe9\x78\xa8\x28\x39\x6f\x4a\x08\xbe\x89\xed\x67\x10\x90\x69\x4c\xcc\x51\x94\xa6\x68\xaa\x9c\x83\x36\xdb\xe0\x74\x70\x38\x22\xb7\xa5\x6f\x4f\x81\x36\x2e\x62\xd3\xfc\x82\x73\xf2\xa8\xdc\xf8\xea\x71\xb2\x79\xf8\x4e\x36\xae\x40\x27\x52\xc6\x7b\x7f\xde\x81\xe3\xc5\x63\xbf\x28\xca\xd5\xcb\xc0\x79\xf0\xc8\x25\xe8\x68\xb2\x7b\x7b\x20\xbe\xcf\x8e\x8b\xa2\x28\x6e\x0f\x4e\x0e\xfe\x84\x83\x27\x31\x7b\x7e\x42\x74\x84\x1d\x59\xb9\x7c\x3f\xec\xed\xd5\xca\x29\x17\x6a\x26\x74\x18\xff\x86\x3a\xcc\x23\x3a\x67\x8a\xe8\x9c\x29\x60\x44\x91\x29\xa2\xc8\x14\xaa\x88\x56\x4c\x11\xad\x98\x82\x8c\xa8\x64\x8a\xa8\x64\x0a\x65\x44\x4b\xa6\x88\x96\x4c\x01\x22\x0a\x4c\x11\x05\xa6\xfd\xdb\xff\xfd\x7b\xf6\x9f\xdb\xe3\x7f\xcd\x8e\xf7\x83\x0b\x14\xbe\x86\x1f\xfb\x7b\xaf\x5e\xbf\x0b\x6f\xdf\x84\xff\xbf\x0e\xaf\xde\x86\x77\xe1\x4d\x78\x1d\x5e\x05\xde\x6a\x49\x78\x8f\x71\xa4\xad\xa9\x21\x8e\x5a\x78\x54\x2d\xec\x1f\xef\xdd\x7e\x2f\xe2\xef\x61\x16\x44\x28\x8a\x72\xff\xd9\x6d\x1d\x4a\x05\x9a\x9d\xb6\xb7\xff\xf3\xd7\x6f\xbf\xcf\x42\x51\xdc\x86\xa2\x98\xed\x8e\x1f\x64\xce\x73\x1d\x4a\xef\x34\xfe\xc5\x3b\x3a\xbb\x71\x77\xf7\x19\x43\x53\x8d\x10\x77\xa7\xba\xe8\xeb\xa2\x38\x5c\xa3\xd9\x93\x6f\xf5\xcb\x57\x4a\x46\x9d\x36\x40\xc3\x4f\x59\xa7\x8d\x41\xde\xb0\xe2\x65\x51\xfc\x1c\xdb\xf1\xb2\x28\x7e\x8d\xd7\x9c\xdc\xce\xfe\x71\xaa\xf1\x3c\x2f\xb6\x4d\xb2\xf3\x57\x00\x00\x00\xff\xff\x94\x50\x40\x16\xfb\x0e\x00\x00"
-
-func runtimeSyntaxLilypondYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLilypondYaml,
-               "runtime/syntax/lilypond.yaml",
-       )
-}
-
-func runtimeSyntaxLilypondYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxLilypondYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/lilypond.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLispHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xc9\x2c\x2e\xe0\xd2\x48\xcd\x4d\x4c\x2e\xae\xa9\xca\xcc\x49\xd5\x54\xa9\x89\xd1\xd3\x48\xcd\xa9\xc9\xc9\xb4\x2f\x2e\xa8\x29\x4e\xce\xad\x29\x2e\xd6\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\x62\x95\xa0\x9d\x29\x00\x00\x00"
-
-func runtimeSyntaxLispHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLispHdr,
-               "runtime/syntax/lisp.hdr",
-       )
-}
-
-func runtimeSyntaxLispHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxLispHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/lisp.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLispYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x5d\x8b\xe3\x20\x14\x86\xaf\x9b\x5f\x21\x52\x68\x52\x31\xdb\xdb\xba\xfd\x60\xd9\xbf\xb0\x57\x9b\x63\x07\x63\x4f\xa7\x82\x5a\x89\x96\xa1\xc5\x1f\x3f\x24\xe9\x17\xcc\xcc\x95\xe0\xfb\x3c\xef\xd1\x73\x30\x16\xd3\x25\xa0\x20\xd6\xc4\x50\x14\x7b\x4c\xa8\x93\x20\x05\x21\x84\xf4\xa1\x57\x0e\x05\xa1\x25\x3a\xa5\x63\xbe\x1a\x8b\xd5\x34\x03\xd4\x25\xda\x6c\xcd\x36\x86\x1c\xb5\xcb\x31\x56\x53\x5a\x14\xdd\xd9\x62\x14\x83\xcb\xc9\x1e\x0f\xea\x6c\x93\x20\x14\xa0\x6c\x14\xbf\x72\xc9\xe8\x2d\x8b\x17\xd7\x9e\xec\x18\x95\x0d\x00\x67\xf3\x5f\xab\x8d\xcc\xab\x75\xde\xac\xab\x3c\xbb\x73\xfa\xe4\x63\x52\x3e\xd5\xfe\xec\x5a\xec\x06\xa1\x6d\x16\x7c\x29\x59\xbb\x79\x94\x05\xd4\x46\x8d\x6d\xad\x37\x16\xa0\xbd\x47\xa1\xc3\xd0\x9d\xf4\xcd\x4b\xff\xe4\xd3\x7a\x54\xc7\xd4\x19\xff\x3e\x20\x40\x4b\x00\x80\x3a\x37\x3b\xa0\xb2\x9a\xf7\x37\x5f\xf9\x71\xdc\xdf\xa3\xea\xdf\x33\x6b\xfe\xf0\xff\x8a\x5f\xe5\xed\x5c\xf0\xe5\xdb\xcb\x47\x7f\xb0\x86\x29\xdb\x27\xe4\x1c\xfa\x7e\x53\xe5\x2e\x37\x8d\x88\x41\x69\x14\x52\x56\xbf\xeb\xf9\x9d\x31\x7e\x8f\x3e\x71\x7d\x54\x5d\xfd\x71\x34\x09\x47\x88\xd0\x17\x9e\x4d\xbf\xa1\x05\xa1\x13\x46\x58\x26\x6c\xc2\x68\xf1\x19\x00\x00\xff\xff\x43\x3b\x48\x95\xf0\x01\x00\x00"
-
-func runtimeSyntaxLispYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLispYaml,
-               "runtime/syntax/lisp.yaml",
-       )
-}
-
-func runtimeSyntaxLispYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxLispYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/lisp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLuaHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x29\x4d\xe4\x8a\xd1\xcb\x29\x4d\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\x9f\x87\x18\x07\x0c\x00\x00\x00"
-
-func runtimeSyntaxLuaHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLuaHdr,
-               "runtime/syntax/lua.hdr",
-       )
-}
-
-func runtimeSyntaxLuaHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxLuaHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/lua.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxLuaYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x6f\x6f\x14\x37\x13\x7f\x9f\x4f\xe1\xe7\x20\x22\x01\x2e\xf0\xc0\x8b\xb6\x27\x42\x55\xd1\x50\xf1\x02\xa2\xb6\x08\x55\xca\x5e\x91\x77\x77\x76\xd7\x8d\xd7\x76\xc6\xe3\xdc\xa5\x0c\xfd\xec\xd5\x78\xef\x92\x4b\xca\xd2\x86\x20\x38\x25\xfe\x33\xb6\x67\x7e\x33\x9e\xf9\x79\x1b\x63\x81\xce\x02\xcc\x94\x4d\x7a\x6b\xab\x06\x82\x8a\x66\x5b\x4a\x29\x25\x4b\x4e\xf7\x30\x53\x93\xa2\xd8\xb3\x49\xdf\x9e\x6c\x6d\x61\xb2\x10\x87\xf5\xa9\x8a\xa4\x09\x7a\x70\x94\xb7\x94\x3b\xb5\x67\x70\x35\x2f\x3a\x63\x81\x11\x02\x68\xe2\xe4\xc8\x58\x36\x0d\x83\x8d\x60\x1a\xa6\x0e\x5c\x1e\x73\xe3\x91\x8d\xe3\x26\xb9\x8a\x8c\x77\x6c\x7d\xa5\x2d\x23\x50\x42\xb7\x5b\x14\xe5\x64\xc4\x8a\xf3\xc4\xda\xd5\xec\xf1\x63\xbb\x6a\x28\x53\xcb\x91\xd0\xb8\x96\x7b\x4d\x1d\x93\x2e\x2d\xb0\xf1\x5c\x79\xf4\x89\x8c\x03\xf6\x91\x13\x35\xdf\x72\x69\xe8\xf1\x23\xd1\x56\x14\x7b\x63\x0a\xdf\x1e\xbc\x7a\xc3\x6f\x7f\xe2\xb7\x6f\x0e\x7e\xf9\xf5\xc5\xe1\x2b\xd6\x31\x02\x12\x57\xde\x5a\xa8\xa8\xd5\x58\xea\x16\xb8\xf6\x12\x37\x06\x44\x8f\xdc\x02\x35\xe0\x4e\xa5\xef\x81\xf4\x0a\x41\xd0\x06\x23\x5b\xaf\xeb\xdc\xe4\xfd\xbd\xaf\x93\x05\x76\xb0\x24\x1e\xd6\x43\xa5\xad\xe5\x80\xc6\x11\xa3\x5e\xc0\x49\x92\xe8\xe8\x45\x0b\x79\x6e\xc1\x49\x17\x65\x06\x27\xc9\x20\x70\x04\x01\xc2\x71\x65\x34\x6e\x1a\x25\xef\x52\x5f\x02\x32\xf9\x55\x4c\xe4\xd6\x39\xb9\xa0\xab\x63\x5e\x66\x63\xbb\x45\x11\xef\x16\xc5\xce\x3a\x02\xa6\x06\x47\xa6\x31\x80\x33\x35\x31\xbe\x28\xf6\x24\x0e\x95\xf5\x72\x79\x36\xc5\x8e\x8d\x0b\x89\xd8\x1a\x07\x91\x7d\x00\xc7\x3e\x91\x48\x42\x9e\x20\xe8\x9a\xa9\x0f\xd9\xc1\x6c\x6e\x81\x86\x60\xf3\xd6\x2e\x99\x90\x5b\x5a\x19\xd1\x65\x64\x5d\xf9\xc8\x3a\x1a\xc7\x9a\xb4\x7b\x94\x5b\xae\xc0\x58\xae\x7c\xec\xa4\xe1\x1a\x5a\x86\x65\xe0\xc6\x7a\x8f\xdc\xf4\xbe\xe6\x06\x45\xd0\xa5\x16\xd8\xd6\x32\xb4\xbe\xfd\xff\x43\x69\xb9\xd7\x4b\xf9\x37\x8e\xa0\x05\xe4\xde\x38\xf9\x3f\x9f\xfa\xba\xe1\x60\x38\xf8\x05\xa3\xae\x19\xb5\xab\x7d\xbf\xea\x22\x40\xcd\xd1\xb8\x8e\xe3\x09\x12\x0b\x12\xf2\xeb\x93\x43\x24\x2d\x8d\x3a\xe6\xe3\x45\xec\xaa\x63\xae\x35\x01\xd7\xa6\x69\xc8\xf4\xc0\xb0\x84\x2a\x91\xf4\x86\x24\x51\xe4\xea\x10\x7a\x7f\x2a\x25\x24\xf5\x27\x17\x99\x6b\x03\x38\x1f\xa0\x3e\x88\x78\xd4\x9a\xdc\xa8\x6e\x61\x6d\xd2\xbb\xc6\xb4\x5c\x05\x29\x01\x49\x37\x18\xb2\xce\x9a\x92\xb3\x2c\x20\xe4\x54\x8c\x00\x92\x70\x11\x34\x56\x1d\x60\x5c\x8d\x64\xcf\xa8\xa9\x21\x95\x56\x96\xca\x33\x02\xae\x3a\x8d\x5c\xa7\x3e\x70\x63\x5c\x2d\x35\xde\x6b\xe2\xb6\xd7\x54\x75\xdc\xc6\x54\xb2\x24\xae\xf5\x0b\x89\x78\x16\xe6\x04\x94\x26\x9a\x3f\x33\x6b\x30\xc2\x29\x60\x04\x96\xdd\xab\x04\x4d\x21\x00\x8e\xc2\xc8\x29\x7e\xe1\x6f\xa5\x89\x8d\xcb\xc5\xd9\xeb\xa5\xe3\x1c\xcb\xac\x66\x15\xd7\xe8\x91\x56\x9a\x47\x75\x0a\x2f\xac\x55\x8a\x4f\xd2\x04\x4d\x04\xe8\xb8\xf2\x35\xc4\xdc\x06\x49\x82\xec\x92\x6f\x9a\x08\xe3\x29\x70\xce\x39\x6b\x9d\x08\x92\x05\x26\x9e\x19\xb0\x75\x2e\x51\x84\x98\x7a\x60\x4c\xce\x49\x7d\x0a\xff\xa4\xc8\x0b\xd4\x81\xf3\xa6\x51\xdd\x99\xea\x56\x7a\x07\xda\xdb\xe0\x9d\xce\xfb\x63\xe9\x8d\x6b\xbc\xf4\x03\xcb\x5e\x22\xa4\x16\x08\xa1\x35\x91\xf0\x4c\xc6\x29\x9c\x6a\x9b\xb2\x38\x45\xc0\x61\xb2\x41\x2a\x59\xe3\x3a\x27\x2f\xb3\x4c\xbc\x38\x1d\x37\x4f\x13\xea\x0a\xca\xe1\x22\xb3\xc4\xd4\xeb\xd1\x1f\xde\xb8\x51\xcf\x32\x2f\xaf\x29\x01\x63\x67\x1a\xe2\x52\xb8\xbf\x94\x47\xa0\xf4\xc8\x25\x41\x24\x2e\x97\x1e\x19\x96\x62\x46\xe8\x30\x58\x5d\x01\x5b\xf4\x42\xe1\x6c\x87\x73\xb8\x9a\x0e\x6a\x46\x4d\x16\xc5\xec\x2a\xcb\x0d\xfc\x96\xd9\x2c\x02\x64\xdf\x4f\xcb\xd4\x0c\x6c\xc6\x5f\x2f\xed\x05\x67\x04\xdb\xb0\xc6\x76\x73\x53\xe5\x5d\x24\x7d\xfe\x70\x35\x5a\x5e\x5b\x67\x2c\x13\x26\x18\x7b\x33\x77\x86\x07\xbc\x19\x9e\xee\xe1\x41\x31\xae\xb2\xa9\x86\x5d\xde\x3e\xe1\xed\xff\xf1\xf6\xcf\xbc\x8d\xbc\xbd\xfc\x90\xad\xbd\xe1\x79\x59\x99\x3c\x7a\x38\xfd\x6e\x7e\xef\x92\xa9\xb3\xbe\xf4\x76\xaf\x44\x5d\x1d\x03\xc5\x99\x9a\x1c\xed\xec\xbe\x7b\x5f\x14\x47\x45\x31\x9f\x5f\xde\x35\xa0\xb9\xcb\x0f\x1e\xf0\x03\xde\xe6\xa2\xb8\xc7\x53\x2e\x8a\xdf\xf9\x29\x3f\xdd\xe7\x27\xfc\x64\x9f\xff\xda\xe7\x7d\x3e\x2a\x8a\xbd\xf9\xbb\x47\xf7\x1f\xbf\xe7\x5b\xbb\x93\xad\xab\x88\x06\x72\x1a\xbe\x55\xe4\x17\x49\x63\x8e\xc9\x64\x72\x2e\x03\x57\x5f\x91\xc4\x63\x13\xb2\x17\xe7\x9f\x02\xf2\xdb\xf8\xec\x59\xff\x36\x2d\x05\xa8\x8c\xb6\xcf\x3a\x8d\x17\x47\xff\x2b\x9c\x3b\x57\xd1\xdc\xf9\x8a\x60\xf2\x7d\x1c\xfd\x23\x3e\xc5\xbc\x28\xe6\x37\x03\x70\x4b\xc5\x14\x82\x47\x52\x8d\xc1\x48\xaa\x81\x85\xb2\xe0\x5a\xea\xa2\xf2\x8d\x9a\x58\xef\x5a\xb5\x4e\x8f\x89\x82\x65\xb0\xa6\x32\x64\xcf\xb6\x6e\x9d\x8b\x95\x6c\x02\x54\xd4\x69\x27\x0d\xa9\x85\xb1\x56\xb5\xe6\x14\x54\xce\x72\x15\x7c\x34\x64\x4e\x21\x5e\xc7\xe3\xfd\x0f\xbb\xbc\x7f\x63\x9f\xaf\x01\x61\x0c\xc3\x97\x05\x31\x8a\xe2\x0b\xc3\xd8\xbf\x37\x0a\x44\x96\x3e\x0b\x94\xd5\xda\x4a\x7e\xf4\x70\xfa\xcd\xfc\xa2\x61\x91\x2d\x85\xc6\xf4\xb4\xf9\x61\xfa\x7c\xbe\x31\xcc\x6b\x47\xba\x84\xc6\x61\x9c\xf3\x8e\x4c\xab\x2c\x7c\x36\xcd\xdd\xcb\x75\x37\xc8\x76\x37\xdd\xef\x85\x6e\xf7\x4a\xf9\x0e\xfc\x90\xf3\xd3\xfc\xf7\xc9\x35\x48\xbe\xf6\xc2\x9e\xaf\x0f\x7f\x3c\xe4\x57\x87\xaf\x0f\xf8\xf9\x8b\xdf\x5e\x1e\xec\xce\xbe\xbf\x54\x81\x97\x6a\xed\xbe\x8a\xba\x07\xa5\xa3\x5a\x18\xea\x54\x9f\x2c\x19\x79\xf1\xd4\x70\x45\xf1\xba\xd8\x3f\xbd\x9a\x3e\x8a\xfe\x9a\x20\x6e\x50\x4f\x9f\x15\xc6\x4d\x2a\xea\xf3\x02\xb9\x61\x4d\xfd\x4b\x6a\x51\x67\xa2\xea\x74\x54\xe4\x55\xeb\x95\x6e\x08\x50\x65\x54\x6b\x8c\xca\x5f\x15\xd4\x1e\xa2\x72\x9e\xd4\xc2\xe3\xf1\x15\x8f\x66\x6a\xc4\x99\xab\x1e\xdc\xbe\x01\xee\xbf\x03\x00\x00\xff\xff\xd6\x9d\x54\x28\xfd\x10\x00\x00"
-
-func runtimeSyntaxLuaYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxLuaYaml,
-               "runtime/syntax/lua.yaml",
-       )
-}
-
-func runtimeSyntaxLuaYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxLuaYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/lua.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMailHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4d\xcc\xcc\xe1\xd2\xd0\xd3\xd2\xcf\x2d\x2d\x29\xd1\xd5\xd3\xaa\x89\xd1\x4b\xcd\xcd\xd1\x54\xe1\x8a\x73\x2b\xca\xcf\x55\xd0\xd3\x52\x88\x49\xd1\xb6\x82\x62\x10\x9b\x0b\x10\x00\x00\xff\xff\xac\x1f\x13\x8d\x32\x00\x00\x00"
-
-func runtimeSyntaxMailHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMailHdr,
-               "runtime/syntax/mail.hdr",
-       )
-}
-
-func runtimeSyntaxMailHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxMailHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/mail.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMailYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x4b\xc3\x30\x14\xc7\xef\xfd\x2b\x42\xd9\x61\x3f\x58\xbd\x07\xd9\x26\x82\x28\x78\x10\xa6\xa7\xbe\x0e\xb2\xe4\xcd\x45\x92\xb4\x24\xaf\x82\xd0\x3f\x5e\xd2\xae\x71\x6e\x1e\xcc\xa1\xf4\xfd\xfa\xbe\xcf\xfb\x1e\xb4\x41\xfa\x6a\x90\x33\x2b\xb4\xc9\x32\x85\x84\x92\x78\xc6\x18\x63\xb1\xe6\x84\x45\xce\xf2\x69\x31\xbf\xb1\x2d\xd1\xb2\x98\x77\x00\x05\x5a\x33\x9b\xe4\x7d\xd3\x11\x85\x42\xcf\x59\xbe\x7b\xf0\xb5\x65\xc5\x9c\x01\xa8\x05\x4f\x9f\x3e\xcc\xb3\xcc\xb7\x06\xc3\xa0\xbb\x64\xc3\xc6\x34\x92\x9f\xd2\x5a\xa1\x23\x7d\xd0\x83\x5e\xb9\x2b\x79\x68\x84\x44\x5e\x55\x0b\x3e\xf6\x34\x1e\x1b\x5f\xcb\xd8\xf0\xac\x03\x2d\xa7\x4f\xaa\xbb\xf3\xf2\xa8\x3f\xb1\xdb\xb6\xfb\x20\xbd\xde\x63\xf7\xe6\x42\xfa\x7f\xa9\x03\x75\x8f\x68\x9a\x59\x12\x91\xb5\x0b\x24\x1c\x45\x95\xe9\x6b\xdd\x45\x8e\xeb\x6a\x11\xc8\x6b\xf7\x3e\x40\xc7\x17\x48\xf8\x7e\x66\xdb\xee\x3f\xa2\x4d\x23\x7a\x7c\xe8\x14\x67\xf9\xe4\x27\x31\x5c\xcc\x52\x7c\x29\xde\xa0\xd4\xc2\xdc\x1f\x45\xbc\x16\x00\xa0\x18\x01\x02\x09\x42\x8b\x3d\xdf\xed\xba\xdc\x6d\xce\x8c\xd8\xfc\xb2\x65\xb5\x1e\x67\x14\x1e\x44\x6b\xe8\x0f\x58\x00\x07\xe0\x2e\x41\xcf\xd1\x4f\xa4\x65\x95\x0c\xb0\xfd\xf6\x6b\xad\xd5\x7f\x2e\x2e\xab\xec\x3b\x00\x00\xff\xff\xb9\x78\x17\xdc\x57\x02\x00\x00"
-
-func runtimeSyntaxMailYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMailYaml,
-               "runtime/syntax/mail.yaml",
-       )
-}
-
-func runtimeSyntaxMailYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxMailYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/mail.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMake_headersGo = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xd1\x6a\xdc\x3a\x10\x7d\xd6\x7c\xc5\x5c\xc1\xbd\x91\xc9\x5e\xa5\x09\xf4\x25\xb0\x85\x92\x10\xf2\x14\x4a\xb6\xa5\x94\x4d\x48\x54\x5b\xb6\x45\x6c\x69\x19\x69\xb7\x09\x61\xff\xbd\x8c\xbc\x4e\x76\x37\x81\xf6\xc9\xb6\xe6\xcc\x99\x73\x66\x46\x5e\x98\xf2\xc1\x34\x16\x7b\xe3\x3c\x80\xeb\x17\x81\x12\x2a\x10\xf2\xe7\x53\xb2\x51\x82\x90\x75\x9f\xf8\xe1\xc2\x91\x0b\xcb\xe4\x3a\xfe\x08\x39\x12\x13\x39\xdf\xe4\xd7\xe4\x7a\x2b\x01\xc4\x93\xe9\x3b\x94\x4d\x58\x3c\x34\xda\xf9\x23\xfe\xd4\xab\x13\x09\x05\x40\x7a\x5a\x58\xbc\xb4\xa6\xb2\xf4\x83\x51\x31\xd1\xb2\x4c\xf8\x0c\xe2\xc2\x75\xf6\x2b\x47\x07\x42\xbc\xe7\xb4\x53\x59\xbb\xce\x72\x92\xbc\x07\x71\x6e\x93\x2d\x13\xe2\x56\x96\xb8\xb8\x32\xbd\xbd\x6e\x1e\xf1\x9d\x3c\x6f\xfa\x9c\x27\x86\x82\x8c\xda\x05\xb5\xf9\x9c\x21\xeb\xf1\xa8\xca\x35\xe4\x3d\xac\x77\xc4\xbe\x27\x74\x43\x06\x6f\x34\xc0\x9b\x82\xcc\x56\x2f\x7d\x99\x3b\xac\x0a\xa6\x71\x35\x76\xd6\xab\x10\xf5\x67\x6a\x62\x81\x9f\xf0\x38\x1b\x0a\x51\x9f\xb5\x95\xa3\x31\x32\x3f\xbe\x2d\x40\xac\x41\xb0\xa3\x38\xc1\x3b\x3c\x9d\xe2\x30\x04\x7d\x6d\x4d\x75\xee\x48\x49\x2d\x0b\x10\x75\x20\xbc\x9b\x60\xcd\x00\x32\xbe\xb1\x98\x53\x32\x6b\xcd\xbd\xe0\x40\xad\x59\xac\x2a\x40\xb0\x82\xcd\xf0\xf4\xa5\x89\xb3\x65\x5d\xbb\x47\x95\x81\x13\x94\x9a\xdb\x21\xb3\x52\x21\xca\xe0\x57\x96\xd2\x10\x9c\x9f\xb2\xee\xfc\x5a\xfc\xff\x91\xc5\xb1\xba\xf5\x8b\xc5\x11\x9c\x2b\x0e\x05\x32\xcd\x38\x11\x56\x91\x9f\x87\x63\x15\x10\x2b\x43\xd8\x56\xb4\xb5\x19\x20\x62\x58\x52\x69\x27\x68\x89\xf6\x2c\xf3\x04\xd4\x48\x57\xe4\x56\x32\xe8\x9f\x29\x7a\xd7\x65\xc5\x0b\xe3\x5d\xa9\x2c\xd1\xd0\x3a\x8e\x4e\x31\xef\xe1\x37\xdf\x1b\x8a\xad\xe9\xd4\xc8\xff\x5f\x5b\xd1\x5f\x91\xf8\x32\x54\x56\x0d\xfd\xc9\x39\xa3\xe3\xad\xc8\xc6\xf0\x04\xcb\x2d\x2f\x83\xfd\xcd\xe8\x78\xbe\x64\x4d\xda\xe0\xb9\x09\x6d\x45\x79\x7e\xfa\x3b\xb9\x64\x67\x99\x41\x95\xfa\x65\xd1\x0e\x51\xde\xf8\xf7\x10\xc3\x85\xd0\x2f\xfb\xf7\x27\xe0\xeb\x5a\x6e\x21\xcf\xba\x10\x79\x21\x46\x37\x95\xdd\x77\x53\x8c\x97\xe0\x19\x44\x4c\x86\x12\xfb\xe0\xcb\xae\xaf\xc2\x2f\x5e\xa5\xca\x24\xf3\x76\x33\xf3\x98\xf6\x4d\xc6\x44\x91\x71\xf9\xcf\xa2\x67\x8b\xce\x25\x35\xa4\xcf\x6f\xf9\xec\xf9\xe0\xc6\x1f\xac\x8b\xfd\x95\x00\xd1\x56\xf4\xda\x91\xe9\x46\x99\x62\xba\xf9\x07\x5e\xc2\x1c\x1f\x1b\xb1\x1b\x3f\x1e\xe3\xaf\xfe\x77\x01\x27\x0c\xa8\xfb\xa4\xbf\x90\xf3\xa9\x56\x32\x85\xf0\x80\xff\xae\x6e\xbc\x9c\x0c\x46\x67\xce\x97\x56\x65\xf3\x45\x01\x20\xc8\xa6\x25\x79\x16\x08\x6b\xf8\x1d\x00\x00\xff\xff\x87\x85\x4c\x11\x3f\x05\x00\x00"
-
-func runtimeSyntaxMake_headersGoBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMake_headersGo,
-               "runtime/syntax/make_headers.go",
-       )
-}
-
-func runtimeSyntaxMake_headersGo() (*asset, error) {
-       bytes, err := runtimeSyntaxMake_headersGoBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/make_headers.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMakefileHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4d\xcc\x4e\x4d\xcb\xcc\x49\xe5\xd2\x88\xf6\xcd\x8d\x85\x72\x6a\x62\xf4\x72\x13\xed\xb3\x35\x55\xb8\xe2\x94\x15\xf5\xb4\xf4\x35\x52\xf3\xca\x14\xb4\x35\xed\xa3\x93\xd2\x63\xed\x41\x3a\x34\x14\x6a\x54\x34\xb9\x00\x01\x00\x00\xff\xff\x15\xaf\xd5\xf2\x3c\x00\x00\x00"
-
-func runtimeSyntaxMakefileHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMakefileHdr,
-               "runtime/syntax/makefile.hdr",
-       )
-}
-
-func runtimeSyntaxMakefileHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxMakefileHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/makefile.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMakefileYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xd1\x6e\xdb\x3a\x0c\x7d\xbe\xfe\x0a\x5f\xd7\x6d\xed\xfa\x36\xf7\xdd\x68\x96\x01\x1b\xf6\xb6\x2f\x30\x1d\x40\xb1\xa8\x46\xab\x2c\x79\x94\x92\xb6\x18\xfb\xef\x83\x94\xac\x6d\xb2\x76\xc8\xcb\x04\xc3\xa6\x68\x9d\xa3\xa3\x43\x4a\x69\x83\xe1\x71\xc2\x36\x1f\xc5\x1d\xc6\x59\x96\x49\x0c\x38\x84\x36\xcb\xf3\x3c\x8f\x19\x2b\x46\x6c\xf3\xa2\xea\xbe\x8e\xfd\x7e\x11\x03\xcc\x46\xb1\xb8\xab\xcb\x22\x2d\x5b\xa3\x90\x48\x6d\x5e\x2c\xcf\xfe\x9d\x5d\xfd\x5f\xa1\xdd\xe6\x4d\xbd\xe8\x56\xb7\xfd\x22\x12\x57\x39\x97\x75\x91\x65\xb4\x31\xe8\x77\xcc\xd7\xf9\x44\x38\x91\x1b\xda\xbc\x00\xb8\xa9\xb4\xc2\xef\xac\x95\x44\xc5\x5a\xd9\x14\xdb\x38\x41\xe3\x91\xd1\x4a\xad\x6a\x80\x0f\xc5\x1e\xeb\x83\x08\x38\xa2\x0d\x71\xcf\x0a\x1f\x26\x47\x81\xb5\x1d\xcc\x46\x22\xbb\x2d\x12\x69\x89\x07\x80\xc7\x71\xe5\xcc\xcc\x4d\x48\x22\xb8\x24\xb5\x5b\xb6\xf3\x7f\xfa\xa6\x7d\x7f\x49\xd5\xcd\xff\x3b\xef\x19\xa0\x99\x33\xc0\x62\xce\xed\x9c\x2f\x2e\x18\x20\x3e\xf5\x5b\x5a\x00\x4a\x80\xaa\x12\x2b\x3f\x89\xb0\x66\x21\xe5\x44\xa8\xf4\x43\x8c\xfc\x46\xa5\xc8\x4a\x5e\x09\x9f\x6c\xe5\x41\x18\xc3\x52\x53\xdd\x75\xad\x9f\xc4\x80\x6d\xdf\xff\x81\x17\x89\x1c\x31\x6e\x85\x61\xa5\x4d\x40\xda\x7f\xae\xdd\x26\xb0\xd2\x56\xfa\x40\xda\xde\xb2\xd2\xe4\xc3\xbd\x23\x79\x22\xaf\x32\x62\xeb\x88\x95\x23\x14\xc3\x9a\xb5\x62\x6d\x95\xe3\x6f\x4e\x5b\x36\x62\x47\xc5\xd6\x05\xa9\x89\xdd\xa9\x62\x1d\xe9\x5b\x6d\x79\x12\xc1\x6f\x56\x3e\x30\xa1\x30\xc9\x15\xbf\x46\x63\xd8\xc7\x92\x45\xbd\x13\xef\x9c\x39\x91\x76\x2b\xcc\x06\xf9\x5e\x90\x8d\x27\xbd\xd7\x46\x0e\x82\x24\x27\x89\xf1\x65\xb4\x0f\x29\xf0\x6f\x11\x6a\x89\x36\x68\xa5\x77\xdd\x3a\x7b\xa9\xfe\xc1\x8f\xae\xaa\xcb\x67\xc8\xe0\xac\x0f\xc2\x86\xd9\xce\xdc\x5d\xfb\xc6\xe1\x83\xa0\x24\xac\x28\x9e\x73\x68\xe5\x51\xc6\xdf\xe9\x29\xa9\x07\x98\xbd\x64\x5f\xdd\x84\x5f\xe3\xf5\x4e\x13\x0e\x5a\x98\x4f\x6b\x41\x87\xd0\x13\xd4\x5c\x1e\x8b\xb9\xfc\x6b\x5a\x0e\x3c\x03\x28\x9b\x0a\xe0\x47\xb7\x7c\xca\xfb\x06\xe0\x89\x01\xaa\x6e\x59\xa7\x49\x5d\xbf\x87\xe9\x3e\x2e\x6f\xae\x16\xe7\xdc\xc4\x7b\x16\x0b\xbc\x4f\x34\xd7\x7d\xf7\xf9\x4b\x0f\xf0\x2e\x12\xa0\xe4\x24\x67\xf1\xe2\xcd\x98\x7a\xe5\x37\x4f\xce\x8e\x3d\x29\x8f\x4f\x9f\x77\x7d\x96\xfd\x0c\x00\x00\xff\xff\x85\xaa\x15\xc9\x0e\x05\x00\x00"
-
-func runtimeSyntaxMakefileYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMakefileYaml,
-               "runtime/syntax/makefile.yaml",
-       )
-}
-
-func runtimeSyntaxMakefileYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxMakefileYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/makefile.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxManHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4d\xcc\xe3\x8a\xd1\x8b\x36\xd4\xb5\x8c\xad\xb0\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x03\x9c\x45\x64\x10\x00\x00\x00"
-
-func runtimeSyntaxManHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxManHdr,
-               "runtime/syntax/man.hdr",
-       )
-}
-
-func runtimeSyntaxManHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxManHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/man.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxManYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\x3f\x6b\x84\x30\x18\x80\xf1\x3d\x9f\xe2\x25\x38\x34\x05\x85\x8e\xcd\x22\x88\x85\xba\x85\xe8\x66\x1c\xb4\xbe\xfe\x81\x68\x4b\x1a\xf1\x84\xf7\xc3\x1f\x77\x7a\x83\x38\x3f\x3f\x9e\x6e\xb4\xe8\xb7\x3f\x94\x30\xd5\x33\x63\x2d\x7a\xfc\xf1\x12\x18\x00\xc0\xa3\xcd\xf5\x84\x12\xb8\x31\x51\xf9\x11\x7e\x56\xb7\x38\xe0\x8c\xb9\xc5\xe2\xbf\x7c\x9a\x10\x7a\x87\x38\xef\xe4\x2d\xa7\x42\x7c\x47\xef\x01\x3f\x5a\xe3\xc6\x7e\xf0\x17\x41\xc6\x44\x85\x3a\x23\x87\xed\x41\x12\x1d\x53\x56\x2a\x5d\xc5\xe2\xb2\x6a\xec\x82\x17\x46\x4a\x89\x33\x5b\x87\xd1\xef\xce\x98\xae\x4c\x32\xa5\xab\x17\xd8\xd0\xda\xdf\xf5\x78\x34\x8e\xd2\x9c\x74\x4e\xfa\x8b\x54\x2a\x38\xbb\x07\x00\x00\xff\xff\x92\x65\x68\x09\x0f\x01\x00\x00"
-
-func runtimeSyntaxManYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxManYaml,
-               "runtime/syntax/man.yaml",
-       )
-}
-
-func runtimeSyntaxManYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxManYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/man.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMarkdownHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4d\x2c\xca\x4e\xc9\x2f\xcf\xe3\x8a\xd1\xd3\xc8\x4d\xa9\xc9\xcd\x06\xe3\xbc\x1a\x98\xb8\xa6\x0a\x17\x17\x20\x00\x00\xff\xff\x3f\xa3\x50\xd9\x24\x00\x00\x00"
-
-func runtimeSyntaxMarkdownHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMarkdownHdr,
-               "runtime/syntax/markdown.hdr",
-       )
-}
-
-func runtimeSyntaxMarkdownHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxMarkdownHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/markdown.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMarkdownYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x4f\x6f\x9c\x30\x10\xc5\xef\x7c\x8a\x29\xd9\x83\x31\x65\xd3\xaa\x52\xa5\x22\x6d\x7a\xa8\xaa\x9e\x7a\x69\x73\xf3\x18\x96\x80\xb3\x58\x0b\x86\xda\x46\xfd\x13\x67\x3f\x7b\x65\x60\x23\xd8\x44\x55\x0f\xbb\x88\x99\x79\xbf\x79\x3c\xf0\xbd\x6c\x84\xfd\xdd\x8b\x14\xda\x42\x1f\xab\xee\xa7\x0a\x82\x4a\x58\x51\xda\x34\x00\x00\xf0\x7d\x55\xb4\x22\x85\x10\x71\x4b\xda\xca\xb5\xc7\xf1\xa7\xdc\x59\x10\x6d\xc2\x20\xd0\x43\x23\xcc\x24\xb9\x82\xdb\xe2\xae\x11\x06\xc8\x17\x69\xeb\xe1\x0e\xc4\x2f\x2b\x94\x91\x9d\x8a\xc6\x7e\x02\xd3\xc2\x70\x4b\x19\xa4\x1c\xd1\xf9\xcb\x96\x86\xc1\xd8\xf6\x80\x1f\x43\x67\x85\x99\xa7\x8d\x2d\xac\x68\x85\xb2\x29\x40\x98\xdd\xac\x06\x3f\xb7\x7d\x5d\x18\x69\xd6\x60\x92\x39\xc6\x52\xd3\x17\xa5\x48\x39\x8f\x48\xce\x32\xe0\x2c\xcb\x39\xcd\x1d\x22\x9d\xee\x28\xa7\x88\x34\x5a\xc0\xbe\x5b\xdd\xa9\x03\x88\xff\x63\x2e\xa0\x23\xf5\x02\x7c\xc1\x36\x56\xcb\xa3\x48\x6c\xad\xbb\xe1\x50\xff\x13\x7d\x3a\x4d\x9c\x13\xa7\xa7\xd3\x02\x51\x77\x5a\xfe\xe9\x94\x2d\x1a\x18\xd3\x3e\xc7\xd3\x8b\x52\x16\x4d\x0a\x61\x46\x92\x24\x89\xdd\x6e\xb7\x8b\x5d\x9e\xe7\xf1\xec\x0a\x91\xc6\x11\xa2\xa1\x9b\x25\x4c\x14\x55\x23\xd5\x73\x0a\x84\xd9\xd5\xc3\xdb\xd7\xef\x1f\x57\x39\x37\xd2\xd8\xf3\xa8\xac\x84\xb2\xf2\x5e\x0a\x9d\x82\x1f\x5f\x78\xa7\xcc\x2f\x4b\x38\xb8\x75\xf5\x4d\xf2\x81\xc7\x88\x5b\x58\x20\x5b\x69\xca\x99\xd8\x6b\xd1\xeb\xae\x1c\x71\x04\x91\x10\xf6\xa9\xfc\xa6\xb9\x63\xb7\x96\xb3\xaf\x2d\x8f\x10\x23\x87\xb8\x7d\x78\xf7\xe8\x2e\xc2\x42\x4c\x10\x13\xb2\x59\x15\xa3\x95\x73\x75\x3c\x3b\x2f\x3b\x65\x6c\xe1\x3f\xa4\x10\x91\xb1\x8c\x7b\x53\x3c\x7c\xb1\x4b\x58\xc6\x19\x77\xf3\x1c\x45\xe4\x91\xff\x43\x24\x2c\x8b\xbc\x6e\xb9\x44\xb6\xc5\xe1\x29\xca\x41\x55\x42\xfb\x6c\xab\x14\xc2\x57\x13\x80\x8d\x04\xb2\x50\xbb\x85\x83\x25\x6a\xd0\xcd\x8b\xa0\xda\xda\xde\x7c\x4c\xaf\xaf\x59\x06\xd1\x0d\x8f\x67\xc9\xea\xfd\xef\xf7\xfb\xcd\xb3\xfa\x4c\x06\x7f\x8e\xb4\x7f\xb8\x7d\xf8\x54\x12\xaa\x5a\x17\xa6\x63\x0c\x8c\x07\x7f\x03\x00\x00\xff\xff\x34\x33\xd2\x49\x19\x04\x00\x00"
-
-func runtimeSyntaxMarkdownYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMarkdownYaml,
-               "runtime/syntax/markdown.yaml",
-       )
-}
-
-func runtimeSyntaxMarkdownYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxMarkdownYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/markdown.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMcHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4d\xe6\x8a\xd1\xcb\x4d\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\x23\xa5\x21\x87\x0a\x00\x00\x00"
-
-func runtimeSyntaxMcHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMcHdr,
-               "runtime/syntax/mc.hdr",
-       )
-}
-
-func runtimeSyntaxMcHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxMcHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/mc.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMcYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8e\xcf\x4a\xc4\x30\x10\x87\xef\x79\x8a\x21\xbb\xa0\x1e\xdc\x07\xe8\xad\xd0\x08\x01\xdb\x2c\x6d\x15\xc4\xf5\x4f\x48\xa6\x4b\xa0\x99\x95\x66\x14\x84\x3c\xbc\xb4\x0b\x2b\xe8\x82\x38\x97\x61\x7e\xf3\xcd\xc7\xac\x20\x21\xf9\x68\xc3\x08\xee\x40\x43\xd8\xc3\x10\x46\x4c\x42\xcc\x8d\x3f\xdf\xb0\x80\xe8\x84\xf0\xc8\xe8\xb8\x10\x00\xb0\x00\x64\x23\x16\x20\x77\xbb\x4d\x74\x6b\x29\xc4\xf4\x3e\x62\x3a\xae\xaf\x21\xb1\x65\x8c\x48\x5c\x80\x7c\xbe\xf4\xe1\x03\x27\xce\xf7\xaa\xed\xb4\x69\x74\x95\x4d\xd7\x3f\x6c\x55\xae\x4c\x5d\xea\x26\xdf\xa8\xb2\xbf\x6b\x55\xf6\x38\x04\xc2\x2b\x79\xd6\x51\x95\xaa\x36\xcd\x8b\xd9\xf6\xda\x34\x5d\xae\x4b\x7d\xab\xda\x13\xeb\x0e\x71\x21\x97\x71\xae\xc4\x76\x9a\x0f\x57\xf2\x14\x21\xf9\x02\xe4\xfa\x3b\x38\x7e\x0c\x8f\x4f\x7f\x49\x3c\x8d\xff\xd2\x50\x62\x4b\xbc\x49\x3c\x05\xda\xff\xd6\xbd\xfe\x94\x5d\x9c\x93\x89\xaf\x00\x00\x00\xff\xff\xaa\xc9\x8d\xf2\x98\x01\x00\x00"
-
-func runtimeSyntaxMcYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMcYaml,
-               "runtime/syntax/mc.yaml",
-       )
-}
-
-func runtimeSyntaxMcYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxMcYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/mc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMicroHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcd\x4c\x2e\xca\xe7\x8a\xd1\xd3\x00\x33\x34\x55\xb8\xb8\x00\x01\x00\x00\xff\xff\xbd\x2c\x66\xf3\x12\x00\x00\x00"
-
-func runtimeSyntaxMicroHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMicroHdr,
-               "runtime/syntax/micro.hdr",
-       )
-}
-
-func runtimeSyntaxMicroHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxMicroHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/micro.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMicroYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x31\x6f\xdb\x30\x10\x85\x77\xfd\x0a\x42\xc9\x20\xc1\x90\x91\x8e\x15\x10\x18\x41\x9b\x00\x1d\xda\x0c\xcd\x50\xa0\xcc\x70\xa2\x4e\x32\x61\x8a\x14\x8e\xa7\xc4\x46\xd9\xff\x5e\x50\x72\x63\xab\x6e\x6c\x6d\x3e\x7e\x8f\xf7\xee\xd1\xd7\x68\x83\xbc\xeb\xb1\x14\x9d\x56\xe4\x92\xa4\x46\x46\xc5\x65\x22\x84\x10\xf1\xd0\x42\x87\xa5\x48\xa5\x5c\x66\x23\x91\x5f\xa7\x49\x42\x83\x41\x3f\x31\x85\xf0\x0c\x8c\x1d\x5a\x1e\xb1\x2a\xf3\x3b\xcb\xb0\x0d\xca\x19\x47\x59\x61\xb4\xdd\xe4\xab\x5c\xca\x2a\x7d\x8f\x67\x20\xbe\x0d\x68\xeb\xdb\x03\x76\x25\xbe\xeb\xae\x37\x28\x9c\xc5\x78\x07\x92\xdf\xcb\x75\x8d\x96\x75\xa3\x91\xf6\xfa\x1a\x1b\x18\x0c\x07\x3b\x74\x15\x52\x78\xbb\x3e\x0c\xb6\x46\x8a\xda\x3a\x20\x91\xa3\xc0\xae\x76\xe3\xf9\xe0\x63\x39\x68\x1b\xef\x2a\xd4\x1a\x28\xa8\x81\xbc\x23\x29\xc7\x66\x93\x79\x29\x0b\xe5\xcc\xd0\xd9\xa0\x5b\xeb\x08\x43\xad\x5f\x74\x8d\x14\x18\xaa\x0a\x68\x66\x16\x7b\x20\x60\x3c\x72\xe7\x05\x3b\xb1\x41\xec\x45\xaa\x5c\x1c\x65\x9b\x0a\xc2\x16\xb7\x42\x19\x04\xfb\xde\x34\xbe\x47\xa5\xc1\x64\x9f\xd6\x40\xf3\xdc\x4e\xd0\x4c\x0d\x44\x68\x59\xca\x22\x5f\x45\xdb\x52\x16\x53\x08\x67\x65\xed\xc0\x8c\x71\xb8\x4c\xdb\xc6\xed\xa3\x79\x05\xb2\xda\xb6\xf9\xaf\x0f\xbf\xcf\x8a\x95\xeb\x62\xb6\x99\x94\xcb\x8a\x74\xbb\xe6\x0b\x1e\xfd\xae\xab\x9c\x89\x78\x56\x11\xa8\x0d\xb2\x0f\xae\x47\x02\x8e\xef\x01\x6d\x7e\x41\x7f\x28\x8c\x77\x28\x03\xde\x87\x0e\x14\xb9\xf0\x02\x74\x49\xad\x9c\xf5\x0c\x93\xdd\xac\x72\x7b\x23\x4c\x03\x86\x06\x8c\xc7\x71\xdc\xd5\xdb\x3f\x67\x8a\x3e\x26\x1f\x3c\x93\xb6\x6d\xc4\x07\x32\xf9\x6a\x02\xcf\xf6\xea\x09\x7b\x72\x2a\x4a\xfc\x1a\x2b\xb0\xed\x05\x41\x5c\xbb\x48\x6f\x70\xf7\xea\xa8\x9e\xd3\x7f\x9d\x2f\x27\x6f\x7b\x49\x58\x87\xbb\x70\xb3\xcd\x17\x3f\x6f\x8a\x8f\xcf\x8b\xf1\x77\xbe\xb8\x24\xbb\xd9\x46\x5c\x40\xd1\x88\xbb\xe2\xe1\x79\xce\x8f\xcf\x39\xad\x72\xfc\xc6\x65\x2c\x45\x7a\x95\xbe\x95\xd0\xd6\xa5\x48\xaf\x0f\x85\xa3\xed\x9f\xbe\x42\xc4\xcd\x2a\x45\x9a\x3d\x7c\xf9\xf1\xf5\x3e\x3c\x3d\x7e\x7e\x0c\xdf\x1e\x9f\xee\xf3\x72\x75\xe2\x6c\x4a\xf6\xb4\xa3\x4c\xff\x6d\x79\x5c\xf1\x1b\xdd\x8f\xd3\x48\xb9\x3c\xe3\x64\xde\xe9\xf0\x9e\x73\xe9\xff\x72\xba\x1a\x33\xba\x2b\x1e\x62\x4e\xcf\x8b\x34\xf9\x13\x00\x00\xff\xff\x39\xf1\xae\x51\x1a\x05\x00\x00"
-
-func runtimeSyntaxMicroYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMicroYaml,
-               "runtime/syntax/micro.yaml",
-       )
-}
-
-func runtimeSyntaxMicroYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxMicroYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/micro.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMpdconfHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x2d\x48\xe1\xca\x2d\x48\x89\xd1\x4b\xce\xcf\x4b\x53\xe1\xe2\x02\x04\x00\x00\xff\xff\x86\x04\x46\xc3\x10\x00\x00\x00"
-
-func runtimeSyntaxMpdconfHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMpdconfHdr,
-               "runtime/syntax/mpdconf.hdr",
-       )
-}
-
-func runtimeSyntaxMpdconfHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxMpdconfHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/mpdconf.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxMpdconfYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x8e\xdc\x20\x10\x45\xd7\xe3\x53\x20\x32\x52\x1b\x5b\xe3\x03\xb0\xc9\x41\x5c\xb6\x85\xa1\xc6\x8d\x62\x03\x82\x42\x51\x6b\x2a\x77\x8f\xdc\x49\x27\x1d\x29\xb3\x04\xde\x7f\xff\xf3\xee\x77\xa4\x5b\x42\x2d\x8e\xe4\x9a\xc6\x21\xa1\x25\x2d\x1a\x21\x84\x38\xdf\x82\x39\x50\x0b\x79\x24\x07\x30\xd8\x18\xde\x5f\x65\xd3\xe4\xba\x63\xd1\x77\xe6\x4d\x14\x32\x84\x07\x06\xd2\x42\x02\xac\x6d\x2d\x98\x79\xcb\xb1\x26\x5e\x7d\x70\x0b\xc5\xc5\x38\x97\xb1\x14\xbe\xc6\x42\x9c\x62\x26\x4e\x7b\xdd\x7c\xe0\xd3\xce\x67\xbd\x02\x58\xe5\x27\xc2\xf6\xa8\xc5\x5b\x4e\xbb\xb9\xed\xbe\x90\x5a\x9c\xcf\x68\x29\xe6\x1b\xb7\x6e\xe5\x3d\x6e\x7c\x8f\x70\xf2\x8e\x0b\x79\xfb\x0d\xb3\x5a\xce\xf1\xff\x58\x13\x5a\x6f\x76\x2d\xe4\xdc\xfa\x90\x2a\xb1\xa9\xce\xc7\x25\x56\x3a\x0f\x0e\x6d\x74\x98\xd5\x38\xea\x92\x8c\x45\x3d\x4d\x1d\xc0\x07\x03\xfc\x78\x18\x6c\x0c\x85\x4c\xa0\xa1\x50\xf6\x61\x3b\xd7\xc9\x16\x00\x60\xe0\x71\x06\x39\xa9\x0e\x24\x5f\xfe\xdc\x5c\x26\xd5\x5d\xfe\x66\x8f\xdf\x3f\x6a\x67\x7e\xea\x50\x5f\xda\x71\xfe\x98\x86\x4e\x7d\x7d\x7d\xb0\x3e\x38\x0c\xf4\x66\xaf\x26\x0f\xdf\xaf\x9e\xf0\x17\x2c\xe4\x53\xae\xff\x1f\xad\x85\x7c\xe9\x45\xcf\xa2\x7f\xe9\x65\xf3\x33\x00\x00\xff\xff\x32\x59\x3a\x12\xda\x01\x00\x00"
-
-func runtimeSyntaxMpdconfYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxMpdconfYaml,
-               "runtime/syntax/mpdconf.yaml",
-       )
-}
-
-func runtimeSyntaxMpdconfYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxMpdconfYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/mpdconf.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxNanorcHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4b\xcc\xcb\x2f\x4a\xe6\x8a\xd1\xb3\x87\xb0\x54\xb8\xb8\x00\x01\x00\x00\xff\xff\x9f\xc7\x64\x9d\x13\x00\x00\x00"
-
-func runtimeSyntaxNanorcHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxNanorcHdr,
-               "runtime/syntax/nanorc.hdr",
-       )
-}
-
-func runtimeSyntaxNanorcHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxNanorcHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/nanorc.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxNanorcYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x5f\x6e\xe3\x38\x0c\xc6\xdf\x73\x0a\x23\xdb\x07\xbb\xbb\x9b\x03\x04\xd8\xcd\x41\xaa\x16\xd0\x1f\xda\x16\x22\x93\x2a\x45\xc5\xcd\x80\x87\x1f\xd8\x49\x3b\xe9\xb4\x53\xcc\x3c\x29\x91\x7f\x24\x3f\x91\x1f\xfb\x98\x40\xce\x19\xf6\x0d\x5a\x24\xf6\x9b\x4d\x00\x01\x2f\xfb\x66\xd3\x34\x4d\xb3\x7c\x46\x3b\xc1\xbe\xd9\x1a\xb3\x3b\x5c\x98\xbb\xed\x66\xc3\x35\x41\xd9\xaf\xcc\xbf\x4d\x80\xde\xd6\x24\xfb\x66\xdb\x1e\x62\xf7\xf4\xf0\xb0\x2f\xd9\x7a\xd8\x3f\x3e\xde\xb7\x6d\xc5\xee\x50\x40\x34\xa2\x4f\x35\x80\x96\x33\x8a\x7d\xd1\x78\xf0\x94\x88\xbb\xdd\xfd\xdd\xf6\x9a\xe6\xa2\xe3\x93\x1c\x4b\x78\xc5\x02\xd2\xdd\x5c\xff\xdd\xda\x2a\x14\x31\x00\x8a\x3a\xeb\x8f\x35\x5f\x8f\x10\x79\xfd\x35\x5b\x0e\x45\x1d\xa5\x20\xf0\x22\xea\xd8\xfa\x23\x48\x51\x6f\x0b\x14\xc0\x12\x25\x9e\x40\x3d\x61\x11\xf5\x55\xb4\x8f\x29\xe9\x18\x8b\x10\x9f\x13\x0d\x3a\x59\xf1\xe3\x5b\xd4\x44\x0c\x6b\x6d\x9d\xa8\x16\xd0\xa9\x26\x89\xae\xf6\x3d\xb0\x22\x79\xc2\x13\xb0\x28\x52\x4f\x29\xd1\xac\x48\x23\xa4\xac\x48\x08\x73\x8a\x08\x45\x91\x66\xb6\x59\x29\x03\x5b\x89\x38\x2c\x32\x33\x43\x01\x3e\x81\xe6\x8a\x5e\x3a\x63\xfe\xd7\xdf\x7a\xfa\x73\x8d\xfe\xe8\x92\xc5\xa3\x3e\x57\x12\x28\xc2\xca\xe0\x22\x86\x00\x09\x04\xae\x7f\x8e\x70\xce\x36\x28\xc3\x00\x2f\x59\xcb\x64\x59\x46\x9a\x40\xcb\x44\x24\xa3\x96\x0c\x29\x01\x6b\xa9\x25\x03\x06\x15\xeb\x4a\xfc\x06\xeb\x29\xb4\x56\x2b\x2a\x30\xe5\xc5\x06\x5a\x31\x90\x9e\x22\xcc\x3a\x8f\x51\xae\xbd\x98\x89\x83\xa3\x8a\xa1\x74\xc6\xb8\xd7\x49\x66\x86\xcc\xe4\xbf\x1e\xe6\xcf\x8e\x18\xc1\x06\xe0\xdb\x34\xeb\x68\x2c\xca\xce\x11\xa5\x9d\x70\x7d\xb5\xc7\x92\xe4\xd7\x60\x6f\x53\x79\x23\x2f\xcd\xbb\x61\xe3\x62\x98\xd8\x47\xe0\x4f\xe5\xc5\xee\x62\xcc\x77\x97\x8e\xe3\x30\x4a\x77\x68\xd7\x97\xab\x4b\xd6\x1f\x95\x21\xa8\x4b\x15\x74\x60\x00\xd4\x33\xac\x73\x9f\xec\x00\x28\x56\xfd\xd9\x62\x77\x68\xff\xf9\xd3\x90\xee\x70\xa3\xb5\x64\xf0\xd1\xa6\x2f\x85\x1a\xe3\xd4\x18\xd7\x16\xb1\x2c\x0a\x18\xba\xff\x3e\xb4\xa5\x08\x47\x1c\x96\x25\xde\xb6\xc6\x18\xb3\xd3\x87\x27\xb3\x7d\xec\xee\xcd\xf6\x07\x3b\x4d\x80\xcb\x0e\xbf\x2b\xf3\xd7\xcd\x7e\x5e\x91\xdd\xa5\x1b\x1f\xc8\x0b\xfa\x3d\x00\x00\xff\xff\xa1\x3c\x8d\x21\x51\x04\x00\x00"
-
-func runtimeSyntaxNanorcYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxNanorcYaml,
-               "runtime/syntax/nanorc.yaml",
-       )
-}
-
-func runtimeSyntaxNanorcYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxNanorcYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/nanorc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxNginxHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4b\xcf\xcc\xab\xe0\x02\x93\x7a\x5a\x31\x7a\xc9\xf9\x79\x69\x2a\x35\x31\x7a\x60\x01\x15\xae\x38\x8d\xe2\xd4\xa2\xb2\xd4\xa2\x9a\xd2\x82\xe2\x92\xa2\xd4\xc4\x5c\xcd\xe8\x44\xdd\x2a\x85\x58\xad\x98\x6a\x15\x2e\x40\x00\x00\x00\xff\xff\xa8\x3b\x93\xb7\x3b\x00\x00\x00"
-
-func runtimeSyntaxNginxHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxNginxHdr,
-               "runtime/syntax/nginx.hdr",
-       )
-}
-
-func runtimeSyntaxNginxHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxNginxHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/nginx.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxNginxYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\xdd\x8e\xeb\x28\x12\xbe\x9e\x7e\x0a\x2b\xdb\xd2\xe9\x1f\x75\x6b\xa5\x9d\x9b\xcd\x5c\xac\xf6\x35\xb6\x93\x83\x08\x94\x63\x26\x18\x38\x14\x4e\xc7\x7d\x78\xf8\x55\x01\xb6\xb1\x3b\x91\x92\x54\x7d\xc5\x6f\xfd\xdb\xad\xd2\x10\x46\x07\xfb\xc6\x9c\x95\xb9\x3d\x3c\x48\x08\x20\xc2\xbe\x79\x68\x9a\xa6\x21\xa9\xe1\x3d\xec\x9b\x5d\x12\xbf\xbf\x1c\x0e\xef\xc2\x9a\xf6\x31\x1e\x0e\xef\x09\x7a\xdc\xa5\x91\x1d\x70\x09\x7e\xdf\xec\x7e\x3e\x21\xf8\x2b\xf8\x38\x38\x0c\x1e\x78\xff\xfc\xc1\xdf\xbe\x9a\xe3\xcb\xe1\xf0\xfb\x71\xf7\xf0\xe0\x07\x0d\xb8\x4f\x73\xde\x1a\xe7\xc1\x79\x2b\xf6\xcd\xee\x70\x38\x3d\xc1\x15\x4c\xc0\x58\xe6\x77\x21\xb8\xa8\xad\xe0\x41\x59\x53\xad\xf6\xb1\x47\xc7\x05\xec\x8f\x69\xc9\x5d\x59\x09\x03\x0f\xd0\x83\x09\xfb\x66\xf7\xf4\x33\x2e\xa3\x7e\xff\x75\x7c\x7e\xe2\x42\x00\x22\xd3\xf6\x1c\xb9\x94\x8c\xb7\x01\x3c\x3b\x59\x39\x26\xf6\x04\xad\xf5\xb0\xf0\xf9\x2e\x44\x2a\xda\x9b\x91\x7e\x30\x72\x65\x23\xd7\x8a\x63\xe4\x5a\xdb\xcf\xc8\x8d\x50\x60\x02\x3b\x79\xfb\x89\x34\x7c\xcd\xb3\x2b\xd7\x03\x44\x3e\x84\x8e\x9d\x38\x2a\x51\x91\x6c\xa0\x01\xa4\x5c\x02\xad\x32\x12\x6e\x0b\xc5\xe0\xc6\x45\x60\xa8\xbe\x2a\x31\x23\x4d\xe8\xa0\x7a\x88\x27\x0f\xfc\x12\x45\xc7\x3d\x42\x98\xfe\x59\xcf\xdd\x4c\xe7\x03\x8b\x6e\x30\x17\x90\x2c\x78\x6e\xb0\x05\xcf\xc0\x08\x2b\x95\x39\x47\xa1\xf3\x49\xad\x1c\xd9\x69\x68\x49\x96\x76\xab\x71\x65\xd2\x01\x99\x35\x7a\xdc\x0a\x50\x99\xb3\x86\x32\x75\x25\x0c\xd0\x3b\xe6\x78\xe8\xd6\xa8\xea\xc1\x0e\x61\xc2\xb2\x7e\xef\xed\x5c\x24\x9b\xf1\x3d\xbf\xe5\x75\xf2\x50\x6b\x0c\x88\x64\x18\x67\xad\x2e\xa0\x07\x1e\x80\xb5\x83\xd6\xcc\x0d\x21\x1f\x41\x72\xe8\xad\x89\x92\x5f\x59\x76\x80\x44\xf6\x10\x3a\x2b\x31\x4a\x68\xf9\xa0\xb3\xb2\xa2\x04\x33\x46\xa9\x7c\x5a\x78\x26\x18\xd7\xea\x6c\xc8\xab\xa2\x54\xc8\x4f\x1a\x18\x8e\xbd\x56\xe6\x82\x11\x7a\x17\x46\x76\x56\x6d\x04\x73\x8d\xe0\xbd\xf5\xc9\xbf\x32\xe5\xf8\x19\x22\xdc\x9c\xf2\x80\xb1\xe5\x18\xc4\x59\xad\x2e\xbc\xc6\xea\x31\x38\xd9\x04\xd7\x23\x05\x17\xdd\x86\x63\xa7\xd1\x71\xc4\x0d\x78\x81\x71\x83\x68\x2b\x2e\x77\xa0\x59\xcf\x6b\x51\xaf\x0c\x39\xe8\x76\xd9\xa4\xd2\x35\x34\x20\x30\x0c\x5c\x6f\x8f\x75\xe5\x5a\xc9\x05\xcb\x06\xfb\xb6\x5b\xa7\x24\x4c\xb1\x36\x61\xea\x6c\x28\x14\x8b\xe1\xf9\xc9\xfa\xb0\x95\xe5\x19\xcb\xe9\x72\xf4\x2c\x5c\x00\x2f\xc0\x05\x96\x0c\xb1\x0c\xbb\x00\xb8\x74\x94\x19\x21\xb7\x4a\xfe\x9a\xfc\x7c\xa5\x6b\x03\xb7\xc0\xa6\x94\xb3\xa0\x76\x63\x04\xc7\x7d\x25\x5e\x99\x82\x98\xed\xe5\x3c\x70\xf9\x4d\x0b\x08\xe6\x0e\xe8\xb4\xca\x4e\xcc\x94\x69\xed\x82\x07\xeb\x61\xcd\x4d\xae\x3d\x81\xcb\x8d\x3e\xbd\x0a\x9b\x7b\x2d\xe1\xd9\xea\x6b\x3c\x83\xa5\xaf\x72\x4c\xa8\x30\x4e\xa4\x1d\x4c\xf0\x63\x3c\x7f\x29\x97\x7e\x66\x17\x4d\x8c\xb0\xbd\x63\x1a\xae\xa0\x33\x5f\xe2\x22\x33\x94\xb2\xd9\x15\x3c\x52\xc6\x4e\x08\xf9\x92\x06\x73\x0e\x5d\xe6\x9d\xb7\x37\x05\x32\x33\x94\xb3\x95\xc8\x74\x4e\x59\x89\xbc\x72\x3f\x46\xd5\x46\xd5\xb2\xde\x4a\xd5\x2a\x90\x94\x71\x04\xc4\xe2\x01\xca\x24\x07\x9b\x3d\x41\xf5\xfc\x0c\x74\xe7\x00\x7e\xc5\x4c\x19\x6a\x85\xfd\xed\xe0\xcc\x7e\x0d\x5c\xd3\x9d\x57\x12\xec\xb8\x77\x60\xd6\x60\xca\x9e\x8e\x7b\x30\x62\x8c\xca\x08\x3d\x48\x88\xd9\xe7\x92\xaf\x19\xae\x23\x5d\x9d\x63\x17\xc9\xc7\xb8\x56\x57\x58\xa8\x59\x41\x0b\xe2\xe1\xd7\x00\x18\xb0\x82\x26\xfb\x6b\xee\xcf\xb3\xf7\xaf\xd2\x24\x46\xad\x7a\x15\xb2\x07\x2f\x24\xa5\x9c\x62\x8e\x0a\xfc\xb2\x06\x0a\x0f\x37\x0a\x86\xc2\x78\x1e\xa0\x22\x73\x1d\x9c\x00\xf8\xb5\x50\xdf\x96\x25\xac\x5a\xb5\x90\xe6\x0c\x5e\x99\x33\x13\xda\x62\xcd\xa7\x32\xb5\x66\xd3\xed\x14\x06\x30\x4b\x4d\xa7\x4d\x5a\xeb\x7b\x1e\x12\x69\x6c\x60\xad\x1d\x8c\x4c\x1c\x0e\xa7\xa2\xa8\x48\xa5\xad\xe7\x59\xc7\xec\x34\x88\x0b\x94\xea\x38\x83\x14\xca\x05\x41\x32\x1a\x35\x15\x14\x14\x84\x7b\x6e\xce\x80\xb1\x87\x3e\x05\xaf\x5c\xa5\xe1\x05\xdd\x66\xa9\x45\xb2\x4e\x06\x0b\x9e\xe2\x7d\x61\x57\xd1\xbd\xc0\xab\xf8\xee\x81\xec\x8b\x9a\x63\x47\x47\x52\x86\x49\xd0\x10\x80\x49\x70\xa1\x8b\xbd\x95\xe0\xcd\xdc\x51\xac\xd9\xd2\x50\xf4\xee\x4f\xfa\xae\x6f\xe1\xfe\xcc\x45\xb2\xc6\x50\x51\xce\x96\xa9\xe0\x27\xc6\x43\xeb\x01\xbb\x68\x1d\x94\xda\x9e\xb3\xd9\x86\x9f\x12\xe7\x16\x9e\xcb\xc2\x56\x90\xb3\x7d\x42\x93\x45\xeb\x95\x83\xea\xd5\x17\xb0\xdc\xd2\x31\x6a\x25\x31\xda\x2b\x78\x4f\xb9\x7f\x6a\x61\x9c\xf0\xc0\xfe\x56\x21\x3a\xf0\x3a\xfd\x50\xe0\x53\x9f\x98\x19\xf2\x03\xe5\x21\x33\x69\x82\x92\xd1\x59\x1f\xa8\x17\xf1\x90\xab\x75\x74\x16\x83\xb3\x06\x98\x1d\x82\x1b\x42\xa4\x54\xb3\x6e\x6f\x6a\x84\xb4\x52\xf3\x38\x73\xdb\xfa\x9b\xf1\x7c\xa1\x8a\x9e\x6a\x6f\x0d\x51\xe5\xad\xf9\x54\x77\xb7\xc0\xec\x0c\xb5\x60\x56\x6e\x0d\xa6\x44\x5d\x03\x4b\xbd\xad\xd1\xac\xff\x82\x6c\xbc\x78\x42\xed\x45\x01\x93\xb6\xe7\xca\xac\xb1\x6a\x8f\xba\x1e\x17\xa4\xce\xe7\x19\xba\x57\xa0\x57\x92\x29\x29\x17\x70\x5b\x8e\x33\x7c\xa7\xf4\x66\xc1\x3a\xd6\x0a\x66\x57\xda\xaf\xb4\x5e\x17\xd9\x8c\xac\x82\x70\x82\x26\x07\x49\xec\x2a\x1e\x27\x28\xac\x57\x41\x24\x3f\x43\xba\x36\xf3\x30\xe0\xb4\x75\x2e\xbf\x15\x3d\x15\xdf\x0c\xdd\x2d\xbd\x95\x28\xe9\xda\x73\x23\x6d\x5f\xba\x96\x74\x5c\x4e\x7b\x13\xa9\x19\x15\x92\x7c\x10\x0f\x62\xf0\x48\xb5\x61\x69\x28\x31\x96\x8c\x58\x35\xbe\x1e\x52\xc3\xaf\x7a\x90\x76\x08\x6c\x69\x8e\x49\x62\xf5\x35\x2d\x95\x89\xf9\xd6\x1e\xc2\xe0\x69\x40\x3a\x66\xf4\xd6\x86\x88\x3c\x28\x6c\xc7\xe9\x9f\x71\x33\x46\xa4\x33\x00\xa3\x7e\x97\x21\x08\x0f\x21\x26\xed\x69\xfb\xc9\x0b\x39\x2d\x49\x4c\x7a\x9e\x99\x88\x64\xe2\xf4\x04\x32\x3d\xcf\xad\xfe\x52\x2a\xa8\xe9\x55\x28\xd7\xe9\xe2\x7b\xd6\xff\x2e\x9d\xd3\x7f\x11\x05\x7b\x01\x43\x0f\x92\xb4\x14\x15\xaf\xac\xda\xd6\xdb\x3e\xa2\x1d\xbc\x58\x72\x4f\xee\xb4\xb2\x3b\x63\x44\x54\xf4\x65\x48\xcf\xbd\xb3\xcf\x12\x92\xfb\x13\x44\x4d\x5f\x26\xc0\x07\xd5\x2a\x41\xf5\x74\xc3\xa7\x24\x90\x30\xe5\x3a\x48\xb3\xf5\x14\x2e\xdf\xa6\xf9\xbc\x9c\xec\x72\x27\x49\x34\xd0\x53\x75\x16\x3b\x0f\x29\x77\xe5\x4b\xd5\xeb\x39\x6f\x83\x15\x56\x67\x6e\x72\xd5\x1c\x25\x35\x32\x9b\x07\x35\xc5\xb1\x6a\xc7\x72\x94\x1a\xc9\xb5\x07\x87\xd3\xd4\x42\x2d\x24\xb3\xd4\x76\x55\x7c\x56\x43\x10\x8e\x19\x2b\x41\xf3\xb1\xd0\x6e\xc0\x2e\xd2\x6e\x9e\x25\x77\x1b\x92\x0b\x06\x3f\xa6\x78\xc0\x58\xe6\xd1\xef\x77\x83\x56\xf0\x6c\xc9\xc1\x50\x16\x11\xd6\x03\x92\x6b\x4c\x59\x65\x30\xca\xa8\xa0\xb8\x56\x5f\x20\xa9\x53\x54\xe9\xa9\xec\x93\xfb\xe5\x15\x41\xa4\xa7\xeb\xf4\xa3\x64\xf9\x9b\x52\x5f\xe1\xa6\x07\xb3\xc2\x26\x5f\x2c\xb4\xfb\x97\x9b\x49\x0a\xd7\x42\x93\x0d\x94\x80\x98\x1b\xcf\x64\x17\x3a\xce\x74\x80\x3b\x97\xda\x88\xe6\x8b\x7d\x5a\x7f\x49\x1d\x8a\xb2\x9e\x3a\xd0\x99\x4f\x1d\x0b\xe0\x04\xf8\xa9\x9f\xf3\xb0\x81\x8c\x4d\x91\x46\x20\x75\x57\x39\x66\xac\x1f\xe3\xad\x27\xf7\x09\x2a\x28\xc0\x78\x43\x1d\x18\x86\x51\x03\x76\x00\x21\xf3\x49\xd3\xcf\x4f\xd5\x3b\x94\xf8\xf8\x3c\xbd\x42\x11\xd6\x60\xe0\x26\xbc\x9f\xac\xd5\xef\xc1\x0f\x50\xde\xcb\x58\xf3\x7c\x38\x9c\xee\x0f\x6b\xb9\xc6\x79\x5c\xdb\xd6\x03\x95\xa4\xc3\xb4\x2a\xbd\x16\x3a\x1c\x1e\x3f\xfe\xfb\xf6\x3f\xfe\xf6\x75\x2c\xff\xff\x7c\xfb\x37\x3b\xbe\xcc\xef\x6f\xc6\xfe\x64\xf5\xbe\xd9\x7d\xbc\x1c\xb7\x3b\xbd\x61\xa0\x7a\x4d\xab\xec\x9e\x0e\x87\xc3\xe1\x3d\x7e\xfc\x3c\xec\x8e\xcf\x2f\x87\x5d\xfc\x31\x23\x3f\x8e\xcf\x2f\x3f\xbe\x9d\xb2\xcc\x4d\x30\x7d\x30\x70\x1f\xf6\xcd\xee\x47\x79\x71\x45\x1f\x30\x92\x90\xbf\x2a\x28\xbf\xa6\x6a\x3e\x8e\x0f\xf3\x82\xfd\xbd\xd7\x4b\xc7\xe7\x7f\x3c\x7d\xfc\xfc\x7d\x7c\x7f\x79\xfe\xcf\xe3\x7c\x73\x43\x57\x7f\xa3\x1c\xf3\xfe\xd9\xa9\x00\x79\x70\xb3\xab\xe6\xbd\xde\x1b\xbd\x6f\x76\x7f\xbc\x36\xaf\xb1\x79\xfd\xe3\x75\xf7\xf0\xff\x00\x00\x00\xff\xff\xa1\x09\x81\xbe\x9c\x13\x00\x00"
-
-func runtimeSyntaxNginxYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxNginxYaml,
-               "runtime/syntax/nginx.yaml",
-       )
-}
-
-func runtimeSyntaxNginxYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxNginxYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/nginx.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxNimHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcb\xcc\xe5\x8a\xd1\xcb\xcb\xcc\x2d\xb6\x57\xa9\xc9\xcb\xcc\xd5\x4b\x4e\x4b\xe7\xe2\x02\x04\x00\x00\xff\xff\x67\xcb\xff\x4d\x16\x00\x00\x00"
-
-func runtimeSyntaxNimHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxNimHdr,
-               "runtime/syntax/nim.hdr",
-       )
-}
-
-func runtimeSyntaxNimHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxNimHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/nim.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxNimYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x7b\x6f\x1c\x35\x10\xff\x3f\x9f\xe2\xb8\x16\x72\x97\x90\xa3\x49\xab\x50\x8e\x47\x28\x6d\x82\x2a\x01\x95\x48\x91\x22\xd6\xdb\x32\x6b\xcf\xde\xba\xf1\x63\xf1\x23\xc9\xb5\x53\x3e\x3b\x1a\xef\xde\x25\xa0\x22\x1a\x29\x63\xcf\x63\x6d\xcf\x6f\x7e\x33\xba\x56\x1b\x4c\xeb\x1e\x97\x13\xa7\xed\xce\x8e\xc2\x84\x32\x2d\x27\x3b\x93\xc9\x64\xc2\x3e\x07\x16\x97\x93\xa9\x10\x0b\xa7\x6d\x3c\xb9\x4f\x4e\xdb\x85\x6c\x57\xd3\x9d\x9d\x90\x0d\xc6\x65\x89\x3c\x98\xf4\x01\xfb\xe0\xe5\x72\x32\xad\x84\x78\x27\x04\xd5\x42\x34\x33\x48\xde\x92\xd1\x89\xe2\xda\x92\x56\xe8\x12\x49\x30\x86\xcc\x15\x98\x8c\x14\xb5\x42\x6c\x5b\x94\x89\x9c\xbf\xa3\xf4\x10\xc0\xd2\x0a\x1d\x06\x2d\x07\xc5\x7a\x95\x0d\x12\x3f\x95\x0c\x26\xba\x82\x40\xd2\xbb\x98\x28\x60\xcc\x26\x11\xdf\x4e\x16\x53\xe7\x15\xe9\x84\x01\x92\x2f\x11\x57\x18\x12\x06\xb2\x20\x83\xa7\x84\xb6\x37\x90\x90\x5a\x8d\x46\x11\xba\x6c\x87\x5d\xeb\x03\x9f\x68\xa0\x41\x43\xee\xb2\x82\x83\xb7\x4f\x0e\x7e\xaf\xf7\x09\x8c\x86\x48\xce\x97\x75\x2e\x44\x53\x09\xf1\x9e\xd3\x9b\x8e\x89\xc7\x04\x09\x2d\xba\x54\x50\x6a\x66\xa0\x54\x20\x70\x8a\x20\x12\x44\x4b\x0c\x81\x96\xd4\x68\xa7\xa8\x31\x5e\x5e\x52\x13\x10\x2e\x49\x42\x44\x16\x89\x1f\x29\xb1\x4f\x63\x3a\xd2\xbb\xa4\x5d\xc6\x3b\x6f\x57\xd8\xb2\xd4\x51\x42\x50\xbc\x26\xed\x64\x22\xa5\xaf\x48\x79\x42\xa3\x5b\x42\x13\x91\xd0\x0d\x29\x11\xde\x94\x03\xf1\xa6\xf7\x21\x51\xab\x1d\x18\xb3\xe6\x1c\xa9\x0d\xde\x52\x9b\x9d\xdc\xa0\x4b\xba\x25\x6d\x4b\x9c\x76\xa4\x9d\x34\x59\x21\x69\x97\x30\xb4\x20\x91\x74\x24\x1d\x9d\x4f\xb7\x98\x32\xfa\x03\x9a\x23\xda\x56\xdf\x68\xc7\x05\x22\xa7\x0d\x71\xac\xf3\x49\x3b\xf2\xcd\x1b\x2e\xa6\x6f\xc9\x07\xf2\x79\x2c\x51\x9f\x02\x05\xd0\x11\x29\x60\x4b\x01\x53\x0e\x8e\x62\x67\x28\x76\x81\x18\x4c\x2d\x6f\xcb\x94\xc2\x9a\x52\xee\x37\x85\xcf\x51\xbb\x55\x29\xfd\x75\x87\x8e\xae\x3b\x6d\x90\xae\x75\xea\x8a\xe0\x2b\x6e\x7c\xa0\x35\x57\x94\x4b\xf5\x5f\x25\x52\xd8\x07\x94\x90\x50\x91\xf3\xe7\x5a\xe1\xe9\x40\xbb\x52\x80\x90\x25\x67\xa9\x70\xbb\xf5\x57\x18\x82\x56\x58\xde\x3f\xf0\xce\xf6\xda\xe0\x4b\x6d\x91\x9c\xff\x75\x48\x01\xe4\x5a\x1a\x2d\x07\xb4\x29\x76\x60\x8c\xbf\xa6\x3e\x07\x64\x1a\xfc\xe2\xcf\x13\xc8\xcb\xb3\x00\x16\x09\x43\xe0\x52\x40\x02\x43\xd7\x10\x1c\x27\xd5\x69\x97\xc8\x68\x87\x45\x40\x38\x97\xe0\x4e\x9d\x2a\x77\xe5\x84\xea\x47\x9f\x3c\x65\x17\xbc\x31\xa4\xad\x45\xa5\x19\x1f\xd9\xa1\xbc\x8c\xd4\xf8\xec\x54\x7c\x3a\x28\xfc\xdc\xd6\xf8\xeb\x51\x75\xda\x8c\x3b\x88\x11\x03\x03\xec\x5d\xdc\xdc\x1b\xcb\xc5\x91\x7c\x9f\xb4\xd5\x6f\x8b\x93\x7a\x48\x09\x83\x8b\xa5\x57\x99\x86\xd4\xe7\xd8\x51\xef\x7b\x5a\x19\xdf\x80\xa1\x3e\xc0\xca\x02\x13\x0c\x83\x66\x64\xc1\x50\xa3\x53\xd4\x6f\x91\xae\xbc\x81\xc4\x85\x71\xfe\x19\x4a\x43\x1d\x82\xc2\xc0\xd4\xf2\xb6\x37\x98\xf0\xbc\x00\xbb\x41\x91\xf3\xbd\xa4\x1e\x62\x7c\x5a\xe4\x4f\x84\x56\xa7\x91\x93\x72\xb3\xf6\xfd\xb8\xf3\xcd\x1b\x49\xd2\x2b\x5c\xa1\x2b\xc7\x6b\xc7\x2c\x3b\x4f\x96\x09\x9c\x14\xb6\x8c\x61\x4c\x61\xdc\x5d\x41\x80\xb0\x8a\x63\x2f\x48\xc2\x1b\x4e\x8d\x9a\xb5\xf4\xfd\x9a\x9a\x35\x93\x30\xbb\x21\x6b\x79\x89\x8a\xb2\x2b\xa0\xa2\x22\xb5\x76\x46\x37\x24\x15\x5f\x93\xba\x80\xa0\x68\x25\x23\xb4\x38\x6a\xcc\x85\x55\xe6\x9e\xe4\xbe\x8e\x77\x79\xf1\x0f\xfa\xad\x6d\xe3\xcd\xc2\xf7\x43\x03\xf1\x88\xfc\x56\x88\x7d\x21\x0e\x84\xd8\xfb\xe2\x9b\xef\xbe\x17\xe2\xfe\x5f\x9f\x7d\x2a\x04\x7d\x22\xc4\x89\x10\xaf\x84\x58\x2c\x85\x10\xa2\xde\xdf\x1e\xd1\xa3\xd4\x60\x0a\x7f\xdf\x09\xb1\x20\x21\x16\x42\xbc\x27\x21\xaa\xad\x56\x93\x10\xb3\xad\x36\xa7\xaf\xe9\x73\xfa\xe3\xc3\x2d\xb0\x10\x62\xb1\xf1\x0c\xc3\xbf\xf4\x05\x53\x50\xb2\xd0\x2e\x3d\x66\x71\x78\xcc\xf2\xe1\x11\xcb\xe3\x47\x94\xd9\x97\x8b\x33\x0f\xde\x3c\xb8\xf3\xe0\x6f\x8d\x87\x34\xc8\x87\x47\xc3\x7a\xfc\x88\x1a\xef\x0d\xc9\x0e\xc2\x30\x9b\x62\x0a\xcc\x77\x39\xae\x10\x02\xac\xc9\xf7\xe8\x86\x5d\xc4\x3f\xb7\x35\x1b\x3a\x7f\x1c\x23\x91\x87\xbe\xd7\x8a\x20\x27\x4f\x32\x76\x3c\xb2\x02\xb8\x15\x96\xb1\xf3\x92\xb2\xe3\x54\x54\x99\x14\x0a\xa3\xbc\x5b\x82\x31\xc9\xdd\x4a\x3f\xaf\x67\x8f\xe9\xf0\x98\x1e\x1e\xd1\xf1\xa3\xf9\x89\x10\x0d\xed\x56\xf9\xb7\x0f\x59\xdb\xb3\x7a\x56\x0c\x74\x78\xf4\x78\x63\x54\xcf\xea\x3b\xe7\x96\x89\x01\x2e\x2d\x5c\xb6\x0d\x86\x01\xc7\xea\xc1\xc1\x57\xf5\xfe\xff\x45\x3d\xa8\x6e\x2e\x6a\x0e\x7d\x72\x70\x06\x07\x6d\xd9\xbe\x1e\xf7\x1f\xf1\xb1\x97\x4f\xf9\x93\x2f\x8b\x78\xfd\x31\x5f\x34\x3f\xd4\xd5\x83\x43\xfe\xff\x88\xf0\xf2\x9a\x7a\xc6\x7c\x3a\x99\x0f\xca\xfe\xfc\xa4\xc2\xd3\xba\x62\xe2\x96\xd7\xd6\xa3\xfd\x43\x67\x0d\xd5\xe5\xb3\xa6\x33\xa6\xf2\x82\xaa\x57\x62\x5a\xcf\xf7\xc4\x94\x76\xb7\x96\xdd\x7a\xbe\xb7\x7b\xfb\xad\x1d\x09\x5a\x55\xcb\xd8\x83\xc4\x65\x5d\xef\xdd\x5b\xec\xdd\xff\x77\x44\x51\xf9\x2f\x26\x08\x03\xa3\xef\x09\x51\x4d\xb7\x76\x74\xaa\x58\x6b\x21\xee\xdd\x5a\x87\xdf\x2b\x93\xaa\xde\xd9\xb0\xc2\x2b\xbf\x9c\x4c\x67\x2f\x5f\x3c\x7b\x41\x67\xcf\x2f\x7e\x3e\xa5\x8b\x8b\x8b\xf9\xf2\x64\xba\xf3\x77\x00\x00\x00\xff\xff\x10\x81\x77\x65\x17\x09\x00\x00"
-
-func runtimeSyntaxNimYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxNimYaml,
-               "runtime/syntax/nim.yaml",
-       )
-}
-
-func runtimeSyntaxNimYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxNimYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/nim.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxObjcHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4f\xca\x4a\x4d\x2e\xc9\x2c\x4b\xd5\x4d\xe6\x8a\xd1\xd3\xc8\xad\xc9\xcd\xad\xc9\xd0\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\x6c\x8c\xff\xf1\x19\x00\x00\x00"
-
-func runtimeSyntaxObjcHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxObjcHdr,
-               "runtime/syntax/objc.hdr",
-       )
-}
-
-func runtimeSyntaxObjcHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxObjcHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/objc.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxObjcYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x55\x6f\x6f\xdb\xb6\x13\x7e\x9f\x4f\xe1\x9f\x9a\xdf\x2a\xba\xb3\xd3\xfd\x41\xb1\x7a\x5d\x9c\xb4\x4b\x86\x02\x69\x32\x2c\x2d\x90\x55\x74\x05\x8a\x3c\xd9\x5c\x28\x52\x23\x8f\x49\x9d\x5d\xbf\xfb\x40\xd9\x4e\xec\xe6\xcf\x0a\x0c\x98\x5e\x58\xe2\xe9\xb9\xbb\x47\x77\xcf\x9d\x6b\x6d\x00\xe7\x2d\x8c\x7a\xae\xfa\x03\x24\xea\x0b\x18\xc8\xad\x2d\x05\x08\x12\x47\x5b\xbd\x5e\xaf\x97\x20\x56\x34\x30\xea\x65\x9c\x0f\xf3\x86\x9a\x86\x66\x6c\x3b\xdb\xda\xf2\xd1\x40\x58\x80\x06\xbd\x45\x94\x8c\xf3\x2a\xaf\x8d\x13\x48\xca\xc5\xca\x00\xbd\xfa\xe5\xb0\x3b\x6a\x45\x95\x73\x86\x5e\x9e\x9c\x1c\xd1\x4b\xe7\x0c\x08\x4b\x72\x26\x3c\x69\x8b\x14\x66\xce\x23\x19\x67\xa7\x14\xf4\x15\xb8\x9a\xc0\xc6\x86\x2e\x9c\x56\x14\x50\xa0\x96\x24\x9d\x0d\x48\x01\x7d\x94\x48\xd1\x6a\x67\x29\xe5\x54\x50\x13\x7c\x44\xf0\x96\xf2\x68\xd9\x38\xe8\xa9\x05\x45\xda\x1a\x6d\x81\x5e\x19\x11\x02\x9d\x1e\x1c\xd1\xeb\x37\xbf\xd2\xf1\x69\xfe\x8e\x8d\x5f\x5b\x84\x29\x78\xc6\x79\x95\xdd\x26\x9f\x87\x71\x62\xc0\x28\xcf\x63\x39\x66\x63\x6d\x31\xff\x81\xbe\x79\x46\xdf\x7d\x4b\xcf\xbe\xa7\x16\x3d\x63\xac\xc4\x3b\x9d\x8b\xfd\xc1\xfb\xc9\xe2\xa7\x18\x09\x63\x63\x33\x9a\x4c\xfa\xf7\x42\xc5\xe0\xea\xe9\xe0\x79\x39\xe9\xdf\x13\x4e\xe9\xd0\x0a\x94\xb3\xb2\x10\x83\xab\xfd\xc1\xfb\x0d\xf0\x12\x9d\x8a\x03\x0d\x58\x1c\xf5\xb2\xbc\x2c\x05\xa2\xd7\x55\x44\x28\xcb\xa2\x18\x85\x56\x48\x58\x50\xc8\x39\xcf\x8b\x0f\x2c\x3d\x32\xce\x19\x95\x65\x2e\xcc\xa2\x54\x22\x34\x54\x45\x6d\x50\x5b\x9a\x69\xa5\xc0\xae\xaa\xd7\x0a\x79\x0e\x8a\x3c\x04\xf4\x5a\x22\x85\xa4\x90\x65\xdd\x5d\x4d\x97\x20\xce\x59\x59\x52\x59\x46\x1b\x03\x28\x2a\x8f\x9d\xb5\xd1\x18\x2a\x8f\xa3\x31\x22\xb5\xbf\x2c\x2b\xe3\xe4\x79\xba\x2f\x52\x0c\xfb\x2c\xbb\x83\x7b\x2a\xbd\xec\x9a\x95\xb4\xd6\x11\x27\x84\xa6\x35\x02\x81\xda\x58\x19\x2d\xa9\xf5\x2e\xc9\x12\x14\xb5\x5e\x5f\xa4\x17\x89\x48\xc2\x13\xce\x74\xa0\xda\x6b\xb0\x8a\x2e\xb4\xc7\x28\x0c\xc5\xa0\xed\x94\x9a\x88\x1d\x91\x0b\x67\x04\x6a\x03\xe4\x61\xaa\x03\x82\x27\xf8\xd8\x1a\x2d\x35\xae\x0b\xe1\x73\x4a\xb5\xf3\xa4\x6b\xba\x9c\x25\x4f\xe5\x08\x4c\x00\x92\x22\x00\x29\xa8\x45\x34\x48\xe1\x52\xa3\x9c\x3d\x14\x03\xfd\x9c\x70\xe6\xdd\x25\xc9\xd4\x4d\x72\x2d\x78\x81\xce\x93\x85\x4b\x52\x60\x00\xe1\x21\xf7\xa9\x43\x97\xc4\x8f\xda\x46\xa0\xca\x83\x38\x27\x0f\x18\xbd\x7d\xc8\xcb\x3a\x2b\xd0\x35\x5a\xd2\xf2\xe6\x41\x28\x67\xcd\xbc\x7b\xb8\xf4\x1a\x21\xcd\x52\x1a\xb8\xd4\x46\x12\x21\x0d\xce\x7d\x11\xf7\x72\xb0\xd2\x29\xa0\x54\x5f\x6d\x11\x7c\x9d\x1a\xa4\x9b\xd6\x74\x10\xd1\xc9\x62\xd1\xbf\x00\x06\x64\xfa\xbc\xd4\x2e\x27\x9d\xa1\x30\xb7\x72\xe6\x9d\xd5\x57\xa0\x28\x55\x63\x51\x87\x5a\x5b\x61\xcc\x3c\xe1\x5a\xf0\x38\x27\xd7\xa6\x30\xc2\x90\x87\x3f\xa3\xf6\x69\x8a\x9b\x36\xed\x05\x11\xd1\x79\x30\x20\x02\xb4\xce\x19\x76\xad\xfe\xd6\x43\xeb\x9d\x1c\xf5\xb2\x0f\xeb\x72\x7f\xb4\x7e\xc8\x15\xd4\x49\xcc\xda\x4a\x13\x15\xac\x62\xe6\xd1\x92\xae\xed\x98\x75\x0b\xc4\x2a\x5d\x13\x98\x5c\xd7\x14\x80\x75\x2d\x17\xde\x26\xfd\x80\xf7\xdd\xb7\x88\x69\x23\xd8\xb0\xbf\x9d\xdd\x4a\x5d\x96\xc5\xcd\x70\x96\x37\x93\xd9\x82\xd4\xc2\x7c\xce\xad\x78\x44\x7b\x93\x0d\x7e\x4b\x42\x4b\x7e\x6c\x03\xcc\x33\x7a\x31\x19\xf6\x39\xdf\x19\x17\xbb\xc4\xb3\x0d\xcf\xed\xbb\xb7\x40\x31\x1c\xfd\xf8\xf5\x93\x3e\xfd\xf4\x3f\xce\xff\xcf\x79\xc1\xf9\x64\x42\x2f\x68\x97\x76\x68\x40\x5f\xdd\x14\xaf\x5b\xa8\xc2\xe2\xd0\xc6\xa6\x02\x9f\x5c\x93\x72\x06\x63\x36\x2e\x9e\x0e\x9e\x4f\x9e\x70\x5e\x11\xe7\x15\xe7\xab\xe3\x70\xc3\xfe\xf4\x63\x3a\xee\x0f\x0e\x3b\xcb\xf5\x54\xaf\xc2\xa6\x78\x7b\x9c\x17\x39\xe7\x9c\x0f\xa9\xf8\x90\x78\xb0\x3e\xe7\x13\xda\xe3\xfc\xaf\x35\xf3\xa7\xce\xfc\x29\x99\xf3\x35\x33\xeb\xcc\xec\xae\xc0\x9c\x57\x2f\x16\xc8\x04\xdc\xed\x80\xbb\x6b\xda\xdd\x84\xe6\x56\x1b\x3a\x7e\x77\x74\x44\xbf\x1f\x9c\xd2\xf1\x09\xbd\xfd\xed\xdd\x01\xa1\x8f\x40\x87\xfb\x47\xa7\x07\x54\x8b\x34\xd6\x01\x4c\xcd\xee\x0d\x72\xbe\x5a\xe9\x9b\x1b\xfd\xba\x88\x69\x45\xda\xe9\xa8\x97\x3d\x1e\x3e\xbe\x5d\xe2\xe5\xdb\xce\x9c\xae\x80\xc2\x77\x83\xc5\xb3\xec\xda\x08\x56\xa5\x5c\x6b\x96\x70\xae\xdb\x2e\x3d\xe7\xc3\x1b\xeb\xda\xff\xee\xea\x5a\x4f\xb5\xd0\xdd\xab\x99\xf0\x37\xae\x5f\xca\xe7\xbf\xa6\xd3\x74\xa2\xbd\x45\x63\x67\xe7\x73\x1a\xdb\xff\x90\x0f\x9d\x72\x49\x71\x6f\x4f\x7e\x3e\xa1\xb3\xb3\x33\x3a\x7c\x7d\xf6\xe6\x80\x8d\xc6\x5f\x90\x8c\xf3\xfe\xad\xaf\xe6\xfd\x9d\x7f\x91\xf1\xef\x00\x00\x00\xff\xff\x7d\xdf\x5a\xbd\x57\x09\x00\x00"
-
-func runtimeSyntaxObjcYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxObjcYaml,
-               "runtime/syntax/objc.yaml",
-       )
-}
-
-func runtimeSyntaxObjcYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxObjcYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/objc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxOcamlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4f\x4e\xcc\xcd\xe1\x8a\xd1\xcb\xcd\xc9\xb4\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x01\xe7\x74\xed\x0f\x00\x00\x00"
-
-func runtimeSyntaxOcamlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxOcamlHdr,
-               "runtime/syntax/ocaml.hdr",
-       )
-}
-
-func runtimeSyntaxOcamlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxOcamlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ocaml.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxOcamlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x93\xcd\x6e\xdb\x3a\x10\x85\xf7\x7e\x0a\xc2\xf7\x5e\xe4\x07\x57\x69\x90\x16\x68\xe3\x4d\x11\x14\xe8\x1b\x74\x53\xd3\x28\x46\xe4\x28\x9a\x96\x1a\x0a\xe4\xc8\x76\x92\xf1\xbb\x17\x92\xa3\x54\xce\x1f\xda\x75\xbd\x31\x79\x34\x73\xce\xf0\x23\x58\x51\x40\xb9\x69\x71\x61\xa2\x83\x26\xcc\x66\x1e\x05\x9d\x2c\x66\xc6\x18\xd3\x7f\x64\x68\x70\x61\xe6\xd6\x9e\x35\x81\x3e\xfe\x3b\x9f\xcd\x52\x17\x30\xef\x0b\x0a\x43\x1e\x59\xa8\x22\x4c\x43\x51\xb9\xbc\x2a\xbe\xae\x96\xe7\xc5\x25\x14\xb7\xdf\x56\x77\x17\xff\xef\xac\x2d\xe7\x43\xb1\x31\xff\x78\x74\x01\x12\x08\x45\xce\xf7\x06\x59\x40\xb0\x41\x96\x7d\xff\x71\x40\xd1\x35\x04\x6d\x50\xea\xe8\x95\x58\x81\xbd\x26\x74\xda\x26\x5a\x83\xa0\xae\x29\x49\x07\x41\x5d\xe4\x2c\x09\x88\xe5\x64\x9a\x91\x25\x75\x4e\xba\x84\x86\x04\x9b\x31\x66\x7f\xc6\x21\xa1\x5f\x6a\x6c\x91\xd5\x05\xc8\x59\x9b\xe8\xbb\x80\x8a\x5b\x87\x6d\x3f\x99\xe2\x56\x30\x31\x84\x03\xdb\x16\xa4\x57\x5f\x1a\xbb\xea\x58\xab\x8e\xdd\x60\x30\x2c\x62\xd2\x06\xc4\xd5\x2a\xe9\x46\x37\x24\xf5\xb3\x76\x45\x13\xfd\x80\xef\x25\x63\xc8\xba\xa9\x91\x35\x56\x43\xbf\x19\x0d\x5c\x64\x4f\xaf\x81\xa4\x4a\xa5\x6f\xc4\x90\xf1\x20\xba\x0c\xd1\x3d\x83\xa5\xc4\x6b\x62\x45\xf6\x1a\xcb\xef\xe8\x44\xf7\x20\x35\xd3\xb5\x56\x31\xe9\xa6\xa6\x80\xea\xa3\xfa\xc8\xa8\xd2\xff\x6f\x58\xe2\x81\xf5\x70\x25\xc0\x82\xa3\xff\x28\x9c\x95\x31\x86\x91\x7f\xea\x50\x2b\x78\x3c\xd6\xfe\x1a\xf2\x9b\xe1\x52\x1e\x0c\x72\x8b\x8e\x60\x6c\x25\x76\xa1\xf3\xa8\xc4\x35\x26\x12\x25\x26\x21\x08\x74\x8b\xe9\xc0\x0b\xb7\x6d\x32\x4f\xc8\x1e\x58\x31\x6e\x34\x61\xa5\x4d\x27\x50\x06\xd4\x00\xb7\x37\xda\x27\x27\xd1\x04\x34\x1d\x6e\x72\x8c\x2c\x89\xf8\x7a\x71\x9f\x63\x7a\xe8\xa9\x07\x7e\x34\x7f\x90\x90\xfd\xa1\x90\x7f\x50\x3b\x84\x5a\x7b\xf6\x4b\x9d\xbc\xa2\xf1\x37\xcd\xd9\xcf\xfa\xa9\x86\xfe\x5d\xfd\x37\xe9\x7b\xb5\xb0\xcf\x58\x42\x59\x71\x92\xf5\x91\xb5\x76\x10\x56\x7f\xd0\x7c\xbc\x3c\x2f\xde\xaf\xee\xde\xee\x74\xbb\xbc\x2a\x3e\x43\x51\x9d\x17\x97\xab\xbb\x8b\x9d\x76\xd3\xfd\xbb\x9d\x7e\x99\xee\x3f\xec\x4e\x7e\x1b\x95\x9d\x3f\x66\x35\x55\xfe\x36\x58\xcd\xf0\x62\x9f\x42\xb2\xc7\xd6\x9e\x3e\x01\x65\x4f\xad\x3d\x79\x8c\xc5\x2c\x57\xb3\x9f\x01\x00\x00\xff\xff\xe2\xce\x5b\x59\xc7\x05\x00\x00"
-
-func runtimeSyntaxOcamlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxOcamlYaml,
-               "runtime/syntax/ocaml.yaml",
-       )
-}
-
-func runtimeSyntaxOcamlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxOcamlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ocaml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxOctaveHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4f\x2e\x49\x2c\x4b\xe5\x8a\xd1\xcb\x55\xe1\xe2\x02\x04\x00\x00\xff\xff\x7f\x6b\xa8\x5f\x0d\x00\x00\x00"
-
-func runtimeSyntaxOctaveHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxOctaveHdr,
-               "runtime/syntax/octave.hdr",
-       )
-}
-
-func runtimeSyntaxOctaveHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxOctaveHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/octave.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxOctaveYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\xdf\x6f\xdb\x36\x10\x7e\xd7\x5f\x71\x93\x9b\x25\x6e\x26\x29\xed\x0a\x6c\x13\xd6\x15\x5d\xb6\x00\x79\x68\x02\xac\x1b\x10\x20\xf2\x02\x8a\x3a\x59\x44\x28\x52\x20\x4f\x51\xbc\xd0\xfb\xdb\x07\x4a\xb2\x13\xbb\x9d\x9b\x6c\xd8\x80\xea\x45\xe4\xfd\xf8\x3e\xf2\xbb\xf3\x59\x13\xf8\x05\x4b\x34\xa8\x38\xda\x60\x02\x15\x51\x63\xd3\x24\x99\x0b\xaa\xda\x3c\xe6\xba\x4e\xfe\x58\x60\x21\x0a\xc1\x92\x5a\x70\xa3\x93\x5c\xea\x3c\xa9\x99\x25\x34\x89\x69\x15\x89\x1a\x13\xbb\x50\xc4\x6e\x93\xb9\x8e\x17\xac\x96\x1f\x87\xb9\x11\x75\x64\xb9\x11\x0d\xd9\x44\x73\x62\x37\x18\x7b\x53\xb4\x01\x38\x02\xdd\xfb\x83\x49\x30\x81\x5f\xcf\x7f\x3a\x0f\x26\x20\x14\x97\x6d\x81\xa0\x95\x5c\x80\x42\x2c\xb0\x00\xdd\xa0\x61\xa4\x8d\x3f\x7b\x1c\xc7\x50\x89\x79\x25\xc5\xbc\x22\xa1\xe6\xc1\x04\xf2\x56\x48\x8a\x84\x82\xb2\x55\x9c\x84\x56\x1b\x01\x6f\xfc\x49\x57\x7b\xc0\xc6\x26\x8d\x48\x10\x90\x78\x0c\xcc\xae\x73\x2c\x74\x15\x2a\x28\xb5\x94\xba\xc3\x02\xf2\x05\x1c\x4c\x83\x09\x74\x15\x23\x60\x06\xc1\x5e\x8b\x06\x98\x2a\x00\x8d\xd1\x06\x4a\x81\xb2\xb0\x20\x14\x58\x32\x42\xcd\xad\xe7\xa9\x5b\x49\x42\x0a\x85\xc0\x75\x5d\xa3\x22\x0b\x4a\x13\x74\xda\x5c\xfb\xa3\x06\xa5\x90\x48\x8b\x06\x53\x18\x2e\x1f\x04\x05\x12\x72\x4a\x03\x00\x00\xef\x55\xac\xc6\x14\xc2\x2c\x8b\xeb\x67\x61\x10\x98\x56\xa2\x1d\xbc\x13\x78\x4f\x8c\x70\x40\x5d\x49\xdf\x75\x5d\x3c\x57\x6d\xac\xcd\x3c\xb1\xba\xa4\x8e\x19\x1c\x85\x4d\x0a\xcd\x93\x9b\x57\xf1\x51\x7c\x94\xdc\x67\xc6\x15\xd5\xb2\xc7\x8b\xc0\xae\xac\x3d\x61\x7e\xb0\x92\xc2\xa1\x2a\xd6\x6b\x83\xd4\x9a\xde\xe4\xe6\x52\xe7\x4c\xba\x06\x8d\x15\x96\x50\xd1\x34\xcb\xf2\xf0\x6f\xc0\x44\xe9\x50\x5a\x1c\x5f\x3e\x5f\x94\xce\x76\x82\x78\xe5\x38\xb3\xe8\x34\x55\x68\x3a\x31\xf8\x06\xc7\x2e\xbc\xae\x12\xb2\x0f\x1d\x16\x85\x76\xbe\x2d\xa5\x2b\xb5\xe9\xcf\xab\x8d\x6b\x98\x19\x77\xe3\x2a\x37\xc8\xae\x1d\xd7\x8a\x84\x6a\x71\x17\x7a\xab\x3a\xa1\x8a\xab\xc6\x68\x5f\x0e\xb7\xb9\xbd\xe2\x12\x99\x6a\x1b\x8f\x7c\xb5\x15\x49\x66\xe1\x38\xf3\x97\xf2\x4e\x32\x8b\xab\x7e\x37\x70\x8d\x75\x3b\x5f\xb7\xef\x48\xbe\xa8\x73\x2d\xe3\x55\x57\xa7\x10\x5e\x46\x87\xc9\xf3\xd7\xdf\xff\xf0\xc5\x9f\x7b\x5f\xba\xdf\x67\x2e\x7d\xbd\x4e\xfe\xd1\x30\x7e\x8d\xb4\x95\x9b\x8f\xd6\x14\xc2\x83\x2c\xbb\x73\x59\xb6\x9c\x86\xbb\x42\x0e\x5c\x96\x4d\x77\x87\x5c\xba\x2c\x9b\x4d\xd7\xc4\xc7\xba\xae\xd9\x26\x6d\x0a\xe1\x57\x6b\xff\x59\x5b\xe7\x68\x9e\xd8\x8a\x2f\x92\x77\x8c\x2a\xac\x19\x09\xce\x64\x74\xac\x95\x25\xb6\xd5\x96\x7c\x34\xc6\xaa\x67\x18\x2b\x74\x79\x14\x7d\x37\x3b\x74\x47\xb7\x7e\xc1\xa2\xf2\x6d\x74\x32\x7b\xee\x65\x76\xfb\xf1\x7e\xb8\x33\xb5\x11\x0e\xdd\xa9\x3b\x55\xa5\x3b\x63\x67\x0e\x1b\xeb\x0c\x32\x59\xb3\xdb\xe1\x2d\x54\x8f\x73\x2f\xb9\xd6\xbe\xe0\xdb\x98\xb9\xee\x15\xf0\x88\x64\x5a\x74\x25\x93\x16\x37\x0a\xfd\x7e\x98\x04\x4f\x95\x64\x4c\xfb\xa8\x06\xc3\x70\x19\x26\x80\x7f\x2c\x31\xd3\x37\x6d\x18\xae\x6d\xa8\x8a\x2d\x8b\x9f\x55\xfd\x51\xb3\x2c\xbe\xb7\x3e\x18\x26\xab\xe7\x21\x53\x83\x5c\x30\x79\x5c\x31\xaf\xdb\x5e\xf8\xb8\x38\x4f\x71\xc9\xf2\x52\x19\xba\xd9\xcf\xb2\xac\x37\xcc\x9e\x90\xec\x0b\xfb\xcd\xec\xee\xeb\xa5\xbb\xbd\x7c\x1b\x9d\xb0\xa8\xf4\x85\xbe\x7b\xb9\x74\xed\xc3\xfd\xab\xa5\xfb\xed\xe1\xfe\xdb\xe5\xaa\x53\x1f\x21\xd6\xfe\xb6\x56\xfb\xff\x48\xaa\x7e\xf0\xa7\x10\xc6\xf1\xe1\x23\x2f\xf8\xf9\xa8\x38\xfc\xde\x9f\xfa\xdf\xf2\x32\x7e\x91\xac\xf2\x36\xdb\xb7\xb7\x7d\x58\x89\xbd\xed\x4a\x3c\xfb\x84\xe6\xa4\x0b\xed\xc7\x93\xff\x3a\x70\x17\x17\x17\xee\xe4\xf4\xe2\xdd\xcf\xd3\xf4\x4d\xf8\x29\xaa\xc9\xff\x47\xb5\x77\xb7\xcd\xb5\xb7\xfc\xef\xee\xf5\x01\xd9\xe4\x5f\x90\xfd\x15\x00\x00\xff\xff\xc0\x0a\x9c\xc0\x1a\x0a\x00\x00"
-
-func runtimeSyntaxOctaveYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxOctaveYaml,
-               "runtime/syntax/octave.yaml",
-       )
-}
-
-func runtimeSyntaxOctaveYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxOctaveYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/octave.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPascalHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x48\x2c\x4e\x4e\xcc\xe1\x8a\xd1\x2b\x48\x2c\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\x90\x29\x8f\x39\x0f\x00\x00\x00"
-
-func runtimeSyntaxPascalHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPascalHdr,
-               "runtime/syntax/pascal.hdr",
-       )
-}
-
-func runtimeSyntaxPascalHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPascalHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/pascal.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPascalYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x6d\x8b\x23\x37\x0c\xfe\x9e\x5f\x11\xd2\x85\x26\xb7\xcd\x5e\x0b\xa5\xd0\x7c\x09\xa5\xd0\x3f\x91\x49\x41\x63\x6b\x32\xea\x7a\xec\x41\x92\xf3\xd2\xd5\xfd\xf7\x62\xcf\xde\xbe\x24\xd0\x3d\x2e\x84\xb1\x2c\xcb\xf2\xf3\x3c\xb2\xdc\x51\x40\xbd\x8c\xb8\x99\x8f\x20\x0e\xc2\x6c\xe6\x51\xd1\xe9\x66\x36\x9f\xcf\xe7\x65\x35\xc2\x80\x9b\xf9\xa2\x69\x1e\x46\x90\xbb\xc5\x6c\xc6\x39\xa0\x4c\xeb\xeb\xf9\xb4\x77\xd1\x34\xed\x72\x4b\x9b\xa5\x28\x53\x3c\x18\x44\xa1\x67\xf3\x44\x1e\x9f\x4d\xe9\x13\xeb\xb3\xed\x7a\xe0\x1a\x56\x8d\x12\x54\x8d\x36\xa5\x80\x10\xad\xbd\x28\x4e\xf1\x14\xd5\x4e\x89\xbd\xc9\x00\x21\x94\x59\x48\xf1\x50\x3d\x0e\xd8\x53\x84\x50\x3d\x65\x85\xa2\xe2\x01\xb9\x8c\xbf\xfd\x6a\x42\xf1\x10\xd0\x5c\x66\xc6\xe8\x2e\xe6\x53\x6e\x03\x1a\x9e\x15\xa3\x47\xbf\x5a\x35\x4d\xbb\x78\xa6\x21\x0a\x8a\x03\x46\x7d\xc3\x05\xa2\x37\x90\xc1\x80\x19\x2e\xd6\xe2\x81\xa2\xb5\x8c\xf0\x68\x0e\x04\xcd\xa5\x28\x3a\x7d\x39\x3b\x4d\x5c\x6c\xa5\x98\xd1\x2a\xe3\xc9\xe7\xe9\x68\x3e\x99\x4f\xa7\xa8\xc9\x30\x08\x1a\x46\x6f\x45\x58\xeb\x12\x5b\x97\xa3\x53\x4a\xd1\x0e\x49\x93\x51\x67\x34\x8c\xa1\x22\x81\xea\xa6\xf2\x0f\x14\xb1\x92\xe3\x0e\x1c\x5a\x80\x16\x83\x0d\xc9\x5b\x4c\x6a\xa9\xfd\x07\x9d\x5a\xea\x2c\x45\x4b\x23\x32\x94\x73\x13\xdb\x08\xee\x11\xbd\x8d\x9c\x1c\xfa\xcc\x58\xac\x03\xc3\x60\x8c\xae\xc8\xc7\x38\x22\xa8\x31\x4a\xca\xec\x5e\x8a\x84\x6a\xd2\x07\x93\x9e\x4d\x7b\x8c\xa6\xc9\x4a\x91\x2d\x47\x52\xcb\x51\x29\x58\x16\x14\x3b\x96\xba\xf5\x85\xc7\x89\xb4\xb7\x73\xe2\x8f\x15\x15\x73\x01\x44\xcc\x93\x8c\xa9\x48\x71\x76\x38\xaa\xe1\x99\xca\x67\x2c\xd7\xc3\xba\x52\x52\xfa\x77\xa2\x5f\x27\xe1\x62\x14\x7b\x64\x52\xf4\x46\x91\x94\x5e\x03\x48\x2c\x50\xcb\xc0\x17\x8b\x78\xaa\x12\x64\x2d\x4c\x47\x64\xbd\x18\x03\x09\x9a\x60\xe8\x4c\x7b\x46\xf0\x05\xb5\xf2\xe5\x63\xa8\xad\xa4\x90\x15\x0d\x5a\x51\x06\xa7\x06\x81\x40\x0c\x44\x70\x68\x03\xb2\x39\x8f\x2e\x98\x1b\xc7\x3a\x7a\xec\x20\x87\xaf\x2c\xea\x25\xe3\x72\x35\xbb\xc4\x27\x60\x6f\x07\x8c\xc8\xe4\x8c\xa2\xc7\xb3\x85\xe4\x20\x58\xe9\x2c\x8b\x49\x14\xdc\x63\xc7\x65\x92\x82\xef\x46\xe7\x20\x04\x4b\x47\x64\x26\x8f\x36\xf5\xa5\x8d\x4c\x47\xd0\x5a\xc4\xd2\x9f\xa5\xb0\xb9\x0d\xe4\xa6\x41\x7a\x2c\x05\x85\xf2\x39\x90\x28\xb2\x31\x52\x54\x4e\x3e\x3b\x34\x81\x0e\x6b\x56\x49\x9d\x76\x21\x81\x9a\x8c\xe8\xaa\x8e\x68\xa2\xbe\x2e\x1e\x89\x35\x43\xb0\x53\x51\xfa\x9d\x42\xf5\x96\xc3\x3b\x81\x3a\x28\x77\x59\x39\xa3\x45\x0a\xef\xf5\x9c\x52\x4f\x4f\x44\xf9\x89\x02\x97\xbd\x20\xc3\xe2\xc5\x89\xd1\x6f\xe6\x0b\x8c\xfe\xd5\x35\xbd\x2c\xf3\xdd\xfe\xea\xd8\x87\x98\x87\x16\xb9\x9e\x7e\xb7\xfb\x79\xfd\xfb\x1f\xeb\xbf\x60\xdd\xed\xef\xaf\xf1\xbd\x0d\x6c\x77\xf7\xeb\xfd\xb6\x44\xef\xef\x97\xbb\x87\xaf\xe6\x6a\x5b\xe0\xe3\x9b\xc5\xd5\xf6\x26\xcd\xd4\x0b\xb7\x04\x7e\xa8\x3b\x9e\x7e\xf9\xe9\xcb\x35\x8f\xbb\x1b\x16\x2f\xf3\xeb\xdc\x93\x3a\x7f\xf6\x30\xe1\x6c\x9a\x87\x6f\x3e\xff\xc7\xeb\x63\xdf\x38\xe4\x91\xc6\xf7\x09\x5f\xc1\x7c\x07\x96\x91\xb1\xbc\x1c\xb7\x18\x9e\x9a\xe6\xee\x1a\xc6\x97\xff\xab\xe1\x50\x5b\xeb\x26\xcf\xe7\xcf\x1f\x6b\xf8\x71\x96\xa6\x59\x36\xcd\xa7\xeb\x4c\x4d\xf3\xa9\x69\x56\xdf\x91\x6e\xf9\xb4\x5a\x6e\x37\xbb\xbf\xef\xf6\xab\x6f\xe2\x38\xfb\x2f\x00\x00\xff\xff\x99\x9e\xdd\x36\x40\x07\x00\x00"
-
-func runtimeSyntaxPascalYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPascalYaml,
-               "runtime/syntax/pascal.yaml",
-       )
-}
-
-func runtimeSyntaxPascalYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPascalYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/pascal.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPatchHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x48\x2c\x49\xce\xe0\x8a\xd1\xd3\x00\x33\x6a\x52\x32\xd3\xd2\x34\x55\xb8\xb8\x00\x01\x00\x00\xff\xff\x44\x40\x08\x3d\x17\x00\x00\x00"
-
-func runtimeSyntaxPatchHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPatchHdr,
-               "runtime/syntax/patch.hdr",
-       )
-}
-
-func runtimeSyntaxPatchHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPatchHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/patch.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPatchYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xce\x4d\x0a\xc3\x20\x10\x86\xe1\xbd\xa7\x18\xa4\x8b\xfe\x60\x0e\xe0\x2a\x07\x91\x80\x89\xa3\x11\x8c\x0d\x76\x42\x09\xf4\xf0\x65\x92\x16\x43\xc0\xd5\xfb\x7c\xa2\x3e\x26\xa4\x75\x46\x0d\xb3\xa5\x61\x14\xc2\x21\xe1\x40\x1a\x04\x00\x00\x6b\xb6\x13\x6a\x90\xc6\x34\xd7\x6d\xf2\x71\xd1\xfb\xdb\x45\x0a\x51\x96\x84\x2f\xbd\x0d\x15\xf4\x25\x86\x91\x42\x41\xcc\x1a\x64\x67\xcc\xa3\xb9\xcb\x9f\x1d\xeb\x7e\xaa\xed\xf7\xfa\xb4\xf0\x23\x1d\x9c\xa1\xa0\xe3\xae\x6a\xff\x17\xa5\xce\xdb\x15\x53\x7a\xbe\x19\xdb\xb6\xda\x64\x03\x66\xb2\x9c\xf9\xe7\x0c\xdf\x00\x00\x00\xff\xff\xef\xe3\x40\xbb\xf5\x00\x00\x00"
-
-func runtimeSyntaxPatchYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPatchYaml,
-               "runtime/syntax/patch.yaml",
-       )
-}
-
-func runtimeSyntaxPatchYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPatchYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/patch.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPegHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x48\x4d\xe7\x8a\xd1\xcb\xb1\x2f\x48\x4d\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x9a\xf4\x66\x7f\x0e\x00\x00\x00"
-
-func runtimeSyntaxPegHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPegHdr,
-               "runtime/syntax/peg.hdr",
-       )
-}
-
-func runtimeSyntaxPegHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPegHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/peg.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPegYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x6b\xc2\x30\x18\x86\xcf\xf6\x57\x7c\x0b\x6e\x6a\x43\x32\xaf\x06\x67\x19\xec\xee\x65\xa7\xe5\x4b\x47\xac\x9f\x1a\x68\xd3\xd2\xc6\x0d\x47\x7e\xfc\xa8\x53\x27\xe8\x29\x90\x3c\xef\x93\xf7\xdd\xb8\x92\xc2\xa1\x21\x05\x0d\x6d\x93\x64\x4d\x81\x8a\xa0\x20\x01\x00\xe8\xdf\xbc\xad\x48\x01\x43\x94\x65\xd6\xd0\x76\xc8\x92\xa4\xdd\x97\xd4\xa9\x23\x21\xc0\xad\xc9\x07\xb7\x71\xd4\x2a\x60\xb9\xd6\xaa\x6b\x6c\x41\xca\x98\x54\xbf\x8a\x0f\x2b\x7e\xcc\xe9\x9c\x8a\xd9\xa7\x49\xaf\x81\xb9\x60\x27\x49\x51\xfb\x2e\x58\x1f\xa4\xdf\x57\xab\xa3\x09\x31\xd7\x5c\x98\x4c\x4f\xc5\xcc\xf0\x33\xd7\x1d\xaa\x55\x5d\xca\xba\xa1\xd6\x86\xba\xe7\xb4\xe0\x69\x96\x3f\x3f\x3c\x99\x28\x16\x71\x2e\xe2\xcb\x82\xdd\x34\x93\x5f\xb6\x67\x1f\xef\x36\xba\xb8\x1b\x2a\x9c\x2d\x8f\x7f\x6b\x9d\x1b\x93\x22\x9a\x9b\x82\x5d\x68\x9d\xdf\xf6\x10\x1b\x23\x22\xca\xa8\x73\x64\x66\x92\x22\x8b\xa3\xcb\xcd\xc8\x4c\xd2\xd1\x7f\xb6\xaa\xc8\x07\x05\x6c\x9c\xc7\xab\xfd\x13\x44\x81\x28\x64\x3a\x3c\x93\xa1\x5e\xd7\x0a\xd8\xfb\xf2\x6d\xa9\xb2\xcb\x0c\xdf\xef\x10\xc5\xce\xb6\xf2\x7b\xe7\x02\xfd\xe5\x81\x5d\xa9\xf8\xf0\x0e\xad\x80\x0d\x38\xf0\x08\x7c\xc0\x59\xf2\x1b\x00\x00\xff\xff\x2d\xa9\x92\x64\xe8\x01\x00\x00"
-
-func runtimeSyntaxPegYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPegYaml,
-               "runtime/syntax/peg.yaml",
-       )
-}
-
-func runtimeSyntaxPegYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPegYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/peg.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPerlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x48\x2d\xca\xe1\x8a\xd1\x2b\x88\xce\xc9\x8d\x55\xe1\x8a\x53\x56\xd4\xd3\xd2\xd7\x48\xcd\x2b\x53\xd0\xd6\xb4\x07\xc9\x69\x28\xd4\xa8\x68\x72\x01\x02\x00\x00\xff\xff\xdb\x1c\x3f\x2e\x26\x00\x00\x00"
-
-func runtimeSyntaxPerlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPerlHdr,
-               "runtime/syntax/perl.hdr",
-       )
-}
-
-func runtimeSyntaxPerlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPerlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/perl.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPerlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5d\x6f\xe3\x36\x10\x7c\xcf\xaf\x50\x7d\x29\x8e\xbc\xf6\x1c\xa0\x8f\xe9\xa5\xee\x3f\x68\x81\x16\xe8\x43\x94\x00\x14\xb9\x92\x59\xf3\xcb\xe4\xca\x8e\xd0\xe9\x7f\x2f\x48\x25\x0e\x90\x1c\xee\xa1\x06\x2c\x50\xdc\xdd\xd9\xd9\x19\x8a\xa3\x75\xc4\x4b\xa2\xdb\x2e\x51\x76\x57\x57\x86\x98\x34\xdf\x76\x57\x5d\xd7\x75\x35\x18\x94\xa7\xdb\x6e\xd3\xf7\xdb\x74\xef\xfc\xc3\xf5\xa6\x45\xf6\xa4\x0c\xe5\xdb\x6e\xf3\xf8\xe1\xbb\xed\xa7\x1b\x41\xe1\xd4\xfd\x20\x77\x15\x43\x74\xb8\x96\x9b\xab\xab\x3c\x3b\x2a\xb7\x2d\xfb\x73\xb7\xb6\xd8\xf4\xfd\x20\x94\xd6\x94\x18\xca\xa9\xec\xa1\x58\x85\x9f\x30\xd8\x20\x0c\x7c\x34\x24\xa1\x85\x72\x8e\x32\xf6\xc2\xd8\x5c\xf7\x10\x13\xe2\x39\x20\xc7\xc8\x12\x2e\x16\xaa\x11\xb9\x43\x0c\x81\x34\x23\x16\xe4\x25\xb1\x84\x11\x83\x17\xba\x26\x20\x26\x0a\x12\x34\xda\x40\x06\xe4\x88\x09\x96\x10\x31\xfb\x24\x41\x42\xe9\x3d\xe2\x88\x93\x72\x78\x12\xa4\x61\x0b\x17\x58\x46\x92\x12\xa3\xd0\x81\x1d\xea\xe4\x11\x2e\xea\x03\x62\x3e\x48\xd9\xf7\x03\x2a\xfb\x89\x58\x68\xb8\x38\xd9\x80\x44\x94\xab\x3c\x48\x53\x4e\x48\xc9\x1a\xa4\x6c\x63\xb6\xbc\x20\x9d\x83\xf2\x10\xfb\x58\x18\x81\x18\x29\x47\x8e\x28\x94\x4f\x72\x58\xd6\xa2\xf3\x6c\x0d\xa6\x3c\x59\xf3\x9a\x27\x87\x45\x19\x93\xd7\xf4\x61\x09\xb3\x1f\x28\xb7\xb2\x61\x49\x31\xb3\x84\xb8\x9f\xca\x03\x31\x28\x18\x29\xd2\x19\x53\xc6\xd7\x9a\x50\x60\x4c\xc4\x25\xea\x83\x68\xed\x62\x95\x68\xf2\x6c\x3d\x61\xaa\x69\x53\xa6\x84\x3d\x3d\xc1\x06\xd3\x9e\x0c\x1b\x35\x3b\xfc\x1d\x6d\xb8\xcc\x7b\xa0\xa5\xe0\x60\x9d\x83\x53\x85\xe1\x28\x4c\xbc\x87\xb3\xe1\x00\x67\x0b\x53\xa8\x1a\x29\x27\x2a\xae\xdc\x55\x61\xe0\x0a\x2b\x86\x87\x3f\x34\x07\xcb\x24\x2a\xea\x44\x8c\x12\x0c\xb2\x3e\x49\x04\x7a\x62\xc4\x6a\x5e\xa2\xf0\x62\x67\x36\x48\x4a\x1f\x90\x6c\x22\xa4\x98\xaa\x98\x81\xc7\x1d\xd2\x5c\xf6\x38\xe2\x78\xc4\xf1\x09\x59\x55\x10\x12\xca\xb4\x03\x52\x99\xc8\x1d\xf4\x09\x26\xa2\x0d\x7a\x9c\x6d\x26\x14\x62\xf0\x9c\x03\x4e\x94\x0b\xe1\x6c\x83\xa9\x6d\x90\xd7\x69\xb3\xaf\xc5\x05\x45\xd7\x73\x88\x42\x74\x58\x69\x5c\x06\x2f\x24\x5c\x3d\x5e\xbe\x92\xf7\x95\xbd\x8f\x09\xc1\x80\x9b\xdb\x7c\x71\xba\x69\xdc\xd4\x2d\x7b\x3b\x32\xca\xde\x5f\x06\xce\xa4\x0c\xce\xd9\x32\xd5\xe8\xcc\xa6\x1e\xe4\x62\x03\x8a\x23\x4a\xa8\x95\xc4\x22\xa9\x26\x40\x89\x99\x51\x92\xb3\x42\x13\x2a\xdc\x3a\x3f\xca\xb1\xee\xb7\xb9\x9b\xb2\x85\x67\xb3\xa0\xcc\x43\xe1\x8c\xb2\xf8\x66\x46\x59\x8a\xd0\xca\xb9\xb5\x25\x93\x7f\x69\xcb\xe4\xdc\xb3\xc2\xcd\x7b\xce\x62\xa9\xeb\x3c\x07\xad\x98\x30\x7b\x55\x0e\x97\xa9\xe7\x20\x0c\x8d\xab\xbf\xcd\x8c\x36\x93\xc4\xdc\x6a\x4f\xca\xcd\x54\x70\x22\x8d\xb3\xb2\x2c\x92\x35\x72\x87\xb3\x0a\xac\x72\x56\x0b\xce\x2a\x87\xe7\xbe\x7d\x3f\x6c\x9e\xbf\xfd\x4a\x9a\x3c\x05\x7e\xbe\x00\x74\x0c\x6c\xc3\x4c\x20\x57\xda\xc3\x8e\xd5\xbc\x31\xe6\xfa\xa7\xfa\x71\xda\x11\x73\x70\x54\x0a\xe6\xc0\xd6\xe1\xbc\xb7\x8e\x40\x47\x04\x82\x63\x4c\xf5\x20\x62\x22\x68\x9f\xf0\x04\xdf\xd4\xc0\x5c\xa8\x71\x56\x35\xa0\x02\x6c\x51\x2b\x8d\x17\x1e\x89\xb4\x55\xae\xb1\xf8\xdc\xf7\xbf\x5c\xf8\x2d\x7e\x88\x75\x5b\xfc\x88\xbe\xdf\xca\x4b\x81\x35\x14\xd8\x8e\x96\xf2\x7a\x8d\xd5\x5f\x61\x95\xeb\x20\xf7\x7d\x7f\xfd\xeb\xf7\x0f\x9b\x4b\x80\x82\x69\xc8\x7f\xbd\x6e\xad\x37\x60\x77\xff\xf0\x02\xa8\x63\x28\xac\x02\x6f\x0b\x67\x1b\xa6\x9a\xbf\xe9\x7b\xb1\xfd\xd4\xf7\xb2\xdf\xe0\x78\xdc\xf5\x3d\xea\x1b\xd6\xf5\x3f\x75\xfd\xef\xba\xbe\xa9\xeb\x9b\x17\xce\x86\x46\x35\xbb\x46\xa4\xf8\x87\x9b\xed\xa7\x4b\x24\x65\x4a\x39\xea\xf7\x8c\xc5\x63\x15\xa8\xbb\xeb\x02\x9d\xe5\x5b\xde\x3f\x7f\x93\xb5\x6f\xee\xbd\x43\xfc\xf0\x16\xe5\xfa\xff\xa0\x3c\xde\xbd\x85\x79\xbc\xd3\x33\x7f\x03\xea\xd5\x97\xad\x57\x3a\xc7\xf7\x98\x5f\xbe\x74\x1f\xff\xf8\xf3\xb7\xdf\x3f\xbe\x85\xae\x9b\x5f\x43\xfe\x2f\x00\x00\xff\xff\xec\x33\x9f\xea\x07\x07\x00\x00"
-
-func runtimeSyntaxPerlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPerlYaml,
-               "runtime/syntax/perl.yaml",
-       )
-}
-
-func runtimeSyntaxPerlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPerlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/perl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPerl6Hdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x48\x2d\xca\x31\xe3\xd2\x88\xd1\x2b\x30\x53\xa9\x89\xd1\x2b\xc8\x81\x50\xb9\x66\x2a\x9a\x5c\x5c\x80\x00\x00\x00\xff\xff\x67\xf0\x75\x09\x1d\x00\x00\x00"
-
-func runtimeSyntaxPerl6HdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPerl6Hdr,
-               "runtime/syntax/perl6.hdr",
-       )
-}
-
-func runtimeSyntaxPerl6Hdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPerl6HdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/perl6.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPerl6Yaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x8b\x1c\x37\x13\xbe\xcf\xaf\x68\xe6\xf5\x0b\xea\x05\x8f\x21\x07\x1f\x36\x0e\x1b\x42\x72\x08\x18\x42\x08\x21\x07\xf7\x06\x34\x52\x75\xb7\x32\xfa\x1a\x55\xf5\xf4\x36\x3c\x3f\x3e\x48\x33\x6b\x3b\xbb\x21\x0b\xab\x1e\x54\xaa\x7a\x3e\xaa\xa4\xd1\x79\x92\x2d\xd3\x7d\x97\xa9\xf8\xf7\xbb\x9d\x25\x21\x23\xf7\xdd\xae\xeb\xba\xae\x46\xa3\x0e\x74\xdf\xed\xd5\x30\x1c\xf2\xfb\x37\xa8\x1f\x7f\xfb\x86\xf7\x6f\xfa\xfd\x6e\x57\x16\x4f\x7c\xdf\x12\xde\x76\xd7\x62\xfb\x61\x38\x2a\x6d\x0c\x65\x81\xf6\xba\x04\x68\xd1\xf1\x1b\x1c\x5d\x54\x16\x21\x59\xea\x61\x94\xf6\x9e\x0a\x66\x65\x5d\xa9\x7b\x48\x19\x69\x8d\x28\x29\x49\x0f\x9f\x98\x6a\xa4\x7f\x40\x8a\x91\x8c\x20\x31\xca\x96\xa5\x87\x55\xc7\xa0\x4c\x3d\x80\x94\x29\xf6\xa0\xd1\x45\xb2\x20\x4f\x42\x70\x84\x84\x25\xe4\x1e\xa4\xb4\x99\x91\x46\x5c\xb4\xc7\x93\x22\x03\xc7\xc2\x70\x82\xdc\xf7\x18\x95\x89\xe2\x51\x25\x26\xf8\x64\x4e\x48\xe5\xd4\x63\x22\x51\x06\x3e\x4d\x2e\x22\x13\x95\xaa\x1f\x79\x2a\x19\x39\x3b\x8b\x5c\x5c\x2a\x4e\x36\xe4\x35\xea\x00\x35\x27\x16\x44\x12\xe4\x92\x24\x81\xa9\x5c\xfa\xe3\x76\x4d\x5a\x17\x67\x31\x95\xc9\xd9\x2f\xe7\xfa\xe3\xa6\xad\x2d\xd7\xe3\xc7\x2d\x2e\xe1\x48\xa5\xa5\x1d\xb7\x9c\x8a\xf4\x50\x9f\x26\x7e\x24\x01\x45\xdb\xab\xbc\x62\x2a\xf8\x37\x10\x8a\x52\xb9\x72\x32\x27\xd5\xe0\x52\xb5\x66\x0a\xe2\x02\x61\xaa\xc7\xa6\x42\x19\x33\x3d\xc1\x45\xdb\x56\x81\x4b\x46\x3c\xfe\x4a\x2e\xe2\x44\x1b\xe3\xe4\xbc\x87\xd7\x2c\xf0\x14\x27\x99\xe1\x5d\x3c\xc1\x3b\x16\x8a\xd5\x13\xed\x55\xad\xd7\x3f\x54\x43\xe0\x59\xb4\x20\x20\x9c\x5a\xc7\x78\x52\xb5\xda\x44\x02\x8e\x16\xc5\x5c\x7a\x44\x7a\x12\xa4\xda\xac\x4c\xf1\xb9\x7d\xc5\x22\x6b\x73\x42\x76\x99\x90\x53\xae\x26\x46\x19\x1f\x90\x17\x9e\x71\xc6\xf9\x8c\xf3\x13\x8a\xae\x45\x48\x69\xdb\x06\xa2\x32\xe9\x1f\x60\x2e\xb0\x09\x4d\xe0\x79\x71\x85\xc0\x24\x90\xa5\x44\x5c\xa8\x30\x61\x75\xd1\x56\x18\x94\xab\xca\x12\x6a\x32\x83\x4d\x9d\x3b\x30\xd1\xa9\x2d\x6d\x97\x94\xaf\x83\x14\x2a\xed\x50\x79\x87\x94\x11\x2d\xa4\xf5\x57\x3e\xf7\xb6\xb9\xda\xfc\xe4\xd9\x8d\x02\x9e\xc3\x67\xa9\x85\xb4\xc5\x5a\x9c\x50\x8d\x2e\x62\xeb\xc8\xb2\x8b\x60\x4f\x94\x51\x33\x49\x54\xd6\x4d\x3a\xa7\x22\xe0\xec\x9d\x32\x84\x5a\xee\xaa\x1c\x7c\xae\xfb\x4d\x71\xf3\x94\x65\xb1\x1b\x78\x39\xb2\x14\xf0\x16\x5a\x1b\x78\x63\x65\xb4\xf7\x57\x48\xa1\xf0\x0c\x2b\xe4\xfd\xcd\xdb\xd6\x6d\x29\xd8\x20\x65\x89\x46\x0b\x61\x09\x9a\x4f\x58\xa2\xb2\x34\x5e\xfb\xd9\xcc\x6f\x4a\x7a\x2c\x2d\xe3\xa2\xfd\x42\x8c\x0b\x19\xac\xda\x89\xca\xce\xf6\x0f\x58\x75\x14\x5d\x8a\xde\xb0\xea\x12\x6f\x68\xc3\x70\xdc\xdf\xee\x76\xa5\x4a\x81\xa2\xdc\x2e\xb8\x49\x51\x5c\x5c\x08\xe4\xb9\x2d\x6e\xac\xcd\x1a\x53\xa9\xff\x54\x2f\x9f\x1b\xb1\x44\x4f\xcc\x58\xa2\x38\x8f\x75\x76\x9e\x40\x67\x44\x82\x17\x4c\x75\xf0\x30\x11\x4c\xc8\x78\x42\x68\x1e\x60\x61\x6a\x9c\x75\x0d\xe8\x08\xc7\xfa\x1f\x34\x32\x19\xa7\xfd\x8d\xc4\xac\x19\x8e\x61\xbc\x66\x46\x49\xb5\x9c\xbb\x50\xc4\x3a\x53\xc4\x0f\xbf\xff\xfc\xf1\x47\x84\xc5\x8b\x43\xa1\x3a\x36\x8c\x40\x32\x27\x5b\x81\x9e\x7f\xf9\xa5\x64\xb0\x6e\xe0\x5f\x03\x39\x4b\x51\xdc\xe8\xa8\x5c\x5f\xb7\xfa\xc7\xa2\x4b\xd5\xff\xe9\xcd\xf7\xff\x7f\xdc\x7f\xde\xa6\x68\xeb\x23\xd9\x61\x18\x86\xe1\x0f\xbc\xed\xbf\x84\xae\xcf\x63\xf7\xe9\x71\x77\x2b\x6b\x52\x64\xd1\x51\x0e\x2c\xc5\xc5\xa9\xea\xd8\x1f\xee\x86\x3d\xce\xe7\x61\xc0\xe1\x6e\x18\xf0\xcc\xc0\xd2\xa8\x17\xdf\xf0\x38\x3c\xbe\x3b\xdc\xbd\x7b\x8e\xe4\x42\xb9\x24\xf3\x9a\x98\xfa\xb3\xda\xd7\x7d\xd7\x45\x5a\xfb\x97\x04\xbf\xfd\x4f\x5a\xe1\xd6\xdb\xff\x1d\xee\x5e\x5b\x70\x08\xda\x94\xf4\x1a\xef\xc3\x87\x9f\x7e\xf9\xed\xd7\x8f\x2f\x91\x5e\x6c\x7e\x85\xf6\x77\x00\x00\x00\xff\xff\xd5\xbb\xe9\xc6\x73\x06\x00\x00"
-
-func runtimeSyntaxPerl6YamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPerl6Yaml,
-               "runtime/syntax/perl6.yaml",
-       )
-}
-
-func runtimeSyntaxPerl6Yaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPerl6YamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/perl6.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPhpHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xc8\x28\xe0\x8a\xd1\x2b\xc8\x28\x88\x36\x32\x36\x31\x2d\xae\x8b\xb5\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x60\x80\x05\xfb\x15\x00\x00\x00"
-
-func runtimeSyntaxPhpHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPhpHdr,
-               "runtime/syntax/php.hdr",
-       )
-}
-
-func runtimeSyntaxPhpHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPhpHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/php.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPhpYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\x6f\x93\xdb\xb6\xf1\x7e\xfd\xbb\x4f\xa1\x53\x32\xfe\x01\x77\x96\x2e\xfd\xe7\x99\xc8\xd1\x69\x3c\xa9\xf3\xca\xd3\x76\xda\xe4\x45\x43\xd0\x1e\x10\x5c\x92\xa8\x40\x80\x06\x96\xba\x53\xf2\xa4\x9f\xbd\x03\x4a\x77\x27\x5b\xe7\x56\xc3\xa1\x30\x8b\x05\x76\x9f\xdd\x67\x77\xd9\x58\x47\xbc\x1f\x68\x35\x1b\xba\xe1\xe2\xa2\x26\x26\xc3\xab\x8b\xd9\x6c\x36\xcb\x5b\x5e\xf7\xb4\x9a\xcd\x95\x5a\x0e\xdd\x50\xfc\xfe\x0f\x7f\xfc\x53\xfa\x77\xb9\xf9\x7a\x7e\x71\x11\x47\x47\xe9\xa0\xb8\x98\xa5\x7d\x5f\x05\xb7\x0c\x03\x45\xcd\x21\xae\x66\xf3\xef\x70\x3b\x3f\x6e\x52\x8c\x07\x51\xf1\xfe\xb2\x5c\x5e\x6d\x1e\x37\x8e\xa7\x58\xb7\xab\xd9\x5c\x6c\xac\xfc\xae\xb8\x29\x37\x42\x8b\xaa\x8a\x30\x31\xf8\x7d\x8f\xba\x8e\x94\x12\x86\xc1\x11\x23\x92\x46\x64\x6b\x1c\x21\xd9\x9a\x30\xd6\x36\xc8\x0d\x2a\xa1\x13\x89\x26\x78\x96\x1b\xd4\xc2\x22\x48\xd8\x16\x2e\x98\xed\xc7\x31\x30\x21\xca\x0d\x8c\x16\x7e\xa7\x13\x06\xb6\xc1\x4b\x18\xf2\x4c\x11\xc6\x32\xc1\x04\x51\x13\x1c\x5c\x1b\xc3\x38\x48\xd4\x42\xb3\x16\xce\xa6\xe9\x3e\x90\x03\xb1\xb6\x2e\xa1\xf1\xb0\xda\x85\x16\x36\xc2\x81\x25\xa8\x17\x15\xd5\x72\x83\xc6\x92\xab\x13\x31\x1a\xdb\x0a\xa3\x27\x23\x18\x23\x49\x64\xb7\xd0\x84\xd8\x43\x58\xb9\x69\xa2\xee\x09\xd3\x3b\x6b\x77\xc5\xef\x16\xaf\x4a\x74\x11\x16\xb6\x6f\x61\xbd\x18\x46\x46\x92\xd8\x56\x35\xb6\xb4\x6f\xc9\xc3\xe9\x8a\x1c\x1c\xb5\xe4\x6b\x38\x2b\xfc\x56\x6e\xd0\x6b\x61\x3d\x06\xc4\xad\x44\x4f\x7e\x14\x96\xa9\xcf\x72\x62\xa1\x41\x51\xc2\xeb\x1d\x7c\x10\x07\x5b\x48\x26\xda\x81\x25\x82\x70\x18\x58\x4c\x48\x31\x45\x62\xe4\x61\x64\x89\x41\xe8\xa8\x7b\x58\xc3\x63\x24\xe4\x27\xb4\x39\xf4\x72\x83\x8f\x88\x62\x00\x63\xac\xf6\x12\x49\x70\xb4\x5b\x92\x1b\x24\xdd\x0f\x48\x24\xcc\x04\xd6\x91\x61\x89\xd4\x6b\xe7\x90\xc2\x18\x0d\x21\x0d\xda\x23\x71\x0c\xbe\x45\x1a\x45\x85\x01\x7d\xaf\xe3\x5e\x82\xe9\x9e\x75\xce\x26\xdb\x9e\xc0\x51\x9b\x2d\x46\xe1\xe4\x06\x3b\x1d\xb1\xb3\x35\x05\xdc\x55\x51\x8a\xd9\xf2\x0a\xb7\xf2\x59\xce\x2c\xe9\x9e\xc9\xd7\x54\x7f\x42\x9e\x2a\xd4\x7b\xd4\x76\x87\x8e\x7b\x87\x8e\x74\x2d\x28\xa7\xbf\x09\x21\xe7\x9b\x2d\x3b\x02\xeb\x2a\xbf\x8f\xca\xe8\x04\xe9\x9c\xc4\x38\x69\xc9\x67\xac\x0e\x91\x86\x18\xcc\x27\x96\x0e\x11\x45\xe2\xbd\xa3\xe7\x1c\x1d\xc8\x58\xed\x56\xb3\xf9\x8b\xe2\xfd\xeb\xa2\x58\xa5\x41\x1b\x5a\x95\x65\x79\xf5\xfa\x53\x30\xab\xd9\xbc\x58\xad\xcb\x07\xa1\xad\xc9\xb3\x6d\x2c\xe5\x9a\x11\xda\x31\xaa\xd6\x04\x17\x22\x3a\xb2\x6d\xc7\xe8\x22\x35\x0f\xa4\x08\xbe\xad\x29\x19\xe4\x3a\x45\xf0\xc6\x59\xb3\x45\xf0\x4d\x30\x63\x42\xf0\x2e\xe8\x1a\xc1\xf7\x61\x4c\x14\x76\x14\x91\xec\x2f\x0f\x79\x89\xe6\xe0\x3b\x58\xc7\x96\x18\xb9\x0b\x60\xa7\xdd\x48\xb8\xb3\x35\x77\x72\xfd\xe0\x91\x09\x3e\xb1\xf6\xbc\xf4\x63\x5f\x1d\xdc\xda\x58\xf9\x55\xf1\xcd\xe2\xdb\x37\x8b\x1f\xca\x5f\x5f\xbd\x7c\xf5\xdb\x99\x6e\xe2\x68\x7d\xbb\x1c\x63\xc6\x27\x1a\x1e\x44\xa6\x52\xc7\xc7\x45\x6b\x19\xa6\x8b\xa1\x27\xb9\xba\xb9\x29\xde\xcf\xfe\xaf\xbc\x7e\xba\xa3\xef\xc9\x73\x6e\x19\x97\x8b\xc5\xf2\x7a\xb3\x58\x3c\x86\xb5\xa6\x46\x8f\x6e\xda\x53\x6a\x23\x86\x6e\xc0\x5a\xaa\xf9\x8c\x7c\xbd\x56\x73\xa5\x9e\x12\xf0\x14\xc7\xa5\x71\x3a\xa5\xec\x46\xa1\x17\xbf\xbc\x59\xfc\xfc\xcd\xe2\xdb\x0f\x8b\xf2\x5a\x2a\x25\x1e\xb4\x0f\x3d\x70\xae\x54\x25\x74\x8c\x7a\x8f\x2a\x04\x27\x48\xfb\xa9\x75\x38\x37\x31\x26\x2f\xaa\xcc\xd5\xc6\x05\xcd\xb0\x9e\x05\xb5\x13\xbd\x2c\x53\x9c\x54\x42\xf5\x2f\x32\xb9\x53\x1d\x6b\xa0\xb7\xf7\x54\xe3\x10\x0c\xec\x82\xad\xa5\x52\xd5\x7f\x71\xf1\xe8\xa1\x52\x4a\x95\xd7\xab\xd5\xb3\xa4\xc8\x4e\x16\x6f\x16\x3f\x97\x27\x70\x26\x34\xcf\x5c\x3c\xa1\x7e\xd2\x29\x5e\x43\xa9\x04\xa5\x24\x5e\x96\xa7\xd8\x97\x5b\xda\xdf\x85\x58\x1f\xaf\x6f\x5d\xa8\xb4\x43\x63\xbd\x76\x18\xc6\xca\x59\x83\x21\xda\x9d\x66\xc2\x10\x43\x1e\x12\x13\x2c\xcd\xd6\x60\xca\x79\xae\xdc\x53\x17\xf2\x1e\x1d\xd3\x38\x45\xb5\x4a\xb9\xce\x19\x46\xb3\xe9\x30\xe1\x45\x4d\xc6\xe9\x48\xa8\x03\xc8\x25\x12\xb6\x91\x1b\x90\xaf\xc5\xc3\x46\x13\xa2\x20\x6d\xba\x1c\xe2\x06\xe9\xce\xe6\xb3\x77\x9d\x75\xb9\xb3\x66\xe7\xdc\xfe\x49\x07\xcd\xe8\x0f\xcd\xc8\x36\x39\x39\x14\x1b\x6d\x68\xaa\x8d\xa9\xf8\x1e\xce\x73\xd4\x96\xc1\x71\x7f\xbc\xe9\x4b\x81\x53\xaa\xf2\x74\xa7\x54\xba\x3e\x21\xce\x21\x33\xf2\xbc\xcc\x27\x90\x09\xda\xd7\xa8\x22\xe9\x2d\x8c\x4e\x04\xe3\x82\xcf\x13\xc6\xb3\xf5\x23\xe1\x48\x5f\xd4\x96\xf2\x34\x21\xd3\x05\x50\x3f\xf0\x1e\xb4\xd3\x0e\x74\x6f\x19\x87\xbe\x96\xd0\x06\x0e\x08\x11\xd6\x1b\x37\xd6\x24\x3e\x04\x6f\x72\xdf\xb5\xfd\xe0\xa6\xc8\x26\xd8\xa9\xd8\x0c\x85\x66\x5a\x92\xae\xf3\x2a\xe5\xd1\x92\xc7\x17\x3c\xdd\xe5\xb4\xf9\x4c\x48\x1e\xa3\x47\xa4\x8f\xa3\x8d\x4f\x77\x8d\x3e\xeb\x8e\x89\xc0\x5d\x0c\x77\xb8\x0f\x11\xfb\x3c\xcb\x44\x86\xdd\xc4\xd0\xcb\xd3\xf0\x3c\x56\x77\xae\x8e\x23\x66\x8e\x23\xa1\xd1\x2e\x11\xfc\xe8\x1c\x7e\xfc\xfb\x4f\x6f\xf1\xc3\x9b\x77\xff\x78\x8b\xbf\xfc\xf4\xee\xdd\x73\xc7\x33\xcf\x33\x0d\xd7\x47\x32\x0a\xdc\xe0\x1a\x0b\x28\x75\x05\xa5\x8a\xf2\xcb\x8d\x27\xf7\x9c\x2f\x74\x4a\xa5\xbe\xe6\xce\x26\x0c\x3a\x92\x67\x24\x72\x0d\x8e\xb2\xc5\xad\x9c\x7f\xf1\x4b\x45\xac\x6f\xb1\x5e\xaf\x71\xb9\x5e\x63\xfa\xc3\x8b\x17\x50\x2a\x3f\x58\xad\xb0\xc6\xe2\x16\x4a\x5d\xca\x67\x8a\x76\xa7\x1f\x2c\x9f\xf2\x63\xf1\xe1\x94\x1f\x67\xf6\x8a\x8c\x37\x17\x60\xc6\xac\xd4\x23\x6a\x2c\xf1\x12\xaf\xcf\xb1\x1f\x7a\xc7\xe1\x4b\x2b\xff\x12\xeb\x38\x15\xd5\x7c\xfe\x28\x23\x5f\x7f\x26\x49\x5b\x3b\x4c\x09\x52\x6a\xf9\x24\x3d\xf9\x68\x7b\xf8\x9d\x5a\x3a\x70\xf9\xfb\x4e\xc7\xe3\xd1\x42\x57\x8d\x8f\xbc\xfb\x7f\xa5\xd4\x24\x28\x3f\xc3\x55\xe5\xd1\x4d\x9c\x0e\x61\x28\xa0\x54\x09\xa5\x7e\x85\x52\xbf\xa1\x10\xb2\x94\xe7\x3d\x5d\xbc\xc7\xc9\x34\x94\x37\x37\xcb\xab\xff\xa9\xf4\xd5\xb9\xce\x59\x3c\x6e\x94\xba\x3a\x8b\x88\xba\xba\xf9\x1c\xfd\xac\x28\x2f\xce\xc6\xfa\xc9\x30\xd9\x9c\x0f\xfd\xd3\xb1\x72\x72\xe6\xf2\xcf\x7f\xfd\xfe\xc7\x7f\xfe\xed\xed\xf2\x3a\x6f\xff\x27\x00\x00\xff\xff\xcf\x34\x8d\x86\x4a\x0b\x00\x00"
-
-func runtimeSyntaxPhpYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPhpYaml,
-               "runtime/syntax/php.yaml",
-       )
-}
-
-func runtimeSyntaxPhpYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPhpYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/php.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPkgConfigHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x48\xe6\x8a\xd1\x2b\x48\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\x48\xfc\x01\xcd\x0a\x00\x00\x00"
-
-func runtimeSyntaxPkgConfigHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPkgConfigHdr,
-               "runtime/syntax/pkg-config.hdr",
-       )
-}
-
-func runtimeSyntaxPkgConfigHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPkgConfigHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/pkg-config.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPkgConfigYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4d\x4b\x03\x31\x10\x86\xcf\xcd\xaf\x18\xc2\x1e\xba\x2e\xbb\x78\x35\x20\x22\xf5\x58\x3c\x14\xf4\xe0\x66\x2d\x69\x3a\x6b\x07\x76\x37\x71\x92\x56\xaa\xf1\xbf\x4b\xaa\xf6\xd4\xdb\x03\xcf\xfb\xce\x47\x4f\x03\xc6\xa3\x47\x05\xde\x0a\xb1\xc5\x88\x36\x2a\x10\x00\x00\x59\x4d\x66\x44\x05\x52\xeb\xc6\xdb\x42\x0a\xc1\xfb\x01\x83\x3a\xe9\x1a\x3c\xa3\x67\x67\x15\xc8\xd7\xf9\xa3\x19\x31\x3d\x60\xb0\x4c\x3e\x92\x9b\xd2\xd3\x6a\x99\x9e\x91\x43\xe6\x85\x9b\xfa\x81\x6c\x0c\x69\xd1\x0f\xe6\x2d\x94\x4a\x5e\x18\xb1\xc2\xf7\x3d\x31\x86\xb4\xa4\x4d\x28\xe7\x79\x27\xd3\xc1\x44\x2c\xef\xce\xf9\x70\x1c\x37\x6e\x68\x9c\x47\x36\xd1\xb1\x02\x79\xfb\xaf\x68\x8b\x53\xa4\x9e\x90\x9b\x83\xe1\xd3\xd1\x85\xd6\x5f\xed\x7d\xfd\x62\xea\xcf\x75\xf7\x07\xd7\xf5\xcd\xba\xbb\xd2\xfa\xfb\xdc\x9b\x72\xb1\xb6\x3b\xc3\xcd\xc7\x8e\x22\x06\x6f\x6c\x7e\xba\x6d\xd5\x2f\x76\x5d\x55\x5c\x48\x2b\x90\xb3\x0a\xaa\x04\xd5\xac\x92\xe2\x27\x00\x00\xff\xff\x0d\x58\x66\xca\x49\x01\x00\x00"
-
-func runtimeSyntaxPkgConfigYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPkgConfigYaml,
-               "runtime/syntax/pkg-config.yaml",
-       )
-}
-
-func runtimeSyntaxPkgConfigYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPkgConfigYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/pkg-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPoHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xc8\xe7\x8a\xd1\x2b\xc8\x2f\xb1\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x5e\x5b\xa5\x67\x0c\x00\x00\x00"
-
-func runtimeSyntaxPoHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPoHdr,
-               "runtime/syntax/po.hdr",
-       )
-}
-
-func runtimeSyntaxPoHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPoHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/po.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPoYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x4b\x6a\xc4\x30\x0c\x06\xe0\xf5\xf8\x14\x42\x2d\x4c\x1e\x8c\x0f\xe0\xcd\x1c\x24\x4a\xc0\xe3\xa8\x19\x43\xec\x18\x5b\xa5\x94\xfa\xf0\x25\x99\xbe\x16\xdd\x4a\xdf\x2f\xfd\x2f\x7e\x65\x79\x4f\x6c\x20\x6d\x4a\xcd\x2c\xec\xc4\x80\x02\x00\xd8\x57\xd1\x06\x36\x80\x44\x3a\x6d\x72\x7d\x46\xa5\xf2\xeb\xca\xc5\x1c\xe0\x02\x29\x73\xca\x9b\x3b\xc4\xad\x09\x65\xf1\x73\x0d\x65\x29\x92\x5b\xa2\x1b\x7e\x29\xb7\xc5\x22\x36\x8a\x2e\x92\x7d\x5c\x76\x8d\x0d\x11\x91\xae\xc3\x44\x38\xb6\x1d\x61\x3d\xff\x4c\xce\x63\xdb\x9d\xbf\xb3\x25\xb1\xf3\x76\x3d\x3e\x10\xe9\xeb\xef\xcd\x10\x38\x8a\x01\x6c\xa6\x3a\x0c\xa6\x24\xeb\xd8\x8c\x63\xfb\xd4\x0c\xd3\xc7\xa8\xbb\x76\x6f\xfb\xb0\x3e\xce\x1c\xe5\xe2\xee\x36\xeb\xb7\xbb\x17\x7e\x60\xc0\x3f\xb9\xfe\x3f\x6d\x00\x4f\x3d\xf4\x15\xfa\x53\x8f\xea\x33\x00\x00\xff\xff\x13\x06\x8b\x95\x2b\x01\x00\x00"
-
-func runtimeSyntaxPoYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPoYaml,
-               "runtime/syntax/po.yaml",
-       )
-}
-
-func runtimeSyntaxPoYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPoYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/po.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPonyHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xc8\xcf\xab\xe4\x8a\xd1\x03\x51\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x70\xe0\x62\x39\x0e\x00\x00\x00"
-
-func runtimeSyntaxPonyHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPonyHdr,
-               "runtime/syntax/pony.hdr",
-       )
-}
-
-func runtimeSyntaxPonyHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPonyHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/pony.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPonyYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x94\xcd\x72\x9b\x3e\x14\xc5\xf7\x3c\x05\x61\xfe\x1f\x40\x8a\xed\xae\x3a\x61\xfc\x31\x99\x69\xbb\xcd\xa6\xab\x20\xe2\x11\x70\x89\xd5\x82\xc4\x48\x17\x3b\xee\x9c\x87\xef\x80\x53\xbb\x69\x13\x0a\x0b\x24\x9d\x9f\x74\xc4\x11\x97\x5a\x35\xc4\xc7\x8e\x52\xbf\x33\xfa\xe8\x79\x15\x31\x95\x9c\xfa\x9e\xef\xfb\xfe\x20\x6a\xd9\x52\xea\x07\x42\xcc\x06\xe0\x9f\xc0\xf3\x6c\xdf\x90\x4b\x47\x20\xf1\x1d\x4b\xa6\x96\x34\x8f\x4c\x11\x0e\x6b\x41\x69\x26\x5b\xcb\x92\xc0\x56\x2a\x46\x67\x55\xab\x58\xed\x09\x65\x23\x9d\x83\x63\xdb\x97\x0c\x59\xb2\xb1\x91\x10\x45\xf0\xc6\x62\xa5\x69\x3b\xd5\x90\xdd\x2a\xcd\x56\x69\xa7\xca\x29\xba\x77\x34\x25\xef\xa5\x45\x43\x0c\x6a\x0b\xaa\xa6\x40\x4d\x07\x14\x84\xba\xd7\x53\x94\x72\x06\x6c\x35\x2c\xd5\xd8\xcb\x06\x85\x79\x02\xcb\x47\x94\x46\xbb\xbe\x9d\xdc\x49\x61\x49\x7e\x1b\x40\x56\xba\x27\x58\xe2\xde\x6a\x90\xb5\xd3\x69\xa8\x1a\xbc\x23\x0d\x6a\x1c\xa9\x7a\x7c\x80\x74\x85\x56\x72\xb9\xc3\x61\x47\x76\xc8\xfb\x88\x83\xe2\x1d\xa4\x83\xa5\xd2\xec\xc9\xc2\x14\x5f\xa9\x64\x34\xb2\x2d\x2a\x39\x08\x95\x7a\x24\xc7\xa6\x86\xaa\x2b\xaa\xa7\x2c\x0f\x3b\xd5\x10\x2a\x03\x4b\x1d\x49\x46\xaf\x59\x35\xa8\x8d\x85\x7a\x33\x9c\x50\x88\x0d\x56\xeb\xe8\x0d\x0d\x10\xe2\x3f\x08\xf1\x0e\x42\x3c\x5c\xa0\x63\x5b\x98\x66\x66\x3a\xb2\x92\x8d\x3d\xa1\x09\x84\xb8\x86\x10\x31\xe6\x10\xe2\x0a\xff\x62\xb9\xc4\x7a\x3d\x35\x69\xb5\xc2\xd5\x0a\xcb\x15\xd6\x2b\x2c\xf1\xfa\x26\x4e\xa7\x07\xe5\x34\x43\x1b\x86\xd4\x15\x8c\xc5\xd3\xcb\xf4\x4f\x45\x31\xc2\xdb\x38\xbb\x4d\xee\xf3\x6c\x2b\x93\xef\xb7\xc9\xfd\x22\xb9\x11\xe2\xff\x3c\xfe\x95\x1e\x4e\x9d\xe5\xa5\x0a\x76\xca\xbd\x26\xcf\x0a\x63\x9a\x9f\x8c\xed\x09\xb5\x6c\x5e\x7e\xb5\x67\x52\xf7\x6d\x41\xf6\x99\x0d\x17\x45\xb6\x48\xde\x6f\xf3\x38\x42\xb8\x30\xd9\x22\xf9\xf0\xdc\x7e\xca\x16\xc9\x8d\x4c\xea\xdb\xe4\xf3\x69\x64\xe8\x6f\xf3\xeb\x50\x88\xd9\x73\x33\xda\x84\x21\xe1\x53\x14\x0a\x31\xe4\x99\x44\x9b\xb3\x10\xbd\x6a\xed\x86\x62\x7b\x1c\xac\x83\x71\xce\x0c\xd9\x83\x08\xf2\x28\x16\xc1\x85\x6d\xc7\x34\xc7\xee\x70\x39\x96\x76\x7c\xfb\xf1\x1e\xf9\x38\x38\xab\xa4\xab\xb3\x76\x19\x3d\xfd\x48\xfc\x2c\xf7\x7e\x5b\xd5\x0f\xc2\x07\x64\x59\xea\x3a\x59\x52\x9a\xe7\xd1\x7c\x3e\x8b\xff\x6a\x3d\x17\xe2\x4f\x4b\x11\xcf\x27\x0c\xd9\x54\x26\xf5\x83\x2f\x77\x1f\xef\xd2\x4d\xe0\xfd\x08\x00\x00\xff\xff\xea\x67\x0e\xde\x0d\x05\x00\x00"
-
-func runtimeSyntaxPonyYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPonyYaml,
-               "runtime/syntax/pony.yaml",
-       )
-}
-
-func runtimeSyntaxPonyYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPonyYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/pony.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPovHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xc8\x2f\xe3\x8a\xd1\xd3\x28\xc8\x2f\xab\x09\xf0\x0f\xab\x29\xc8\x2f\x2b\x4a\xac\x04\x31\x83\x1c\x23\x35\x55\xb8\xb8\x00\x01\x00\x00\xff\xff\x4e\x1a\x2e\x88\x20\x00\x00\x00"
-
-func runtimeSyntaxPovHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPovHdr,
-               "runtime/syntax/pov.hdr",
-       )
-}
-
-func runtimeSyntaxPovHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPovHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/pov.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPovYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xdb\x8e\xd3\x30\x10\x7d\xcf\x57\x84\xb2\x42\x6d\x25\xda\xf7\x70\x91\xf8\x02\x10\x0f\x48\xa8\x53\xca\xc4\x99\xa4\x06\xc7\x63\x8d\x27\xd5\x46\x0c\xff\x8e\x9c\xad\xb4\x65\xa5\x5d\x3f\x1d\x4f\xce\x65\x72\x92\xde\x07\xd2\x39\x51\x53\x27\xbe\x54\x55\x47\x4a\x4e\x9b\xba\xaa\xeb\xba\x2e\xcf\x22\x8e\xd4\xd4\x2b\x80\xdd\x3a\xf1\xc5\xbe\x7c\xfe\x66\x89\x2f\x82\x73\x81\x5f\x3f\x7d\xdf\xdc\xad\xaa\x4a\xa6\x40\xb9\x59\x34\x6f\xeb\x24\x94\x84\x5d\x53\xaf\x7e\x1c\x0e\x4d\x4e\xe8\xa8\x39\x1e\xb7\xaf\x6f\x2f\xeb\x8e\x5c\x40\xa1\xcd\xea\x2a\xca\x8a\x4a\x23\x45\x5d\xb2\xda\x75\x4e\x67\x12\x32\x37\x07\x1f\x3b\x12\x53\xc1\x98\x03\x2a\xd9\x88\x2a\xfe\xde\x84\x8b\xc2\xb2\xc3\x40\x1b\x80\xf6\x39\x23\x16\x3d\xf3\x20\x98\xce\xde\x59\x60\x87\xea\x39\xda\x94\x4c\xfc\x70\x56\xeb\xbc\x90\x5b\x46\x2e\xf8\x94\xa8\x3b\xb5\xf3\x4b\x76\x3d\x0f\xa7\x52\x97\x15\xc0\x7d\x9f\x49\x17\x88\x41\x4d\x86\xd6\x3a\x9f\x15\xa3\xa3\x87\x85\x7b\x96\xf1\xd6\xcd\x77\x14\xd5\xf7\x9e\xa4\xb4\x53\xfc\x94\xee\x75\x12\x7a\x96\x54\x38\xa1\x6c\x7a\xca\x3c\x89\x23\x6b\xd1\xfd\x1e\x84\xa7\xd8\xbd\xa8\xe9\x79\x30\x6e\x7f\x91\x53\x73\x38\x92\xe0\x7f\x2f\x35\x8f\x2d\x87\x1d\x27\x12\x54\x2e\x92\x35\xc0\x1f\x03\xf8\x6b\x00\x6b\x03\xd8\x18\xc0\x3b\x03\x38\x1a\xc0\xc1\x7e\x1a\x00\x80\x01\xdc\xd9\x7b\xfb\x68\xaf\xec\x83\xbd\x31\x00\x7b\xfc\x78\x89\x9c\xc7\x70\x8d\x9e\x62\xa9\xb3\xec\x98\x2c\x4f\xed\x02\x6e\xd3\x1d\x8f\xd7\x42\xf7\xfb\xdd\xf6\xe9\x74\xb9\x96\x93\x15\x65\x21\x01\x5c\x49\xe5\x50\xec\x96\x98\xed\xfe\x71\xf6\xf0\xf7\xd5\x87\x63\x55\xfd\x0b\x00\x00\xff\xff\x47\x8d\xbf\x93\xce\x02\x00\x00"
-
-func runtimeSyntaxPovYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPovYaml,
-               "runtime/syntax/pov.yaml",
-       )
-}
-
-func runtimeSyntaxPovYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPovYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/pov.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPrivoxyActionHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x28\xca\x2c\xcb\xaf\xa8\xd4\x4d\x4c\x2e\xc9\xcc\xcf\xe3\x8a\xd1\x83\x30\x54\xb8\xb8\x00\x01\x00\x00\xff\xff\xfe\x61\x30\x6f\x1a\x00\x00\x00"
-
-func runtimeSyntaxPrivoxyActionHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPrivoxyActionHdr,
-               "runtime/syntax/privoxy-action.hdr",
-       )
-}
-
-func runtimeSyntaxPrivoxyActionHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPrivoxyActionHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/privoxy-action.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPrivoxyActionYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x41\x6e\xdb\x30\x10\x3c\xc7\xaf\x20\xd4\x1c\x9c\x0a\xeb\x07\xe8\x92\x43\x9f\x61\x39\x00\x43\xae\xa4\x45\x28\xae\xb0\x5c\xd9\x31\xc2\xfe\xbd\xa0\x6d\x39\x49\x6b\x14\xe8\xa5\xa7\xdc\x8c\xe1\xec\x78\x67\x76\xa0\x8e\x02\xea\x71\xc2\xc6\x4c\x42\x7b\x7e\x3d\x82\x75\x4a\x1c\x57\x2b\x8f\x8a\x4e\x1b\xb3\x32\xc6\x98\x42\x8b\x76\xc4\xc6\x54\x6d\xbb\x39\x53\xee\xab\xd5\x4a\xe6\x80\xa9\x39\x51\xc0\x38\x8e\x49\x6d\xd4\xcd\x33\x73\xd8\x74\x36\xa4\xc2\xdf\xbe\x6d\x9b\x34\x59\x87\xcd\x6e\xd7\xb6\xf0\x1c\xd8\xbd\xac\xb7\x57\xec\xed\xe7\x2e\xdf\x3f\x54\x37\x25\x54\xe6\x3f\x15\xea\x7f\x51\x58\x96\x80\xb5\xf5\x1e\x06\xb4\x1e\x25\xbb\xc1\xc6\x1e\xe1\x15\x3a\x96\x83\x15\x8f\xbe\xfc\xca\x2e\x10\x46\xbd\x90\xa0\xa3\xa0\xf8\x3b\xa8\xb6\xef\x0b\xc8\x51\x0b\x5a\x82\x03\xde\xa3\x1c\x84\x14\xb3\x93\x39\xba\x01\x3e\x8d\x2c\x20\x75\x10\x39\x22\x8c\x56\xdd\x70\x05\xa3\xe3\x91\x62\x0f\x8e\xf9\x85\x30\x2d\x38\xcf\xda\xf3\x0d\x3c\xa1\xec\x51\x16\x65\x8f\x36\xd2\x68\x15\xa1\xa7\x2e\x65\xcf\x87\xd8\x8b\xf5\x08\x83\xea\x04\x7b\x94\x44\x1c\x73\x67\x93\x82\xa0\x27\x41\xa7\x29\x5f\x6c\x75\x2c\x0e\x41\xf1\x55\x61\x64\x8f\xf9\x92\xc4\xc9\x8c\x90\xc7\x3c\xd8\xe8\x03\x82\x4d\x80\xe3\xa4\x47\xf0\xec\xe6\x11\xa3\x7e\x78\xa0\xd1\xf6\x98\x07\xf2\x08\xd6\x39\x9c\x14\x82\x8d\xfd\x7c\x05\x97\x94\x3c\xa5\x89\x13\x95\xca\x9c\x1f\x3a\xe1\x71\x31\x71\x02\xa8\x2b\x5b\x50\x47\xe8\x21\x51\x74\x17\x01\xc1\x0e\x45\x16\xd2\x9c\x50\xc0\xf6\x65\x87\x40\x23\x69\xd1\x8f\xe8\x34\x5f\x0f\x00\xa1\x78\x5d\x94\xf2\x24\xb8\x2f\xff\xef\x78\x9c\x04\xd3\x29\x8d\x25\x88\xfc\x29\xca\xe5\xd8\x9f\xc1\xcb\xb1\xd3\x79\x74\xb9\x05\x70\x0c\xc7\x9c\x50\xcf\xfe\xcf\x7d\x46\xf9\x7b\x83\xdb\xb6\xfe\x2a\xe0\x57\x01\xff\x6f\x01\xd3\x84\x8e\x6c\xf8\x31\x58\x39\x55\xb0\x6d\x37\x8f\xef\xa4\xb1\x84\xd9\x98\x6a\xfd\x94\xdf\x3f\xa5\xbb\x87\x6f\xeb\xed\xd3\xdb\x6e\xf3\xfd\xe1\xf1\x7e\xe1\x52\xf4\x27\x17\x83\x95\xcd\x61\x20\xc5\x33\xd9\x54\x1f\xe6\xea\x5b\xec\xc6\x54\x77\xb5\xa9\xb3\xa9\xef\xea\x6a\xf5\x2b\x00\x00\xff\xff\x10\xd4\x24\x50\x6a\x06\x00\x00"
-
-func runtimeSyntaxPrivoxyActionYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPrivoxyActionYaml,
-               "runtime/syntax/privoxy-action.yaml",
-       )
-}
-
-func runtimeSyntaxPrivoxyActionYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPrivoxyActionYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/privoxy-action.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPrivoxyConfigHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x28\xca\x2c\xcb\xaf\xa8\xd4\x4d\xce\xcf\x4b\xcb\x4c\xe7\x82\x72\xf5\x21\x5c\x15\x2e\x2e\x40\x00\x00\x00\xff\xff\x25\x83\xf6\xe6\x20\x00\x00\x00"
-
-func runtimeSyntaxPrivoxyConfigHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPrivoxyConfigHdr,
-               "runtime/syntax/privoxy-config.hdr",
-       )
-}
-
-func runtimeSyntaxPrivoxyConfigHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPrivoxyConfigHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/privoxy-config.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPrivoxyConfigYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x52\xcb\x6e\xe4\x38\x0c\x3c\xa7\xbf\x42\xf0\xe6\x90\x6c\x83\xd9\xcb\xee\xc5\x97\xfd\x90\x20\x01\xd4\x52\xd9\x16\x42\x3d\x86\xa2\x3b\x69\x8c\x3e\x7e\x20\xa7\x9d\x64\x82\xb9\xe8\x41\x16\xc9\x62\x91\x53\x60\xe8\xa5\x60\x34\x45\xc2\x39\xbf\x5d\xc8\xe5\x34\x85\xf9\x70\xf0\x50\x38\x1d\xcd\xc1\x18\x63\x3a\x2c\xd9\x88\xd1\x0c\x57\xdc\x3f\xef\xb8\xdb\xe1\x70\x90\x95\x51\xc7\x0d\x47\xa6\xaa\x55\x44\x24\x1d\xcd\x70\x67\x9d\x43\x51\x0a\x49\x21\xfd\x05\x4f\x82\x1f\x2b\xaa\xd6\x66\x9d\x86\x9c\x6a\xcf\xdc\xac\x8f\x21\x91\xf5\x5e\x50\x6b\xb3\xcc\xf9\x95\xdc\x1c\x76\x30\x39\x59\x93\x5b\x42\x9a\xdb\x69\x9d\x26\x08\x71\x88\x41\x9b\xcb\xb1\xf4\x88\x90\x13\x31\xce\xe0\xd6\x49\xf9\x20\xfd\x4e\xd8\x0a\x50\x5d\xac\xf4\x48\x8f\xd3\xda\xcf\xc9\xae\xac\x54\x21\x67\x08\x69\x88\xc8\xab\x36\x8f\x74\xa1\xce\xb6\xd6\x86\x64\x4f\x0c\xfa\x92\x7c\x37\xc1\x07\xa5\x2b\xef\xdd\x26\x88\x59\x41\x8b\x6a\x21\xcd\xf3\xcc\xf8\xe6\xf9\x30\x4e\x59\x1c\xe8\xc4\xd9\xbd\xd4\x36\x05\x56\xc8\xd6\xfc\x94\xe5\xd5\x8a\xdf\x6f\x78\xba\xb2\x27\x81\x4a\x40\xdd\x3d\x54\x7b\xe8\xbf\xdf\xbe\xf6\xf7\xff\x7f\x6d\xb1\xc9\x33\xc8\x56\x42\x2c\x7a\x21\x9f\x5d\xcf\xb4\x4a\xaa\x94\x5f\xda\x92\xab\xf6\x51\xb6\x17\xa0\x90\xe5\x70\xc6\x87\x0c\x1c\xaa\xe2\x73\x10\x9c\xe7\x2e\x26\xe7\x79\x23\x1a\xed\x1b\x39\x0e\x48\x4a\x9f\xfa\xd6\x56\x20\x71\xd3\x65\x53\xaf\x48\x5f\xa2\x90\xa6\x4c\xab\x70\xab\x21\xcd\x0c\xd2\x45\x60\x3d\x7c\xeb\x1c\xa1\x1f\x05\x6b\xe1\xa0\xc4\x56\x66\xd0\x94\x25\xd6\xa6\x88\x85\x7b\xd5\xab\x6e\x9a\x19\x62\x15\x54\x42\x01\x87\xd4\x47\xa9\xb2\x56\xdd\x28\x6d\xaf\xcf\x6a\x6b\x85\x50\xb4\x69\xb5\x7c\xff\xf8\x38\xd6\x62\x1d\xc6\xa7\xa7\xe1\xba\x9b\x2e\xc7\x7d\x33\x9f\xdb\x17\xff\xfd\x5f\x77\x8f\xcf\x3f\x9f\x1e\xfe\xbe\xff\xff\x76\xc7\x86\xe4\xb7\x46\x17\x2b\x0f\xaf\x4b\x50\xbc\x83\xcd\xf0\x25\xee\xf8\x27\xf4\x68\x86\x9b\xa3\x39\x36\x73\xbc\x39\x0e\x87\x5f\x01\x00\x00\xff\xff\xcd\xb0\x1c\xf1\x60\x03\x00\x00"
-
-func runtimeSyntaxPrivoxyConfigYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPrivoxyConfigYaml,
-               "runtime/syntax/privoxy-config.yaml",
-       )
-}
-
-func runtimeSyntaxPrivoxyConfigYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPrivoxyConfigYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/privoxy-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPrivoxyFilterHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x28\xca\x2c\xcb\xaf\xa8\xd4\x4d\xcb\xcc\x29\x49\x2d\xe2\x8a\xd1\x83\x30\x54\xb8\xb8\x00\x01\x00\x00\xff\xff\x80\x7f\x47\x23\x1a\x00\x00\x00"
-
-func runtimeSyntaxPrivoxyFilterHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPrivoxyFilterHdr,
-               "runtime/syntax/privoxy-filter.hdr",
-       )
-}
-
-func runtimeSyntaxPrivoxyFilterHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPrivoxyFilterHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/privoxy-filter.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPrivoxyFilterYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xd0\xcb\x6a\xc3\x30\x10\x05\xd0\x75\xf4\x15\x83\x9a\x85\x5d\x21\x7f\x80\x36\x21\xa4\x6a\x1a\x08\x5d\xb8\xa6\x1b\x3f\x40\x38\x63\x2c\xb0\x15\x23\x4d\x1f\x69\xfd\xf1\x25\x71\xfa\x24\xdb\x6e\x87\x33\x5c\xee\x6d\x6c\x87\x74\x18\x50\xc1\xe0\xed\xf3\xfe\xf5\x20\x1b\xdb\x11\x7a\xc6\x76\x48\x58\x93\x02\x06\x00\x70\x64\xce\xf4\xa8\x80\x17\x45\x32\x91\x39\x67\xcc\x3f\x75\x18\xd4\x89\x48\x08\x64\x08\x7b\x74\xa4\x80\x57\xd1\xed\x66\x9b\xe9\x74\x5c\x6d\x37\xfa\x3e\x93\x77\x7a\x79\xa3\x53\x79\xf1\x98\x2d\xd7\x6b\x9d\x8e\x0f\x3a\x7d\xd4\xe9\x1f\xf9\xfb\x38\xc9\x58\x41\x6e\xe4\x9b\x2c\x05\x3f\x27\xdb\x1d\x3a\xb2\x8d\x45\xff\xef\xd1\x9f\x91\xf5\xde\x05\x32\x8e\x92\x30\x60\x6d\x4d\xb7\x6a\x8d\x3f\xad\x53\x14\xc9\xe2\x1b\xf5\xe7\x3d\xa2\x6a\xcc\x73\x15\x06\x53\xa3\x2a\xcb\xf8\x2a\xca\xab\xf7\x32\xb9\x8e\x17\xf3\xaf\x0e\xee\x58\x42\xd6\xad\xf1\xc9\x4b\x6b\x09\x27\x0c\xfc\xc7\x9f\xb8\xa4\x15\xf0\x99\x00\x31\x82\x98\x09\xce\x3e\x02\x00\x00\xff\xff\x80\x28\x92\xe2\xd1\x01\x00\x00"
-
-func runtimeSyntaxPrivoxyFilterYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPrivoxyFilterYaml,
-               "runtime/syntax/privoxy-filter.yaml",
-       )
-}
-
-func runtimeSyntaxPrivoxyFilterYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPrivoxyFilterYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/privoxy-filter.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxProtoHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x28\xca\x2f\xc9\xe7\xd2\x88\xd1\xd3\x00\xb3\x34\x55\x54\x34\xb9\xb8\x00\x01\x00\x00\xff\xff\xb6\x32\x61\x16\x15\x00\x00\x00"
-
-func runtimeSyntaxProtoHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxProtoHdr,
-               "runtime/syntax/proto.hdr",
-       )
-}
-
-func runtimeSyntaxProtoHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxProtoHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/proto.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxProtoYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcf\x6e\x9c\x3c\x14\xc5\xf7\xf3\x14\x16\x1a\x69\x20\xf9\x60\x48\xf2\x29\x6d\xd8\x44\x55\xdb\x48\x5d\x54\xd9\x74\x31\x2a\x17\x55\x06\xee\xa4\xd6\x80\xed\xda\x97\x6a\x46\xb9\x79\xf7\x0a\xc8\x1f\x44\x54\x35\x1a\xaf\xe0\xfa\xd8\xbf\xa3\x73\xbc\x55\x0d\xd2\xc1\x62\x26\xac\x33\x64\x16\x8b\x1a\x09\x2b\xca\x16\x42\x08\xd1\x6f\x6a\xd9\x62\x26\x82\x10\x20\x09\x07\x49\xb4\x5c\x46\xc1\x62\xe1\xba\x06\xfd\x28\x8b\x85\xaa\x51\x93\xda\x2a\x74\x99\x08\x00\xca\xfc\x43\xfc\xfd\x47\x91\xa7\xf1\xd5\xf0\x71\x0a\x50\x06\x8f\xd2\x11\xd6\x8b\x42\xa5\x29\x7c\xcf\x67\x97\x7c\x71\xce\x97\xff\x47\x11\x7b\x72\x4a\xdf\x71\x79\x20\xf4\xec\xd0\xa2\x24\xac\xb9\x34\xa6\x61\x87\xbf\x3a\xe5\xb0\xe6\x56\x5a\x36\x96\x94\xd1\xb2\x61\xa3\xd1\x6c\xb9\xd3\xca\xe8\x09\xc2\x93\x24\x6c\x51\xd3\x13\xa7\xb5\xc6\x11\x7b\x74\xbf\x55\x85\x8c\xba\x6b\xd9\x1f\x34\xc9\x3d\x5b\x59\xed\xe4\x1d\x3e\xde\xc8\x2d\x7a\xdf\xff\x3a\x5b\xb1\x43\xea\x9c\xf6\x8c\x7b\x42\xed\x95\xd1\x9e\xc9\x44\x13\x4c\x65\xb4\x27\x39\x50\x56\x00\x00\x61\x98\xa7\xf1\x45\x71\x9d\xa7\xf1\xbb\xe2\xfe\xec\xbf\xf3\x87\x28\x5a\xfd\x4d\xbc\x1f\xc3\xb9\x91\xf1\x76\xd4\x3e\x2b\xfd\xa1\x2d\x4d\x93\x94\x4e\x56\x3b\x24\x9f\x89\x20\x0f\xa3\xfb\x87\x82\x01\x72\x06\x28\xe6\x37\x26\xba\x6b\xcb\x21\xf8\xb0\x4f\x3e\x8d\xaf\x86\xbc\x19\xa0\x4c\xa7\x94\x7e\xd8\x17\x37\x3b\x3d\x66\x3e\x16\xd9\x2f\x4f\xd2\x0d\xc1\x05\xc1\xf3\x0c\x75\x3d\x9b\xf8\x9d\xb2\x43\xba\x00\xc9\xcb\x74\xf2\x26\x9e\xd6\x94\x64\xb1\x52\xb2\xf9\xf8\x53\xba\x97\xa3\x6f\xb5\xb3\x9a\xbb\x59\x1d\x65\xc6\x3a\xb4\xce\x54\x99\x08\x92\xe4\x34\x38\xce\x69\x3b\x3c\xad\x57\x0e\xd7\xeb\xb9\xc5\xe5\x3f\xcc\x90\xa9\x4d\x5f\xdb\xb7\xdb\x4f\xb7\xbc\xd9\x6c\xf8\xe6\xcb\xe6\xeb\xe7\x28\xbb\x7e\x03\x0c\xe0\xe4\x55\x3f\x70\xb2\x3e\x9e\xf8\x27\x00\x00\xff\xff\x63\xdb\x6f\x09\x09\x04\x00\x00"
-
-func runtimeSyntaxProtoYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxProtoYaml,
-               "runtime/syntax/proto.yaml",
-       )
-}
-
-func runtimeSyntaxProtoYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxProtoYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/proto.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPuppetHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x28\x2d\x28\x48\x2d\xe1\x8a\xd1\x2b\x28\x50\xe1\xe2\x02\x04\x00\x00\xff\xff\x49\xdf\x66\x23\x0e\x00\x00\x00"
-
-func runtimeSyntaxPuppetHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPuppetHdr,
-               "runtime/syntax/puppet.hdr",
-       )
-}
-
-func runtimeSyntaxPuppetHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPuppetHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/puppet.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPuppetYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xd1\x6e\xe3\x36\x10\x7c\xf7\x57\x28\x3a\x05\x91\x64\xd8\xb9\x97\x3e\x9c\xd0\x26\x39\xa0\x2d\xd0\x87\xe2\x50\xa0\x40\x83\x23\x29\x87\xa6\x56\x16\x61\x89\x54\x48\x2a\xb1\x9d\x4d\xbf\xbd\xa0\x2c\xdb\xb2\x83\x03\x1a\x04\x32\x39\x33\xdc\x19\x5a\xeb\x2d\x65\x0d\x6e\xdb\x42\x16\xb4\x5d\xdb\x82\x9b\x4c\x0a\x70\x20\x5c\x16\x4c\x82\x20\x08\x3c\xad\x78\x03\x59\x10\x52\x3a\x6f\xdb\x28\x9c\x4c\x4c\x57\x83\xcd\x7a\x7a\x16\x14\x50\xf2\xae\x76\x59\x10\xe6\x84\x64\xb6\xe5\x02\x32\xc6\x62\xc2\x67\x3b\xe6\x1f\x9f\x67\x5f\x16\x6c\x9a\x84\x83\x5c\x16\xa0\x9c\x2c\x25\x98\xf9\x0b\x37\x7d\xd5\xc8\xcb\xb2\xa3\x38\x63\xd3\x83\x78\x9f\x2b\xa4\x74\x19\xf3\x6e\x05\xdc\xa2\xd0\x4d\xdb\x39\x30\x28\x8c\x56\x08\x1b\x10\xe8\x13\xf6\x8f\x65\x27\xd6\xe0\x70\x65\x74\xd7\x62\xa5\xad\x43\xa9\x1c\x98\x92\x0b\xc0\xf5\x4f\xb5\x5e\x49\x85\x0d\x17\xbc\x73\x95\x36\x72\xc7\x9d\xd4\x1e\x90\x35\xaf\x25\xb7\xfd\xaa\x96\xd6\x61\x23\x36\xd8\xe8\x4e\x39\x54\x7c\x25\xb5\x5d\x08\xdd\x34\x5c\x15\xa7\xad\x72\x5c\xb8\x8b\xed\xde\x76\xc0\x7a\xf7\xd1\xba\x80\x16\x54\x01\x4a\x6c\xc7\x28\x58\xc1\xeb\x7d\x8c\x31\xba\x71\x52\x95\x7a\x0c\x9d\xd5\xb6\x60\x5e\xa4\x80\x8b\xed\x47\x87\x81\xf8\x68\x72\x20\xce\x7d\x06\xf4\xcc\xca\xc9\x06\x5a\x30\x52\x17\xa8\xb4\x93\xe5\x16\x5b\x2e\xd6\x7c\x05\x68\xc0\xea\xce\x08\xb0\x68\x74\xff\x3e\xac\xa8\xa0\xe8\x6a\x38\x2e\x8a\x85\xe3\x76\x8d\x16\xea\xa5\xd6\x35\x70\xe5\x97\x8d\xde\x6b\x86\x2b\x58\x5b\x2d\x0e\xaf\x03\x8a\xc5\x1a\xb6\x1e\xea\x3f\x9c\x77\x71\xb2\xd8\x62\x67\xc1\xe0\x4b\xcd\x15\x6e\xbb\xc6\x40\xab\x71\x57\x5a\xdc\x69\x05\xb8\x6b\xb5\xae\x91\x2b\x51\x69\x93\x50\xba\x3c\xf4\x8d\x75\xdc\x41\x03\xca\x0d\xcd\x23\x6a\x6e\x2d\x16\x50\x4a\x05\x28\x4b\x84\xda\x02\x76\xaa\x80\x12\xa5\xaa\xc0\x48\x67\xcf\x8e\x6f\x9b\xa5\xae\xb3\x20\x8c\x7f\xc1\x19\xfe\x8b\x77\x3f\xee\xde\x98\xd2\x08\x1f\xf0\xe1\x21\xb9\xa7\x74\x49\xbe\xce\xbe\xb3\x29\xf9\x3c\xfb\xf2\x75\xf6\x7d\xe1\x7f\x01\xe9\xc7\x9a\x24\xe8\xff\x18\xe6\x49\x76\x90\xb2\xe9\xc8\x5e\x68\x65\x1d\xef\xc3\xdf\xc6\x24\xbf\x65\x18\x53\x4a\xe9\x6d\x92\xa4\xb7\x44\xea\x66\xc3\x52\xbc\x36\x94\xbe\xc5\x24\x7f\x1f\xc8\xf7\x24\x49\x29\x7d\x1f\xe8\xcb\x4a\x73\xeb\x8c\x54\xab\x2c\x08\x9f\x48\xfe\xc4\xd2\x27\xbc\xde\x50\xfa\xe6\x8f\xfb\x53\x3f\x96\xd3\x30\x26\x39\x0d\x07\x13\x1a\x7a\x97\x10\xaf\xc9\x5f\xff\xb0\xfb\x51\x81\x23\x12\x93\x3c\xf1\x48\x32\x20\x3f\x93\xfc\x8e\xa5\x77\x47\x9e\x90\x9c\x79\x9e\x1d\x91\x88\xe4\x91\x47\xa2\x23\x92\x93\x3c\xf7\x48\x3e\x20\x57\x24\xbf\x62\xe9\xd5\xf1\x8b\x6c\x41\x48\x5e\xef\x27\xc7\xff\xba\xc4\x4d\x4c\xf2\x9b\xe1\x0a\x37\x49\x92\xde\xe0\x35\x79\x7e\x65\xe7\xf9\x7b\x60\x1c\xff\xf9\x95\x9d\xd2\xf7\xec\x38\x7c\x0f\x8c\xb3\xf7\xc0\x38\xfa\xf3\x2b\xbb\x48\xee\xc7\xc8\xbe\x27\x3f\x91\xfc\x8d\xcd\xd3\x08\x3f\x45\x17\xe4\x7c\x69\xe4\xaa\xea\x35\x27\xd1\x49\xe5\x74\xa1\x7d\x0f\x3d\x3e\x3e\xe2\xdf\xdf\x7e\xfd\x86\xbf\xff\xf1\xf8\xe7\x6f\x48\xe9\xfd\xfe\xff\xd4\xa8\x7e\x16\xb8\x99\xa8\xb8\x99\xbf\x56\xd2\xc1\x7e\x30\x07\xe1\x68\x46\x4f\xa3\x70\xf2\x5f\x00\x00\x00\xff\xff\x70\xcf\x41\x80\xfe\x05\x00\x00"
-
-func runtimeSyntaxPuppetYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPuppetYaml,
-               "runtime/syntax/puppet.yaml",
-       )
-}
-
-func runtimeSyntaxPuppetYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPuppetYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/puppet.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPython2Hdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xa8\x2c\xc9\xc8\xcf\x33\xe2\x8a\xd1\x2b\xa8\x34\x52\xe1\x8a\x53\x56\xd4\xd3\xd2\xd7\x48\xcd\x2b\x53\xd0\xd6\xb4\x87\x4a\xaa\x70\x01\x02\x00\x00\xff\xff\x4b\xc8\xc6\xf0\x26\x00\x00\x00"
-
-func runtimeSyntaxPython2HdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPython2Hdr,
-               "runtime/syntax/python2.hdr",
-       )
-}
-
-func runtimeSyntaxPython2Hdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPython2HdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/python2.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPython2Yaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x93\x23\x35\x0c\xbd\xe7\x57\xf4\x66\x17\x76\x66\x97\x64\xa9\xbd\x11\xbe\x96\xa2\x8a\x23\x27\x4e\xa4\x43\x97\xdb\x56\xa7\xcd\xf8\xab\x64\x75\x92\x1e\xc4\x7f\xa7\x6c\x77\x27\x99\xec\x4c\xc1\x85\x9a\x9a\xe8\x45\xb1\xe5\xa7\x27\x59\xee\xb4\x01\x1a\x03\x6c\xaa\x30\x52\xef\xdd\xc7\xc5\x42\x01\x81\xa4\xcd\xa2\xaa\xaa\x2a\xfd\xec\x84\x85\x4d\xb5\xac\xeb\x75\x18\x3f\xbe\x59\x66\x7f\x0f\x42\x01\x6e\xaa\xe5\x1f\xaf\x5f\xad\xdf\x7d\xb8\x03\x77\xa8\xde\xdf\xff\x38\xc5\x78\xb3\x5c\x2c\x70\x30\x10\x37\x8b\xbc\xfa\x75\xd5\x0e\xda\xd0\x4a\xbb\xca\xb7\x7f\x82\xa4\x98\xdd\xab\x4a\x7a\x17\x49\x38\xca\xe1\xdb\xbb\x5f\xbd\x03\x8e\x60\x3a\xfe\x0d\x07\xe0\x5f\x84\x89\x70\x5f\xd7\x6d\x39\xf3\x49\x1c\x41\x84\xba\x1d\x08\x5e\x08\xd5\x34\xad\x88\x10\x9b\x86\x9b\x26\x6f\xd2\x2e\x63\x69\x44\x2c\x5e\x05\xed\xb0\x2f\x48\x4b\x2a\xc0\xcb\x6c\x53\xd6\x19\x58\xb0\x2d\x60\x9c\x30\xf5\x5e\x15\x9c\x24\xc9\x20\x91\x6d\x9a\x17\x38\x76\x83\x93\xa4\xbd\x9b\x29\x6a\x05\x8e\x74\xa7\xb3\x70\x89\xa4\x68\x23\x8b\x10\xcc\xc8\x52\x18\x23\x5a\x03\x2c\x7b\x64\x69\x03\x4b\x6f\x83\x36\xc0\x0a\x4c\x4a\x95\x95\x4e\xff\x07\xeb\x15\xc3\x41\x18\x86\x13\xc8\xfc\x91\xb8\x72\xa7\x0d\x01\x72\xe7\xd1\x0a\xe2\x3d\x50\xde\xb3\x37\xbe\x15\x26\x72\x2f\x62\xfe\xde\x8b\xd8\x73\x0f\x26\x70\x0f\x27\xd6\x8a\xb5\x0b\x03\xb1\x76\x04\xe8\x58\x47\x9d\x15\x94\xc0\x3a\xc6\xa1\xcd\x4a\xb1\x01\xc7\xc6\xcb\x14\xc6\x8a\x13\x5b\xed\xd8\xc1\x89\xd8\x4b\x62\x1f\xc0\xb1\x47\xc5\xc1\x1f\x19\x85\xdb\x03\xa3\x38\x36\x25\x2a\x82\x1a\x24\x30\x82\xf1\x42\x31\x42\x40\x46\x3f\x38\xc5\x71\x62\x37\x38\x9d\x92\x3d\x08\x8c\xfc\xa8\x03\x37\x8d\xb6\xc1\x23\xdd\xca\x19\x03\x48\x2d\x4c\x55\xf4\xaf\x92\xf4\x2f\x0a\xda\x34\xa2\x2d\x15\x12\x4a\x15\xeb\x8a\x4d\x02\x17\x60\x43\xb1\x1e\x50\xc2\x04\x6d\x30\x70\x9a\xb0\x93\x82\x66\x48\x42\xbb\xb9\x5b\xcc\x6c\x13\xfb\x19\x6b\x02\x7b\xd3\x43\x60\xa2\xd1\x53\x64\xa5\x0f\xb3\xb5\xbe\x10\xe9\x8c\x9f\xe2\x4f\x65\x9a\xf1\x39\xd4\x1e\xe8\x12\x21\xd5\xac\x80\x89\xa0\x76\x9a\x26\x30\xdb\xc3\x6c\x01\x8b\xcb\x40\x69\x76\xe3\x5d\xe9\x70\x13\x7b\xdd\x95\xdf\x66\x1e\x76\x28\x09\x39\x28\x4b\x9c\x77\x8f\x80\x3e\x63\x3f\xe5\xe2\x0b\xb9\xe0\xe3\x64\x8f\xd9\xe2\x2c\x2e\xce\xea\xe2\xac\x2a\xce\x19\xe3\x55\xca\x08\x01\xa6\x9c\x53\x1f\x14\x70\x45\x09\xcf\x0b\x67\x52\x38\x9d\x8c\xe7\x23\xf1\x6a\xf9\x35\x1c\xda\x02\x4e\xd3\x8e\x78\x25\x6a\xbc\x12\x35\x5e\x8b\x1a\xe7\x05\xd3\xee\xbc\xf9\x69\xd7\xa5\x99\x38\xb7\x59\x99\x8f\xb9\xc1\xf2\x50\x21\xd4\x6e\xcf\xad\xf7\x86\xdb\xa1\xeb\x00\xb9\x1d\x09\x04\xa2\x18\x33\x8a\x9c\xef\x4e\x69\x58\x9e\xba\x8b\x53\x87\x30\xb8\xc1\x02\x0a\xca\x57\x16\x38\x37\x03\x77\xe8\x1f\xc1\x45\xc8\x57\x91\x8d\x8e\xc4\xa9\x72\x6c\x45\x60\x0b\xd6\xe3\x78\xd0\x70\xe4\x32\x3a\x39\xa0\x0f\x80\x34\x32\xc2\x01\x30\x42\xbe\x51\x9c\x93\xe3\x48\x82\xb4\x9c\x0e\x8e\x84\x1c\x87\x00\xc8\x34\x04\x03\x9c\xd2\xc8\xb7\xce\x2b\xe0\x53\xbe\xaf\x4f\x73\x56\xd0\xa5\xee\x7a\x69\x62\x29\xe8\xaa\xad\x58\x3d\xfe\xb4\xfa\xbd\xf9\x7a\xf5\xcd\xee\xfd\x65\xe7\x03\x8c\x47\x8f\x6a\xde\x96\x68\x80\x85\xf3\x30\x16\x4e\xb1\x88\x2c\x62\x04\x24\x6e\x11\xc4\x43\x91\x88\xd3\x1d\xd3\x6e\x48\x73\xae\x4b\xb3\x8e\xc1\xe8\x8e\xc1\x44\x60\x38\x49\x08\xc4\x9d\x76\xc2\x98\x31\xcd\xb6\x24\x94\x9d\xa6\x1a\xeb\x8e\xcb\xbc\x60\x9d\x66\x17\x1b\x61\x5b\x25\xd8\x79\x62\x8f\x1c\x52\xf0\x80\x49\x4f\x14\x3a\xa6\x39\x44\x03\x3a\x26\x1c\xf9\xd8\x27\xe9\x8f\x9a\x7a\x1e\x35\x18\x75\x2b\x82\xf4\x28\xc8\xe3\x9c\x4c\x8b\x7a\xdf\xd3\x1e\x01\xdc\xa6\x5a\x7e\x5a\xbf\xdb\xde\xed\x2e\xcb\x53\x2d\xae\x57\xc7\xd1\xb6\xde\xac\x67\xf7\xa6\x5a\xde\x6d\xd7\x9b\x6f\xbf\x7a\xff\x8e\xbf\x7f\x55\xd7\x5f\x7c\xda\xf1\x77\xfc\x03\x7f\xe0\x15\x7f\x79\x7f\x09\x13\x04\x82\xa3\x1e\x22\xdc\x04\x6a\x51\xc8\x07\xa0\x98\x03\xdd\xdd\xff\xf5\xf7\x8e\xeb\x7a\xcb\x75\xbd\xbb\xda\xed\x86\xfc\x4c\xdd\xbc\x84\xeb\xe2\x2e\x35\xd8\xe6\x8a\xe5\x4c\x6f\x97\x95\x7e\xde\x4c\xd1\xaa\x54\x3d\xcc\x95\xcb\x7f\xcb\xb3\x1f\x9c\x7a\xc6\x5b\xde\xf9\x6a\xbb\xbb\xc4\xb5\xb9\xf4\x9f\xc5\x7b\xfb\xf6\xed\x6d\xb0\x27\xae\x67\x22\xfd\x2b\xc3\xcf\xd9\x5d\x3c\xf1\x41\x87\x9c\x7c\x5d\xaf\x6f\x4f\x39\x7f\xbd\x3d\xa9\x3c\x36\x3f\xf7\x02\x2f\x5b\xff\x2b\x9d\xcf\xd3\xfb\x3f\xc9\xbc\xa0\xf2\xeb\x5b\x12\x6f\x9e\x55\xf8\x9f\x00\x00\x00\xff\xff\x69\x10\xa7\x9c\xf8\x09\x00\x00"
-
-func runtimeSyntaxPython2YamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPython2Yaml,
-               "runtime/syntax/python2.yaml",
-       )
-}
-
-func runtimeSyntaxPython2Yaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPython2YamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/python2.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPython3Hdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xa8\x2c\xc9\xc8\xcf\xe3\x8a\xd1\x2b\xa8\xd4\x30\xd6\xb4\x57\xe1\x8a\x53\x56\xd4\xd3\xd2\xd7\x48\xcd\x2b\x53\xd0\xd6\xb4\x87\x48\x43\x64\x00\x01\x00\x00\xff\xff\x44\xb1\x1b\x97\x2b\x00\x00\x00"
-
-func runtimeSyntaxPython3HdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPython3Hdr,
-               "runtime/syntax/python3.hdr",
-       )
-}
-
-func runtimeSyntaxPython3Hdr() (*asset, error) {
-       bytes, err := runtimeSyntaxPython3HdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/python3.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxPython3Yaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x61\x53\x1b\x47\x12\xfd\xce\xaf\x58\x84\xef\x90\xe0\x24\xdb\xe5\xba\xba\xb2\xee\x2e\x98\x80\x70\x5c\x8e\xc1\x06\x92\x4a\x85\x95\xb7\x66\x67\x7b\xb5\x1d\x66\x67\xb6\x7a\x66\x85\x44\x3a\xf9\xed\xa9\x99\x59\x21\x10\xc6\xc9\x97\x14\x50\xd3\x6a\x6d\xbf\x7e\xfd\xba\xa7\x97\x12\x15\xb8\x65\x03\xe3\xa4\x59\xba\xca\xe8\xad\xad\x02\x1c\x48\x37\xde\x4a\x92\x24\xf1\xdf\x6a\x51\xc3\x38\xe9\xa5\xe9\xa8\x59\xf6\x5f\x0d\x0e\x9e\xf5\xc2\x57\x15\x88\x02\x68\x9c\xf4\x3e\xef\x6c\x8f\xf6\x9e\xf7\x41\xcf\x93\xfd\xc1\x41\x44\xe9\x9e\xdb\xa2\x56\x81\x8d\x50\x3b\x49\xde\xa2\x72\x43\xd4\x89\xc9\x7f\x01\xe9\x6c\x70\x0f\x13\x69\xb4\x75\x42\xbb\x90\x23\xef\x4f\x94\xc2\xc6\xa2\xe5\x53\xa3\x81\x2d\xa8\x92\xa5\xb2\x7c\x49\x2d\xf0\x89\x50\x16\x06\x69\x9a\x47\x0a\x0f\x40\x85\x73\x84\x79\xeb\xe0\x09\xdc\x2c\xcb\x85\x05\x9b\x65\x9c\x65\x21\x08\x75\xb0\xa5\x12\x36\x7a\x0b\xc8\xdb\x59\xb4\x50\xba\x68\x18\x19\x4e\xaf\x43\x30\x6a\xa8\x73\x20\xdb\xd9\xae\x32\x45\xb4\xbd\x48\xc1\xf0\x84\xb3\xec\x09\x8e\x65\xab\xa5\x43\xa3\x57\x14\xb1\x00\xed\xb0\xc4\xa0\xa3\x27\x29\x72\xcb\x42\x29\x16\x7a\xc9\xc2\x4a\x44\xce\x51\x73\x6e\x8c\xe2\x9c\x40\x5c\x37\x06\xb5\xe3\x7c\xe9\x40\x10\x89\x65\xb0\x2c\x4b\xa1\x94\xc8\x15\xb0\xac\x88\x43\x3d\x91\x1a\x4b\x53\x37\xe8\xfd\xa6\x6e\x14\x2c\xb8\x00\xe5\x65\xe2\x02\xfd\xdf\xbc\x36\x05\xc3\x5c\x28\x86\x05\x48\x2e\x0d\xd5\xc2\xf1\x0c\x5c\x78\x66\xa6\x4c\x2e\x94\xe5\x4a\xd8\xf0\xb9\x12\xb6\xe2\x0a\x54\xc3\x15\x2c\x18\x0b\x46\xdd\xb4\x8e\xd1\x62\x90\x59\x02\xa3\xb5\x6d\x1e\xd2\x33\x3a\x20\x56\xa0\x59\x19\xe9\x41\x6a\xb1\xe0\x1a\x35\x6b\x58\x38\xd6\x46\x07\x37\x1b\xe9\xd8\x34\xa0\xd9\x50\xc1\x8d\xb9\xe1\x86\x7c\x79\x04\x0d\x31\x99\x56\x17\x6c\x3b\x32\xd6\x90\x83\x82\x6d\x5b\xf3\x5c\x90\xe5\x2c\xc3\xba\x31\xe4\x36\x95\xb6\x0d\x48\x14\x2a\x89\xf5\x27\xbe\x2b\x4f\x69\x9d\x65\x51\xed\xa2\x60\xa1\x8b\xa0\x21\xcb\xba\x61\x69\x80\xe4\x5a\x32\x69\xb4\x14\xce\x1f\x4e\xa0\xb6\x6b\x09\x41\xa1\x83\xda\x9f\x56\xa1\x04\x6f\xb0\x9f\x9b\x95\xb0\x05\xce\xb9\x54\xe6\xbe\xa2\xe0\x42\xc8\x0c\x5c\x0c\xe9\x24\x5d\x30\x7a\x16\xe8\x69\x60\x97\x0f\x4b\x65\x0c\x79\x0c\x54\xb6\xc2\xd2\x31\xd6\xc2\xd5\xad\x62\xf4\xe0\x18\x2c\x8d\x8e\xbd\x60\xa8\xe7\x40\xe1\x60\x34\xc4\xe8\xa5\x44\xea\xc2\x6c\x9b\xc7\x76\xa0\xa3\x16\x02\xe2\xc2\xac\x9a\xa3\x67\xdc\xc1\x7b\x54\x0f\xaa\x61\x76\xd7\xa5\x5b\x20\x13\x9b\x44\xdc\x18\x1b\x5a\x44\x9e\x2a\x79\xaa\xe4\xd5\xa2\xae\xda\x40\x95\xa0\x01\xb1\xea\x5f\x87\x4b\xe1\x5b\x8f\x4c\x86\x98\x02\x44\x47\xed\xee\x68\x73\x26\xcf\xe9\xae\xdb\x9d\x50\x76\x25\x94\xf5\xce\x36\xe7\x85\xa1\x41\x96\x3d\xe8\xb8\xdf\x5d\xab\x16\xc7\x3d\x16\x2e\x52\xbc\x32\x9b\xf7\x64\xe3\x6a\x84\x2b\xe1\x5b\x06\xba\xad\x81\x84\x03\x2e\x51\x79\xad\x62\xe3\x4a\x32\xb7\xa0\x2d\x44\x95\x15\x5a\xc7\xb5\x68\xb8\x86\xda\xd0\x72\x8e\x70\xc3\x71\x93\x71\x43\xa6\x01\x72\x4b\x2f\xcc\x0c\x98\x60\x0e\x64\x21\x8c\x2f\xaf\x2a\x10\x0e\x65\x97\x3b\x96\xd3\x00\xb1\x6b\x1b\x05\xec\x79\xf3\x2d\x36\x0f\x67\xb9\x80\xd2\x77\xf8\xa9\x75\x51\x40\x99\x5c\x89\xe1\xed\xe1\xf0\xe7\xec\xc5\xf0\xf5\x74\x7f\x1d\x79\x0d\xcb\x1b\x43\xc5\x2a\xcc\xe7\x86\x1a\xee\x36\xa1\x6f\x9e\xb0\x2c\xac\xf5\x53\x23\xec\x52\x4b\x16\x37\x02\x5d\xdc\x31\x51\xa6\x30\xf1\xa8\x5b\x3f\xd8\x65\x18\x6e\x50\x58\x32\x28\x0b\x0c\x0b\x09\x8d\xe3\x12\xb5\x50\x6a\xe9\x17\x87\x97\xaa\xee\x56\x06\x63\xc9\xf1\x76\x32\x6a\x46\xcb\x4a\xd4\x79\x21\xd6\xd7\x5e\x9b\x38\x51\x3e\x0b\x09\xb4\x5e\x30\xd7\x92\x66\x47\x4b\xbe\xa9\xfc\xc2\xba\x41\x57\xf1\x12\x41\x15\x9b\x9a\x48\x43\xc2\x19\x5a\xd5\x96\x13\xce\x2a\x37\x23\x00\x3d\x4e\x7a\x6f\x46\x7b\x57\xfd\xe9\xfa\x71\xdf\x95\xfb\x4f\xdb\x65\x9d\x1b\x35\x5a\xb9\xc7\x49\xaf\x7f\xf5\xfb\xe7\xd1\xf8\xbf\xff\xda\xdf\xe3\xff\x6f\xa7\xe9\x3f\xde\x4c\xf9\x7f\xfc\x0d\x3f\xe7\x21\xff\x73\xb0\x06\x6a\x04\x81\x76\x15\x58\xd8\x80\xca\x49\xc8\x6b\x70\x36\x40\xf5\x07\xbf\xfe\x36\xe5\x34\xbd\xe2\x34\x9d\xde\x8b\xd6\x6d\x78\x69\x6c\xbc\x97\x46\xd1\x1d\x9b\x72\xf5\x72\xf8\x7a\xda\xcf\x0e\xae\x7c\x2b\x07\x7b\xfd\x34\x1d\xf5\x83\xbd\xf6\x0d\x0e\x06\x07\x7d\x78\xe4\xf4\xfa\x44\x65\xb0\x16\xea\x6b\x39\x5e\xe4\x21\xee\xe5\x74\xb0\x1f\x82\xba\x97\x13\xea\xaf\x06\x99\x98\xec\x3f\xf7\xa2\x76\x12\x23\xdd\x57\x83\x16\x1d\x43\x31\x2c\x57\x71\x3b\x49\x05\x8b\xad\xcd\x28\xeb\x08\xf5\x6c\xdc\x49\x95\xf8\x59\xa5\x30\xa7\xe1\xa7\x77\xe7\x07\x5d\x7c\xc1\x1b\xff\xbd\x48\xae\xa6\x6b\xdc\x3a\x0c\xfa\x23\xbc\xdd\xdd\xdd\x4d\xb0\x07\xae\x2f\x20\xfd\x29\xc3\x4d\xc0\x7e\xda\xe3\x67\x83\xb5\xd7\x5e\x63\x13\xf4\x48\xd3\xd1\x66\xa6\xbb\x8f\x9b\xd9\xe2\x0b\xec\xa8\x12\xb4\x0e\xfd\xab\x94\x1e\x95\xd8\xdf\xfd\x9b\x09\x3d\xa1\xf6\xce\x26\x91\x67\x8f\x94\x4e\x76\x92\xc3\xf7\x87\xc9\x91\x29\x20\x71\x62\x66\x93\xfe\xc7\xc9\xc7\xe4\xd5\xbf\x5f\x0c\x36\x98\x38\x53\x18\x5f\xca\xe5\xd9\xf1\x19\x9f\xbc\xfb\xe9\xc3\x84\xbf\x3b\x3c\x7a\xcf\xdf\xfe\xf0\x96\x4f\xcf\x2e\x27\x7c\x72\xf8\x89\x3f\x9c\x4e\x3e\x9c\x9d\xbe\x3b\xe2\xf3\xc9\x27\x3e\x3f\x99\xf0\xbb\xe3\xc9\x21\x7f\x3c\x3b\xbf\xe4\x34\x3d\x88\xbf\xbc\xbd\xbd\xcd\x6f\xbf\x3f\xbb\xb8\xe0\x8b\xc9\x84\x3d\xde\x11\x5f\x5c\x1e\x5e\xf2\xf9\x8f\xc7\x7c\x74\x3e\x39\x1e\x8c\x0f\x7a\x5b\x7f\x04\x00\x00\xff\xff\x62\xf6\x44\x00\x11\x0b\x00\x00"
-
-func runtimeSyntaxPython3YamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxPython3Yaml,
-               "runtime/syntax/python3.yaml",
-       )
-}
-
-func runtimeSyntaxPython3Yaml() (*asset, error) {
-       bytes, err := runtimeSyntaxPython3YamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/python3.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xe2\x8a\xd1\xd3\x28\xaa\x09\xd2\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\x9b\x58\x03\x2f\x0c\x00\x00\x00"
-
-func runtimeSyntaxRHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRHdr,
-               "runtime/syntax/r.hdr",
-       )
-}
-
-func runtimeSyntaxRHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxRHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/r.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x91\x6f\x6b\xdb\x40\x0c\xc6\xdf\xfb\x53\xdc\xbc\x6c\x8d\xd7\xd9\xeb\xdb\x79\xff\x08\x5d\x02\x85\xcc\x85\x2e\x85\x40\xd5\x85\xb3\x23\x37\x47\xed\xb3\xa7\x93\x69\x02\xfa\xf0\xe3\x6e\x5d\x52\xb2\xc1\xf6\x66\x07\x06\xe9\x91\xc4\xef\x91\x55\x9b\x06\x79\xd7\x63\xae\x28\x8a\xd6\xc8\x58\x71\x1e\x29\xa5\x94\x2f\x58\xdd\x62\xae\x62\x80\x6c\x4c\x72\x95\x8c\xe2\x28\xa2\xa1\x41\x97\x47\xa1\x25\x55\x8e\x35\x63\x8b\x96\x43\x57\x39\x6e\x4c\x49\x9a\x76\x42\xf8\x7d\x30\x84\x52\x12\xea\x7b\xc1\xc6\xa1\xd4\x1d\x49\x3d\xd8\x8a\x4d\x67\xc5\xd4\x62\xea\x20\x1b\x2b\x16\xb7\x2c\x1e\xe5\xc4\x3d\x18\xae\x36\x42\xd8\xa3\x66\xe9\xc9\x58\x16\xa6\x9d\xff\xce\xb5\xaf\x18\xb7\xb8\xba\x9e\x0a\x21\x0f\x64\xe5\x61\x63\x1a\x4c\x00\xca\xf8\xd1\x4f\xd5\x59\xc7\x7a\x6f\x67\x21\xa1\x7b\x26\xb3\xc9\xfc\xeb\x54\x8a\xeb\xf9\x5c\x2e\x6c\x2d\x85\x2e\xa4\x98\x48\x31\x59\x19\xcb\x78\x87\xb4\xf2\x31\xa1\x6e\x42\x50\x75\x6d\xdf\xe0\xf6\x67\xbc\xd1\xa4\x2b\x46\x5a\xfd\x89\x93\xd9\xa1\x2d\x91\x72\x15\x8f\x01\xca\x9b\xb3\xf4\xed\xed\x29\x40\x29\x00\xe5\xd9\xd6\xa7\x93\x74\xa6\xd3\x3a\x88\xc9\xaf\x61\xb7\x6b\xcb\xae\xc9\xba\x1e\x49\x73\x17\x86\x6f\xb2\xfc\xdd\xeb\xd3\x57\xf2\xe1\x19\xc0\x8b\x5b\x79\x2f\x1f\xe5\x8d\xa4\xf2\x52\x00\xbe\x09\xc0\x28\x89\x55\xb4\x47\xb7\xe1\x87\x87\xd4\x3f\xc7\x9a\xfc\xc2\xcf\xe3\xbd\x84\x76\x9d\xab\x78\x74\x10\x1e\xaf\xa6\x9e\xbc\x54\x71\xb7\xee\x3c\x7c\x71\xf9\xf9\x52\x96\xcb\xa5\xcc\x2e\x96\x5f\xa6\x49\xfe\x29\x8e\x8e\xd7\x74\x4c\xc6\xde\xfd\xce\x84\xf8\x18\xfa\x54\x71\xf7\xa6\x0f\x97\x00\xc8\xfe\xe2\xe5\x40\xea\xb1\x32\xba\x39\xdf\x68\x3a\x8c\xfe\xab\x9d\x93\x63\x37\x27\xff\xc3\xcc\x8f\x00\x00\x00\xff\xff\x74\xc8\xc8\xba\x33\x03\x00\x00"
-
-func runtimeSyntaxRYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRYaml,
-               "runtime/syntax/r.yaml",
-       )
-}
-
-func runtimeSyntaxRYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxRYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/r.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRestHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x2a\x2e\xe1\x8a\xd1\x2b\x4a\x2d\x2e\x51\xa9\x89\xd1\x2b\x2a\x2e\x51\xe1\xe2\x02\x04\x00\x00\xff\xff\xb3\x85\x03\xda\x14\x00\x00\x00"
-
-func runtimeSyntaxRestHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRestHdr,
-               "runtime/syntax/reST.hdr",
-       )
-}
-
-func runtimeSyntaxRestHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxRestHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/reST.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRestYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4d\x6a\xc3\x30\x10\x46\xf7\x3a\xc5\x20\x7b\x25\xd7\x82\x76\x39\xe0\x93\x64\xe2\x1f\x9c\x49\x11\x38\x8a\xd1\x4c\x17\xa5\xed\xdd\x8b\x6a\x9b\x16\x2a\x82\xb4\xf8\x78\xef\x6d\xa4\x6b\x58\x58\xdf\x57\x46\x48\xa2\xc6\x5c\x58\x79\x56\x34\x00\x00\x59\xc5\xe9\xc6\x08\x96\xc8\x27\x16\xad\x3f\xf3\x10\xad\xad\x31\xe9\x6d\x61\xd9\xc2\x16\x44\x27\xe5\x1b\x47\xfd\x69\x1d\x91\x3b\xf5\xee\xdc\x6c\xd3\xee\xd1\x9a\x78\x4d\xf7\x19\xc1\x22\x1e\x6c\xbe\x47\xd1\x29\xaa\x17\x4d\x21\xbe\x22\xd8\xf1\xd4\x8f\xe7\x66\x1c\x3e\x9e\x9f\x5e\xbe\x1e\x64\x7b\x37\x1e\x49\xb8\x70\xd4\x70\x0d\x9c\x10\x6c\x4f\xe4\x89\x3c\x78\x57\x97\xfd\x30\xfc\x75\xdb\x07\xd8\xbe\xaa\xaa\xe6\x1f\xdc\x1e\x41\xe4\x7e\x95\xac\x3c\x87\x69\xc9\xb6\xeb\xba\x22\x6f\xdb\xb6\xc8\x89\xf6\x5b\xb6\x36\x9f\xac\xbe\x03\x00\x00\xff\xff\x66\xfb\x63\xc1\x98\x01\x00\x00"
-
-func runtimeSyntaxRestYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRestYaml,
-               "runtime/syntax/reST.yaml",
-       )
-}
-
-func runtimeSyntaxRestYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxRestYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/reST.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRenpyHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4a\xcd\x2b\xa8\xe4\x8a\xd1\x2b\x2a\xa8\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\xb8\x46\x2f\x78\x0e\x00\x00\x00"
-
-func runtimeSyntaxRenpyHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRenpyHdr,
-               "runtime/syntax/renpy.hdr",
-       )
-}
-
-func runtimeSyntaxRenpyHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxRenpyHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/renpy.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRenpyYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\xb1\x72\xdc\x3c\x0c\x84\x7b\x3d\x05\xc7\xbf\x0b\x5f\x61\x3f\xc0\x75\x7f\x9f\x2a\x71\x79\x0d\x44\xad\x4e\x88\x21\x90\x01\xc1\x39\xcb\x83\x87\xcf\x9c\x94\x38\x99\x49\x85\xe1\xec\x0e\xb9\x1f\x17\x33\x0b\x7c\xab\x38\x27\x83\xd6\x6d\x18\x26\x38\xb2\x9f\x87\x94\x52\xba\x8b\x4a\x2b\xce\xe9\xe1\x72\x79\xb1\xba\x3d\x3e\x0c\x83\x75\x41\x3b\xf4\xff\xd2\xb7\x6c\x5c\x3d\x09\xe9\xb5\xd3\x15\xe9\x0d\xdb\xad\xd8\xd4\x5e\x76\xfd\x39\x35\x27\xc7\x0a\xf5\xfd\x8a\xf1\xa9\x6e\xbe\x14\x0d\x56\xf6\x00\x99\x6c\x31\x61\x66\xc5\x7d\x50\x17\x0f\xa1\x11\x12\x99\x44\xe2\x7b\x5f\x6b\xf0\x4a\x57\x84\xd0\x06\xc3\x74\x1c\x5a\x36\x40\xa3\xf9\x26\x08\x37\xd2\x36\x17\x5b\x63\x85\xf6\x68\x4b\xb9\xc5\xc2\xd3\xdd\x05\x45\x90\xc7\x8d\x7d\x89\x8f\x62\x13\x2c\x46\x2c\xac\x53\x54\xea\x0d\x51\x85\xb6\x68\x5e\x6a\xcc\x34\xa1\x74\xdf\x27\x6b\xfc\xe8\xe8\x38\x5d\x2e\xe3\xc3\x2f\xca\xff\x5f\xbf\xfc\x43\x76\x7c\xda\x0e\x65\xa8\x20\x8f\x51\x4a\x7e\x8b\xbc\x14\xce\x88\x4a\x46\x22\x90\x78\x7a\x8f\x2d\x4e\x4f\xb5\xb4\x28\xf3\xdc\xe0\x41\x9a\x97\x62\x41\xc2\x57\x8d\x0c\x75\x58\x38\x0b\xe2\xa3\x94\xf5\x14\xce\x2b\x42\x58\x41\x16\xa0\x76\x0f\x44\x52\x17\x8a\xd6\xc7\xca\xef\x90\x3f\xc9\x9e\x13\x4f\x50\xe7\x99\x61\x47\x96\x0a\x6b\xdc\x1c\xea\x7f\x99\x5a\x45\x66\x92\xdd\xf1\x98\x7e\x43\xbd\xd2\x98\xf2\x42\x46\xd9\x61\x2d\x91\x21\x69\xf1\x44\x22\xe5\x86\x29\xb1\xa6\xaf\xf7\x8d\x48\x6d\xaf\xf8\x93\x1b\x66\xe5\x78\xcc\x3f\x43\x68\x96\x3e\xe1\x9c\x8e\x76\x87\x9f\x01\x00\x00\xff\xff\x38\x17\x3e\x93\x54\x02\x00\x00"
-
-func runtimeSyntaxRenpyYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRenpyYaml,
-               "runtime/syntax/renpy.yaml",
-       )
-}
-
-func runtimeSyntaxRenpyYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxRenpyYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/renpy.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRpmspecHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x2a\xc8\x2d\x2e\x48\x4d\xe6\x8a\xd1\x03\x51\x2a\x35\x31\x7a\x50\x11\x15\x2e\x2e\x40\x00\x00\x00\xff\xff\xd9\xd5\x93\x8f\x1c\x00\x00\x00"
-
-func runtimeSyntaxRpmspecHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRpmspecHdr,
-               "runtime/syntax/rpmspec.hdr",
-       )
-}
-
-func runtimeSyntaxRpmspecHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxRpmspecHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/rpmspec.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRpmspecYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\xdf\x6f\xdb\x36\x10\x7e\xae\xff\x0a\x41\x73\x11\xc9\x81\x0d\x03\x71\xdd\x44\x0f\x0b\xd2\x25\x18\x0a\x64\x71\x60\x37\x7d\x98\xe9\x18\x34\x75\x96\x89\x50\x24\xcb\xa3\xbc\x64\xbd\xfd\xef\x03\x25\xff\xc8\x1a\x7b\x03\x16\x20\x77\x1f\xc9\xef\x3e\xde\x91\x47\x79\x29\x15\xf8\x17\x0b\x59\xe4\x6c\x89\x16\x44\xab\x95\x83\x07\xe1\xb3\xa8\x15\x45\x51\x14\xd6\x35\x2f\x21\x8b\x62\xc6\x7a\x81\xd0\x26\xc6\x7a\x1b\x72\x3b\x6e\xb5\x5c\xa5\x00\xb3\x9a\xdc\x8d\xac\x03\xeb\x8c\xa8\xd9\x8b\xe4\xb3\x30\x9a\x6e\x9e\x85\xaa\x50\xae\x61\x84\x0d\xce\x61\x84\x69\x16\x1f\x8c\xf8\x54\x49\x95\x5f\x39\xb1\xa2\x1d\x92\x21\x9b\xca\x01\xee\x95\x6a\xc2\x46\x2b\xe0\x63\x6a\xbf\x18\xbd\x54\x52\x78\xa4\xd1\x02\x8d\x02\x0f\x48\xf7\xce\xac\x65\x0e\x48\x63\xf8\x56\x49\xf7\x0a\x30\x96\xf4\x3a\x8c\xa5\x74\xa3\x57\x5c\x0b\x40\x9a\x54\x45\x01\xe8\xb1\x49\x66\xaf\x56\x0f\x5f\xc5\x0b\x53\x96\xa0\xf3\x20\x0e\x63\xf8\x46\x93\xca\x5a\x05\x25\x68\x7f\xb4\xd0\x1b\x6b\xc4\x8a\x26\xe0\x24\x57\x74\x67\xd0\x54\x4e\x00\xdd\x19\xcb\xfd\xf1\x7a\xae\x2a\x6f\x82\x7e\xf0\xa1\x0e\xda\x4c\x04\x7c\xfc\x0c\xec\x8b\x93\xc5\xca\xd3\xad\x14\xa0\x11\x68\x52\x95\x25\x77\x2f\x5b\xbf\x2b\xfb\x5a\xa2\x77\x72\x51\x79\x69\x34\x7d\x05\x9d\x1b\x47\xf7\x5c\x3c\xf1\x02\x1c\xfd\xea\x4c\x65\x69\x52\xa7\x39\xed\x77\x2f\x66\x1d\xba\x0f\xa9\x6e\x70\x73\x22\xc6\xf8\x70\x04\x4b\xf9\x7c\x2c\x9b\x3b\x5e\x02\x7d\x05\x87\x61\x8f\x31\x28\xe0\x08\xf4\xe0\x14\x3d\x8c\x6f\xdf\xc6\xd4\xc3\xf0\x87\x9e\x3b\x9f\x45\xf1\x63\xd2\x64\xd0\xec\x9d\xc6\x3b\x02\xe8\x3c\x8b\xe2\x6c\x3f\xd1\x74\x65\x34\x9d\xb5\xde\xe4\x91\xc8\xb3\xf3\x21\xc9\x41\x30\x1f\x82\x19\x9e\x0f\x89\xfb\x95\x32\x9a\x24\x1f\x0e\x88\x2b\xbb\xe2\x8d\x85\xf5\x87\x1d\x18\x36\xc8\x0a\xbe\x85\xb0\xde\x83\x8f\x84\x96\x3b\xd1\xd8\xf5\x45\xe3\x87\x03\xee\xca\xf5\x99\xa2\xe0\x06\x8b\xc6\xa9\x92\xa4\x45\x2a\xa5\x45\x50\x64\xad\xa8\xff\x25\x82\x93\x80\x01\xdb\x3d\x1c\x0e\xa8\x1c\x9e\x3f\xd5\xa6\x94\xda\xd3\xa4\x90\xe4\x70\xd8\xef\xf7\x49\x9e\x7d\xec\x13\x9e\x5d\xf4\x9f\x6b\x4b\xda\x70\xb7\x3b\x94\x7f\x16\xbc\x0c\x2b\x24\x97\x7a\xe3\x0d\x86\x81\xc1\x1d\x59\x18\x8d\x9e\x6b\xdf\x0b\x2d\xa0\x8b\x70\x5b\x71\xc2\x18\x63\x3d\x9a\x3e\xb2\x78\x96\x76\x58\x4c\x27\xbb\x99\x93\x59\xda\x39\xd9\xc6\xa2\xe7\xbe\x6e\xf6\x2c\x8a\xdf\x27\x72\x49\xa0\x10\x08\x74\x2e\x97\x94\xc3\x52\x6a\xa0\x42\x99\x05\x57\x54\xe9\x66\x9c\x1e\x0c\x9d\x5f\x26\xd3\xab\xee\xef\x73\xde\xfd\x73\xde\xef\x5e\xcc\x67\x9d\x03\xbc\x37\x2d\xf1\x9e\xb1\xef\x3f\xf6\x01\x63\x7f\xfd\x4b\x27\xfc\x87\xd8\x7c\xfe\x7f\xe5\x02\xb3\x9d\x8c\xef\x7f\x9b\x7f\x7a\xf8\x7c\x7b\x3d\x1f\x8f\x46\x5f\x52\xc6\x7e\xde\x55\x61\x41\x48\xae\x42\x1f\xbf\x4f\x16\xe1\xc5\xb4\x49\xac\xb8\x2e\x40\x99\x82\xc4\x0a\xc4\x53\x9b\x84\x02\xae\xdb\x94\x03\x0a\x27\x6d\x78\x8b\xe9\xc1\xf8\xf0\x61\x46\x92\xe1\xda\x94\x6a\x93\x6d\x1e\x2a\x85\x5b\x6f\x1f\x8e\xb0\xae\x5e\xae\x74\xb0\xde\x71\x8d\x64\x0d\xfa\xda\x84\x49\x83\xbe\x9e\x3d\x1c\xed\x9d\x2c\xc2\x87\x60\xe3\xa5\xde\xa2\x4d\xf8\x66\x54\x69\x5a\x83\x93\xcb\x97\x26\xfd\x57\x0d\x56\x6e\xce\x28\x79\xa4\xe9\x34\x43\xcb\x05\x64\xb3\x59\xfa\x53\x32\x7d\xfc\x3e\xeb\x75\xd2\xcb\xf6\x8f\xcd\x18\x36\x66\xac\xd3\xeb\xec\x56\xa4\xce\x41\xfb\xae\x58\x71\xd7\xfb\x23\xfc\x32\x34\x32\x51\xfc\x4a\xf1\xf4\x10\x3b\x8b\xe2\x77\xa7\xd1\x29\x45\xa7\xef\x4e\xb7\xcb\xde\xe4\x26\x8b\xe2\x2f\xa3\xeb\x51\x76\x19\xb7\xfe\x0e\x00\x00\xff\xff\x1f\xe9\xab\x07\x0a\x07\x00\x00"
-
-func runtimeSyntaxRpmspecYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRpmspecYaml,
-               "runtime/syntax/rpmspec.yaml",
-       )
-}
-
-func runtimeSyntaxRpmspecYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxRpmspecYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/rpmspec.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRubyHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x2a\x4d\xaa\xe4\x8a\xd1\xd3\x28\x4a\xaa\x29\x4a\xcc\x4e\xad\x49\x4f\xcd\x2d\x2e\x48\x4d\xd6\x54\xa9\x89\xd3\x70\x4f\xcd\x4d\xcb\xcc\x49\xad\x49\xce\xcf\x4b\xcb\x4c\xd7\x2b\x2a\xad\x09\x4a\xcc\x4e\x05\x0b\x39\x27\x16\x80\xe9\xb0\xc4\xf4\xa2\xc4\xbc\x12\x30\xdb\xbd\x34\xb1\x28\x05\xcc\x72\x2c\x80\xc8\xba\x25\x16\x43\xa4\x02\x72\x4a\xd3\x33\xf3\x20\xcc\x7c\xb0\x1a\x4d\x15\xae\x38\x65\x45\x3d\x2d\x7d\x8d\xd4\xbc\x32\x05\x6d\x4d\x7b\x90\x43\x34\x14\x6a\x54\x34\xb9\x00\x01\x00\x00\xff\xff\xa6\xd8\x44\x07\x93\x00\x00\x00"
-
-func runtimeSyntaxRubyHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRubyHdr,
-               "runtime/syntax/ruby.hdr",
-       )
-}
-
-func runtimeSyntaxRubyHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxRubyHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ruby.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRubyYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x51\x53\xa3\x48\x17\x7d\xfe\xfc\x15\x88\xf1\x13\x92\x0a\x71\x1e\x97\x72\x45\x67\x27\x5a\x56\xb9\xba\xeb\x38\xbb\xd6\x74\x37\x4c\x03\x37\x91\x92\x34\xd8\xdd\x8c\x64\xbd\xee\x6f\xdf\x6a\x82\x31\x92\x68\xcd\xcb\xbe\x2c\xa5\x40\xce\xb9\xf4\x39\x7d\xfb\xde\x86\x49\x96\x83\x9e\x97\xe0\x5b\xb2\x8a\xe7\x5b\x5b\x29\x68\x48\xb4\x6f\x6d\x59\x96\x65\x19\x52\xf0\x19\xf8\x96\x4d\xa9\xe7\xc8\x18\x25\xbf\x03\x9c\xc2\x4c\x95\x90\xb8\x3d\x0c\x9d\x53\x98\x99\x28\x4c\x0a\x31\xc9\xa6\x9e\xac\xf0\x8a\xdf\x41\x03\xfd\xc2\xcb\xe6\xfa\x07\x9f\x4a\x2e\x74\x73\x7f\x5a\x71\x99\x36\x77\xc7\xe5\x82\x3d\xe1\x6a\x41\xfd\x96\x57\xd3\x4c\x2c\x6e\x8b\x26\xc6\xed\xd9\x8d\x8d\x5b\xe0\x29\x48\xdf\xb2\xc3\x9d\x6d\xaf\x3f\x72\x40\x7c\xb7\x06\x6e\x60\x0c\x3b\x16\xf6\x5c\x7b\x6b\x4b\x56\x39\x28\xbf\x89\x1e\x5a\x49\x31\x9b\x81\xd0\x5e\x2c\xb3\xe9\xad\x5e\xa0\xe6\x50\x9a\x4b\xed\x5b\xf6\xce\x8e\xbd\xc4\x40\xa4\xbe\x65\xf7\x5e\x80\x95\x91\x9e\x8f\xa1\xa5\x8b\xb4\xf0\x2d\xdb\xb9\xb9\xb9\xc1\xeb\xcb\x4f\x97\x78\x72\x76\xf3\xeb\x18\x3f\x7e\x39\x45\x4a\x83\xc5\x9f\x6b\xbf\x96\xdf\xa0\xfb\x2f\xc9\xb6\xba\x4a\x73\x0d\x8d\xb2\x59\xae\xd8\xf9\x38\x3e\x3d\xbb\xc0\xf1\xc5\x27\xe4\x79\xc6\x15\x72\x91\x62\x0c\xd3\x4c\x60\x2c\x81\xdf\x61\xc2\x15\x60\x92\x73\xa5\x30\x85\x89\xf9\xcf\x04\xa4\x94\x06\x98\x16\x08\xb9\x02\x73\xca\x26\x08\x22\x45\x10\xaa\x92\x80\x93\x42\x62\x36\xc1\x4c\xe0\xac\x48\xab\x1c\x50\x40\xad\x51\x64\x39\x8a\x42\x63\x21\xb1\x94\xd9\x77\xae\x01\x4b\x59\x98\x3a\x82\x14\xcb\x2a\xce\xb3\x04\x25\xa4\x05\x4a\x50\x49\x05\x28\x41\xcb\xb9\x39\x57\x52\xa0\x82\x7c\x82\xaa\x2a\x41\xa2\xbe\x05\x81\x95\x30\x66\x2a\x91\x83\x52\x58\x09\x9d\xe5\xf8\x60\xf0\x87\x5b\x53\x19\xf3\x0c\xf2\xd4\xa5\x34\x7e\x49\xb6\x50\x9a\x37\x73\x76\x28\xed\xe1\x11\x1e\x1d\xb9\x01\xa5\x31\x39\x1e\x7e\x65\x03\xb2\x3f\xfc\xe9\x78\xf8\x35\xe2\xc3\xbf\x58\xbf\xfb\x8c\x27\xaa\x59\xdc\x14\x96\x13\x64\x66\xd0\xfd\xda\xc4\xf3\xe1\x84\xb5\xd7\x88\xf5\x37\x68\xad\x3f\x17\x93\xfd\x0f\x8c\xec\x7f\xf8\xc1\x78\x33\x7a\x23\x11\xb1\xbe\x43\xf6\xbc\xbd\xf6\xc7\xc0\x0d\x1c\x20\x94\x0e\x59\xb0\x04\x96\xe3\xed\x58\x57\x55\x3c\xb7\xec\xcf\xf3\x59\x5c\xe4\x6a\x53\x02\xb2\xc0\x75\x88\xf5\x3f\x86\xa1\xeb\x3f\xcf\x9c\x0d\x36\x67\xcb\x54\x48\x14\x9d\x9c\x9d\x8f\xa3\x08\xa3\xe8\xfc\xec\x62\x1c\x45\x6f\x64\x76\xe4\x90\x70\xc4\xd0\xa1\x94\xd2\x91\xeb\xf6\x47\x24\x2b\x66\x35\xeb\xe3\xae\xa4\xf4\xd1\x21\xe1\x53\x4b\x3e\xb9\x6e\x9f\xd2\xa7\x96\x5e\x56\xe6\x32\x11\x4a\xcb\x4c\x4c\xd7\x3b\x63\xaf\xdb\x19\x2b\x80\xba\xcb\xca\xc6\x2f\xa5\x5e\xb7\x5f\x2c\xc2\x7e\x58\x83\xda\x5d\x91\x55\xe4\x3d\x95\x4e\x57\xaa\x66\x01\xbc\x58\xf2\xe4\x0e\x74\x87\x7e\xd5\xef\x94\x3e\xda\x6b\x6c\xab\x4d\x9f\xd6\xa9\x0d\x72\x2f\xb2\x29\x4c\x78\x95\x9b\x71\xbd\x37\x33\xeb\x41\x0d\xc9\xfa\xd4\xbf\x75\x67\xfe\xed\xbf\x36\x71\xdf\xb2\x77\xc9\xef\x7f\xb2\x80\xd2\x47\x53\x8e\xa6\x0a\xf1\x19\x71\x48\xe8\x1a\xc4\x6d\x91\x03\x12\x1e\xb2\xfe\xe1\x92\x27\x24\x64\x86\x67\x4b\xa4\x47\xc2\x9e\x41\x7a\x4b\x24\x24\x61\x68\x90\xb0\x45\xb6\x49\xb8\xcd\xfa\xdb\x6b\xad\xbe\x62\xe7\xfe\x81\xbd\x76\xd3\x00\xab\x66\xee\x1f\xd8\x8b\x97\x86\x5d\xb5\xd2\x00\xab\x4e\x1a\x60\xd5\xc8\xfd\x03\x7b\xdf\xc7\xa2\x1e\x8c\x99\xba\xe3\xa5\xee\x58\xa9\x57\x9c\xd4\x1d\x23\x75\xc7\x47\xdd\xb1\x51\xbf\xe9\x22\x2e\x8a\xbc\xdd\x6b\xb4\xac\x00\x27\xdc\xbc\x56\xcc\xfb\xe2\xfa\xea\xcb\x18\x4f\x8e\xcf\x3f\x8f\xf1\xe2\xec\x7c\x75\xdf\x69\xab\xac\x28\x41\x72\x5d\x98\x5d\x93\x0c\x07\xa3\xfe\xcf\x07\x87\xdb\x7f\xef\xfe\x1f\x43\x86\x94\xc6\x7e\x27\x7a\x59\x93\x96\xed\x10\xc7\x7d\x7c\x32\x51\x04\x29\x65\xee\x9a\xa9\x19\x4f\x64\xb1\xde\x24\x07\x07\xc3\x60\x2f\x18\x5f\x5e\xef\x05\xdd\x76\x09\xc7\x97\xd7\xef\x6c\x3d\xa5\x84\x52\x16\x89\xa7\x6e\x21\xe6\xcd\xe2\x9b\x0f\x95\x41\xd0\x7e\x9c\xfc\x13\x00\x00\xff\xff\xb4\x51\xbb\x47\x63\x09\x00\x00"
-
-func runtimeSyntaxRubyYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRubyYaml,
-               "runtime/syntax/ruby.yaml",
-       )
-}
-
-func runtimeSyntaxRubyYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxRubyYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/ruby.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRustHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x2a\x2d\x2e\xe1\x8a\xd1\x2b\x2a\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\xcf\x23\x15\x1b\x0c\x00\x00\x00"
-
-func runtimeSyntaxRustHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRustHdr,
-               "runtime/syntax/rust.hdr",
-       )
-}
-
-func runtimeSyntaxRustHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxRustHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/rust.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxRustYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x53\x41\x6f\xf3\x36\x0c\xbd\xe7\x57\xe8\x73\xbe\x43\xd2\x20\x49\xd7\x16\xc5\xea\xcb\xb0\x75\x1d\xb0\xc3\x56\x60\xeb\x21\x58\x1c\x14\xb2\x4d\x35\x44\x65\xc9\xa0\xa8\xa4\x29\xf8\xe3\x07\x39\x49\xd3\x26\x05\x3a\x60\x3e\xd0\x12\x25\xf2\x3d\x3e\x8a\x06\x2d\xf0\xa6\x85\x5c\x51\x0c\xdc\xeb\xd5\xc0\x50\x71\xde\x53\x4a\xa9\x74\xe6\x74\x03\xb9\xca\x8a\x62\x42\xe1\x7b\xd6\xeb\x51\xb4\x10\xb6\xc7\x7d\x65\xa2\xab\x18\xbd\x53\x35\x18\x74\x98\x96\xdd\xc9\x58\x61\x0d\x8e\xd1\x20\x50\xae\x32\xe3\xd4\x5c\x8f\x5f\xcf\xc7\x37\x8f\x8b\x51\xd6\xdd\x48\xd1\x7f\x41\x00\x5a\x41\xad\xd6\x9e\xea\xb0\x0b\x0c\xac\x19\x1a\x70\xdc\x81\x96\x03\x5d\x06\x26\x5d\xb1\x68\x8b\x4f\xce\x1b\xd1\x41\x4a\xa8\x7c\x03\x52\xfa\x17\x29\x09\xf4\xb3\x54\xde\x05\x4e\x96\xd1\x45\x90\x8a\x34\x83\xd4\x5e\xea\x8d\x13\xb0\x01\x04\x5c\x6c\x04\x5e\x18\xc8\x89\xd1\xc9\x63\xd0\x69\x2b\xc6\x89\xf1\x24\x68\x04\x9b\xd6\x0a\x3a\xb1\xc0\x62\xbd\x6f\xa5\xd1\x15\x79\x69\x34\x57\x4b\x69\x7c\x2d\x8d\x5f\x81\x34\x91\xc5\x1b\x13\x80\xbd\x11\xbf\x02\x22\xac\x41\x5a\xc2\x95\xb4\xb1\x94\x36\x12\x08\x81\x11\x02\x8e\xe4\x24\xe0\x2b\x78\x23\xa9\x26\xac\x24\x80\x4d\x6b\x8a\x15\x4b\x88\x2d\x90\x30\x45\x10\x26\x8d\x2c\xa9\x07\x9d\xf1\x46\xa2\x0b\xda\x40\xfa\xe1\x2b\xd4\x12\x03\xc8\x0a\x89\xa3\xb6\xb2\x5e\x02\x81\xac\x97\x68\x41\x36\x08\xb6\x1e\x16\x45\x79\x90\xb4\x23\xfd\x26\x65\x0b\x15\x6a\x9b\xab\x2c\xa9\xff\xb8\x18\x7d\x3b\x5c\xbc\x4d\x8a\x69\xc7\xfb\xbb\xd5\x6e\xbf\x55\x7d\xfe\xf3\xf8\x9f\x45\x32\x8f\xe7\xe3\x9b\xc5\xe8\x03\xc4\x9f\xb1\x29\x81\x8e\xe3\x26\xae\x73\xef\xc2\x4f\xa3\x7e\xf1\xde\x82\x76\x9f\xc3\x0d\x3a\x1d\xba\xbe\x7c\x2c\xe7\x21\x49\x13\xa6\x77\x2e\x36\x61\xfa\x77\xa7\x5c\x98\x3e\x6c\x5a\x08\x53\xe0\x6a\xb2\x4b\xb6\x7d\xbe\x6f\xbc\x47\xa9\xda\x3d\xf7\xb3\xb4\x39\x72\x7d\x24\x16\xd1\x32\xba\x2e\x49\x50\xbc\xd4\x9c\x9e\x20\xb1\x5a\x23\x2f\x95\xf5\x6b\xa0\x4a\x07\x38\xc5\x1a\x94\xde\xdb\xd4\x4e\xc1\xd4\x26\x89\x9d\x1d\x0c\x50\xe2\x70\xf0\xa3\xfc\x70\x2d\x97\x17\x72\x7d\x35\x1c\x8a\xb9\xbc\x10\x73\x7d\xb5\x2d\xed\x58\xb7\xc0\x84\xee\x29\xdf\xf1\x51\x5b\xf0\x84\x90\x65\x6f\x3e\x70\xf5\x91\x27\x3c\x63\xdb\xd1\x28\x8a\xc9\xc1\xfb\x6e\x36\xf7\xdf\x7b\xa4\xed\x73\xb8\x5d\x6a\x3a\x84\xfe\x57\x3a\xd4\x1f\x7d\xc6\xa8\x3f\x3a\x46\x57\xf3\xc5\x21\x69\xd3\x0d\xf2\x49\xb2\xe9\xf4\x38\xd3\xf7\x2f\x8a\x60\x5f\xfb\x5c\x65\x83\x87\xfb\x5f\xef\x65\x36\x9b\xc9\x6f\xbf\xcf\xfe\xb8\x1b\xe6\x3f\x65\x5f\x83\x15\xc5\xd9\x09\xf1\xe2\x6c\xfa\xbf\x11\xf7\xe3\x75\x82\xd8\xff\x56\x14\xf3\x53\xc8\xc5\xa7\x52\xfd\x1b\x00\x00\xff\xff\x73\x64\x84\x65\x80\x05\x00\x00"
-
-func runtimeSyntaxRustYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxRustYaml,
-               "runtime/syntax/rust.yaml",
-       )
-}
-
-func runtimeSyntaxRustYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxRustYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/rust.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSageHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4e\x4c\x4f\xe5\x8a\xd1\x03\x51\x2a\x5c\x71\xca\x8a\x7a\x5a\xfa\x1a\xa9\x79\x65\x0a\xda\x9a\xf6\x20\x31\x0d\x85\x1a\x15\x4d\x2e\x40\x00\x00\x00\xff\xff\x75\xb3\xc8\xfd\x25\x00\x00\x00"
-
-func runtimeSyntaxSageHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSageHdr,
-               "runtime/syntax/sage.hdr",
-       )
-}
-
-func runtimeSyntaxSageHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxSageHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sage.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSageYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x73\xe3\x36\x0c\xbd\xfb\x57\x68\xbd\xdb\xc6\x49\x6a\x6f\xaf\x75\xbf\xb6\xd3\x99\x1e\x7b\xea\xa9\x96\xab\xa1\x44\xc8\x42\x43\x91\x1c\x10\xf2\x47\x8a\xfe\xf7\x0e\x49\xc9\x76\xbc\xc9\xb4\x97\x4e\x26\xc6\x13\x05\x80\x0f\x8f\x20\xd4\xa2\x01\x3e\x79\x58\x17\x41\xed\x60\x36\xd3\xc0\xd0\xf0\x7a\x56\x14\x45\x11\xdf\x59\xd5\xc3\xba\x98\x97\xe5\x2a\xbe\xff\x30\x4f\x2f\x3a\x50\x1a\x68\x5d\xcc\xff\x78\xff\x6e\xf5\xf0\x71\x01\x76\x5f\x3c\xde\xff\x18\x3d\x16\x85\x7c\xb8\x9f\xcf\x66\x34\x18\x08\xeb\x59\x72\x7f\x5f\xd4\x03\x1a\x5e\xa2\x2d\x5c\xfd\x27\x34\x1c\xd2\xf2\xb2\x68\x9c\x0d\xac\x2c\xa7\x0d\xea\xc5\xaf\xce\x82\x04\x30\xad\xfc\x46\x03\xc8\x2f\xca\x04\xb8\x2f\xcb\x3a\x6f\xfa\x22\x8f\x62\x26\xac\x07\x86\x37\x52\x55\x55\xad\x02\x84\xaa\x92\xaa\x4a\x41\x68\x13\x6e\x8c\x0a\x79\x55\x43\x3d\xec\x32\xc2\x86\x33\x70\x4d\xb2\xb1\xee\x04\x7a\xe8\x6b\xa0\x30\x62\xee\x9c\xce\x38\x8a\x92\x40\x24\x5b\x55\x6f\x70\x6c\x07\xdb\x30\x3a\x3b\x51\x44\x0d\x96\xb1\xc5\xa4\x5c\x24\xa9\xea\x20\xca\x7b\x73\x92\x46\x19\xa3\x6a\x03\xd2\x74\x24\x4d\xef\xa5\x71\xbd\x47\x03\xa2\xc1\xc4\x52\x45\x63\xfc\xdf\xf7\x4e\x0b\xec\x95\x11\x38\x42\x93\x7e\x22\x57\x69\xd1\x30\x90\xb4\x8e\x7a\xc5\xb2\x03\x4e\x31\x3b\xe3\x6a\x65\x82\x74\x2a\xa4\xe7\x4e\x85\x4e\x3a\x30\x5e\x3a\x38\x0a\x6a\x41\xeb\x07\x16\xb4\x0c\x64\x05\x03\x26\x05\x1b\x10\x0c\x61\xa8\x93\x52\x62\xc0\x8a\x71\x4d\x4c\xd3\xab\xa3\xf4\x68\xc5\xc2\x91\xc5\x35\x2c\xce\x83\x15\x47\x5a\xbc\x3b\x08\x29\xbb\x03\x21\x75\xa8\x72\x56\x02\x3d\x34\x20\x04\xc6\x29\x2d\x04\x9e\x84\xdc\x60\xb5\x84\x91\xdd\x60\x31\x16\xbb\x57\x14\xe4\x19\xbd\x54\x15\xf6\xde\x11\xdf\xca\x19\x3c\x34\xa8\x4c\x91\xf5\x2f\xa2\xf4\x6f\x0a\x5a\x55\xaa\xce\x27\xa4\xb4\xce\xd6\x66\x1b\x05\xce\xa0\xf7\xd9\x3a\xa0\x06\x46\xd8\x7b\x03\xc7\x11\xdb\x46\xf1\x04\x59\xa1\x9d\xba\xc5\x4c\x36\xb2\x9f\x30\x32\xf4\x37\x3d\x04\x26\x18\x1c\x33\x6b\xdc\x4f\xb6\x77\x99\x48\x6b\xdc\x98\x7f\x3c\xa6\x09\x9f\x53\xed\x80\x2f\x19\xe2\x99\x65\x30\x12\x44\x8b\x3c\x82\xc9\xee\x27\x0b\x94\x97\x0c\xe4\x66\x37\xce\xe6\x0e\x37\xa1\xc3\x36\xbf\x9b\x78\xf4\x43\x2e\xc8\x42\x76\xb1\xce\x3e\x03\xb9\x84\xdd\x58\x8b\xcb\xe4\xbc\x0b\xa3\x3d\x24\x4b\x93\xb8\x34\xa9\x4b\x93\xaa\x34\x55\x4c\x57\x25\x13\x78\x18\x6b\x8e\x7d\x90\xc1\x15\x25\x3a\x3b\x4e\xa4\x68\xdc\x99\xce\x5b\xd2\x95\xfb\x35\x1c\xea\x0c\x8e\x63\x44\xb8\x12\x35\x5c\x89\x1a\xae\x45\x0d\x93\xc3\x18\x9d\x82\x5f\x76\x5d\x1c\x89\x53\x9b\xe5\xf1\x98\x1a\x2c\x0d\x15\x26\xb4\x3b\xa9\x9d\x33\x52\x0f\x6d\x0b\x24\xf5\x89\x41\x11\xa9\x53\x42\x41\xd2\xdd\xc9\x0d\x2b\x63\x77\x49\xec\x10\x01\x3b\xf4\x40\x8a\xd3\x95\x05\x49\xcd\x20\x2d\xb9\x67\xb0\x01\xd2\x55\x14\x83\x81\x25\x9e\x9c\xf4\xca\x4b\x0f\xbd\xa3\xd3\x1e\xe1\x20\x79\x74\x8a\x27\xe7\x81\xf8\x24\x04\x7b\xa0\x00\xe9\x46\x49\x2a\x4e\x02\x2b\xc6\x66\xdc\x38\x30\x49\x18\x3c\x90\xf0\xe0\x0d\x48\x2c\x23\xdd\x3a\xa7\x41\x8e\xe9\xbe\xbe\xac\x59\x43\x1b\xbb\xeb\xad\x89\xa5\xa1\x2d\x36\x6a\xf9\xfc\xd3\xf2\xf7\xea\xeb\xe5\x37\xdb\xc7\x4b\xe4\x13\x9c\x0e\x8e\xf4\x14\x16\x69\x40\x0f\xe7\x61\xac\xac\x16\x15\x44\x85\x00\xc4\x52\x13\xa8\xa7\x2c\x91\xc4\x3b\x86\x76\x88\x73\xae\x8d\xb3\x4e\xc0\x60\x2b\x60\x02\x08\x1c\x1b\xf0\x2c\x2d\x5a\x65\xcc\x29\xce\xb6\x28\x54\x3f\x4e\x35\xc1\x56\xf2\xbc\x10\x8c\xb3\x4b\x8c\xea\x6b\xad\xc4\x3a\x16\x47\xe2\x63\x72\x4f\x51\x4f\x52\x18\xe2\x1c\xe2\x81\xac\x30\x9d\xe4\xd0\x45\xe9\x0f\xc8\x9d\x9c\x10\x8c\xbe\x15\xa1\x71\xa4\xd8\xd1\x54\x4c\x4d\xb8\xeb\x78\x47\x00\x76\x5d\xcc\x3f\xad\x1e\x36\x8b\xed\xc5\x3d\x9e\xc5\xb5\xf7\x75\xe9\x8b\xcd\x6a\xfd\xed\x57\x8f\x0f\xf2\xfd\xbb\xb2\xfc\xe2\xd3\x56\xbe\x93\x1f\xe4\xa3\x2c\xe5\xcb\xfb\x4b\x02\xaf\x08\x2c\x77\x10\xe0\xf5\x14\x8b\xfb\xbf\xfe\xde\x4a\x59\x6e\xa4\x2c\xb7\x57\x71\x76\x48\x9f\xa6\x9b\xaf\xdf\x2a\x2f\x67\xdd\x37\xe9\x94\x52\x75\x67\xb7\x3e\x25\x1e\xb3\x14\x71\x2f\x4a\xa7\x94\xfe\xe6\xe7\x75\xb0\xfa\x95\xd5\xfc\x4d\x2f\x36\xdb\x7f\xcd\x77\x77\x77\x77\x9b\xec\xc5\xd2\x2b\x99\xc6\x02\xf2\xed\x7a\x8d\xe1\xe7\xec\x2e\x2b\xe1\x09\x7d\x2a\xba\x2c\x57\xb7\xbb\x9c\x1f\x6f\x77\xca\x1f\x96\x9f\x3b\x45\x97\xd0\xff\x4a\xe7\xf3\xf2\xfe\x4f\x32\x6f\xa8\xfc\xfe\x96\xc4\x87\x57\x15\xfe\x27\x00\x00\xff\xff\x04\x12\xa4\x8d\xe3\x09\x00\x00"
-
-func runtimeSyntaxSageYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSageYaml,
-               "runtime/syntax/sage.yaml",
-       )
-}
-
-func runtimeSyntaxSageYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxSageYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sage.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxScalaHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4e\x4e\xcc\x49\xe4\x8a\xd1\x03\xd3\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\xbc\xd0\x81\xd5\x10\x00\x00\x00"
-
-func runtimeSyntaxScalaHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxScalaHdr,
-               "runtime/syntax/scala.hdr",
-       )
-}
-
-func runtimeSyntaxScalaHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxScalaHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/scala.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxScalaYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x41\x8e\xdb\x30\x0c\xbc\xfb\x15\x86\xb1\x87\x76\x81\x26\xf7\x5c\xfb\x8c\xaa\x07\x5a\xa2\x62\x36\x8c\x64\x50\xb4\x5d\x2f\xf8\xf8\x42\x76\xda\xdd\x64\x81\x16\x5d\x5d\x04\x50\xc3\xe1\x70\x46\x91\x18\x75\x1d\xf1\xd4\x16\x0f\x0c\x4d\x13\x50\xd1\xeb\xa9\x69\xdb\xb6\xad\x8f\x09\xae\x78\x6a\x3b\xe7\x0e\x1b\xe0\xa9\x6b\x1a\x99\x18\xcb\x8e\xf8\xd2\xee\xcd\x9d\x73\xfd\xa7\x3e\x67\x46\x48\xd6\xaf\x8a\xe6\x07\x10\x0b\x79\xea\x19\x2d\x72\x06\x35\x4a\x6a\x9c\xd3\xd9\x12\x2e\x56\x86\x2c\x6a\x3a\x50\x31\x15\x48\x85\x30\xa9\xcd\x99\xc2\x67\xe7\xfa\xee\xc6\x5d\x14\x14\xaf\x98\xf4\x36\xe0\x0a\xea\x07\x9b\x81\x6d\x06\xb1\x5e\x10\x2e\xe6\xa1\xa0\xf9\xed\xc1\xe7\xa4\x94\x26\xb4\x80\x11\x26\x56\x0b\xd9\x90\x0b\x5a\xa4\x04\xcc\xab\xc5\x2c\x46\xd1\x04\x75\x92\x64\x65\xa1\xda\xa5\x83\xe4\xc5\x54\x56\x5b\x06\x62\xfc\xdb\xfc\x80\xd1\x72\xff\x03\xbd\xee\x63\x55\x80\xd4\x18\x5e\x56\xa3\xeb\xc8\xe4\x49\x0d\xfa\xa2\x02\x15\xc1\x50\x8a\xe1\x4f\xc5\x14\x8a\x2d\xa4\xc3\xae\x63\x83\x6e\xac\xc5\xf2\x8c\x22\x14\xb0\xd6\xaa\x1f\x94\x8a\x42\xf2\x98\x63\x75\x0b\x25\x82\x47\x4b\xa0\x34\xa3\x8d\xe0\x2f\x70\x46\x1b\x85\x66\xd0\x7a\xe7\x9a\x14\x06\x1b\xa7\x9e\xc9\x5b\x55\xbb\x5d\x42\x5e\xe3\x68\x65\x1a\x51\xac\xac\xc9\x0f\x92\x13\xbd\x60\xd8\x77\x2d\x36\x67\x06\x25\x46\x2b\x08\x8c\x77\x96\xfb\xbc\x49\xd0\x43\xa5\x49\xe7\x3d\xe5\x7a\x8a\x82\x6c\x3e\x74\xdd\x9f\x1a\xa6\xf0\x50\x29\x17\x1a\x37\xb3\x9c\x3b\xbc\x56\xdf\x7c\x98\xdf\xe7\xed\xa4\x11\x3d\x01\x7f\x1d\x40\xee\x5b\x5f\x31\x37\xff\x55\x26\xb4\x08\x35\xd2\x34\x31\xdf\xeb\xbe\x6e\x41\xbd\xd3\x7b\x3c\x3e\xea\x7d\x7a\x14\xd6\x7e\xfb\xfe\x4f\x16\xe7\x9e\xdf\xed\xed\x9e\x8f\x1f\xa4\xfa\x0f\xb6\xe6\x57\x00\x00\x00\xff\xff\xbd\xe3\xf3\xfb\xa2\x03\x00\x00"
-
-func runtimeSyntaxScalaYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxScalaYaml,
-               "runtime/syntax/scala.yaml",
-       )
-}
-
-func runtimeSyntaxScalaYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxScalaYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/scala.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSedHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4e\x4d\xe1\x8a\xd1\x2b\x4e\x4d\x51\xe1\x8a\x53\x56\xd4\xd3\x4a\xca\xcc\xd3\xd7\x48\xcd\x2b\x53\xd0\xd6\xb4\x2f\x4e\x4d\xd1\x50\xa8\x51\xd1\xe4\x02\x04\x00\x00\xff\xff\x68\x89\x4c\x43\x25\x00\x00\x00"
-
-func runtimeSyntaxSedHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSedHdr,
-               "runtime/syntax/sed.hdr",
-       )
-}
-
-func runtimeSyntaxSedHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxSedHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sed.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSedYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x4e\x84\x30\x10\x80\xe1\xf3\xf6\x29\xc6\x2e\x07\xa0\x52\xbd\xda\x0b\x07\x1f\x83\x96\xa4\xb4\x63\x68\x42\x0b\xa1\xb3\x9a\xcd\xe2\xbb\x9b\x65\x35\x9a\xb8\xa7\x49\x66\xbe\x7f\xde\xc2\x84\x74\x5e\x50\x41\x46\xcf\x98\x47\x42\x47\x0a\x18\x00\xc0\xf5\x96\x6c\x44\x05\x5c\x6b\x99\xd1\x17\x7c\xdf\x8f\x68\x3d\xae\x0a\x78\x7f\x7c\x90\xf5\x10\xd2\x53\x89\xe9\x1d\x44\xd5\x66\xf4\x25\x6c\x45\xc5\x19\x5b\x4f\x13\x66\xb5\xfb\x06\xf2\x39\x0e\xf3\x24\xe7\x05\x57\x4b\xf3\x35\xed\xb6\xbe\x90\xb5\x30\xfc\x5b\xb8\x39\x65\xb2\x89\x64\x3a\xc5\x61\x7f\xae\xf5\xa5\x7b\x6e\x5e\x8c\x78\x6c\xf7\x59\x6b\xfd\xf9\x4f\xe7\x05\x5d\xb0\xd3\xeb\x68\x6f\x89\xd6\xf2\xd7\xc4\x88\x89\x14\xf0\xb2\xdf\xba\x4e\xe5\xc5\x3a\x54\xc6\x54\xc7\xb2\xeb\x2f\x46\xd6\x55\x5b\xfc\xd8\x90\x3c\x26\x6a\xdc\x68\x57\xf9\x31\x06\xc2\x1b\x06\xfe\xa7\x13\xf7\xb4\x02\x7e\x10\x20\x36\x10\x07\xc1\xd9\x57\x00\x00\x00\xff\xff\xc4\xf3\x36\xcd\x4d\x01\x00\x00"
-
-func runtimeSyntaxSedYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSedYaml,
-               "runtime/syntax/sed.yaml",
-       )
-}
-
-func runtimeSyntaxSedYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxSedYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sed.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxShHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\x88\xc1\xae\xc2\x20\x14\x44\xf7\xfd\x8a\xbe\xbc\x2e\x40\xe3\xf5\x13\x1a\x8d\x89\x31\x75\xd1\x8d\x3b\xa2\xa1\x08\x85\x40\x69\xc3\xb5\xae\xee\xc7\x1b\xe8\x62\xe6\xcc\x1c\xb4\x3a\x84\x8a\x09\x40\xdb\x90\x80\x41\xa2\x25\x01\xb9\xf3\x4c\xaa\xe0\x25\x83\x93\xa8\x71\x3b\x66\x8d\xea\xe3\xe6\x88\xb4\xa4\xd9\xb8\xa0\x8b\x3e\x18\x25\x80\x7a\x3f\x16\xb3\xf8\x71\xf2\xa0\xe6\x68\x28\xa9\x8d\x7d\x77\x3d\x3f\x6e\xf7\x0b\x81\x1e\x56\x17\xde\xa2\xa1\x53\xdf\x15\xc5\xab\xe7\xff\x1f\xec\x8e\x4c\xc7\x6f\xbd\xe7\x2d\x1b\x24\x6f\x59\xce\xe4\x79\x8b\x96\xd5\xd4\xf0\xea\x17\x00\x00\xff\xff\x2e\xc0\x3f\xcf\xab\x00\x00\x00"
-
-func runtimeSyntaxShHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxShHdr,
-               "runtime/syntax/sh.hdr",
-       )
-}
-
-func runtimeSyntaxShHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxShHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sh.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxShYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x7f\x8f\x53\xb7\x12\xfd\x7f\x3f\xc5\x25\xbb\x7a\x24\xf0\x92\x07\x3c\x40\xef\xa5\x3f\x52\x0a\x6d\x85\x68\x0b\x52\x5b\x69\xd5\xf5\x42\x1d\x7b\x6e\xae\x7b\xfd\xe3\x62\xcf\xdd\xec\xc2\xe1\xbb\x57\xe3\x2c\xbb\x28\x45\xb4\x6a\x14\x7b\xae\x67\x34\x33\x67\xc6\xc7\xd3\x3a\x4f\x7c\x31\xd0\xb2\x29\x1d\x79\x7f\x70\x60\x89\xc9\xf0\xf2\xa0\x69\x9a\x46\x8c\x51\x07\x5a\x36\x93\xa9\x52\x8b\xd2\x1d\x41\xa9\xc5\x5a\x97\x4e\xa4\x08\xf9\xce\xa6\x8a\x57\xda\x3b\x5d\xa8\xec\x0e\xed\x18\x0d\xbb\x14\x0b\x86\x9c\x24\x4e\x55\xcf\x5b\xa3\xd4\x02\x2f\xfa\x4d\x55\x0d\xfd\x26\xf4\x0b\x93\x62\x8b\x6c\x76\xf2\xc5\xb3\xef\xbe\xfe\xe5\xe9\xf7\x4f\xb0\xa0\xf5\xe8\xbc\x55\xea\x08\x8f\x5e\x3c\xab\xba\xd9\xa4\xa2\xea\x48\x5b\xca\xcb\x66\xf2\xf2\xf0\xc6\xe2\xd6\x7f\xa6\x14\xcf\x9a\xdb\xb3\xd5\x74\xad\x67\xab\xa9\xac\xd0\xcf\x56\xa5\x9b\x36\x38\x9a\x4d\x0e\x0e\xf2\xe8\xa9\xec\xea\x39\x6c\x7e\x1c\xc3\x9a\x72\xa9\xa7\x79\x63\x52\x2c\xac\x23\x2f\x62\x55\x2f\x9b\x89\x52\xeb\x93\x3b\xf3\xff\x9f\xde\x56\x6a\xbd\xcb\x26\x5e\x8f\x53\xb4\x4e\xaa\xd1\xbe\x34\x3a\x5a\x71\xe4\x9c\x7c\xd3\xfa\xb4\xbd\x8c\x55\x58\x33\x05\x8a\xbc\x8b\x32\x35\xba\x10\x6c\x82\x4d\x91\x40\xde\xb5\x20\x5f\x08\x54\xb4\x01\x9d\x3b\x46\xeb\xd0\xa6\x8c\xf7\x8d\x82\x6b\xe1\x22\x7c\x32\xda\x23\x93\xb6\xc8\xc4\x63\x8e\x28\xe4\xc9\x30\x4a\xe7\x5a\x06\x77\x14\xc1\x2e\x10\xc6\xc8\xce\x63\xdb\x39\x4f\xb3\x2b\xb0\xf3\xa6\x0c\x64\x9c\xf6\xbb\x1b\x7b\x0b\xa5\xde\x41\xa9\x29\x94\x9a\x41\xa9\xcf\xa0\xd4\x29\x94\x3a\xc1\x6f\x50\x4a\x29\x48\x77\x3f\xc7\x97\xb8\x81\x2f\xf0\x2f\x28\x85\xd9\x75\xd1\x3f\x09\x1f\x1a\x93\x42\xd0\xd1\xbe\xef\xd8\x8e\x2a\xbb\x02\x2d\xc8\x74\x09\x74\x3e\xa4\xcc\xf0\xc4\x28\xc4\x18\x83\x2e\x3d\xc6\x58\x88\x67\x7b\x4d\x0c\x21\xc5\xc6\xbb\x38\x9e\x7f\x22\xec\x74\x03\xb7\x99\xad\xf4\xb6\xaf\x8c\x81\x95\xad\x75\xd1\x42\xa9\xed\xdb\x3b\xff\xbe\xff\x6e\x93\x69\x40\xef\xbc\xaf\x9b\xf6\xfe\xca\xe2\xa9\x14\x04\xdd\x0b\xb3\xc4\x5e\xc8\xa2\x74\x60\x9d\xf7\xa1\x64\x1a\xd9\xf9\xf2\x09\x1c\x6b\x5d\xe8\xe1\x7d\xc1\x50\x9f\x00\x8c\x66\x98\xce\xa4\x08\xd3\x6d\xf2\x00\xd3\x85\x64\x61\xba\xb4\x15\x4d\x4e\x89\x61\xfa\x32\x06\x48\x48\x98\x01\xa6\x0c\xde\x31\xcc\xc8\xb0\x9a\x09\xd6\xc2\xb6\xb0\x2e\xcb\x32\xc9\xa7\x5c\xe4\xab\x06\xb7\x23\x28\x9e\x49\x2b\x75\xb4\x22\x32\x5a\x6d\x58\xe8\xa1\x85\x35\x6d\x60\xb4\xc9\x5b\x08\xf7\xd1\xa5\xc2\xce\x42\xfe\xc2\x5f\xef\xf1\x7b\x12\xea\xb8\xd8\xc3\x0b\x85\x36\x35\xa8\x2f\x08\xf6\x81\x40\x0a\xbd\xa4\x0d\x7d\xeb\xda\x84\xd0\xc7\x64\x11\x7a\xa6\x30\x20\x9c\x21\x3a\x43\x88\x1e\x31\x75\xe3\x80\x38\xe4\x64\x10\xc7\x20\x29\x93\xc5\xa0\x0b\x13\x06\xcd\x9d\xe9\x7a\x0c\x2e\xf6\x17\x18\x32\x86\xec\x22\x0b\xe4\xfa\xd1\x62\xe0\x73\x0c\x5b\x5b\x89\x5b\x71\x64\xd2\x5e\xbc\x90\x03\x72\x90\xf4\x79\x8c\xd2\xbd\x42\xaf\x31\x2d\x9d\xbe\x8b\xd2\xe9\x7b\xf7\xee\x57\xf1\xe0\xa1\x88\xff\xfe\xaf\x9e\x1e\xdc\xbd\x37\x13\xd4\xa5\xcb\xf5\xfe\xc6\x16\xc5\x13\x0d\x28\xc2\xb3\x5d\x57\xe5\xb5\xa1\xb0\x5d\x8b\x91\xf9\x02\xd5\xe1\x22\x1a\xb0\x96\xe5\x3c\x98\x08\x4c\x85\x77\xcf\x45\xb6\x34\x32\x38\x8d\xa6\x03\x67\x70\x1e\x49\xb6\x68\xe4\x72\xb8\xc6\x96\x40\x63\xed\xdd\x18\x2f\xef\x62\x8c\xee\x35\xc6\x58\x6b\x1a\x0b\xe5\x82\x33\x29\x66\x6b\xb0\xed\x92\x2c\x1d\x1c\x2e\xa8\xec\x13\xec\x6a\x60\x34\xad\xd7\x9b\xf2\x91\x21\x31\x9f\x9f\xe8\xf9\x9b\xf9\xe9\xed\xc9\x47\x27\x48\x53\xcd\x62\xbd\x34\x3b\x4b\x91\x5d\xeb\x2e\xe7\xd4\x91\x52\x6f\x57\x32\xab\x1e\xcd\x7f\xd5\xf3\x37\xaf\x6e\x7c\x75\x78\x74\x6b\x35\x97\xc9\xf5\x6e\x35\xf9\x47\x3e\xfb\x53\xb1\x70\x76\x71\xb3\xbc\xac\xaa\x11\x80\xb9\x82\x9b\x4c\xae\x74\x14\xed\x9e\xa6\xf4\x6e\xa8\xd9\x94\x5a\x5c\x6b\x3f\x98\xc2\xef\x7f\x1f\x66\xda\x4d\xad\xc7\x9d\xce\xd7\xae\x7f\x17\xce\xcd\x7d\x34\x37\xf7\xd3\x36\x27\xa7\xd7\xd1\x42\x6d\xf1\x9f\xa2\x4c\x5f\x42\xa9\x32\x3b\xdc\x0f\x76\xf4\x17\x35\x70\xb2\x49\xdc\x7f\x7e\xfe\xe4\x39\x8e\x8f\x8f\xf1\xed\xd3\xe3\x1f\xbe\x99\x2d\xa5\x9f\x7f\x04\x00\x00\xff\xff\x66\x4a\xed\xb7\x5d\x07\x00\x00"
-
-func runtimeSyntaxShYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxShYaml,
-               "runtime/syntax/sh.yaml",
-       )
-}
-
-func runtimeSyntaxShYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxShYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sh.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSlsHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4e\xcc\x29\xe1\x8a\xd1\x2b\xce\x29\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\x9d\x7c\x74\x9b\x0d\x00\x00\x00"
-
-func runtimeSyntaxSlsHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSlsHdr,
-               "runtime/syntax/sls.hdr",
-       )
-}
-
-func runtimeSyntaxSlsHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxSlsHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sls.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSlsYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xdd\x6a\xc3\x30\x0c\x85\xef\xf3\x14\xc6\x2b\xb4\x0d\xd4\xdd\xed\xfc\x00\x7b\x82\xdd\xd5\xc9\x70\x62\xa5\x18\x1c\x39\x58\xca\x60\xa0\x87\x1f\x4e\xd7\xc2\x28\xbb\x11\xe2\x3b\x47\x3f\x67\x8a\x09\xf8\x7b\x01\xab\xc8\x27\x6e\x9a\x00\x0c\x23\x5b\xd5\x28\xa5\x54\x15\xd1\xcf\x60\x95\x76\xce\x50\xa2\x9d\x6e\x9a\xb2\x26\x20\xbb\xe9\x27\x15\x03\x20\xc7\x29\x42\x31\x5f\xbe\x58\xa5\xfb\x4b\xaf\x4e\x9d\x69\xed\x4e\xff\x67\x31\xad\xbd\x6b\x01\x26\xbf\x26\xb6\x4a\xd7\xeb\x0f\x3c\x66\x24\xf6\xc8\x06\xd7\x79\x80\x3a\x73\x6e\x2f\xaf\xa7\xb7\xee\xdc\x3e\x59\x86\x9c\xd3\xf6\xdf\x70\xf8\x28\x2b\xc8\xbb\x4f\x04\x47\xe7\x86\x27\x27\x71\x89\x78\xad\x5e\x7d\x70\xce\x39\x23\x97\xde\xe9\xee\xd8\x3a\x2d\xfb\x07\xd9\x77\xc7\x76\x7f\x9f\xa5\x05\xc6\xe8\xef\xfb\xaf\xc5\x47\x94\xad\x92\x8c\x79\x5e\xf2\x8a\x41\x96\xb1\xc0\x0d\x7e\x6e\x6d\x8a\xc4\xb2\xc4\x94\x7c\xf9\xfb\xc6\x3c\x03\xd6\xa8\xfd\x8b\x79\xc4\x20\xf6\x0c\xbf\xbc\x9e\x88\x93\x40\xda\x0a\x81\xe4\x22\x98\x59\x3c\x06\x01\x0c\x95\x62\xb8\xad\xfc\x09\x00\x00\xff\xff\x06\xf6\xfb\xa9\xb6\x01\x00\x00"
-
-func runtimeSyntaxSlsYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSlsYaml,
-               "runtime/syntax/sls.yaml",
-       )
-}
-
-func runtimeSyntaxSlsYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxSlsYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sls.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSolidityHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xce\xcf\xc9\x4c\xc9\x2c\xa9\xe4\x8a\xd1\x2b\xce\xcf\x51\xe1\xe2\x02\x04\x00\x00\xff\xff\xdd\x6d\x43\x99\x11\x00\x00\x00"
-
-func runtimeSyntaxSolidityHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSolidityHdr,
-               "runtime/syntax/solidity.hdr",
-       )
-}
-
-func runtimeSyntaxSolidityHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxSolidityHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/solidity.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSolidityYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xc1\x8e\xe3\x36\x0c\xbd\xe7\x2b\xdc\x74\xdb\x9d\x64\x90\x99\x69\x8b\x2e\xd0\xa0\xed\x60\xd1\xa2\xd7\xbd\xf4\xd4\x38\x28\x68\x89\x8e\x89\xc8\x92\x41\xd2\xc9\x78\x41\xf4\xdb\x0b\xd9\x99\x9d\x34\xd9\xce\x6d\x73\x88\x28\xf9\x91\xef\x49\x4f\x54\x4d\x01\x75\xe8\x70\x5d\x48\x0a\xe4\x49\x87\xd9\xcc\xa3\xa2\xd3\xf5\xac\x28\x8a\x22\x7f\x8f\xd0\xe2\xba\x98\x97\xe5\x9d\xa4\xf0\x66\x3e\x9b\x71\x1f\x50\xa6\xef\xab\xa2\x63\xec\x38\xb9\x11\x50\xdd\xb8\x14\x95\xc1\xa9\x05\xaa\x18\x78\xb0\x8e\x61\xd7\xc2\xa2\x2c\xab\xf9\x29\xc1\xa5\x28\x0a\x51\xef\x62\xdf\x56\xc8\x53\xe2\x66\xb5\x7d\xbc\xd9\x3c\xac\x7e\xda\xde\xda\xc3\x53\x0e\x60\x55\xbf\x5f\xfd\xb1\xbd\x3d\x4f\x25\x8f\x51\xa9\xa6\x31\x6b\x03\xab\x8f\xef\x57\x7f\x6d\x37\x7f\x4f\x41\x4e\x5e\x6e\x36\x6b\xe9\xc0\xe1\x7a\xbb\x5d\x3e\x67\x89\x82\x62\x8b\x51\x4f\x1a\x41\x04\xdb\x2a\x0c\x56\x31\xc2\xde\xb2\x64\x8a\x3d\x9a\x4f\x56\x27\xb6\xba\x8f\x4e\x29\x45\xa3\xda\x30\x08\x5a\xc4\xa3\x31\x6a\xcf\xf1\x34\x88\x1d\x1b\x0a\x78\xae\x4c\x3a\x74\x04\xe1\xc4\x90\x8f\x0a\xa3\x37\x6d\x38\x1d\x47\x58\xf1\x75\xd1\xc2\x1e\x0b\xe9\x19\x0b\x6d\x70\x28\x80\xb1\x38\x20\x0f\xc5\x81\x84\xaa\x80\xa7\x42\xd9\x8c\xbb\x3d\x0e\xc7\xc4\xfe\x59\x6f\x4c\x71\x68\x53\x2f\xf6\x7c\x74\x46\xd1\xe3\x13\x7a\xeb\x60\x80\x2a\xa0\x75\x7d\x15\xc8\x59\xc7\x74\x00\x45\xc3\x27\x45\x8e\x10\x8c\xe2\x14\x7c\xee\xfc\x4f\xd5\xab\x90\xdc\x3e\x2b\x9e\xa2\x06\xa4\x31\x97\x28\x56\x20\x68\x9e\xea\x9a\x5c\x1f\x74\xb0\x1d\x48\xa0\x96\xd4\x26\xdb\x4c\xa9\x45\x51\x68\xbb\xc5\xe2\xd1\x5a\xd9\x8d\x25\x3c\x28\x64\xa4\xe5\xed\x23\xdb\x01\x42\x8f\x19\x10\xd3\xd1\xf4\x69\xc4\xec\x40\x3a\x26\x87\x96\x98\x76\x14\x17\x8b\xc7\x57\xd4\xed\xd1\x39\xd8\x7f\xff\xe3\x3b\x93\x06\x7e\xc8\x7f\x39\x66\xea\xb0\xf5\xdf\xbd\x7b\x30\x74\x8c\x2e\x1d\x90\x0d\xbc\x6f\x93\xb7\xb6\x0f\x79\xd0\x86\xc4\xa4\xef\x90\x4d\x30\xd4\x1e\x45\xb9\x77\x6a\x65\x79\x57\x41\x80\xe8\xf0\x15\x52\xe5\x1e\xad\x86\x20\xaf\x81\x8e\x48\x26\x1f\xa1\x4a\x56\x53\x8c\x38\x18\x6a\x33\xb2\xb9\x14\xbd\x58\x4b\xb1\x57\x14\x6b\x52\xcf\x62\x1e\x06\xb1\x23\xe2\x5e\x6c\x40\x60\x39\xaf\x3b\xb5\xdf\xe4\xb4\xf7\x8c\x22\x56\xa5\x14\xac\x85\xae\xa3\xb8\x33\x51\xce\xc3\x01\x38\xdb\x79\x53\x96\x7e\xb9\xb0\xfe\x25\xac\x06\xc5\x53\x58\xd3\x13\xfa\x67\xc4\xd9\xe4\x9c\x0e\x99\x13\x3f\xf3\x55\x32\x75\x2b\xd4\x8a\x6c\x2e\x5b\xee\x40\x5d\x63\x1e\x6b\xe8\x83\xe6\xbd\x8d\xd7\xc8\x28\x06\x8a\x38\x5d\xa8\x1a\x1c\x5a\x40\xb5\x76\xc4\xc6\x3e\x04\x4b\xb5\x75\x3d\xa3\x31\x86\xe4\x40\xc7\x5b\x99\x1b\x8f\x9c\xc9\x91\x32\x4c\x79\xb0\xbc\xd7\xf1\x2f\xd5\x76\x20\x3c\x9e\x0b\x4b\x1d\x32\xe8\xa8\x6d\xb3\xba\xbd\x5f\xfe\xf2\xf3\xaf\x5f\xfd\xf3\xcd\xe3\xfa\x5b\xdb\xbe\x58\xd0\x8e\x7d\x3c\x4e\xf3\x4f\x14\x38\x1b\x72\x7f\x3f\xff\xb4\x86\x31\x37\xce\x9b\x97\x85\xe9\xb9\x2a\x36\xdb\x8b\x2a\xc5\x75\x99\xb2\x5c\x5e\x16\x2a\xcb\xe5\xfd\xff\xd7\xd2\xe4\xd3\xba\x98\xff\xf9\xe1\xf7\x0f\xeb\xc7\xab\x17\x6e\xb2\xee\x33\x44\xe5\xfc\x8a\xe6\x6c\x45\xf6\xd4\x8d\xcc\x65\x79\x77\x49\xfd\x69\x7a\x49\x35\x3d\x40\xbf\x35\xc0\xff\x4d\xbd\x96\x73\xa5\xe6\xed\xa5\x98\xb7\x5f\x40\xcb\xec\xdf\x00\x00\x00\xff\xff\x28\x8c\x3d\xc3\x6b\x06\x00\x00"
-
-func runtimeSyntaxSolidityYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSolidityYaml,
-               "runtime/syntax/solidity.yaml",
-       )
-}
-
-func runtimeSyntaxSolidityYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxSolidityYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/solidity.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSqlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x2e\xcc\xe1\x8a\xd1\x2b\x2e\xcc\x51\xa9\x29\x2e\xcc\xc9\x2c\x49\x2d\x4a\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\xd0\xdf\xe8\xd2\x16\x00\x00\x00"
-
-func runtimeSyntaxSqlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSqlHdr,
-               "runtime/syntax/sql.hdr",
-       )
-}
-
-func runtimeSyntaxSqlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxSqlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sql.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSqlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\xdb\x6e\xe3\x36\x10\x7d\xde\x7c\x85\x61\x2c\xb0\xb9\x20\x41\x5f\xeb\x97\x05\x2d\x8e\x64\x36\x14\xa9\xf2\xe2\xcb\x46\xe9\xae\x62\xb3\xb5\x00\xdf\x62\xc9\xdd\x2d\x70\x3e\xbe\xa0\x72\xd9\x3c\xa4\xd5\x83\x34\x87\xc3\x33\x87\x9a\xe1\x60\xf4\x67\xbd\x09\xed\x3f\x87\x30\x1a\x34\x8f\x9b\xb3\xb3\x55\x68\xc3\xb2\x1d\x0d\xce\x06\x83\xc1\x20\xee\xed\xaa\x6d\x18\x0d\x86\x65\x79\xd3\x3c\x6e\x3e\xa2\x79\xdc\xd4\x6d\x38\x2e\x3f\x0e\xcf\xce\x8e\xa7\x4d\x68\x46\x1d\xf3\x7a\xd0\xb4\x55\x1b\xb6\x61\xd7\x8e\x06\xc3\xf3\xcf\xf5\x45\x59\x3e\x9c\x33\x29\xc1\x6c\x02\x66\xc1\xa4\x23\x03\xa6\x38\x18\xe7\x60\xde\xe9\xaf\x42\x25\x86\x72\x52\x2e\x72\x87\xff\x23\x33\x26\x37\x23\x52\x18\x0b\xc5\xcc\x02\x63\xed\x26\x18\x47\xab\x25\x31\xd5\x17\x9d\x4c\x98\xca\x08\xc9\x84\x92\x5b\x24\x5a\xfa\x5c\xd9\x67\x8b\xc4\x68\x6b\x91\x18\x62\x8e\xfa\x74\x38\x73\x6c\xcc\x2c\x59\xbc\xa0\x0e\x80\x93\x64\x0b\xe2\xe0\x64\x13\x23\xc6\xd4\x01\x70\x61\x9d\x50\x89\x8b\xdb\xe4\x08\xdc\xe8\x02\x9c\x52\xe6\x65\x6f\xbe\xa4\x12\xa9\x2d\x71\x90\x4d\x58\x11\xed\x5c\x58\x67\x41\xf3\x42\x32\xd1\x9b\x70\x2a\x48\x72\x8b\xce\x20\x95\xde\x4e\x90\x6a\x13\x1f\x12\x99\x42\xea\x55\xe2\x84\x56\x48\x8d\xce\xfb\xb4\x32\xa3\x7d\x81\xcc\x30\xe5\x30\x61\x53\xa1\xb2\xbe\x08\x91\x29\x6d\x08\x42\x71\x9a\x43\xa8\x54\xc8\xb8\xb0\x64\x1c\x84\x52\x64\x20\x94\xd3\x10\x9c\x94\x13\xa9\x20\x0e\xa1\x20\x2c\x44\xda\x27\xfc\x9b\x16\x0a\xb7\xb4\xb0\xb8\x15\x52\x46\xd4\x17\x21\x89\x71\xa1\x32\x48\x71\x4b\x90\x22\x17\x0e\x52\x28\xb2\x90\x9a\x71\x48\x9d\x30\x19\xdf\xb7\x90\x7a\xf6\xb5\x30\x42\x1b\xe1\x16\x90\x94\x3a\x48\xa6\x32\xcf\xb2\xde\xa6\xc8\x35\x17\xe9\x02\x8a\x39\x6f\x98\x84\xd2\x0e\xca\x4b\x09\x45\x73\x37\x65\xb2\x2f\x5c\x17\x4e\xe4\xe2\x0b\x21\x02\xad\x9e\x0d\x93\x72\x01\x6d\x38\x19\x68\xef\xba\x0a\xea\x0e\x46\x47\xef\xf5\x17\x46\x27\xc4\xbd\x21\xbc\x20\x26\x51\x18\x91\x33\xd3\x5b\x31\x43\x8c\xc3\x50\x4a\x86\x54\x42\x16\x86\x32\x9a\x17\x30\xa4\x58\x4e\x30\x54\x48\x96\x44\xeb\xbc\x51\x30\x34\xd5\xb7\x04\xd3\x95\xd7\x88\x6c\xd2\xdb\xd8\x76\xa2\x67\xb0\xba\x13\xb3\x8e\x39\x6f\x61\x9d\x61\x31\xf4\x6b\x77\xbd\x96\x24\x25\x0e\x96\x62\xf1\xa2\xe9\x53\x74\x6c\x2c\xc9\xc2\x91\xc9\x85\x62\x8e\x38\x9c\x46\x94\x94\xf1\xe2\x9d\xf1\x2a\x61\x8e\xd0\xd1\xe0\x28\x2f\xb4\x89\x23\xc4\x19\x91\x65\x64\x22\xc1\x3a\xe2\x7d\xa7\x78\x25\x7e\xf7\x04\xaf\xba\x6e\xf1\x96\xe0\x6d\xd4\xf7\x05\x8f\xea\x53\x26\x3d\x59\x4c\x99\x11\x4f\x9f\x33\x15\x34\xeb\xd3\x9c\x09\x37\xc1\xcc\x08\x47\x98\x4d\xc8\x10\xbe\x90\xd1\x69\xec\x6c\xb7\x28\x08\x73\x6d\xde\x2a\x3c\x4d\xe8\xd7\xe0\x29\x33\xc9\x84\x19\x38\xa1\x16\x42\x39\x38\x9a\x3b\x74\xdf\x62\x73\x26\x65\x74\xe5\xc4\x85\xcf\x23\x7a\x7e\x28\x26\x3c\x16\x59\x5c\xa6\x52\x33\x07\xae\x7d\x2c\x0b\xa7\x44\xe4\x4c\x76\xf1\x4e\xe4\x84\xf8\xb2\x8e\xe5\x45\x87\xb0\x20\x66\xe0\x95\x15\x99\x22\x8e\xd7\x73\xc7\x52\x8f\x3b\xd0\x1d\xde\xad\x9e\xce\x7c\x03\xbb\x2d\xa9\x55\xd6\xf9\x22\xe8\x3c\xa4\x7c\xde\x8d\xef\x97\x91\x3e\x65\xe6\x09\xbd\xcd\xf9\x70\x0c\x87\xe3\x7e\xf9\x9a\xf6\x4d\xcc\x7c\x55\xb5\xd5\x43\xd5\x84\x06\xab\xd3\xf6\x80\xb0\x5c\xef\x11\x7e\xd4\x2d\xc2\x8f\xc3\xa6\xaa\x77\x58\x87\x6a\x15\x8e\xe7\xcd\xc5\x67\xac\xc3\xe6\xd0\x2b\x58\x6f\x0f\xfb\x63\x8b\x7a\xb7\xaa\x97\xa1\xc1\x76\xbf\x0a\xd8\x9d\x36\x9b\xbf\xab\xcd\x29\x60\x7f\x6a\x0f\xa7\x16\x87\xe3\x7e\x7b\x68\xf1\x78\xaa\x5b\x1c\x43\xb5\xea\x55\x6d\x96\xeb\xb0\xad\xd0\x84\x43\x75\xac\xda\xfd\x11\xcd\x7a\xff\x1d\x6d\xf5\xb0\x09\x0d\xda\x7a\x1b\xf6\xa7\x16\xdf\xeb\x55\xbb\x7e\x2b\xb5\xdc\xef\x9a\xb6\xda\xb5\x37\x0f\xfb\xfd\xa6\xfb\xe9\x3e\x9c\xc7\xa9\x90\xa6\xef\xb2\x76\xa7\xed\x43\x38\x3e\xf3\xee\x7e\xb9\xfe\xf5\xfe\xea\x5d\x5e\xd3\x1e\xeb\xdd\x5f\x91\x37\x3c\x2f\xcb\xb2\xbc\xc1\xdd\x1f\xe5\xf0\xfe\xe2\xb2\x1c\xe2\xd3\xab\xe7\xd3\xfd\xc5\xe5\xa7\xff\x8e\xfd\xf6\x33\xb4\x2c\xcb\x6f\xf7\x17\x97\xdf\x7e\x92\xb7\xcf\xcd\x5d\x96\xd7\x65\x79\x7d\x73\xf9\xf1\x65\xab\xde\xad\xc2\xae\xbd\x5e\xae\xab\xe3\xcd\xf7\x75\xdd\x86\xe6\x50\x2d\x63\x27\xdf\xdd\x8d\x9e\xe0\xfd\xfd\xd5\x7b\xec\xd1\x60\xf8\xe1\x6a\x70\x85\xc1\xd5\x87\xab\xe1\xd9\xbf\x01\x00\x00\xff\xff\xfc\x6c\xf1\x96\xa5\x08\x00\x00"
-
-func runtimeSyntaxSqlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSqlYaml,
-               "runtime/syntax/sql.yaml",
-       )
-}
-
-func runtimeSyntaxSqlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxSqlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/sql.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxStataHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x2e\x49\x2c\x49\xe4\x8a\xd1\x4b\xb4\x4f\xc9\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x52\x06\x9e\xcb\x0f\x00\x00\x00"
-
-func runtimeSyntaxStataHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxStataHdr,
-               "runtime/syntax/stata.hdr",
-       )
-}
-
-func runtimeSyntaxStataHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxStataHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/stata.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxStataYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbc\x5b\xaf\x24\x37\x92\x1f\xfe\xae\x4f\xd1\xdb\xff\xf9\x7b\xa5\x99\x95\xd4\xe7\xe8\xd2\x3d\xc2\x6a\x05\xb8\xbd\xc2\xae\xb1\xc6\xbe\xf8\x61\x00\x95\x36\xcd\x24\x23\x33\xa9\xe2\xed\x90\xcc\xcc\xaa\x9e\x98\xf9\xec\x46\x44\x90\x59\x75\x4e\xb7\x31\x06\x0c\xbf\xb8\xd1\x8c\xdf\x2f\x78\xbf\x25\x19\x64\x66\x9d\xc9\x3a\xa8\xd7\x04\x3f\xbc\x2a\x55\x55\xf5\xd9\x67\x06\x2a\xe8\xfa\xc3\x67\xaf\x5e\xbd\x7a\x45\x81\x41\x79\xf8\xe1\xd5\xeb\xd3\xe9\x2b\xf5\x93\x89\xbf\x7b\xfd\xd9\x67\x79\x75\x50\x24\xc2\x97\xaf\x74\x0c\xa5\xaa\x50\xbf\x2a\x35\xdb\x30\x8b\x37\xfd\x2b\x55\xe5\xfa\xc3\xab\xd7\xff\xe3\xf4\xfa\xf5\xe1\x09\xc1\x50\x5e\xaf\xff\xfe\xe6\x75\x97\x5b\xff\xf7\xe5\x2b\x6b\x20\x54\x3b\x59\xc8\x5f\x79\xa5\x73\x7c\x1e\xfe\x2c\xfb\xd7\x1f\x05\x49\x21\x7f\xff\x71\x80\x14\xf5\xea\x97\x5f\xff\x56\x69\xd4\xdc\xdf\x9d\x4e\xfb\x1f\x5e\xbf\x88\x79\x6b\x6d\x02\x6d\x95\x7b\xbf\xa8\xcc\xb1\x4f\xa7\xaf\x5e\x7f\xf6\xbf\xdb\x25\x9f\xea\x91\xff\x77\x3b\xe4\xff\x7b\xf5\x9f\x57\xeb\xea\x97\x36\xbc\x9a\xd6\xa0\xab\x8d\xa1\x7c\xf6\xb2\x9c\x5b\x7b\x5e\x9f\x4e\xe3\xe7\x83\x56\xce\x41\x46\x35\x8e\x19\x36\x54\x63\x41\xa5\xa3\x88\x05\x55\xb1\x81\xc5\x82\xaa\xaa\xc0\xe2\x91\xe5\x82\x6a\xad\x51\x47\x03\x38\x42\x55\x06\x02\x8e\x36\x44\x6f\x95\x3b\x48\x3a\x58\x55\x56\xbc\xb3\xa7\xf0\x38\x19\x1c\xaf\x15\x62\x36\x90\x51\xa3\x56\xab\x5e\xae\x0d\x28\x2b\x61\x9c\xea\xbd\x59\x7c\x41\x0d\xd6\xa1\x5e\x54\x46\xbd\xd8\x47\x16\x1c\x6f\xb1\x8f\x12\x8b\x23\x2d\xd1\x41\x39\x5f\x89\x24\xd4\xce\x26\x7c\xef\xa2\x3e\xa3\x76\x71\x76\x71\xc6\xf7\xde\x5c\x29\xe2\xfb\x38\x69\x12\x06\x75\x74\xf0\x14\x56\x3f\x12\x73\xaa\xc6\xec\xa2\x56\x0e\x0e\x75\x83\x5c\x6c\x0c\xa4\x87\x29\x03\x24\x95\xa9\xa4\xe8\x7a\xa2\x12\x27\xd4\x91\x79\xa0\xfc\x72\x46\xea\x3f\xee\x3e\xa3\x2a\xa0\x51\x57\x34\x50\xd1\xcc\xca\x7b\x95\x8c\xba\xb1\x67\xfc\x72\xf0\x3b\x46\x9c\x6a\x6c\xac\x9a\x59\xbc\xd1\xa1\xa2\xb1\x1c\x8e\x26\x4e\x23\x89\xf7\x24\x16\x12\x9e\xc4\x13\x89\x9d\xc4\x15\x4d\x24\x72\x45\xb3\x86\x00\xb5\xa6\x1c\x47\x04\x04\x87\x90\x8a\x89\xeb\xe8\x80\xd8\xe4\xa2\xaa\x08\x97\x44\x2e\x06\x9a\x2b\xca\xdd\x73\xea\xec\x3b\x95\xfb\xfc\x67\xfc\x99\xbc\x69\xe9\x82\x8b\x2d\xb5\x30\xcd\xa0\xcc\x41\x20\xe7\x98\x59\xdb\xb3\xad\x80\x52\xce\xe4\x22\xf9\xfa\xba\x5b\x53\x17\xfc\x99\x73\xe3\x16\x51\x7e\xd2\xf4\x06\x1c\xb4\x28\xa3\xbc\xca\x06\x17\xe5\xa6\x2b\xa8\x7c\x10\x77\xc5\x45\x95\x01\x52\x8e\x09\x97\x05\x97\xe5\x3d\x52\x77\x2d\x34\xb6\x4b\x5c\x73\xc1\xe5\x9a\x20\xcf\x10\x3d\xd4\x6c\xf5\x0b\x35\xe1\xbf\xa2\xa5\xf9\x2b\x92\x4b\xb3\xb3\x5a\x4b\xb1\x2a\xdc\x18\x55\xeb\x50\x24\x52\x30\x70\x09\xb1\xa2\x0d\xce\x16\x82\xac\xc2\x0c\x68\x03\xf1\x8d\xdc\xf1\x38\xdc\xf1\x96\x76\x6b\x13\xfe\x60\x87\x3f\x4d\xee\x86\x87\x5f\x9b\xbc\x36\x6c\xf7\x83\x68\xc3\x76\x3f\x56\xcf\xd5\x9e\xf6\x67\x16\x5d\x6b\x3d\x7b\xb0\xee\xdf\x7a\xa0\x91\xc3\xf7\xd6\x0f\x77\x4a\x0f\x75\x2a\x39\xa5\xe1\x8e\x1e\x21\x71\xb6\xa5\x5a\x7d\xcf\xef\xc3\xb8\x83\xc2\x7d\xef\x84\x97\xdd\x13\x7a\x3f\x84\xfb\x8e\x08\x3f\x8b\x3c\xf4\xa3\xde\x6d\x5d\x21\x26\xb9\xd7\x1e\x27\x45\x5b\x4a\x0c\x77\xb4\x87\x94\xab\x27\xe0\xf8\x47\xf4\xba\x9e\xe1\xda\xbb\x77\x07\x3b\xae\xce\xdd\xd1\xb4\x3c\x53\x7a\xaa\xe6\x21\x6a\x06\x5e\x14\x6d\x29\x57\xdf\xe6\xdc\x7f\xc5\xde\x5b\x0d\x69\x3e\xdd\xf7\x9a\x0b\xe8\xc2\x6d\xf5\x73\x61\x52\xba\xc6\x4c\xdd\xe3\x82\x3c\xea\x2e\xd8\xe3\x09\x61\x7e\x9b\x99\x2e\xd8\xdd\x96\x45\xe5\x2a\xda\x7d\x21\xc1\xb7\xce\x11\xad\x75\x54\x27\xe2\x79\x9f\x38\xce\xe4\x1e\xde\xe0\x31\x8a\x9d\xb4\xe0\xdb\x70\xca\x58\x7a\x55\xbd\x2d\xc5\x86\x99\x68\xb6\x17\x82\x35\xd8\x29\x66\x8f\x5e\x91\x7a\xa1\xa5\x9e\xb0\xad\x37\x5e\x5d\x64\x1d\xf0\xea\x42\xcf\x8b\x57\x17\x17\x29\xbd\xb9\x62\x5b\xa0\x8f\x2c\x6d\x20\x27\x19\xd8\xd0\x33\xb0\xa1\x65\x60\x03\x67\x60\x83\x64\x60\xc3\x5a\xa1\xa0\xf7\xe8\xfd\x7b\xf4\xd1\xa0\xa7\x85\xc0\xc7\x50\x17\x91\xee\x8a\x3e\x83\x33\x76\x42\x5f\xe2\x24\x4b\x04\xb1\x23\x6d\x89\x53\x01\x5a\xcb\x0b\x86\xbe\xb3\xdd\x66\x6b\xb8\xed\x6d\xcf\x67\xad\x4c\xd9\xd0\x37\xa6\xdb\xc4\x0d\x3f\x63\xe0\x75\xb2\x4d\xdc\x36\x6b\xdb\x48\xdc\xc6\x21\xa4\x96\x45\xa2\x14\x29\x54\xe4\xff\x1c\x24\xf3\x33\xac\xce\x79\x55\x31\xb9\x35\x2b\x87\x7d\x6a\x37\x4c\x78\x3f\xc1\x9f\xa8\xdd\x4f\xab\xca\x15\x72\x47\x77\xc5\x8c\x99\x4b\xcf\x47\x83\x72\x5b\x8a\x32\x17\x9e\x81\xbc\x64\x06\x67\x98\xe1\xe2\x05\xb2\x40\xc1\xd6\x77\x19\x92\x53\x57\xcc\x50\xd7\x1c\x30\xdf\x2f\x44\x59\xe6\x6b\x7e\xb1\xee\xe6\xdb\x72\x92\xfb\xd3\x90\x8f\x49\x96\x6f\x3d\x9c\x5b\xcf\xe4\xb8\x06\x83\x39\xee\x6d\x7f\xce\x71\xbf\xdb\x80\x49\x6b\xbe\xb4\x01\xe7\xde\x19\xb9\x62\xee\xb3\xaf\x13\x9a\x22\xb9\x3f\xcc\xf9\xf6\x28\x17\x2c\x5a\x39\x95\xb1\x8f\x77\xb1\x73\x40\xb2\x78\xd8\xe0\x29\x9e\x2c\xa3\x52\xdb\xa4\x2b\x54\x1f\xb8\x60\x79\xca\x15\x4b\xc1\x52\xde\x63\xa9\x59\xab\x4a\x60\xd6\x44\x10\x27\xee\x41\x31\x47\x09\x6a\xb6\x9e\xd5\x4e\x5c\x27\x47\x90\x83\x40\xb0\xa6\x04\x99\xf5\xb8\x0b\xa1\x4d\x4d\x98\x57\x55\x2f\xec\x15\x0b\xa7\xed\x08\x64\x9e\x00\x17\x14\xe9\xf8\x80\x65\x1d\x6d\x28\x35\x0b\xd9\x63\x36\xc4\xc4\xc3\x63\xd9\x01\x12\x56\x24\x53\x8e\x6d\xb8\xfa\x1e\xab\x41\x9e\x64\x75\xc1\x6a\x03\x56\x8f\x35\xd2\xf3\x56\xb0\x3e\x61\xcd\x34\x4e\x35\x37\x7b\x43\xe6\xe1\x6d\x91\xac\x3b\xd6\xdd\xd6\xc5\x06\x5c\xd9\x38\x5b\x4d\x6b\xd0\x6a\x5a\xb1\xab\x2d\xc6\xd2\x42\xb1\xda\xe2\xa0\xd2\x74\x5c\xa9\xdb\xa2\x4f\x2a\x03\xf3\x12\x73\x3d\xc3\xf5\xde\x1f\x2e\xf7\x21\x4d\x9b\xac\x60\x8d\xa2\xe6\xe8\x99\x70\x79\xdc\xe5\x9b\x72\xd6\x90\x81\xb4\xf6\xd2\x39\x78\xaa\x4c\xb2\x9d\x17\x61\xd2\xd7\xeb\xd1\xd9\x9c\xab\xad\x4e\xea\xc3\x03\xb3\x1e\x63\xb5\x1e\x83\x45\x4c\x66\xa7\xfd\x20\x51\x69\x1c\xd6\x3e\x20\x4c\xe4\xa1\x39\x68\x9e\xee\xb8\xba\xf1\x1e\x5b\xc6\x8f\xeb\x14\xa0\x68\x95\x5a\x15\xe2\x02\xbd\xb1\x3c\xae\x44\x79\x34\x3b\xd1\x71\x6d\xed\x94\xf1\xde\x40\x93\x63\x3b\x71\x07\x38\xb3\x70\x57\xec\xf3\xbe\x21\x8d\xf4\xed\x09\x38\xd8\x33\x6f\x1e\xe4\xfb\x3d\x6d\xa7\xc5\x84\x4b\x27\x31\x66\x50\xe7\x66\x25\xb3\x31\xd6\x0c\xb1\xeb\x82\x57\x8f\x57\x8a\x7b\x7d\xc2\xeb\xfe\xc5\xe9\x34\xbe\x7e\x79\x2e\xd1\xd1\x7b\x15\x4c\x3f\x96\xd0\x49\x18\x3c\x84\xfa\xe2\x54\x62\x27\x04\x57\x80\xc5\xe9\x54\xfe\x60\x27\xb4\x01\xa7\x98\x41\xe9\x85\x90\xdc\xc6\x42\x89\x74\x0d\xd6\x8e\x70\x90\x82\xe3\x15\xc7\x2b\x01\x4d\x28\x7c\x5a\x2d\x54\x77\x25\x44\x35\xc6\xb5\xa2\xd2\xa8\xf4\xf0\x16\x95\x4e\x39\xb9\x58\x0f\x42\x7e\xe6\xb7\xb5\x54\x54\x26\x92\x4b\xaa\x2e\x84\x6b\x62\xdb\x5e\xb9\xb4\x28\x54\x1e\x54\x28\x48\xe7\xa3\x10\xc9\x6d\x2c\x94\xc8\x01\xa8\x95\x8d\x57\xa0\xd5\x8b\xb9\x81\x09\x95\x9c\x80\x54\x42\x95\xd8\x01\x8b\x20\xd2\xa0\xca\x7a\x61\x31\x98\x2c\xd8\x32\x23\x9a\x18\x9c\x47\x95\x61\x66\xc1\x5e\x73\x41\x95\xad\x57\x22\x25\x21\x91\x9e\x92\x78\x42\x55\x50\x15\x4f\x4f\xb1\xad\x37\xd6\x23\x1d\xba\x9b\xee\x14\x3f\x5d\x86\xc1\xb8\xf9\xce\x8b\x32\xa2\x9c\x0a\xb0\xc8\x22\x2b\xaa\x4d\xfa\x71\xeb\xbd\xc8\xa4\x74\x1c\xde\xe2\xa8\xcb\x19\xf6\x37\x38\xce\xd1\x4c\x19\xae\x74\x3c\xa4\x76\x8c\x36\xbd\xa1\x62\x47\xcb\x39\x8c\x36\xa5\xa6\xe6\x03\x13\x03\x57\x7d\xb4\x15\x4a\x07\x4b\x18\xf7\x8a\xa3\x18\x27\xa3\x07\x5f\xe8\x59\x1d\x23\x65\x15\x63\x2d\xca\x27\x21\x35\xab\x3b\x36\xbc\xc3\x31\x5e\x74\x1c\x5c\xc3\x24\x78\x69\x30\x7c\xdf\x49\xc2\xb1\x17\x9d\x91\x9f\x05\x1c\xb3\x05\xe2\x91\xdc\xce\xa2\x88\x04\x1c\x33\x85\x64\xee\xd6\xb1\xe0\xc8\x4d\xa7\x5a\xb8\x61\x6f\x04\x3a\x72\xd0\x13\x77\x42\x8b\x5f\x55\x65\x4f\xc2\x77\x84\x5c\x69\xa9\xf1\x5b\xd4\x0a\x75\x1f\x57\x4d\x83\xaa\x55\xeb\x35\xad\x3c\xfb\x05\x3a\xb9\x92\x1c\xde\x75\xe4\x68\xc4\x7a\x3a\xe2\xe4\xc7\x2e\xc7\xdf\x80\x2f\x0e\x48\xa9\x2c\x56\x91\xb9\x01\x20\x6d\x79\x5a\xa3\xa6\x15\xbf\x36\xa0\xda\x68\x8b\xda\xa0\x86\x50\xe2\x58\x86\xaa\x68\xd7\xd4\x64\x15\x10\x4e\xfd\xf4\x6e\x2c\x49\xd0\x67\xe3\x66\x3a\x18\x16\xd1\x68\xf4\xbc\xe2\x2b\x0b\xe9\x13\xf6\x5d\x5c\xba\x8b\x43\x5b\x98\x5e\xc0\x25\xa4\xa2\xac\x45\xed\x50\x3b\x9a\x80\x2c\xd7\x6a\x49\xa7\x25\x49\x3b\x0a\xb4\x85\x45\xa5\xf3\x3f\xdf\x01\xb0\xa0\x59\xc4\x98\x18\xac\xc8\xa1\xec\x42\x6a\x83\x1e\x8d\x27\xb9\x10\x41\xd7\xa3\xb6\x0c\x03\x6c\x5c\x62\xa1\xa2\x54\xce\xea\x8a\xda\xad\x85\x76\xba\x86\x83\x07\x55\xd6\x4c\xcd\x68\x1e\xa5\xf2\x05\x85\x28\x35\x03\x3c\x53\x68\xb0\x44\xe5\x51\xf4\x86\x4b\x0a\x99\x1c\xb0\x98\x45\x52\xcd\x18\xa9\x46\xa1\xb0\x7f\x34\x30\xc6\x78\x96\x0b\x8c\x54\xbe\xed\x84\xaf\x34\x62\xf6\xab\xab\x43\x18\xef\x95\x1d\xfb\x6e\x4c\x98\x81\xfa\x33\x86\x89\x85\x15\x99\x1b\x78\xc2\x0c\x81\x80\x63\x51\xe7\x46\xde\x80\x04\x54\x47\x7b\x90\x70\x63\x1c\xb9\xda\xb0\x02\x93\xac\x34\xf9\xa4\x2b\x0b\xd9\x9e\x89\x95\xb8\x66\x4d\x51\x28\xd7\xac\xfb\xa5\x4a\xce\x8f\x46\x55\xc5\x6c\x50\xa1\x5a\x61\x67\x1f\x85\x14\x2f\x51\x41\xa4\x6b\xa0\x3a\xd6\x83\x48\x8c\x39\x2b\x6a\xcf\x4a\x2e\xa0\x6c\xa8\xf4\xc4\xcb\x53\x4e\x92\xba\x35\x5e\x46\xc5\x9d\x77\x59\xd4\x07\x02\x1e\xed\xb6\x4f\xdc\xb6\x09\x4d\xf5\xcc\x50\x59\xac\x22\x73\x83\x80\x3a\x47\xea\x55\xfa\xaf\xb3\xa5\x07\x4b\x70\xe0\x91\x2d\x16\xa9\x23\xea\x40\x13\xb6\x16\xca\xa4\x96\x3a\x7c\x27\x40\x5d\x5c\x6b\x24\x58\x7d\x49\x22\xa9\xc4\xd5\xaf\x0e\xf5\xca\x4f\x05\x49\xf6\xa3\x67\xc0\x20\xf5\x53\xb1\x73\xc7\x70\x10\x75\x63\xf5\x8e\xae\xf7\x3c\x3f\x53\x80\x6f\xb1\x6a\x9c\xd0\x8c\x68\xf8\xf4\x60\x00\x0d\x68\x72\x91\x85\x11\x49\xbe\xd3\x84\x06\x0a\x39\xcd\x22\x8b\xb4\x0d\xc6\x8e\x14\xb7\x59\xc9\x66\x92\x4c\xa7\xd9\x15\x34\xd3\xca\xd7\x91\xc6\xa2\xb1\xc3\x8c\xb4\x5a\x18\xcb\xcb\x67\x41\x63\xd9\x69\x95\x0d\x61\x62\x31\xd0\x73\xc5\x44\xc0\x89\x54\x0d\xae\x84\xd5\x06\x5d\xd1\x44\x34\x11\xc8\x19\x16\x56\x24\x05\x54\x1e\xcd\x86\xc3\x5b\x34\x6d\x89\x37\x59\xed\x64\xf1\xa1\xc9\x31\xa1\x29\x68\xca\x20\x5d\x5c\xaa\xa1\x8d\xc5\xac\xc9\x59\xad\xc8\x5c\x36\x2b\x9d\xaa\x14\x9a\x9d\x17\x56\x73\x35\x17\x04\x04\x83\x54\x12\x97\x03\x33\x04\x04\xbb\xd1\x73\x0a\x9e\xf6\x7f\xda\xe3\xc9\x2f\x68\x72\x91\x85\x11\x09\x08\x4f\x08\x99\xe6\x1e\x70\x02\x7a\xce\xdd\x24\x98\x04\xca\xce\xb8\x40\xed\x38\xcc\x2d\x4a\xe3\x43\x59\x6e\x6a\x3a\xa8\xbd\x8b\x65\x9f\xc7\xb2\x1c\x8b\x33\xac\xab\xc8\xdc\x20\x20\x64\xe2\x39\xa2\x5c\xec\xd1\xce\x0b\xa5\x0e\x7a\xe2\x0b\xc0\xc6\xd9\x60\x65\xea\xac\x3e\xf3\x36\x40\x1a\x5c\x92\xa2\xe6\x96\x3a\x2c\xd1\x09\xa9\x47\xe8\x1a\x0e\x4f\xa1\xf1\x8c\xb2\x43\xb1\x1c\x0c\x4c\x6a\x75\x5d\x2b\xab\xf7\x8d\x6e\x1a\x86\x18\xdc\x15\x79\xff\x6f\xdb\x08\x14\x84\x1a\x4d\xdc\x91\x67\x2e\xd4\xe8\xcd\x15\xe1\x82\x70\xb1\xe4\xf8\xae\x93\x6b\xc3\xa0\x1d\x4e\x4a\x93\xab\x2c\xa2\xc8\xdc\xa0\x6d\x95\x4d\x49\x07\xd1\x6a\xc8\x91\x2c\x58\xd3\xbd\x44\x6d\x1a\x2d\xde\x93\x56\xa5\xc9\x81\x56\xd7\x95\x42\x59\x9b\xb3\x4a\x0b\x4e\x46\xd1\xf3\x22\xa0\x3b\xe6\x83\xd8\x1b\x1b\xef\x28\x10\x2f\x6a\x6b\xc0\xea\x5a\x00\xa7\x85\x96\x8b\x48\x16\x24\xdf\xc3\x6a\x17\xc9\x97\x76\x60\x12\x93\x75\xb4\x2d\x4d\xd6\x39\x32\xa7\x6d\x30\xc3\xe2\xd2\xd0\xc2\x83\x39\x88\xad\x0d\x86\xb7\x38\x91\xe2\x70\x72\x96\x5c\x61\x51\xc9\xb8\xfe\x6e\x78\x83\x7c\xd0\x26\xa1\x44\x56\x9c\x52\x06\x63\xa9\x23\xb3\xd2\xc3\xc3\x77\xdf\x0a\x51\xe6\x37\x21\x7a\x39\x37\x12\x2f\x42\x8c\x49\x8d\x50\xee\x4c\x36\x41\xaa\x24\xa1\x5f\x1b\x49\x2d\x66\x7a\x6a\xd8\x22\xee\x73\x2b\xef\x12\x19\xe9\x41\x23\xe4\xc7\xba\x13\x6a\x0b\xd1\xe8\xae\x42\x32\x0d\x5c\x26\x53\xe8\x22\xb8\x04\xc1\x24\x50\x43\xc7\x47\x26\x95\xcc\xbc\xa9\x46\x36\xfd\xa7\x1a\x59\xd0\xc4\x9a\x6a\xdc\xd9\x73\xc6\x59\xf9\xfe\x18\x76\x9a\x3a\xb3\x37\x4f\xdb\x2e\xb8\x45\x0e\xe6\xb1\x91\xe6\x4d\x4f\x36\x13\x7a\xb4\x67\x63\x87\x05\x2e\x6a\x8e\x81\x79\x49\xf1\x0c\x05\x67\x40\x6a\xe6\x0c\x81\x09\x64\x91\xaa\x41\xed\xc8\xa1\x59\x85\x33\x61\xa9\x86\x60\xa3\x13\x0b\xce\x50\x6b\x3c\x53\x1e\x0e\x67\xa7\x0c\x1d\x45\x1a\x0e\x6f\x71\x76\xd6\x0f\xee\xcd\x43\x27\x8f\x9d\x7c\xd3\xc9\xb7\x9d\x7c\xd7\xc9\xf7\x9d\x1c\xc9\xdf\x75\xf2\xc7\x46\x1e\xde\x74\xd2\x73\x7e\xe8\x39\x4f\x82\x7e\x15\x0c\xfb\x43\x27\x8f\x9d\xb4\xb2\x93\xc0\xd6\x22\x6c\x2d\x7c\x6b\xc1\x5b\xab\xd9\xd6\x2a\xb6\xb5\x7a\x6d\x54\x2d\x4f\x6e\xf8\x9e\x65\x62\x49\x9d\xed\x3c\x4f\x87\xd9\x45\x72\x23\x0b\x25\x92\x3a\x87\x0d\x43\x81\xe1\x5d\x27\x09\x67\x39\xf9\xcd\x61\xcc\xc0\xf5\x27\x32\x37\x18\xbe\xeb\x24\xe1\x1c\x3d\x1f\x63\x08\x81\x0b\x24\x92\x5b\x08\xe4\xfa\xe1\x20\x3c\xe4\xd1\xa7\x63\x1a\xdd\x38\xad\xd3\x87\x9a\x0e\x6a\xef\x62\xd9\xe7\xb1\x68\x9e\xa5\xc5\xc4\x4a\x40\xcb\x02\x41\x26\x4b\x6c\x4e\x19\xa6\x42\x10\x47\x4b\xf5\x68\x5b\x5e\x43\x6a\x65\xc6\x39\xbf\xc5\x39\x0f\x6c\xa3\x11\xae\x39\x03\xa5\xcd\x83\x19\x59\xf6\xe5\x88\xb8\xcd\x0c\x59\xed\x1d\x87\x76\x4f\xc8\x6a\x4c\x84\xbc\x11\x36\xdc\x2c\xec\x31\xd5\xc2\xfa\x45\xcc\xfe\x1b\x7d\x14\x9e\xe8\xc8\x3e\xe7\xa1\xd5\x3a\x0f\x4f\x45\x2f\xe0\x39\xe6\xd3\x0a\x99\x73\xe7\xc5\x8e\x91\x37\x1f\x66\xbd\x64\x5e\x1f\x09\xa1\x36\xb8\x65\x20\xfb\xcf\x9c\x87\x35\x98\xc8\x58\x48\xa5\x95\x99\x25\xb5\x1e\x46\x45\x0d\x03\xcb\x4f\x9b\xe0\xf0\xf6\x60\xd4\x4f\x34\x0b\xc6\xeb\x41\x28\xb4\xf0\xaa\x6a\xc3\x14\x3b\xaf\xd7\x04\xc4\x39\xe3\x1e\xc0\x1b\xcb\xcc\xd7\x12\xf3\x1e\xa3\xc1\x05\x17\x65\xac\xdf\x22\x2e\x7c\xac\x5f\xd4\x5a\xbc\x0a\xb8\xa8\x0d\x32\x2e\x80\x74\x10\xa2\xf5\x82\x90\x17\x0c\x21\x81\x91\xe7\x18\x93\xdc\x42\xf8\x9e\x6e\x01\x87\x7c\x6e\x5a\xd8\x94\x58\xa0\xca\x61\x5a\x48\x12\xe4\x78\x95\x4f\xd3\x0b\x5c\xcc\xea\x13\x2e\xd6\xd9\x0a\xb8\xd0\x82\x4f\x62\x78\xcb\x10\xd9\x72\x5e\xe4\xa1\x58\xdc\x8a\x8b\x3c\x06\x4b\xac\x54\x10\x49\x47\x96\xdd\xd2\xa6\xd4\xc2\x85\x16\xe0\xdb\x0c\xab\xcd\x1f\x59\x0c\xd3\xc4\x98\xd0\xda\x82\x56\xf6\x46\xeb\xb9\x02\x36\xb0\xd1\x6d\x83\x76\xab\x21\x9c\xc8\x59\x16\x4e\x24\xfb\xda\x0b\xda\x90\xc8\xad\x2c\x28\x65\x21\xb7\x00\x30\x4f\x2c\x40\xa4\x6e\x40\x21\x15\x66\x96\x81\x64\x16\x85\x1e\xd5\xb7\x9d\x24\x26\xf3\xe3\xc0\x6f\x80\x6a\x9e\xef\xc9\x23\xda\x14\xf9\x20\x61\xf9\xbc\x6e\x33\xda\x3c\x91\x1b\x74\x06\xf6\xcf\x93\x47\x9b\x2d\xda\x32\x94\xed\xda\x80\x6c\x75\x5b\xac\x41\xdb\xec\x47\xbb\x51\x1f\x0d\x0f\x34\x1a\x8d\x1f\xcc\xd6\x83\x50\x6d\xd8\x6c\x64\x39\x4c\x31\xd6\x10\xa9\x94\xad\xde\x52\xd7\x9e\xb8\xb6\xb4\xb5\x25\xfd\x4d\xe9\xf3\x39\xd8\x09\x98\x09\xb9\x87\xe1\xfb\x4e\xde\xe1\x6f\x67\x9e\x92\xbf\x45\x4b\x33\xfa\xac\x9c\xca\x5e\x3d\xe0\x59\x25\x72\xc3\x37\x24\x3d\xd0\x46\x78\x56\x29\x29\x92\xb4\xf9\x9e\x0d\x84\x62\xeb\xf5\x20\xc3\x5b\x3c\x03\x24\x3c\x17\x4f\xce\xe6\x10\x37\x3c\x57\xb5\xe2\x79\x57\x8e\xec\x08\x87\x4e\xa1\x53\x23\x39\x60\xe1\x44\xf2\xf1\xb5\x6d\x47\x0e\x36\x70\xa5\x41\x9c\x98\x64\x35\x03\x3a\x32\x4b\x48\x0c\x09\x9d\x45\x67\x83\x8e\x9e\x00\x48\x9c\x79\x16\x71\x29\x34\x77\x9d\x8b\x87\x71\x7c\xc7\x69\xa1\x3c\xd4\x74\x50\x7b\x17\xcb\x3e\x8f\x65\x25\x16\xdf\x16\x30\x29\x43\xf3\x69\xa5\xb4\x77\x66\x9d\xd1\x5a\xee\xe8\x00\x41\x03\x23\x84\x52\xf2\x25\x32\xa5\x3c\xde\xc7\x31\x1e\xb1\x8f\xba\xde\x29\x5c\x8d\x43\x4f\x37\x6e\xef\x23\xda\x17\x11\xa9\xc2\x41\x2e\xda\x5c\x54\xc6\x86\x99\x4d\x22\x17\x35\x39\xc5\xc2\xf5\xd7\x7e\x56\x5e\xf0\x71\x5d\x5f\xbe\xfe\xa3\xda\xf2\xf3\x2e\x5b\x9f\x58\xc4\x7d\x1b\x94\xcb\x90\x42\xc8\x86\x86\x8b\x01\x76\x75\x45\x17\xe3\x79\x8a\x99\x71\xa5\x68\x3b\x94\xd2\x60\x78\x8b\xae\x9b\x8a\x2e\x03\x19\xc7\xe8\x32\xd5\x2b\x47\x4d\x81\x59\xc6\xb0\xa0\x2b\x10\x9a\x24\x7f\xc6\x0b\x3a\xa9\x81\xac\xe0\x02\x14\x5a\xb3\x55\x61\x46\xb7\xa1\xdb\xf2\xa3\x34\xb6\x91\xe1\x2d\x7a\xf4\x0a\xbd\xd2\xe4\x32\x8b\x88\x5e\x9d\x41\x87\x82\xb4\x86\x7a\xb9\xb7\xf5\xf7\x17\xb7\x4d\x49\x8d\x70\xad\xbc\x0a\xb4\xd4\x79\x95\xcf\x2c\x6c\x60\x88\x6b\x65\x6c\x57\x58\x9e\x53\xd7\x41\xab\x94\x98\xc8\x6d\x2f\xb1\xb4\xd6\x21\x0b\xcd\x2d\x54\xb1\x18\xe4\x02\x8b\xe9\xb1\xbb\x8a\x46\x3b\x28\x33\xaf\xea\xf3\x20\xaf\x2a\xef\x72\x5d\xa1\x5d\x4c\x38\xf8\x98\xaf\x8d\x3b\x3b\x36\x16\x6f\xb1\xdb\x8e\xc9\x7c\x5f\xac\x5e\x98\xca\xd3\xe8\x55\xd5\x89\x86\xc4\xab\xca\xcf\x91\x57\xb5\xc7\xce\xf2\xba\xf7\xee\xa5\x6f\xb6\x97\x81\xd7\x60\xb9\x23\xa6\x3a\xd5\x6c\xcf\xe8\xb5\x26\x67\xd1\x9b\x37\x03\x7a\xf3\xc0\xc2\xc0\xb8\xce\xc4\x1e\x59\x1c\x6a\x21\xd7\x7b\xde\xd0\xe3\xe5\x4d\xe1\xcb\xa7\x99\x58\x7b\x51\x5c\xbc\x04\x97\x05\x92\xca\x06\xbd\xb9\x92\x39\xce\x30\xa1\x87\xc1\x00\xf9\x92\x91\x2b\x5b\x93\x07\x63\x59\x91\xfe\x68\xd7\xc2\x1e\x9e\x92\xca\xd4\x59\x34\x2c\x90\x67\x16\x80\x7e\x4a\xe8\xa7\x0b\x7a\xde\x34\xfd\x12\x0d\xd5\xcb\x86\x91\xdf\x49\x7a\x7b\x01\x43\xbb\x41\x27\x64\x6c\xa8\xec\xd1\x9f\xdb\xed\xb7\x3f\x93\x31\xe4\xcf\x5c\xcb\x73\x49\xbc\x2c\x79\x87\xde\x0d\xdf\x91\x50\xe6\xb7\x42\x38\x2e\xcb\xc2\x44\x0f\x86\x81\x76\x6c\x26\x32\x09\xdc\xa0\x43\x25\xe0\xee\x11\x32\x71\x4c\x78\x23\x72\x18\xa7\xb9\x34\xaa\xaf\x9a\x26\x1d\x73\x43\x2d\x20\x66\x19\x1e\x44\xde\x62\x3f\x70\xd9\x8d\xde\x12\x3e\x1c\x09\x1f\x45\xde\x85\x8d\xd3\xfc\xa6\x91\x7c\x10\xc9\x78\x5c\xde\x3c\x35\xb2\xb4\xa0\xa5\xc7\xc9\xad\x0a\xba\x13\x33\xa5\x37\x8d\xe4\x83\x48\x3e\xe6\x88\x23\xb5\x84\xae\xcf\x9d\xb8\xa9\xc1\xad\x29\xc4\x7b\x5b\xdc\x74\x57\x61\x37\x1d\xad\x71\x53\x4f\x2e\x69\x42\xcf\x2f\xe4\x56\x87\x6c\xd6\x1b\xb9\x65\x2e\x5a\xcf\xfe\xd0\x9e\x6e\xea\xad\x3c\x56\x7b\x89\xac\x84\x7c\x64\x74\x31\x1c\xe9\xd8\xb9\xbd\x1b\x66\x78\x0a\x3c\xc8\x73\x56\xe6\x4d\x23\x89\x4b\x5a\x7a\x91\x8b\x04\xf0\xdd\x88\x77\x83\x0d\xb6\x0a\x6e\x04\xb4\x6e\x7b\x37\xf0\x67\x16\x6e\xf0\x8e\xd7\x9f\x46\x86\x77\x4c\xa3\x01\x9e\x77\x61\xe4\x8c\x62\xe2\x18\x5c\x47\x5e\x1c\xbd\x6b\x56\xb4\x77\x43\x36\x73\xe6\x62\x32\xa4\xc8\x35\x2b\x03\xd7\xb4\xe8\x98\x85\x90\x0d\x47\xa4\x82\x5e\x82\x7d\x5a\xd9\xb7\xdd\xdd\x78\x07\x9b\xa2\xc2\xa6\x01\xbd\xf3\xaa\x8e\x6c\xef\x30\x15\xc2\xd5\xa5\x7d\xc6\xb7\x8f\x47\x64\x03\xb9\xeb\x94\xb6\xa1\x78\xc7\xe7\x02\xef\x24\xdd\x06\x9a\x49\x70\xb4\x82\x50\xd5\xb8\x3e\x71\x23\x07\xd8\x5f\x63\xdd\xbd\xb4\xba\xbd\x9f\xf2\x3c\x12\x0c\xb4\xf2\x6c\xed\xaa\xd2\x6f\xed\x96\xcd\xb3\x5d\xc5\xb2\x2d\x3b\x01\xe5\x14\x27\x67\x37\xfe\xe8\xa3\xdd\xbd\xf5\xd3\x9c\x60\xd9\x31\x40\x61\xe3\x31\x40\xc5\x00\x3b\x5c\x45\x0e\x6f\x1b\x26\xc2\x82\xc1\x61\x70\xe4\xe9\x86\x3f\xb2\xa0\x00\xd7\x04\xfb\x93\xf1\xc2\x92\x3d\xe1\x92\x1e\x1b\x70\x28\x11\xd5\xb1\xfb\x7c\xd3\x80\xf5\x39\xfa\x6f\x1a\x74\xfd\xdb\x06\xac\xf3\xc4\x09\x64\x97\x7c\xd3\x80\xbd\x5d\x9c\xbf\x6d\xc0\x7a\x9c\x87\x6c\x18\x39\x7a\x1b\x0d\x21\x74\xfc\x11\xc6\x2f\x2c\x02\xef\xde\x18\x22\x86\x28\xaf\xc1\x42\xb4\xe4\x0a\x0b\xa1\xd6\x35\xb8\x22\x0f\x30\x89\x22\x92\x37\x89\x90\x6a\x86\x60\x30\xac\x5e\xb6\x1c\x22\xb4\xd3\x44\x33\x6a\x8c\xce\x0c\x74\xea\x89\x2e\x92\x9b\x59\x58\x91\xd4\xfb\x51\xea\x19\x7b\x3d\x63\x7b\x4b\x13\x03\xc6\x00\xe4\x76\x16\x0a\x9b\x3d\x12\xd3\xa0\xa3\x0b\x5e\x88\x4f\x84\xc6\x4e\x13\x21\x3d\x52\x31\x0d\xa5\x66\x8c\x89\x5d\x64\x31\x8a\xe4\xf2\x78\x52\x35\xa0\xf2\xda\xbc\x6b\x48\x1e\xb5\x0c\x70\xd1\x6e\x2d\x76\x03\x94\xed\x3e\xe6\xba\x50\xdd\x73\x5d\xf8\xea\x29\xae\x48\xcf\x69\x5c\xeb\xc4\xc2\x8a\x74\x0d\x80\xb0\xb0\x58\x44\x42\x83\x03\x2b\xc6\x8d\xcd\x90\xa4\x34\xb9\xe1\x2d\x26\xc5\x1f\x57\xa0\x6c\x67\x2c\x07\x63\x4b\xb1\x1e\x13\xdf\x0c\x26\xad\xc8\x0d\xef\x58\xf6\xbb\xf1\x74\xbc\x3f\x4c\xfc\x02\xf1\x76\xa5\x49\x94\x3f\x36\x92\xb7\x7c\xa9\xbf\xe5\x4b\x7a\xb1\x2c\x98\xc7\x9c\x31\x69\x7e\xc3\x97\x20\x54\xbb\x7a\x4c\x20\x2f\x56\x1a\x52\x34\xc8\x9e\xce\x76\x0d\xa9\x0a\x90\x4b\x0c\xca\x61\x82\x1a\x07\x6a\xc8\xf9\x78\x4b\x95\xce\xf2\xb2\x24\x9d\xe1\x69\xb5\x1b\xe1\x45\x79\xda\x40\x0f\x46\x79\x9e\xcb\xa2\x12\xf9\xf1\x55\xb0\x00\xf9\x3b\x4c\x2e\x22\x2f\x6d\xc9\xad\xb3\x0d\x98\xf8\x02\x9f\x25\x45\x88\xb6\xcc\x71\x92\x8f\xa5\xe8\x99\x16\x52\xf6\xf6\xf9\xd4\x90\x5e\x7e\x58\xd5\x3b\x28\x16\x11\x72\xa7\x4a\x8c\x47\x8b\x08\xbf\x12\x48\x09\x72\xa6\x64\x19\x53\x56\xb6\x88\x1c\xa0\xe3\x63\x23\x09\xbb\xd9\xdb\x30\x38\x62\x05\xf2\x46\x71\x6d\xa0\x80\x88\x3c\xf5\x64\xc2\xb5\x69\xf6\xec\x15\xfd\xb1\xbe\x91\x81\x36\x54\xeb\x81\x59\xdc\x20\xf3\xc0\xe6\xa8\xf3\x5a\xe8\x69\xbb\xd1\x5b\xd2\xee\xc1\xc9\xf9\x63\x5d\x22\x33\x0b\xa1\x59\x35\xf0\xc8\x1f\xd7\x92\x88\x99\xdf\x0c\x27\xb1\xcc\x05\x2c\xa6\x5d\xa6\xc1\x6e\xf0\x09\x0b\x3e\x8d\x57\x72\x05\x9f\x68\xa6\x3c\xc9\x4c\x79\x6a\xc7\xb9\xa7\xe3\x76\xf1\x89\x47\xe5\xa9\x8d\xca\xd3\x13\x8f\x98\x00\xe9\xb4\xa8\x92\x18\xb4\x40\x12\x28\x3b\x3e\xad\xf8\xb4\x2a\xa3\x97\x33\xa1\xbc\x5d\xee\x84\x52\xae\xa4\xf2\x47\x6f\xb4\xab\xc9\x57\xb9\x74\x28\xa1\x0d\x24\xab\x6a\x23\x66\x99\xd2\xb9\x4f\xe9\xac\xe3\x84\x19\xf8\xa6\x3e\x83\xa6\xe3\xe3\xdd\x37\x70\xe4\xbe\x61\x31\x24\x02\xb3\x93\xe4\x0f\xe2\x32\x88\x1c\xd2\xa3\x90\xd2\x40\x62\xf2\x9b\xd4\x86\xad\xeb\x49\xb3\x1b\x07\x7b\x45\x32\x90\x53\x2c\x3c\x36\x5b\x3c\x43\x48\x93\xbd\x60\x86\x04\x9c\xa6\x7d\x2d\x07\x7c\x15\x96\x41\x66\x7e\x86\x52\x23\xd7\xa0\xf2\x77\x78\xf2\x31\xde\xf1\x49\x9e\xc7\xec\xc9\x08\xcd\x71\xdc\x14\x81\xe6\x05\xaf\x21\xb5\xba\xb1\x77\xc4\x26\x7a\x12\x08\x6d\x6d\x20\xfe\x33\xed\xeb\x39\xca\x3d\x7a\x43\x49\x5b\xd5\xd8\x80\x75\xb9\xf0\xc9\x6d\x45\xce\xc7\x92\x9c\x39\x5d\x55\x2c\x84\x56\x68\x40\xcb\x4b\xe6\x1e\x96\x11\xce\x2b\xe6\x35\x90\xe3\xf9\x95\xb7\x49\x8a\x15\xa4\x62\xb6\xd4\x7c\x52\xf3\x29\x0a\x8b\x9a\x80\xbf\x6d\x93\x33\x17\x41\xb1\x58\xd4\x86\x7c\xc8\x21\x61\x32\x94\xd5\xd5\xc2\x0a\xb5\xa8\x68\x2c\x5a\xf1\xe7\x7f\xf2\x0d\xe0\xf1\x25\xa0\x56\xfc\x89\x5a\xd1\x7e\xe0\x35\xa7\xe8\x48\x8e\x2f\x56\x18\x13\x03\x6f\x3f\x4c\x2a\x41\x46\xb1\x90\x58\x72\x15\x0f\x36\xf0\x11\xa2\x68\xda\x32\x59\xb6\xe0\xc6\x5a\xb0\xe1\x16\x0b\x58\x2c\x80\xed\xb2\xac\xd0\xc1\x82\x7a\xac\x40\x82\x46\x72\x1e\xf9\x9b\x45\x46\xea\x03\xc8\x05\x2a\x36\xd7\x5f\x94\x15\x2c\x53\x56\x41\x5b\x85\x65\x41\xda\x44\xca\x02\x8e\x05\xcb\x9d\x9f\x81\x4e\x28\x1b\x3b\x87\x8f\x3e\xc2\x20\x4f\x3e\xd1\x13\x91\x3a\x5a\xbf\x3a\x91\x9c\xc8\xaf\x7c\x0d\xd6\xc9\xf0\x0e\x8b\x5c\xbe\x14\x07\x90\xb0\xc8\x84\x10\x18\xcc\x63\x67\x09\x8b\x8f\xb1\x2e\x58\x82\x4a\x25\xa9\x80\x25\x62\xa1\x8e\xa4\x39\x5e\x12\xa8\x4c\xe7\xf1\x92\xec\xb9\xf5\x58\x67\x54\xaa\x70\xf2\xa4\x93\xd5\x70\x61\x52\x51\xbe\x9d\x29\x6d\xc1\x28\xf4\x64\x14\x7e\x34\x8a\x3c\x1b\xa5\x3d\x1c\x85\xc6\xbf\x62\xa9\x83\x66\xb9\x68\x91\xa6\xc1\x40\x3d\xc6\x6f\xe3\x59\x96\x2b\x13\x36\x60\x4a\x1d\x52\x8e\x3e\x12\xe1\x1e\xaf\x43\x59\xe2\xce\xe8\x93\x63\x5c\x47\x4b\x39\x29\x7d\x46\x7e\x6f\x3d\x5e\x3b\x52\xef\x54\xbe\xd9\x2c\x55\x5b\x16\xd4\x9c\xaa\xe3\x45\x64\x5b\x26\x84\x4f\xf9\x20\x74\xda\x14\x9e\x1a\xd2\xfc\x23\x72\xf6\x1d\x25\xa7\x9e\x7e\xcd\x5b\x03\xe8\xc8\x11\x0c\x50\x63\x80\x52\x41\xda\x2d\x57\x85\x2f\x85\x79\x3b\xa3\x52\x66\xfe\x1e\xd5\x52\xe1\xbf\x45\x4b\xdc\x53\xff\x78\xea\x93\xb4\xc8\x60\x34\xc2\x39\xa6\x45\xc6\xbb\x11\xf1\xe3\x0d\xa9\x54\x99\xb2\x0c\xec\x2f\x05\xb5\x95\x9c\x88\xf4\x21\x55\xa9\x70\x84\xa6\xcb\x70\xf2\xa9\xa1\xd4\x1a\xb5\x16\x20\xbf\x4d\x65\xea\xcf\x1d\xec\x88\x65\xc5\xb2\x72\xe1\x24\xa9\x77\x29\x01\x19\x04\x24\x94\xc8\xdc\xc0\x76\xfc\x70\x10\xc0\xb2\x86\xa9\x7d\x70\xbb\x72\xe5\xd6\xbc\x49\xdf\xad\x79\xe3\xdc\x68\xf5\x24\x41\x3d\xbf\xd1\x92\x55\xb6\x2b\x39\xb6\xa1\x84\x70\xc2\xed\x3a\x70\x4d\x04\xa9\x31\xc2\x24\xc5\x30\x43\xc3\x7e\x86\x20\x65\x01\x65\x0e\x42\x75\x60\xca\xd7\xf9\x47\x0c\xb9\xc2\x6f\xea\x71\x37\xcd\xca\x76\xe3\x77\xd7\x74\x5d\xad\x8d\xfb\x7b\xe5\xbe\xf4\x78\x1f\x10\x0f\x83\x82\xb4\x6e\xfa\x34\xed\x3e\xa8\x6f\x68\xa2\x95\x75\xec\xd8\x9a\x7c\x11\xd9\x35\x89\xc7\xb3\x8e\x81\x06\x69\xbb\xf2\x1c\xdb\xae\xed\x75\x59\xd9\xae\xfd\x25\x46\xa3\x6c\xfc\x94\xed\xda\xee\xe6\x0f\x26\xb9\xf2\x2d\x3c\x93\xad\x85\x3a\xcd\x32\xb6\xa6\xb5\x45\x67\xbb\xf6\x4b\xb9\x1b\x95\xf2\xf9\x66\x88\x90\x4e\x15\x0d\x25\xc5\x51\xa3\xd8\x82\xe2\x11\x14\x7b\xad\xba\xdd\xcf\xb4\x72\xcb\xa8\xc3\x3a\x4a\x25\xbb\x15\x49\xf4\x88\x4e\xac\x93\xd4\x51\xe2\x8b\x6d\x42\x44\xca\x3f\xc6\xa9\x5b\x12\x65\xbb\x16\x99\x44\xb4\xcc\xbf\xed\x84\xdb\x43\xbb\xb1\x80\x04\xd4\x36\x15\x6b\xac\xb4\xc5\xed\x58\x76\x8a\xb8\xcb\xb7\x63\x65\xe7\x05\x67\x97\xe7\x7e\xb7\xee\x8c\x65\xe7\x19\xd4\xb0\x62\xd9\xe3\x41\x52\xa6\x3a\xef\xd2\xc4\xbd\x37\x66\x97\xc5\x76\xaf\x4d\x95\x07\x52\x7e\xf3\x72\x65\x62\x49\xca\x7a\x21\x48\x75\xbb\x86\xaa\x2e\x58\xae\xe5\xb8\xc1\x24\x4e\xab\xcd\xb5\xd0\x39\xa5\x7c\xc8\x11\x68\x0b\xae\x0a\xa9\x55\x55\x8d\x0f\x24\x1e\x49\x0c\x91\xfc\x47\xc3\xc2\x8a\x2c\x0d\x12\x21\xfb\x39\x20\xc9\x77\x76\x0d\x87\xb7\xc4\xf8\x59\xac\x6a\x5c\x59\x38\x91\xaa\x41\xed\x08\xc8\xff\x3d\x7f\x78\xc8\x84\x8d\x32\x22\xb4\x14\xf0\x87\xf1\xd4\xbb\x24\x82\x63\xe0\xcb\x3f\x22\xa5\x1a\xac\x50\xb3\xd2\x4b\xcc\x56\x23\xad\x82\x83\xad\x8c\x19\x2b\xd5\x35\x8e\xe4\x2c\x4a\xb7\xf5\x37\x34\x82\x65\x47\x79\x1f\xcf\xd2\x36\xf8\xd0\x11\xb0\xc6\xf6\xcd\x94\x8c\x6b\xcd\x2a\x14\xa9\x72\x63\xd4\x3f\x44\xc9\xb8\xac\x19\x54\xa5\x8d\x83\x09\xad\x5f\x42\x60\x46\xfe\x9a\xbd\xe6\x30\x0e\xfc\x1d\x1f\x33\x7e\x24\xaa\xfc\x90\x82\x36\xea\x9a\xd7\xa0\x25\xf9\x1a\xb4\x24\x27\x42\xc9\x4b\xfb\x3c\x99\x97\xeb\x5a\x78\xe3\xa8\x85\x6f\x39\x05\x06\xb8\x60\x2d\xcd\x62\x25\xc2\x5d\x57\x72\x8b\x22\xc9\x9a\x05\x50\xcb\x1a\x68\xa0\xa5\x57\xc5\x02\xaa\x6b\xe5\x0f\x45\x08\x77\x45\x1d\xb5\xb6\xdf\x43\xf1\x4f\x0e\x54\x06\x3a\x35\xd6\x3d\x92\xa3\x93\xbd\xc0\x30\x4c\x89\x6c\xd7\x66\x12\x1d\x9e\xed\xc7\xb0\x03\x2d\x3b\xdd\xf3\x78\x91\xf9\xcc\xd7\xa6\x68\xc3\x47\x19\x88\x6f\x79\xe9\x7d\xbc\xeb\xba\xcf\xc1\x7d\xa2\x02\x74\xca\x99\xe1\x79\xf9\x49\xdb\x97\xd1\x9e\x3e\x91\xb4\x59\xa4\x1f\xc5\x3d\x36\xae\xfb\x4c\xcf\xc5\x1f\xf1\xae\x58\xaf\x09\xf9\xa5\x33\x89\x38\xe1\x8a\xdc\xd1\x24\xf8\xb7\xbe\x44\xb4\x37\xd8\xbe\x65\x5f\x0b\xae\xfc\x5b\x04\x90\xab\x18\x1a\x32\xda\xf7\xfc\x99\x3f\x0f\x0d\x74\xf4\x93\x7d\x70\x53\x79\x54\xc5\x6a\x22\xf2\x81\xd3\xa6\xe8\xb0\x1f\x66\xe0\x24\x36\x4f\x0d\x06\x65\x4c\xa7\x5a\x6e\x37\xbb\x26\xaf\x49\xbb\x26\x8f\x6d\xd3\x8e\xa5\xa1\xeb\x36\x1f\x94\xd6\xcd\xc6\xe5\xe3\xb8\xa6\x3c\xcb\x3c\x3e\xd3\xda\xb1\xaa\x69\xd4\x39\x8d\x1e\x85\xf2\x95\x13\xa1\x97\x36\xf3\xd9\x74\x53\xb9\x44\x6e\x63\x39\x22\x0a\x1b\xf6\x7b\xfe\x48\xca\x4e\xe1\x1a\xfa\xcf\x30\x86\x09\x36\xc3\xc4\x9f\xd3\x62\x99\x25\x91\x94\x18\xf4\x7d\x17\x80\x96\x72\x05\x25\x5c\x6a\x20\x28\x3e\x6c\x86\x6f\xa0\x7b\x65\x20\xdb\x40\xb5\x86\x5c\x58\x58\x91\x11\xfb\x2f\x96\x37\x0b\x3b\x8b\xf6\x39\xed\x66\x27\xdc\x76\x57\x70\xef\x1f\x74\xee\x30\x1e\x5d\xbd\xc3\x58\xe4\x67\x23\x23\xcd\x02\x5a\xcd\xf9\xb5\x32\x91\xc7\x4e\xee\xf0\x0d\x93\xfe\xa2\xf2\x8e\x93\xf1\x7c\xa7\xaa\x67\xca\xb3\xc0\x74\x50\x7b\x97\x85\x7d\x9e\x85\xbd\xcf\xc2\xbe\xc8\xc2\x4a\x16\x2b\xad\x9c\xf2\x83\x95\x21\xbd\xfc\xc5\xcb\xa0\x0f\x56\x3a\x5b\xa0\xe2\xbe\xe0\xce\x87\xaf\x7d\xb1\x28\x6f\xbe\xf6\xc5\x3a\x16\x80\xbb\x75\x9a\x96\x18\xc2\x78\x89\x01\x77\xcb\xce\xb0\x88\x22\x77\x02\xb8\x80\xc6\x9d\x0f\x47\x63\xc7\xe1\x6d\x63\x4f\x78\x91\xcb\x86\x4b\xbf\x6c\xb8\xf0\x65\x09\x4b\xd2\x2c\x5e\xec\xf0\x3d\x5e\xbc\xa3\x13\xab\x00\x10\xd2\x20\x5c\x52\x24\x59\x16\x72\x4c\xc0\x89\x74\x78\xa9\x83\xb5\x85\xa0\x32\x28\x32\x11\x09\x62\x30\x78\xa9\xa3\x0d\xac\xf3\x57\xef\x02\xcf\xd8\xf0\xee\x8e\x9b\xc7\x3b\x25\xa9\x23\x21\x5f\x07\x83\xa8\xa1\x0a\x72\xed\x2b\x7f\x87\x7d\xe1\xc3\xc4\xa5\xf2\xa7\x71\x1c\x7a\x7c\x24\x77\xa9\x33\x80\xc8\x01\xf8\x42\xa5\x71\xde\x83\x85\x7b\x75\x06\x4b\x8b\x8c\xa8\xa9\x63\x8f\xee\x8a\x48\x0e\x59\xd4\x5a\x1a\x90\x99\x78\xa9\x8b\x94\xb8\x54\x75\x75\x91\xf2\xa0\x51\xbb\x54\xdb\x6a\xd2\x0c\xc7\x4e\xb8\xb9\x8d\x72\x6b\x0f\x43\xfa\x52\xed\x96\x86\x87\x86\x1c\xb4\x49\x4a\xde\xab\x04\x68\x3b\xbb\x54\x31\x88\x1a\x72\x8e\xc7\xa9\xb6\xd3\x49\xda\xd1\x0c\x6b\x75\xa7\xb4\x7e\xe4\x57\x86\x1d\x8f\xee\x10\x8d\xc2\xc3\x38\x4c\x20\xe8\x26\x46\xa9\x4c\xb3\xdb\x55\x8b\x44\x4a\x86\x56\x5a\xd2\x34\x4b\x18\x44\x8f\x3c\x23\xba\x01\x7a\x30\xa9\xe8\x61\xda\xab\x23\x32\xa9\xb7\xdc\x32\x57\xb0\x99\x79\x9d\x70\x73\x1b\x95\x6c\x84\xb7\x66\xa5\x22\xd5\x4e\x45\xaa\x9d\x0a\xad\xba\x07\xe1\xd4\x99\xf7\x8e\x4b\xcd\x9a\x45\xe3\xcb\x42\xd0\x0b\x97\xc6\x52\xeb\x46\x68\x64\xea\xc4\xbb\x46\x5a\xcd\xa5\x0f\x84\xf0\x2c\xca\xd0\x6a\x43\x4b\xfc\xa5\x96\x69\xe0\xe7\x84\xb1\x5a\x62\xab\xc7\x4b\x25\xab\xf2\xc2\x76\xc6\x1b\xc2\xd6\xcc\x7a\xb4\xb2\xdb\x64\x97\xca\xa6\x14\x5e\x2f\x78\xbd\xd0\x3a\x3a\x0c\x23\x6d\x15\x67\x90\x6f\xdc\x9a\xa7\xca\xa0\x9e\x79\x8c\x2a\x3f\xd3\x4d\xac\xcf\xf5\x1c\xe5\xda\xe2\xde\xf3\x30\x51\xee\x3d\xad\xca\x39\xee\xcf\xbd\x78\x6f\x2e\xcf\xfc\xe4\xe3\x91\x67\x5e\x49\x7f\x9c\x34\xe9\xf1\x53\x9e\x5a\xa5\x72\xf5\x2f\x3c\x9b\xd5\xf1\xd2\x37\xbd\x6c\x7c\xfe\xa8\xf5\xf9\x65\xf3\xc9\xe3\x79\xf6\x59\xab\xf4\x91\xc7\xcb\x3a\x64\x1d\x43\x00\x5d\xc1\x3c\xf7\xfe\xa8\xe7\xf2\xa7\xea\x9a\x3f\xae\xea\x27\x7c\x0e\x13\x8a\x7d\x3f\xa8\x34\x14\xfc\x60\xc3\xc8\x62\x70\x6e\x12\x92\x98\x24\x72\xcd\x33\x0d\xa2\x71\x48\x1d\x74\x1d\xbe\x23\x5c\x74\x47\x23\xc4\x96\x8e\x8d\x94\x25\x36\xe2\x13\x93\x51\x15\x60\xa2\xe3\x85\x91\x8e\xc8\x84\x20\x1f\x90\x7e\xe0\x5b\x19\x26\x64\x40\x12\xda\xcc\xf0\x5b\xb4\xa2\x53\x7d\x69\xbd\x48\xf8\xa1\xb2\x63\x26\xb9\xd0\x01\x91\x31\x39\x2b\x64\xf5\x8c\x35\xb6\x4a\x6f\x2a\x5f\x99\xf0\xbe\xfe\xdd\xed\x47\x9b\x77\x7f\x71\x26\xac\x7e\x04\xf9\x63\x33\xe3\x2f\x7f\xf8\xf2\xd7\x9f\x3e\xff\xe5\xcd\x97\x7f\xfc\xf5\x0f\x9f\x9f\x4e\x5f\x09\xfb\xe2\x27\x3c\x38\xb1\x2f\x3e\xff\x05\xfe\xf9\x57\x8e\xdb\x23\xfc\x62\x7f\xfd\xe9\x2e\xf3\x72\xf5\x63\x74\x5f\x45\xbe\xd6\x8c\x94\xf9\x97\xf8\xe3\x8f\xf8\x8f\x3f\xe2\x3f\xfd\x88\xff\x88\xff\x84\xff\x09\xff\xee\xc7\xff\x75\xe4\xd3\xe9\xf7\x78\x3a\x51\x59\xff\x81\x5f\xe3\xdf\xe1\x5f\xf1\x47\xfc\xeb\xcb\xf8\x63\x56\xfa\x0c\xb5\xfc\xf0\xea\xf5\x2f\xa7\xd3\x9f\x4f\xa7\xbf\x9c\x4e\x9f\x9f\x4e\x5f\x9c\x4e\xbf\x9c\x4e\xbf\xfe\x7a\xfc\x19\xa1\xbb\x3f\x8e\xf3\xea\xf5\xff\xff\xe5\x4f\xa7\x93\xf9\xf3\xc3\x3f\x3c\xfe\x85\xda\xd7\xf9\x17\x3f\xfd\x32\x4f\xf0\xab\xfe\xe9\xf5\x27\x13\x7d\xfe\xf8\x70\xc1\x87\xef\xff\x05\x1f\xbe\xff\x37\x7c\xf7\x2f\xf8\xee\xdf\xbe\xf8\x74\xc4\x2f\x7f\xfa\xbc\xea\xfe\xbb\xeb\x9d\x7f\x6e\xfd\xc4\xbf\xbd\xbe\x62\x9d\xbf\xf8\xea\xcf\x6f\xfe\xe1\x9b\xc7\xbf\x7c\x3a\xe9\x2f\x5f\xfe\xf5\xd7\x56\xb7\x6f\xff\x52\x3e\x51\xfb\x17\x7f\x42\xe8\xcf\x0f\x9f\xce\xeb\xe5\xdf\x35\xfa\xc4\xdf\x33\xfa\xe8\xef\x18\xdd\xfe\x7e\xd1\x31\x39\xfc\xf3\xdf\xed\xf6\x5c\xbe\xfe\xfa\xeb\x9f\x5e\x66\xf4\xbb\xbf\xf1\x37\x97\x6a\x34\x54\xed\xcf\xff\xfb\xbf\xff\x97\x7f\xc7\x3f\xfd\xe9\x4f\xf8\xf3\xbf\xfe\xe9\xbf\xfd\xf3\x17\x3f\xfc\xf4\xfa\x6f\x17\x77\x3a\xfd\xfe\xa3\xbf\xf1\x74\xfa\xfd\xd7\xff\xf7\x4a\xfc\x8f\xd3\xa9\xfc\xfe\x13\xa5\xfe\x1f\x34\xf2\x7f\x06\x00\x00\xff\xff\x59\x2d\x62\xda\x1b\x4c\x00\x00"
-
-func runtimeSyntaxStataYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxStataYaml,
-               "runtime/syntax/stata.yaml",
-       )
-}
-
-func runtimeSyntaxStataYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxStataYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/stata.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSvelteHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x2e\x4b\xcd\x29\x49\xe5\x8a\xd1\x83\x30\x54\xb8\xb8\x00\x01\x00\x00\xff\xff\x8a\xe7\xc3\xca\x12\x00\x00\x00"
-
-func runtimeSyntaxSvelteHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSvelteHdr,
-               "runtime/syntax/svelte.hdr",
-       )
-}
-
-func runtimeSyntaxSvelteHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxSvelteHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/svelte.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSvelteYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\x4d\x0a\x83\x30\x10\x85\xf7\x39\xc5\x30\xb8\x2a\x68\x57\xdd\x84\xfe\x5c\x24\x14\x42\x32\xb6\x96\x31\x88\x19\x05\x6f\x5f\x52\xb1\xb4\x55\xd0\x45\x67\x97\xbc\xc9\xfb\x3e\x52\x56\x4c\x32\x34\xa4\x21\xf6\xc4\x42\x4a\x79\x12\x72\xa2\x15\x00\x40\x4a\x83\xad\x49\x03\x1a\x53\x8c\x1b\x19\x2a\xd5\x76\x4c\x71\x5c\xc9\xc1\x53\x69\x3b\x16\x0d\xaf\x73\x9a\x28\xb6\x15\x0d\x78\x8c\xae\xad\x1a\x39\xe3\x3b\xa1\xe0\xd3\xfd\x7e\x16\x7c\x34\x4e\x93\x43\x15\x1c\x77\x3e\xd1\x1f\xb6\xb7\xe3\x1b\x54\x5b\xb1\xc0\x36\xdc\x4e\x06\x25\x1a\xfc\x83\x42\xfa\xa5\x49\xe1\xdb\x60\x41\x40\x06\xa6\x62\x77\x59\xc2\xce\xa3\x15\xb0\x8b\x71\x95\x78\xfd\x05\x65\x9b\xeb\xef\x52\xf3\x01\x9f\x01\x00\x00\xff\xff\x53\xbc\x95\x8b\x08\x02\x00\x00"
-
-func runtimeSyntaxSvelteYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSvelteYaml,
-               "runtime/syntax/svelte.yaml",
-       )
-}
-
-func runtimeSyntaxSvelteYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxSvelteYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/svelte.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSwiftHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x2e\xcf\x4c\x2b\xe1\x8a\xd1\x03\xd3\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\xd0\x4d\x97\xd4\x10\x00\x00\x00"
-
-func runtimeSyntaxSwiftHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSwiftHdr,
-               "runtime/syntax/swift.hdr",
-       )
-}
-
-func runtimeSyntaxSwiftHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxSwiftHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/swift.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSwiftYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x37\x79\x53\x1b\xcb\xf1\xff\xf3\x29\xd6\xf8\xf7\x4b\x00\xc7\xe2\x1d\x29\x57\xb2\x39\x1c\x10\x90\x52\x85\xc3\x65\xc0\x76\x85\xe5\xa9\x46\x33\xbd\x52\xdb\xb3\x33\xe3\x39\x10\x72\x3a\xdf\x3d\xd5\xb3\xbb\x20\x09\x30\xa9\xd4\x53\x95\x76\x76\x7a\xfa\x3e\xa6\x7b\x6b\xd4\x10\x17\x0e\xca\x22\xcc\xb1\x8e\x1b\x1b\x0a\x22\xc8\x58\x6e\x14\x45\x51\xf0\xa1\x11\x0d\x94\xc5\x66\x55\x0d\x32\xc2\xff\x6d\x6e\x6c\xf8\xa4\x21\x94\x1b\x45\xc6\x79\x59\xbc\x13\x31\x82\x37\x21\x6f\x5f\x17\x2d\xb7\x6a\xb2\x35\xde\xae\x26\x19\xd6\xe1\x9d\x39\xf0\x22\x5a\xdf\x23\x86\x45\x33\xb1\x7a\x60\x3b\x70\x59\x6c\x5d\x0d\xca\x3f\xfd\xee\xd5\x0e\xfd\xe5\xc5\xdb\xaa\xfa\xff\x6b\xfa\x33\xfd\x95\x76\xe9\x35\xfd\x66\x7b\x99\xcf\x01\x48\x2d\xbc\x88\x68\x4d\xf1\x0f\x58\xcc\xad\x57\x77\x2c\xa3\x88\xd0\x80\x89\x03\x75\x8f\x94\x95\x11\x21\x58\x89\x22\x82\x62\xfd\x48\x6a\x11\x02\x29\x40\x83\x91\xc0\xa4\x86\xe0\x36\x82\x09\x68\x0d\xb1\xd5\xce\xe3\x8d\x88\x40\x75\x32\x92\xb0\x71\xd6\x47\x62\xdc\xde\xa4\xef\x89\x42\x63\x13\x63\xb3\x53\x84\x26\x0d\x91\xac\x03\x43\xbd\xa1\xd4\x33\x77\xde\x46\x2b\xad\x26\x97\x26\x1a\x25\x31\xcb\xbc\xf8\x24\x23\x85\x34\x09\xd2\xa3\x8b\xc4\x1a\x0b\x8d\x22\xd0\x8d\xf0\x6b\x4e\x3d\xef\xd5\x08\x4f\xfa\x22\x2b\x35\xf1\x20\xbe\x90\x14\x01\x48\x5a\x13\xd1\x24\x20\x05\xb5\x48\x3a\xf2\x0a\x9e\x94\x25\xd0\x01\xa8\x16\x5a\xc7\x99\xb7\x69\x3a\xa3\xda\x7a\x9a\x26\xe1\xd5\x23\x76\xb7\xb6\xd6\xec\x96\x9a\x3c\x38\x10\x91\x3c\xc4\xe4\x0d\x85\x39\x46\x39\xa3\xf9\x0c\x3c\xd0\x7c\x86\x1a\xd6\xb4\xfe\xd2\xaa\x3a\xf0\x10\xc0\xdf\x80\x7a\xe0\xd3\xfe\x60\x25\x76\x78\x83\x71\xc1\xea\xdf\x80\x41\x30\x12\x48\x2d\x8c\x68\x50\x92\x42\x75\x0e\x91\x6a\x64\x87\x4f\x81\xbd\x5f\xe3\x2d\xa1\x51\xe8\x41\x46\xd2\xe2\xdb\x82\x34\xd4\x91\x9a\xc4\x4e\x36\xd3\xc7\x02\xb9\x22\xd4\x58\x03\x64\xac\xe9\x09\xc8\xde\x80\xf7\xa8\x80\x9c\x0d\x91\xb9\x3b\x0f\x12\x54\xd6\xc3\x79\x60\xc8\xbb\x3e\xa0\x1e\xbe\x26\xf4\xf0\x98\xdb\x56\xa5\x78\x9c\xce\x22\x05\x88\x74\xc1\x69\x99\x8c\x9d\x1b\x50\x34\xe7\x60\xcd\x51\xeb\x73\x88\x6b\xae\x3b\xbc\x75\x1e\x02\x27\x6a\x21\x8c\xca\xd5\xf6\xa0\xf2\x44\xa0\x3d\xb3\x20\x29\x38\x0a\x18\x38\x2c\x33\x6f\xe7\x81\x42\x72\xe0\x29\x80\xae\x29\x43\xa8\x83\x47\xbf\x58\x11\xb3\xac\xef\x24\xa1\x8e\x63\xec\xca\x68\x12\x48\xa8\x1b\xc1\x46\x0b\x8d\x53\x63\xeb\x7e\xfd\x20\x74\x02\x12\x66\xf1\x77\x30\x5d\xa2\x8b\x10\xc0\xc7\x6e\x41\x6b\x8e\x04\xea\xe4\x81\x26\x1e\xd5\x14\x8e\xbc\x6d\xce\x26\x9f\x41\x46\xbc\x81\xe1\x63\xae\x5a\x11\xfd\x18\xd1\xa5\x91\xd6\x28\x64\xde\x42\x77\x6c\x2f\xec\xfd\xf9\x23\xa0\x55\x12\xae\x05\x81\x26\x3c\x2b\x5d\xda\x64\x22\xe5\xe7\xa1\x6e\x0b\xae\xdd\x1d\x83\x50\x68\xa6\xff\x04\x6f\xf9\x42\x99\xa4\xe9\x3b\x8f\x26\x2e\xbd\x6a\x43\x0a\x43\xcc\x3e\x53\xde\xba\x23\xf4\x21\xe6\xb7\x63\xc1\x2f\xa9\x71\x04\x46\x5a\x05\xfb\x18\xc3\x5e\xf8\xc8\x45\xfc\xac\x42\x7c\x69\xb1\x9b\x81\xe0\x6b\x12\x9a\x6a\x11\x85\x3e\xf4\xde\x7a\xbe\xc0\x22\xf0\x62\x14\x17\xc3\x7e\xf6\x81\xba\x77\x41\x4e\xb5\x29\xc4\x0f\xe2\x18\x43\xcc\x55\x22\x21\x10\x9a\x2e\x4c\xe7\xd6\x3f\x7a\xd1\xad\xc8\xc7\xd0\xf1\x5d\xf1\xf7\x1d\xf4\x03\xf8\x89\x88\xd8\xac\x9d\x5e\x1a\xfc\x9a\x40\x2f\xde\xf3\x95\xc3\xa5\xa3\x1e\x05\x9e\x5a\x73\x36\xf9\xfc\x7c\x4e\x7c\xb6\x68\x48\xc3\x2d\x4a\x3b\xf5\xc2\xcd\x50\x0a\x3d\xb4\x8d\x13\x1e\xa8\x11\x8e\x1a\x71\xcb\xff\x2e\x62\xd4\xa0\xe1\x7f\xbf\xcd\x1e\x44\x39\xe4\x28\x70\x75\x6b\xe1\x02\x39\xe1\x63\xce\x0e\xae\x73\xbc\x7d\x56\x05\xbe\x05\xfa\x84\xa2\xe5\x4d\x9f\xec\x2e\xa7\x83\xeb\x32\xe1\x6b\x42\xf9\x85\x1d\x4c\x1e\x84\x3a\x46\x03\xe4\x41\x25\xc9\x4b\xad\x41\x3e\xef\x78\x0f\xb9\xb5\x38\x0f\x91\x35\x7f\xe1\xe1\x06\x7c\x00\xf2\x36\x19\x75\xe9\x2e\xec\x1e\xd7\x63\x36\x30\xe0\x37\xb0\x75\xb7\xb4\xf5\x19\x58\x74\x70\x1a\x23\xb7\x1b\x1f\xc3\x47\x8c\x33\x6e\x39\xa8\xe0\x59\xd1\x2d\x1a\x73\xec\x5e\x3a\x9e\x73\xe1\x28\xda\xf3\xe8\xf9\x9e\x8c\x5e\x98\xc0\xd9\x4c\xc9\x28\xf0\x10\x22\x36\x22\xc2\x30\x17\x50\x32\x41\xd4\xb0\xa7\x14\xdf\x61\x67\x75\xb7\xdf\xc7\x6c\xca\xb3\xf2\x5b\xec\x03\x3b\x37\x92\x63\xd6\x6e\x2f\xcd\xdc\x0b\xd7\x6d\xde\xb7\x4e\xa4\x39\xc6\xd9\x21\x77\x74\x05\xea\x18\x6b\x88\xd8\x40\x06\xb6\xd9\xb8\x17\xdf\xe9\x14\xb8\x66\x33\xf0\x32\xd3\xbe\xb3\xd9\xb1\xcf\x6a\xf1\x80\xa2\xcf\xf1\x25\x5e\x27\x29\x8a\x89\xee\x11\x9e\x3c\x08\xbf\x86\xf8\x96\x49\x57\xcc\xdf\xd0\x31\x87\xae\x59\x9c\x40\x14\x0f\xb8\x35\x10\x45\x59\x54\x7f\xe3\xeb\x3c\x45\x2b\xb5\x0d\x9c\xa7\xe2\x46\xa0\x66\xdd\xba\x0e\x9b\x13\x1a\x6e\x79\xf4\x01\x45\xa3\xfd\x3d\x99\x21\xa3\xfd\x03\x08\x38\x35\x19\x73\xb4\x7f\x96\x22\x0f\x38\xa3\xfd\x91\x09\x0e\x64\x36\xae\xed\xbe\x8f\x19\xb2\x24\x3a\xb7\x64\x63\xbb\x89\xc1\x58\x08\x52\xb8\xdc\x71\xed\xe4\xb3\xa4\xd3\xf3\x3d\xe7\x34\xca\x3c\x56\x9d\x08\x34\x74\x7a\x3e\xb4\x6e\xc1\x19\x76\x7a\x7e\x22\x8c\x98\x82\xa2\x8c\xda\x35\xdf\xae\x2d\x3f\x23\xb6\xef\xcc\x14\x21\xb4\xca\xce\x85\x37\xe3\x64\x52\x00\x35\xf6\x10\x78\x20\xba\x1c\xad\x09\x6f\x99\xb6\x4e\x75\x1e\x9c\xb7\x12\x42\xb0\xbe\x93\xd4\x81\xca\xe2\x97\xab\xab\x32\x38\x21\xa1\xbc\xbe\xde\x79\xb9\xbc\xd9\x52\x50\x73\xb1\xe7\x11\x8b\x1f\x58\x13\x18\xc5\xf3\x53\xcd\x0d\x19\x64\xb4\x4b\xb1\xef\x38\x0e\x0e\xb8\x8b\x8c\x14\x47\xa3\x46\xf0\xed\x5c\x3d\x1e\x9e\x1d\x5f\x9e\x9c\x8e\xc7\x34\x1e\x1f\x8d\x8e\x0f\xdb\x97\xcb\xd3\xe1\xc5\xe8\xac\x85\x1e\x8f\x4e\x0f\xc7\xe3\xff\x82\xdd\x77\x14\x96\x56\xa7\xa6\x9d\x86\xf3\x18\x9c\xa3\xaf\xd1\xc0\x52\x7e\x0d\xad\xe1\xc6\x16\x3b\x31\xb2\xdb\x66\x35\xa3\x4f\x79\x98\x0c\x40\x06\xf5\xf6\x1a\xca\xc0\xa4\x66\x02\x79\xe8\xff\xe1\xf5\x1f\xaf\x5f\x6d\xaf\x0e\xb5\xd6\x8b\x29\x14\x17\x6b\xc3\xcd\x20\xb4\x07\x99\xff\xd6\xe5\xf6\xdb\x91\x89\x5b\x7f\xa0\x1f\xdf\xd0\xcf\x3f\xd1\x9b\xdf\x6f\xdf\x1b\xfc\x00\x7b\x64\x38\xac\x26\x52\x77\x4b\xed\x63\xa4\x7d\x6b\x35\x0d\x67\xc2\x0b\xc9\x45\x7a\x60\x13\xe7\xc3\x99\xeb\x66\x83\x23\x6d\x45\xa4\xf7\xc2\x4c\xe1\x3b\x8c\xf7\xcc\xa2\xad\xfe\xb5\x39\x6d\x68\x35\x07\x15\xed\xca\x87\xd1\x40\xde\x83\x5b\x72\xef\xc5\x82\x0e\x30\x83\x84\x5f\x50\x37\xf1\xf5\x5c\xd6\xe7\xbb\x81\xcc\x90\x4c\x3b\x6c\x0d\x60\x0b\x68\x78\x69\xb8\x2a\x41\xb5\xbb\xf3\x19\xdf\xf3\x77\xc0\x6e\xcb\xf6\xdf\xc1\xf2\xe6\xd8\x9a\xe9\x3d\xa8\xdd\xf1\xf3\x21\xbc\x85\x7c\x44\x05\xad\x04\x7e\xfe\xf8\xa6\x5d\x7f\xfe\x89\x86\xad\xb7\x86\xad\x13\x97\x2c\x68\xfd\xbd\x1e\xfd\x90\xa1\xed\x57\x26\xff\x72\x2f\x2a\x8b\x6a\xf3\x0e\x02\x46\xad\xec\xc3\x17\x74\x65\x51\x55\x83\x3b\x48\xff\x19\xba\xf4\x5b\x96\xe0\x40\xa2\xd0\xac\x5e\x59\x6c\x55\xd5\x0f\x54\x55\x55\x45\x55\x15\xa9\xaa\x0c\x55\x95\xa7\xaa\xda\xa4\xaa\xfa\xed\xf6\x53\x2c\xda\x3e\x6b\x75\xff\x69\x57\x55\x5b\x57\x57\x65\x1e\x34\xb8\x42\xaa\x27\x09\x93\x41\x6e\x80\x4c\x92\xaa\x7f\x5d\x5d\x95\xb7\x0a\xa7\x18\xcb\xeb\xeb\x57\xff\xbe\xf3\xcb\x0c\x26\xc2\x4c\x0b\x1e\x01\xee\xbc\xd3\xe4\xeb\x2a\xb4\x47\x65\xf1\xcb\xd6\xcb\x17\xdb\x83\x9d\x9e\xe4\xc0\xca\x62\xd8\xe2\xac\x51\x28\xbe\x7c\xb6\x76\x77\x77\x19\x7b\x29\x09\x99\xf9\x13\x24\x5c\xc9\x65\xb1\xb9\xbb\x3b\xd8\xd9\x5c\x26\xd9\xd7\x56\x7e\x79\x82\x66\xc2\x67\x0f\x82\xb6\xb9\x5b\x55\x3b\x6b\x81\xdb\xac\xaa\x9d\xdd\xcd\xef\x87\x2a\x5a\x65\xcb\x62\x73\xeb\xe2\xec\xe0\x8c\x3e\x7d\xfa\x44\x47\xa3\x4f\x27\x87\xdb\xe5\xdb\x9e\x6e\xc9\xec\xff\x51\xab\x5f\x5d\xb1\x4e\xa5\x0b\xab\xec\xc6\xb3\xc8\xff\x09\x00\x00\xff\xff\x39\x00\x1b\xee\x5c\x11\x00\x00"
-
-func runtimeSyntaxSwiftYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSwiftYaml,
-               "runtime/syntax/swift.yaml",
-       )
-}
-
-func runtimeSyntaxSwiftYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxSwiftYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/swift.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSyntax_checkerGo = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x4f\x8b\xdb\x30\x14\xc4\xcf\xd2\xa7\x78\x11\x2c\xc8\xe0\xca\xe4\xba\x90\x5e\x76\x5b\x7a\x5a\x96\xf6\x5a\x08\xaa\xad\x67\x3f\x56\x96\x8c\xfe\x40\xd3\x92\xef\x5e\x24\xa7\x26\x69\x73\x28\x14\x8c\xc1\xe3\xd1\xcc\x6f\xec\x45\xf7\x6f\x7a\x34\x30\x6b\x72\x9c\xd3\xbc\xf8\x90\x40\x72\x26\x70\x4e\x82\x33\x41\xbe\x23\x9f\x13\xd9\xf2\x10\x53\x20\x37\x46\xc1\x39\x13\x23\xa5\x29\x7f\x53\xbd\x9f\xbb\x1f\x27\x33\xd0\x40\xba\x9b\x68\x9c\x2c\x8d\x53\x12\xbc\xe1\x1c\xb3\xeb\x6b\xae\x6c\xe0\x27\x67\x48\xd6\xc4\x16\x8e\xf0\x78\x80\x35\x52\x7d\x36\x7a\x78\xa6\x20\x85\x12\x0d\xe7\x6c\xd2\xc3\x87\x10\xca\x7b\xd4\x36\x1a\xce\xd0\x07\x38\xb6\x80\x45\x0a\xda\x8d\x06\x6a\x48\x49\x63\x84\x70\xc1\x51\x9f\x74\xfc\x92\x11\xe9\xbb\x44\xf5\xa2\x67\x23\x9b\x16\x84\x3a\xe9\xd9\x8a\xda\xcc\x18\xb9\x25\xa7\xbf\xbb\x3f\x92\x35\xdb\x99\xa6\x18\xbb\x0e\xe7\xa4\x5e\x03\xb9\x64\x9d\x14\x4f\x93\xe9\xdf\xc8\x8d\xb5\x17\xde\xbd\x07\xd1\xc2\x8d\xbf\xe8\x2d\x98\x95\x7a\x9b\xaf\x5e\x75\x88\xa6\xa6\xd7\xe6\x6a\x25\xac\xbe\xdd\x01\x1c\xd9\x15\xeb\xf7\xe2\x03\xa4\x90\x4d\x55\xb6\x7a\x94\xe2\xc9\x67\x3b\x80\xf3\x09\x96\x92\xb7\x41\x3c\xc4\xc7\xaf\xee\x4f\x12\x76\x0d\x6e\x42\x58\xc5\xde\xbb\x44\x6e\xcd\x3e\x97\xdb\xb1\xd2\xee\xef\xe0\x3e\x1b\x94\xeb\x1c\x47\xf6\x8a\x78\xff\x3f\xc8\x75\xfe\x0a\x9e\x63\xf9\x90\x77\x4a\x1f\x62\xf3\x0f\x7b\xf6\xf7\x07\x9d\x79\xb9\x08\x61\x77\x01\x2b\x94\x37\xff\xf0\xc5\x03\xc5\x98\x4d\x04\xf4\xd9\x0d\x3b\xd1\x94\x23\x67\xfe\x2b\x00\x00\xff\xff\xb6\x23\x71\x5f\xfa\x02\x00\x00"
-
-func runtimeSyntaxSyntax_checkerGoBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSyntax_checkerGo,
-               "runtime/syntax/syntax_checker.go",
-       )
-}
-
-func runtimeSyntaxSyntax_checkerGo() (*asset, error) {
-       bytes, err := runtimeSyntaxSyntax_checkerGoBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/syntax_checker.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSyntax_converterGo = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x5d\x6f\xdb\xb8\x12\x7d\x96\x7e\xc5\x5c\x5e\x14\x90\x6a\x55\x46\x93\xf4\x25\xf7\x1a\xc1\xc5\xc5\x16\xed\x02\xdd\x2d\xe2\xdd\xa7\xc8\x68\x18\x8b\x96\xb9\x95\x28\x81\xa4\xd2\x04\xd9\xfc\xf7\xc5\x0c\x29\xc9\xdf\xb1\xbb\xc5\xbe\xd8\xe6\x90\x33\x3c\x73\x38\x87\x1f\x6e\xf8\xfc\x2b\x2f\x04\x54\x5c\xaa\x30\x94\x55\x53\x6b\x0b\x51\x18\xb0\x45\x65\x59\x18\x30\x59\x8f\x65\xdd\x5a\x59\x62\xa3\x36\xf8\xa9\x45\x21\x1e\x1a\xfc\x65\xac\x96\xaa\x30\x2c\x8c\xc3\xd0\x3e\x36\x02\xa6\x52\x15\xa5\xb8\x6e\x4b\x01\xc6\xea\x76\x6e\xe1\x29\x0c\xe6\x75\x59\x6b\x70\x63\xc3\x80\xbc\xbb\xd6\xb3\xf7\xfb\xd4\x96\x56\x1e\x74\x33\x96\x6b\xdb\xb7\x84\xca\x01\x56\x82\x8c\xc7\xf0\x73\x2d\x15\x45\xb0\xfc\xab\x30\xc0\xc1\x3c\x2a\xcb\x1f\x40\xa3\x2d\xfa\xb6\x94\xf3\x25\xcc\xb9\x82\x3b\x01\x15\xce\xd6\x94\x02\xb4\x28\xda\x92\x6b\x10\x0f\x8d\x16\xc6\xc8\x5a\x99\x18\x63\x71\x95\xc3\x1f\xb5\x54\x06\xa4\x05\xa9\x6c\x0d\xb5\xda\x35\x1a\xee\x1e\xe1\xd7\x6b\xa9\x0a\x10\xf7\x42\x3f\xda\x25\xfe\xb4\x75\x21\xec\x52\xe8\x70\xd1\xaa\x79\x0f\x2b\xd2\x3e\x3b\xa9\x8a\xd8\x7f\x63\x96\xa6\x29\xa5\x85\xcb\x89\x37\x99\x74\x8a\x06\x1a\x9d\xc0\x2d\x03\x76\x1b\x87\x01\x62\x11\xf9\xea\x28\x0c\x1b\x91\x6f\x02\xec\x4f\x16\x23\xaf\xb6\xd5\x0a\xdc\x50\xe4\x84\xa6\x6f\xb8\x36\xe2\xbd\x2c\x45\x64\xc5\x83\x4d\x60\x21\x4b\xa1\x78\x35\x20\x89\xd0\x82\x6b\x90\x78\xc2\x12\x58\x0a\x9e\x8b\x8e\xf9\x84\x08\x34\x70\x33\x93\xca\x0a\xbd\xe0\x73\xf1\xf4\x1c\x23\xf2\x52\x2a\x61\xb6\x91\xbb\x79\x58\xa6\x58\x1c\x86\xc1\x78\x0c\xd7\xb4\xe0\x8b\x5a\x13\x18\x4c\xdb\xaf\x8c\xb1\xdc\x8a\x4a\x28\x6b\xc2\xc0\x99\x3e\x23\x5a\x8d\x31\x5d\x8d\xa5\x9f\x5a\x63\xff\x5f\x57\x0d\x26\x70\xeb\xdd\x58\x94\xbe\xbe\x8a\x59\x66\x46\xf8\x2b\x66\x23\x64\x68\xe7\x3c\x7d\x22\xc3\x3c\xce\x74\x78\x1e\xef\xe6\xa2\xdf\xee\xcf\xc2\x72\x95\x73\x9d\xaf\x16\x9a\x09\x03\xfc\x3a\x1c\xdf\x15\x36\x65\x91\x99\x51\x74\x75\x99\x45\x51\x3a\xba\x8a\xaf\x32\x6c\xc7\x57\xfd\xc4\x07\xd9\x73\xcb\xf2\x4d\xda\x25\x90\x36\x26\x2c\x4d\x53\x06\x42\xe5\xee\x97\x43\x32\xc5\xae\x9f\x54\xfe\xf7\x10\xf9\x09\x08\x57\x66\x46\x34\xc7\xc0\x0e\x82\xc3\x62\xf8\xa5\xad\x12\xfa\x41\xd3\x70\x55\x08\x70\x35\xf2\x14\x06\x54\x2d\x30\xd4\xca\x6f\x5a\x56\xd3\x86\xcf\x45\x84\x1d\x71\x18\x04\x72\xe1\x7c\x27\x13\x60\x8c\x5c\x82\x79\xad\xac\x54\xad\x08\x83\xe0\xd9\x8d\xe8\xdc\x3f\x70\xf3\x59\x8b\x85\x7c\x20\xf7\x04\xd8\xbf\x59\x7c\xb2\x8f\x23\xb2\x73\x74\xad\x4f\xdc\xce\x97\xbe\xac\x57\x4a\x32\x7d\x2f\x55\x3e\x6d\xef\x2a\xec\x8e\x6e\x66\x77\x8f\xd6\x23\x47\xe8\x84\x5d\xa8\x68\x2d\x44\x8c\x99\x9c\xbb\xd8\x41\x27\xb2\x9e\x81\xf5\xb1\x37\x6f\x67\x14\xc7\x83\x80\xc9\xb0\x6d\xec\x1c\x7e\x36\x73\xf3\x3e\x83\x28\x8d\xe8\xe6\xa8\x6c\xfa\x59\x4b\x65\x4b\x15\x75\x32\x4f\x86\x85\x61\xd3\x0d\xd5\x81\x34\xa0\x6a\x0b\xf7\xbc\x94\xf9\x25\xb0\x51\xb7\x12\x6b\x24\x12\x8b\x2f\x31\xe9\x14\xd3\x31\x39\x1e\xc3\x87\x0d\xe5\xa1\xd9\x0d\x5a\x21\x78\x55\x8b\xc7\x11\xbc\x16\x82\x08\x3e\xf3\xc9\x7b\xcd\x6e\x13\xb7\xe6\x82\x3c\x9f\x4e\xdc\x66\x32\x27\x11\x17\x12\x1f\xd3\x41\xb3\x09\xdc\xb5\x16\xcf\x95\x79\xdd\x96\x39\x1e\x47\xfd\x46\x42\xc7\x1d\xd7\xf6\x8d\x50\xb9\x63\x7c\xd8\x4c\x52\x4a\x61\xea\x92\xa2\x09\x7b\xb2\xa7\x3b\x36\x22\xdf\x45\xbe\x60\x97\x4e\x89\x54\xe6\x9e\x63\xd2\xe8\x10\xfd\x30\xfd\xf7\x5c\xc3\xfa\x71\xec\x6c\xb4\x97\x4c\xed\xa6\x79\x51\xf2\xc2\xac\xd8\x3a\x79\xf8\xf8\xb4\x70\x17\x9e\xfc\xf1\x18\x3e\x52\x37\xb2\x7a\x81\x50\x15\xe1\x6d\x71\xbb\x32\x8d\x98\xcb\x85\x14\x39\x98\xba\x12\xc0\xf3\x5c\x5a\x59\x2b\x5e\xfa\x29\x6c\x8d\xe3\x3c\xf3\x08\x6f\x90\x97\x9f\xab\x57\x96\x73\xd8\xee\x3f\xf3\xfd\x72\xe1\x63\xfe\x6b\xd8\x7f\x82\xa0\x4f\x70\x02\x2c\xba\x62\x30\xf2\x83\x46\xc0\x62\x6c\x6d\xc9\xb4\x0b\x7b\xee\x0b\x6d\xbd\xd2\x56\xe3\x1d\xe1\xba\x52\xa9\xbb\x28\x3c\xdf\x45\xe1\x79\x02\xaa\xde\x66\xea\x9b\xd0\x02\x0a\x79\x2f\xd4\x51\x6c\x1d\x83\x73\xe7\x26\xb4\x86\x05\x45\x72\x8e\x55\x4d\xeb\xaa\x05\xda\x38\x34\xba\xbe\x2b\x45\x75\x94\xf4\x3e\x2a\x12\xd9\xa0\xbd\x43\x72\xc3\x4f\x77\x2a\x4e\x80\x37\x8d\x50\x39\x5d\xa3\x4c\xb2\x72\x2d\x7d\xa2\xcc\x93\xbe\x72\x9f\x31\xd0\xc0\xf1\xf6\x91\x79\x58\x77\x4e\xab\x9b\xc2\xdb\xd4\xd8\x46\xc4\xef\xd3\xda\xfa\x05\xd8\xd9\x68\xee\xde\x32\x1e\xc3\xef\x46\x40\x45\xd7\x57\xe3\x17\xfe\xee\x11\x72\xb1\xe0\x6d\x69\xf7\x29\xf1\xdd\xae\xa5\x7b\x37\x88\xb0\xd1\xf5\xbd\xcc\xf7\x69\xf0\xa8\x72\x72\xd8\xb7\xfb\xcf\x7d\x3f\xe6\xb1\xdd\x7b\x31\x8b\x5f\x50\xc0\xfe\x4d\xc4\x41\xcf\x65\x4e\x45\xe8\x53\xf8\xb1\xe0\xcf\x0e\x82\x3f\x9f\x1d\x21\x8e\x0b\x14\xc7\xbb\x7f\x4c\x1c\xe3\xb1\xbb\x35\xde\x50\xca\xb3\x7d\x9b\x1a\x8b\xf0\xd3\xa5\x8d\xb6\xf4\xf5\x15\x59\x30\x51\x1a\xb3\x5f\x68\xfd\x3b\xae\xd3\x19\x45\x49\xd0\xd5\x29\x2d\x24\x28\xee\xad\xd2\x3f\x52\x0a\xa1\x84\xe6\xd6\xbd\x53\xbe\xef\x3d\x32\x3c\xa8\xea\xd6\x36\x2d\xbd\xa8\x18\x0b\xfb\xe6\x68\x02\x48\xe7\xb4\x41\x3e\x17\x11\xeb\x66\xb9\x84\x57\x26\x53\x99\x62\xee\x69\x84\xa6\x78\xaf\x53\x2e\xac\x98\xdb\x4b\xc8\x14\x00\xf4\x4f\xa9\x4b\xc8\xd8\x2b\x93\x31\x0a\xd2\x5d\x91\xae\x45\x53\xe2\xed\x76\xab\xed\x73\x62\x59\xc6\xe8\x93\xbe\xdf\xbc\x8d\xb1\xc1\xbc\x89\x39\x13\xde\xad\xe5\xa2\x4b\x7f\x38\x97\xf6\xa0\x43\x4c\x6e\xec\x49\x88\x9c\xcb\xb1\x88\x68\xf9\x06\x00\x2c\x53\xb4\x1c\x97\x99\x62\xfe\x25\xf0\x25\x01\x3d\x3c\x00\xdc\x62\x3d\x0d\xb7\x99\x04\xea\xaf\xd4\x9d\x46\xc3\xae\x1c\xff\x07\xad\x24\x92\x03\xc9\xbd\x81\x57\x66\x2d\x35\x8c\x97\xf6\x85\x76\x38\x4d\x1a\x4b\xbb\xfe\xd1\xa9\x6e\x9c\x0b\x2b\xc8\xfb\x32\x3f\x01\xf8\x06\xe2\xf8\x05\x1f\xa0\xff\x37\xb8\xb6\x27\x2d\x26\xc5\xf7\x9a\x3b\x36\xcb\x97\x50\x08\x95\x9f\x8e\x41\xa8\xfc\xc7\x21\x70\x25\x06\x37\x33\x52\xea\xd6\x3e\x02\xce\xbd\xdf\x4e\x2a\x2e\x55\x44\xc7\xb4\x3f\x33\x6a\x93\xfe\x4f\x17\x26\x86\xff\xfa\xf7\xc2\xea\xce\xca\xf0\xba\xa4\x0b\x43\x71\xfd\xc6\x44\xc1\x73\x6e\x79\x02\x5f\x70\xc9\xdd\x3f\x60\xe9\xb5\xe0\x39\xed\x51\x3e\xa0\x3b\x22\xfa\x60\xd1\xda\x3e\x36\xfc\xf3\xe2\x8f\x06\x8c\x17\x27\xb0\xe2\x1b\xc7\xe1\x73\xf8\x57\x00\x00\x00\xff\xff\x09\x67\x45\x7d\x81\x13\x00\x00"
-
-func runtimeSyntaxSyntax_converterGoBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSyntax_converterGo,
-               "runtime/syntax/syntax_converter.go",
-       )
-}
-
-func runtimeSyntaxSyntax_converterGo() (*asset, error) {
-       bytes, err := runtimeSyntaxSyntax_converterGoBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/syntax_converter.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSystemdHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xae\x2c\x2e\x49\xcd\x4d\xe1\x8a\xd1\xd3\x28\x4e\x2d\x2a\xcb\x4c\x4e\xad\x29\xce\x4f\xce\x4e\x2d\xa9\x29\xc9\xcc\x4d\x2d\xd2\x54\xe1\x8a\x8b\x89\x0e\xcd\xcb\x2c\x89\x89\x55\xe1\x02\x04\x00\x00\xff\xff\x60\xa0\xcf\x35\x2d\x00\x00\x00"
-
-func runtimeSyntaxSystemdHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSystemdHdr,
-               "runtime/syntax/systemd.hdr",
-       )
-}
-
-func runtimeSyntaxSystemdHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxSystemdHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/systemd.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxSystemdYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4d\x93\xe3\x28\x12\x3d\x4f\xff\x8a\x8a\xda\x3e\x74\x6f\xc7\xf4\x71\x0f\x15\xb1\xbb\x21\x4b\xb2\x8b\x29\xeb\x63\x84\x5c\x35\xb5\xed\x1e\x05\x96\xd2\x36\x6b\x0c\x1a\x40\xae\xf2\x2c\x3f\x7e\x03\xf4\xed\xe9\x8b\x9d\xef\x81\x00\x41\xe6\xcb\x14\x7b\xca\x40\x5f\x6b\x78\xb8\x53\x57\xa5\xe1\x5c\x7d\xf8\x50\x81\x86\x52\x3f\x7c\xb8\xbb\xbb\xbb\xb3\xcd\x9c\x9c\xe1\xe1\xee\x7e\xbb\xfd\xfa\x49\x81\xbc\xd0\x12\x8c\x12\xe5\x09\xb4\xd1\xf4\x0c\xf2\xf3\xc7\x7b\xd7\xf5\x08\xa4\x02\xf9\x70\x77\xff\xfb\x76\xfb\x6d\xc3\xa9\xde\x6e\xbf\x7f\xbc\xff\xf0\x41\x36\x0c\x54\x3b\xda\xcf\x77\x4a\x13\x0d\x67\xe0\xda\xf6\xfb\xe4\x95\x25\xd4\xda\x78\x7b\x0d\xd2\x78\x8c\x12\x65\x3c\xc6\xc4\x1b\x52\x82\x11\x0d\xc6\x63\x4a\x18\x2f\xc6\xa8\xf0\x93\x75\x92\x99\xc2\xdb\x04\x28\x2f\xd6\xc9\x0a\xc5\x1b\x14\xf4\x18\x87\x18\xa3\x24\x36\x0b\x52\x9e\x98\x38\x98\x05\xec\x85\x04\xb3\xa0\xbc\x42\xe9\xe5\x1f\x09\x67\x57\x07\x54\x2e\xdc\x7f\x2e\x02\x70\xaf\xb1\x60\xa2\x3c\xa1\x24\x03\x52\x2d\x08\xaf\xde\x68\xa5\x8f\x3d\xf9\x02\xf4\x70\xd4\x03\x92\x54\xc3\xd8\xa7\x58\x24\x49\x5e\xa0\xc0\x2c\xa4\x20\x55\x49\x94\x36\x8b\xcd\xaa\xc8\xc2\x34\xc9\xf2\x62\x93\xad\xcd\xa2\x51\x31\x39\x83\xf1\x49\x4d\x76\x94\x51\x4d\x41\x8d\xe0\xba\x10\x0d\xaf\x28\x3f\x60\xd0\xc6\x7f\xf4\x30\x46\xd8\x94\xb4\x3e\x82\x34\x25\x23\x4a\x99\xc2\x8f\x82\x35\x8a\x43\xe3\x27\x41\x58\x2c\xd1\xba\xb7\x36\xb1\xdf\x5a\xae\xb5\xf0\x93\x28\x32\xbe\x38\xd7\x12\x94\x32\xbe\xe0\x15\xd5\x54\x70\xcf\x4f\xc5\x1b\xc8\x91\x18\xa7\x1e\xb9\x80\x4a\x28\xb5\x90\xd7\x58\xe8\xf0\x5c\x4f\x9b\x96\x94\x01\x52\xe1\x3b\x94\x8d\x26\x3b\x06\xf3\x96\xbf\xf6\x7f\x14\x4a\x8f\xe8\x09\x24\x07\xe6\x8b\xf3\x99\xf0\x6a\x4d\xf9\xe4\xf1\xb8\x61\x6c\x44\x29\xd1\xc7\xf0\x9d\x2a\xad\x7e\xc4\xad\x98\xd8\xcd\x79\xa4\x86\x35\xdf\x36\x44\xa2\xe1\x3a\x15\x94\xeb\xdb\x16\x7b\xbc\xee\xfc\x6e\x1b\xf0\xf5\xbc\x13\x8c\x96\x6b\xca\x4f\x63\x1b\x86\xb2\x91\xb3\x7d\x7a\xa6\x52\x37\x84\xd1\x3f\x89\x45\x96\xdf\x33\x5a\xb6\x6b\xd6\x52\xb0\x95\x14\x4d\x3d\x03\x9e\xd6\x92\xee\x9a\x76\xca\x81\x8d\x44\x45\xf7\xd7\x19\x95\x82\x54\x54\x69\xe0\xda\x94\x2d\xcd\x40\x0e\x03\xb7\x76\x1a\x16\xb1\x17\x85\xc6\x4f\x37\xde\x7e\x4f\xb9\x5b\x5b\xba\xc1\xe5\x11\xaa\x86\x51\x7e\x48\xed\x4b\xdc\x72\x92\x0a\xf9\x97\x9e\x19\x28\xd0\x09\x5f\x0a\x79\x72\x0d\x47\x22\xad\x5b\x4a\xa2\x8e\xfe\xf1\x39\x6f\x2d\x7c\x04\xc6\x4c\x51\xf8\x9b\x0c\x27\x99\xa9\x60\xd7\x1c\x4c\x00\x7b\xd2\x30\x3d\x5d\x58\x47\x05\x50\x03\xaf\x80\x97\xd6\xc3\x3b\x6e\x4d\xcf\x54\x7b\x78\x06\xfd\x24\x0b\xe7\x44\xba\x99\xe1\xc0\xcb\xbd\x19\xb1\xc4\xe8\x3f\xf3\x47\xd6\x89\xff\x34\x1f\x35\x0a\x23\x4b\xce\x39\xbc\xfa\x75\x13\x6e\xe6\x8f\xc6\xc8\xbf\x21\x12\x17\x55\x33\x2a\xcd\x12\x7f\xc6\x64\x78\x3e\x5d\x96\xa7\x19\x4a\x6e\xa8\x1c\x45\xf3\x71\x30\x5a\xa5\x61\x1c\xa0\x78\x35\xa7\x73\x6f\x5c\x29\xd6\x84\x57\x44\x56\xa1\x94\x42\xde\x92\x49\xa3\xeb\x46\x9b\x00\x54\x29\x69\xed\xbc\xae\x95\x2c\x27\x8f\x9d\x1d\x00\xbf\x9a\x21\x1e\x22\x51\x81\xf9\x6b\x44\x07\xa2\x6c\xac\xde\xb6\xae\x1b\x34\xe7\xda\xb7\xda\x08\xf6\x18\xeb\xab\x09\xf9\x85\x4a\xc1\x6d\x8f\xa9\x6d\x83\xdc\x84\x59\x16\x27\x06\x2e\xc0\x75\x61\x95\x5e\x34\xda\x14\xe1\x6f\xa1\xb1\xb2\x90\x01\x13\xa4\x72\x26\xd6\x44\xea\xd1\x4a\xad\x14\x8c\x48\x42\x07\x44\x3d\x18\x93\x2e\xa2\xb6\x3d\xf6\x94\xd9\x14\xb0\x4c\xe2\xdc\xfd\x14\x91\x97\xb6\xc6\x26\x46\xce\x16\xf2\x8d\xc8\x2a\x17\xbe\xe0\x4a\x30\x18\x89\xa7\x48\x1d\x46\x84\xaf\xca\x66\x80\xa5\x04\xb0\x4a\x6f\xf6\x12\xfe\x30\x4b\x55\x9e\x52\xa2\x54\x2c\xcc\x5e\x69\xb2\x33\xc5\x0a\x05\xa6\x8d\xda\x55\x03\x4a\x45\x84\xf2\x14\x05\xe6\x91\xf0\x8a\xc1\x23\xdd\x81\xe4\x44\xc3\x13\x5c\x3b\x6a\x4d\x2b\xfc\x46\x75\x79\xec\xb0\x13\xd7\xb1\x19\x37\xca\xc6\x80\x25\x8e\x44\x1d\xcd\x74\x04\x74\xe0\x42\x02\xe2\x47\xba\xa3\x1a\x2a\xf3\x98\x44\xa1\xcb\x10\xc5\x63\x82\x73\x17\xd8\xc8\x4f\xe2\x36\xc4\x51\x60\x50\xc5\xc0\x2b\xdd\x69\x8d\x26\x86\xd2\xa0\xa0\x58\xa3\x27\xdb\xa7\x88\x92\x20\x5c\x0f\x46\xb1\xcc\x92\xa8\xb0\xd1\xb3\xf0\x70\x68\xda\x09\x13\xde\x27\xd1\x1e\x63\x4e\x6a\x75\x14\xba\x23\xac\x8f\xa2\x34\x34\x88\x93\xb2\x04\xa5\xe8\x8e\x41\xef\x3e\x36\x92\xbb\x15\x07\xc0\xc8\x35\x22\xef\x76\x05\x56\x7a\x0c\x4a\x46\x39\xf1\x5d\xaa\x9a\x32\x83\xec\xa0\x34\x4f\xb0\xfd\xcd\xd7\xe6\x17\xb1\xcb\x5b\xff\xb1\xa3\xfc\x22\x28\x9f\xca\xc8\x13\x40\xed\x31\x7a\x01\xf3\x14\xbe\xda\xb3\x6e\xff\x8a\x3c\x59\xad\xd6\xa1\x79\xa2\x8c\x85\xef\x25\x6b\x2a\xd8\x28\xd7\x9f\x32\xe6\x9c\xdd\x1a\x36\xb7\x8f\x34\xa6\x07\x4e\x98\x33\x2d\x99\x4a\x61\xdf\x0c\x94\x19\xce\xef\xf6\x34\x7a\xa1\x1a\x15\x6a\x90\xa6\x51\x93\x26\x62\x34\x51\xa1\x99\xfc\xcc\x75\x67\x14\x9c\xa9\xd2\x4c\x24\x66\xd0\x96\xa9\xa8\x4c\xd5\xe4\x56\x46\x26\xfa\xc1\x28\x3f\x15\x75\xbf\xcf\x17\xc2\x1a\x58\xbb\x14\x12\x10\x4d\x0e\x92\x9c\x4d\x0b\x97\x68\x99\x74\x66\x04\x4a\x91\x03\xfc\xda\x40\x03\x1d\x15\x83\xb6\x03\x75\x08\xc3\x1f\x0d\x70\x4d\x09\x4b\x89\xab\xec\x3a\xba\x86\x92\x12\xd6\x23\x2d\xc1\x8e\x2e\x0e\xbe\x60\x42\x5a\x63\x0d\x17\x60\xce\x10\x65\xab\x30\x6b\x71\xc8\x89\x3c\x80\x36\xac\x39\x29\x53\x44\x9e\xff\x88\xe2\xd0\xd6\x4a\x11\x39\xc1\x98\xbe\x23\x22\x4f\x26\x22\xef\xbe\xe0\x1c\x9c\x93\x2b\x0b\xad\xf2\x58\x2f\x89\xc8\xbb\x1b\xbc\x8f\xf7\x1e\xbb\x70\xef\x01\xd6\x56\xcb\x06\xd4\xc6\x7e\x44\xde\x33\xb0\x19\xb5\x8b\x9b\x08\xce\x42\x5e\xdd\x06\x76\x36\x16\x7b\xdd\xe1\x10\x63\x6f\x15\xf6\xff\x6e\x95\x93\xbd\x8a\xc8\x7b\x07\xd5\x9c\x6f\x6d\x4c\xff\x04\x53\x14\x51\x12\x27\x79\x12\x23\xbf\xb0\x47\x87\x73\x2f\x4a\x8d\xab\x46\x96\x8c\x1c\x94\x71\x81\x1d\x7b\x8d\x16\xcf\xb9\x32\xb1\xad\x3b\x63\xc1\x5d\x5d\x49\xf9\xc1\xc4\x22\x86\xb7\x54\xd2\x0b\x65\x60\xe7\x89\x85\xa6\xfb\xab\xe7\x62\xd2\x24\xdc\xc6\xff\xc5\xed\x48\xc2\x17\x42\xe8\xd6\xf2\x09\x03\x9b\x28\x4c\xc2\x97\x84\xb2\x46\xc2\x68\xf5\x71\x9f\x70\x27\xc0\x4d\xdd\x3e\x62\x2b\xf2\xe9\x60\x16\xdb\xd8\x1f\x98\x24\xc2\xa5\x90\xe0\x55\xff\x6d\x94\x36\x49\xdd\x1e\x89\x68\x33\x51\xea\x45\xae\x9c\x4d\x89\xd4\xc9\xde\x58\x35\xf5\x25\x54\xad\xcf\x28\x87\x87\xba\xc9\x16\x57\xfe\x91\xf0\x03\x54\x66\x52\xe0\xdd\xd4\x75\x16\xba\x82\x88\xda\x6e\x20\xcf\x54\x29\x3b\xa3\x5b\xb4\x2b\xd9\x0b\x2b\xc9\x29\x0a\x5c\x32\x4a\x69\xdd\xee\x77\x2f\xbd\xb7\x91\x9c\x66\x61\x9e\xbf\x8e\xa2\xda\xe1\xd6\xee\xa3\xc5\xc6\x59\x86\xf2\x57\xcb\x5c\x88\x86\x18\xf4\x9b\xad\x85\x3a\x98\x9f\x6b\x93\x4a\x51\x93\x03\xd1\xa0\xda\x14\x97\x0b\x53\x2b\x65\x32\xa2\xc1\xf9\xcc\xa2\x91\x4a\x8f\x10\x71\x0d\xf2\x42\x98\xb1\x55\xa6\x5d\xf6\x54\x43\x87\xca\x73\x4a\x16\x45\x16\x7a\x6b\xeb\x2a\x13\x7f\xc9\xa0\x04\x7a\x81\x45\xb3\xdf\x83\x34\x19\xec\x1b\x05\x11\xe1\x0d\x61\x6d\x76\x9d\x33\xa2\x36\x12\xec\x94\x76\x81\xc3\x82\xab\xa5\x14\x67\x93\xc1\x99\x50\xee\x3e\xa9\xc2\x77\x6a\x9f\xfc\xa3\xa1\x12\xaa\xc5\xb5\x37\xd5\x60\x38\x2f\x55\x4b\x21\x07\x26\xb9\x80\x94\xb4\x72\x25\xbf\xe3\x94\xad\x9b\x07\x6b\xde\x6c\xbf\x06\xe1\x39\x77\xd6\xac\x32\xcc\x40\x75\xab\x56\x5d\x0d\x60\x8b\x08\xbb\x1c\xac\x89\x6e\x86\x0e\xd6\xef\x32\x21\xf4\xa8\x0a\x33\x34\xba\x42\xd6\x70\x5b\x81\xd8\x54\x61\x53\x7b\x8f\x7b\xbd\xb0\x7e\x31\x52\x1b\x35\xa0\x17\xa2\xcb\x63\x25\x0e\x76\x22\x45\xce\x35\x03\x65\x54\x49\x18\x14\xef\xdd\xff\xd5\x60\x20\xcc\x38\xe7\x85\x05\xd5\xca\x14\x38\x5c\xa3\x78\xf3\x5b\xe1\x27\x71\x1e\xfe\x96\x1b\x0c\xbc\xea\x0e\xc6\x9a\x18\xad\x9e\xd0\x7a\x6d\x70\xf7\x2d\x8c\x8f\xe2\xad\x7b\x2d\x7c\x6c\x74\x25\xde\xf8\x6c\x5a\xbb\x38\x7c\x26\xe5\x69\x4d\x76\xc0\x26\x26\x4a\x11\x9f\xc1\xa4\xd1\x06\xbb\x2f\x6b\x97\xdf\x5a\x53\x19\x2c\x1a\x59\x82\x8d\x17\x53\xe0\x64\x93\xf9\xe1\x8f\x3c\x08\xd7\x8c\x76\xcf\xcd\x2a\xcb\x1e\x21\x6e\xe3\xf8\xa6\xc0\x74\x3b\xdc\xe6\xc0\xb6\xe4\x18\x89\xd6\xcf\x47\x3c\x38\xba\xfd\x84\xa7\x65\xc1\xdb\xa9\x44\xfd\x72\x04\xbe\xe1\x1c\xa0\x82\xca\x12\x92\x1c\xc0\x28\x2d\x29\x3f\x14\xa0\x4a\x52\x83\xe1\x82\x83\x91\x50\x33\x52\x02\x6e\x9c\xb4\x4d\x9c\x01\x37\x75\xcd\xdc\xa5\x00\x91\x57\x57\x95\x29\x83\x37\xe9\xf0\x29\x3d\x56\x57\xb7\x31\xdf\x2a\xfe\x92\x94\xed\x87\x2d\x7e\xc5\xeb\x64\x55\x2c\x3d\x1f\xad\x6d\x90\xb7\xcd\xc8\xa9\xd4\x9e\xda\xe3\x6b\x3b\xa0\x20\x8c\x73\xb4\x44\x61\xd6\x75\x69\xd3\xd8\xc4\x4e\x25\xec\xe9\x7b\xdf\xdf\xea\x10\x76\xb7\x23\x3e\x61\x6c\xd9\xd6\xaa\xf8\x15\xe7\x61\x14\x14\xde\x1a\x79\xd8\x14\x3d\xf4\x57\x59\xb2\x49\x47\x9c\xbc\xc4\x61\x56\x6c\xec\x08\x1d\x93\x85\x5e\xf0\x3a\x76\xe8\x2f\x2f\x06\x62\x13\xa3\x7c\x82\xb0\x7d\xdc\x52\x3d\xf3\xe2\xc5\x39\xee\xd6\x33\x04\x44\x0b\xa7\xf1\x30\x30\x36\x1c\xf0\x55\x3d\x77\xe5\x78\xa7\x84\xb9\x9f\xfa\x82\x1f\x40\xb9\x63\xcf\xfd\xf4\x45\x92\xda\x49\x7c\x5f\xea\x4f\x4a\xb6\xde\xec\x63\x76\xc0\xa2\xee\xa1\xc4\x8c\x94\xa7\xd8\x41\x49\xb8\xaa\x89\xb4\xdf\x14\x45\x9e\x79\x31\xb6\x47\x69\xb4\x53\xbf\x3c\x7f\x75\x9e\x9c\xe7\xaf\x4e\x36\xac\xf1\xfc\x48\xf8\xa1\xa9\x9d\x99\x07\x54\x11\xc6\x6c\x39\x01\x26\xbf\xd6\x60\xdc\xe6\x6d\x22\xa2\x4e\xc6\xe6\x2c\x63\x2b\x3b\xb3\xd1\xe7\x7a\x72\xb0\xcf\x61\xe6\x36\xb1\xfb\xb7\x79\xfc\x85\x70\xed\x54\xcf\x1a\xca\x4c\x43\xf2\xe5\x48\xb4\x79\x39\x82\x04\xf3\x22\xa4\xcd\xc2\x83\xe4\x7c\xfe\xe7\x7d\x77\x53\x55\x4b\xa8\xa5\x28\xdb\xfb\xac\xaf\x94\xbb\x0a\x74\xbb\xfd\x57\xdf\xae\xdc\xe5\xc1\xc3\xdd\xfd\xf0\x84\x6a\xab\xa5\xee\x06\xec\x93\x5b\x2c\xe2\x4a\x13\xc6\x46\xb1\x68\x2f\xce\xdc\x8e\x7d\xde\x6e\xbf\xf7\xcf\xd2\xe1\x5d\xbe\xba\xfb\x1f\x77\xdf\xf6\x31\xf2\x50\x9c\xa2\xa0\xef\x54\x0a\x3b\x1a\xd7\x5f\x77\xc2\xcd\xbc\xdd\xee\x3e\x69\xd9\x80\xd9\x13\xa6\xe0\xf3\x76\xbb\x1b\x7b\x9e\xbb\x4b\xb6\x4f\xbf\x9b\x6f\xdf\x1e\x54\x4d\x4a\x78\xf8\xfe\xfd\xf3\xdf\x3e\x7d\xfb\xfd\x7f\xdf\xbf\xfe\xfd\xf3\xbf\x3f\x0e\x53\xdb\x8f\x77\xfd\x73\x79\x24\xf2\xeb\xdb\x91\x6a\x68\x3b\xdf\xdd\x4f\x9e\xfb\xf2\xa3\xde\x0f\x77\xf7\x3f\x7d\xb9\xfb\x62\xee\xbe\xfc\xf4\xe5\xfe\xc3\xff\x03\x00\x00\xff\xff\xa4\x35\xde\xe0\x49\x14\x00\x00"
-
-func runtimeSyntaxSystemdYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxSystemdYaml,
-               "runtime/syntax/systemd.yaml",
-       )
-}
-
-func runtimeSyntaxSystemdYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxSystemdYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/systemd.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTclHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x49\xce\xe1\x8a\xd1\x2b\x49\xce\x51\xe1\x8a\x53\x56\xd4\xd3\xd2\xd7\x48\xcd\x2b\x53\xd0\xd6\xb4\x2f\x49\xce\x29\xce\xd0\x50\xa8\x51\xd1\xe4\x02\x04\x00\x00\xff\xff\x9b\x33\xdc\x22\x24\x00\x00\x00"
-
-func runtimeSyntaxTclHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTclHdr,
-               "runtime/syntax/tcl.hdr",
-       )
-}
-
-func runtimeSyntaxTclHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxTclHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/tcl.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTclYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\xd1\x96\xdb\x26\x10\x7d\xdf\xaf\x50\x9c\x3d\x8d\xbd\x7b\xd6\xed\x6b\x9d\xb6\xdb\xbe\xf7\x0b\xba\x6c\x5c\x84\x46\x12\xf5\x08\xe8\x30\xb2\xad\x66\xf2\xef\x3d\x83\x64\xaf\x73\x4e\x9b\x07\xc1\x1d\x04\x03\x5c\x2e\x97\xd6\x23\xf0\x94\x60\x57\xb1\xc3\xbb\xbb\x06\x18\x1c\xef\xee\xaa\xaa\xaa\xf4\x57\xb0\x03\xec\xaa\x95\x31\x5b\x76\x78\xbf\x2a\xed\x3d\xd8\x06\x68\x57\xad\x3e\xbd\x7f\xb7\x7d\xf8\x7e\x0d\xe1\x58\x3d\x6e\x9e\xd9\x61\xee\xd7\x95\xdc\x6f\x56\x77\x77\x34\x22\xe4\x39\xcd\x53\x95\xd9\x32\x0c\x10\xb8\x64\xaa\xd7\xb6\x65\x20\xb1\x29\x41\x68\xc4\x12\xd9\x49\xec\xc8\x71\x0f\x67\x70\xf1\x30\x63\x3f\xa4\x48\x3c\x63\x8c\xb6\x79\x43\x7b\x1f\x1a\x38\xcf\xf1\xdf\xa3\x45\xdf\x4e\x52\xfb\x60\x69\x92\x9a\xc0\x1e\xc4\xd9\x0c\xe2\x2c\xbb\x5e\x5c\x23\x0e\xa3\x3b\x68\xa9\x8d\x31\x38\xcb\x5a\xb1\x0f\x23\x08\x60\x9e\x0b\xdf\x0a\x04\x17\x1b\x1f\x3a\x81\xd8\x0a\x10\x45\x12\x38\x5a\x14\x5d\x94\xc0\xd9\xb3\xc0\x39\x91\xb4\xb5\xe6\x83\x46\x5a\x17\x43\xeb\xbb\x91\x40\x61\x9a\x44\xe9\x2a\x05\x1c\x21\xb0\xb4\x38\xe6\x5e\xda\x48\xfa\x81\x75\x05\x0f\x96\xa5\x03\xce\xd2\x61\xac\x4b\x61\x51\x7a\x9f\x39\xd2\x24\xbe\x15\x1f\x1c\x89\x0f\x6d\x14\x1f\x18\x28\xc9\x5f\xd1\x07\xc1\x85\x2a\x9c\x77\x8e\x3e\x64\x20\x16\xf4\x99\x05\x11\x42\xc7\xbd\x14\x8e\x90\x6c\xe8\x40\x90\x20\xa1\x75\x20\x98\xc1\x92\xeb\xb5\x66\xc1\xac\x84\xea\x81\xe6\xa4\x3f\x63\x82\x20\xc9\xba\x83\xed\x40\x92\x6f\x24\x8d\x9c\x25\x9d\x1a\x21\xb0\x5a\x74\x70\x4e\x5a\xe5\xb1\x16\x2a\x4a\x10\x02\x1e\x29\x48\x76\x36\x48\x06\x38\x88\x26\xce\x4a\x88\x56\x23\x39\x90\x9c\xd0\xb3\x64\x26\xe5\x32\x8f\x75\x66\xc9\x27\xaf\x87\xc1\x0e\x7f\x8f\x9d\x30\x20\x0a\xfb\x01\x84\x49\xd7\x31\x86\x43\x88\xa7\x20\x63\xd0\x64\x63\x6a\x2c\x83\x8c\x09\xe1\x08\x28\x63\x3a\x5a\x92\xa3\x25\x6f\x6b\x04\x39\x9e\xac\x67\x39\xf5\x1e\x61\x63\x4c\xbd\xfa\x3f\x81\xa9\xa6\x2a\x1b\xa6\x21\x12\xcc\x0a\xab\x9a\x18\x60\xa1\x63\x6e\x80\xb3\xcf\x9c\x97\xa0\x03\x5e\x50\x21\xe8\x82\xe1\xcc\x80\x25\xf3\xd2\x92\xaf\xfd\xb2\xff\xe7\x92\x3a\xb3\x25\xfe\x2a\xb7\x2e\xc8\x67\xf6\xee\x92\xa9\x6c\xee\x5b\x4b\x9e\x09\xab\xea\x49\x27\x2c\x27\xba\xb4\xb8\x38\x24\x4b\x70\x09\x41\x25\x7f\x09\x5a\x4f\xf9\xc2\x75\x35\x8b\xe3\x12\xe4\x0b\x42\xfb\xd6\xe5\xeb\xcc\x83\x4d\x6f\x50\x0f\x68\x09\x66\x11\x5d\x02\x48\x60\xf9\x26\x2a\xc2\x5a\x42\x8e\x6f\x08\xe3\x09\xe8\x2d\x64\xcf\x78\xd3\x6f\x4c\xe9\xe6\x2f\xf9\xe1\x16\x23\xb4\x7c\x1b\x93\xef\xfa\x6b\xc3\xc9\xe3\x75\xbf\xa7\x48\x8d\x5e\x84\x9b\xb0\x70\xff\x4d\x2d\xa0\xa5\xe1\xc6\x3d\xd2\xa1\x93\x7a\x39\x2c\x35\x89\xd9\x18\x2c\x97\x6b\xe9\x2c\x97\x6b\xe1\x5c\x44\x54\x1d\xba\x8b\x65\xcc\xbc\xbb\xbe\xa3\x24\xae\x1f\x62\x23\xae\x57\xd5\xba\x9e\x62\x64\x71\x33\xfb\x6e\x61\xd8\x0d\xcd\x2c\x6e\x17\x87\xc1\x86\x06\x63\x4c\xe2\x66\x62\x5d\xb9\x14\x24\x8e\xe3\x41\xa7\x52\xf7\x95\x66\x4c\x02\xae\x8f\xc5\x6e\x50\x5a\x17\x18\xa5\x2d\xd6\xd5\x46\x3a\x48\xab\xdb\x92\x96\x69\xd4\xe5\x80\xb4\x63\x28\x3f\xfb\x98\x79\x3f\x1b\x46\x53\x8c\xe3\x2c\x07\x98\xb0\x01\x2c\xb5\xca\x5a\xeb\x03\x4c\xb9\x00\xd5\xef\x41\x19\x45\x9b\xb3\xef\x82\xa0\x9a\xa1\x55\x93\x81\x21\xf1\x24\x58\x78\x40\x1f\x0e\x82\xb3\x2a\x94\x35\xf4\xf5\xe2\x3d\xba\x11\x3c\x5a\x52\x52\xb4\x4e\x4b\x9c\xd4\xed\x06\x7b\x96\xc1\x07\x09\xde\xa9\xa5\x24\x90\x44\xb1\xf8\x22\xd9\xd0\xc4\xa1\x38\x4b\xe3\x49\x54\x47\xbe\x6c\x44\xad\x44\x97\x00\x67\x2e\xb8\xf4\x56\xb0\x48\x12\x10\x1c\x4b\x06\x3a\x02\xed\xad\x73\x90\xae\x91\x23\x28\x19\x7c\x17\xf4\x4a\x20\x40\x92\x3c\x05\x27\x79\xca\x0c\x83\xfa\xcd\x79\xdf\xfa\xd0\xf8\xe0\x79\x89\x94\xcb\x82\x8a\x16\x38\x34\xe7\x3c\xc7\xf3\xf0\x19\xde\x0c\x2f\x7e\xa3\x66\x95\xd5\xad\x42\x56\x6f\x63\x9a\xf6\xe5\x69\x18\x07\x9b\x0f\xa2\x5d\x6e\x05\xe8\x1b\x08\xec\x5b\x0f\xb4\x75\xca\xf2\xae\x5a\x25\x8a\xee\xe5\x65\x57\x7c\x77\xf7\xfa\x2a\x6b\x63\x3e\x8b\x31\x5f\x36\x57\xd1\x4e\x43\x1d\x71\x1b\x13\x90\xe5\xa8\x6f\xeb\xda\x98\xb5\x18\xb3\x11\x63\x3e\xca\x9f\x62\x8c\x31\x62\xcc\xbd\xfc\x24\xbf\xc8\x3b\xf9\x59\xbe\x13\x63\xe4\x3a\xde\xc5\x90\xd9\x06\xde\x86\x71\xa8\xcb\xdb\x6c\x4c\xfd\xf2\xc3\xd3\x8f\xaf\x8f\x6b\x63\xb6\x33\xda\x3c\xdf\xac\xf2\x3a\x62\xbe\x4b\x3a\x42\xe7\x34\x66\x2b\x2f\x9f\xcc\xea\x75\xf3\x60\x56\xf2\xe1\xda\xf2\xe1\x75\xf3\xf0\xe1\x3f\x76\x78\xb4\xf3\x64\xf7\xc6\x7c\x7e\xd6\x69\x7e\x7b\xfa\x63\xff\xee\xd7\xf7\xf7\x0f\xcf\x4f\xaf\x8f\xc6\x7c\x79\x7e\x9b\x70\x58\x6e\xe5\xfa\x93\x7c\xdc\xdc\xd0\xf1\xf0\x7e\xfb\x70\x4d\x1d\x34\xf7\x93\xeb\x2d\x6d\x4f\xbd\xe7\xf9\xad\xda\x55\xab\x9b\xfe\x8f\xf7\xab\xbb\x7f\x03\x00\x00\xff\xff\x1e\x2f\x55\x8f\xb7\x08\x00\x00"
-
-func runtimeSyntaxTclYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTclYaml,
-               "runtime/syntax/tcl.yaml",
-       )
-}
-
-func runtimeSyntaxTclYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxTclYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/tcl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTexHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x49\xad\xe0\x8a\xd1\x2b\x49\xad\x50\xa9\x89\xd1\x4b\xca\x4c\x02\x51\xc9\x39\xc5\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x46\x27\xf3\x19\x1a\x00\x00\x00"
-
-func runtimeSyntaxTexHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTexHdr,
-               "runtime/syntax/tex.hdr",
-       )
-}
-
-func runtimeSyntaxTexHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxTexHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/tex.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTexYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x6f\x8f\x9b\x30\x0c\xc6\xdf\xf3\x29\x2c\xda\x9b\x5a\x9d\x40\x7b\x3b\x34\xad\xdb\xd7\x58\xcc\xa6\xfc\x31\x77\xd1\x48\x40\xc4\x9d\xba\x23\xfd\xee\x13\x81\x2b\xb7\x55\x48\xc7\x1b\xe0\xb1\xf3\x8b\xfd\xd8\x8d\x6d\x89\xff\xf4\x54\x01\xd3\x25\xcb\x0c\x31\x69\xae\x20\x03\x00\x98\x62\x5e\x3a\xaa\x20\x47\x2c\x99\x2e\xfb\x88\x58\x2a\xab\xd2\x5b\xb7\x61\x9f\x67\xd9\x70\x6e\x29\x54\x29\x7f\x07\xba\x6b\xbb\xc1\xbe\x10\xf0\x33\x81\x35\xe4\xd9\x36\x96\x86\x00\x5d\x03\xe3\xe7\x55\xf8\x72\x05\xe9\x0d\x88\xb7\x52\x9d\x18\xc5\x9b\x63\x33\x75\x7a\x02\xcb\x81\x53\x19\x63\x7e\x13\xc9\x9b\x24\x5d\x57\x69\x2e\x06\xc4\xfb\x58\xe2\x9e\x55\x6f\xb1\x76\xe0\xcf\x4e\xd1\x10\x16\xb2\xee\x7c\x60\xe9\xb9\x9c\xe5\x74\x58\x89\x8f\xc5\xa7\xfa\xf1\x80\x58\xce\x5f\xc7\xd3\x41\x88\x2a\xf4\x52\x53\x55\xd7\x87\x9e\xa3\x73\x51\xbb\x68\x7d\xa4\x4b\x24\x17\x55\x1f\x7b\x1d\x8d\x89\x5a\x47\x6f\xa2\xd7\x31\xf4\xc7\xe3\x09\x51\xe5\xcb\xad\x2d\x31\xa8\x41\xea\x5f\xc4\x01\x9e\xe5\xef\xd9\x5a\x43\x8d\x3c\xb7\x3c\xfb\x0d\xf2\x49\x5a\xbf\xd4\xb5\x44\x2a\xc8\xc5\x78\x45\x14\x88\xf5\xd2\x53\x01\xa1\x27\x6d\x65\x3b\xc5\x3e\x20\xde\x9a\xdd\x81\x93\x7a\xe8\x5e\x3b\x0b\x2c\x99\x1c\xf9\xd9\x23\xc4\xaf\x27\x21\x8b\x97\x6f\xc5\xf7\x9f\xf5\x63\xbe\x91\xf3\x90\xdf\x16\xc0\x4d\xf2\xea\x52\xfa\xbd\x37\x5f\xfc\x48\x05\x3c\xfc\x3f\x81\xfd\xf6\x2c\x37\x59\x13\x49\xd1\x93\xf5\x88\xe3\x92\xf4\xcf\x52\xbc\xce\x16\x91\xbc\xd9\xc8\x59\x2f\xfb\x1b\x00\x00\xff\xff\xd5\xe7\xc0\x26\x11\x03\x00\x00"
-
-func runtimeSyntaxTexYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTexYaml,
-               "runtime/syntax/tex.yaml",
-       )
-}
-
-func runtimeSyntaxTexYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxTexYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/tex.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTomlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xc9\xcf\xcd\xe1\x8a\xd1\x03\x53\x5c\x80\x00\x00\x00\xff\xff\xbb\x01\x2b\x6e\x0d\x00\x00\x00"
-
-func runtimeSyntaxTomlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTomlHdr,
-               "runtime/syntax/toml.hdr",
-       )
-}
-
-func runtimeSyntaxTomlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxTomlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/toml.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTomlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\x6d\x6f\x9b\x30\x10\xfe\x9e\x5f\x71\x72\x26\x01\x4d\x40\xec\x4d\xdb\x90\xa6\x68\x7d\x93\xfa\x61\xea\xa4\x75\x52\x54\x1b\x55\x26\x36\xd4\x2a\xd8\x11\x36\x5a\xbb\xd0\xff\x3e\xd9\xe4\x85\xd0\xb5\xcd\xf7\xf1\x01\x8e\xbb\x7b\x1e\x3f\x77\xc7\x91\x8b\x92\x9b\x87\x25\x4f\xc0\xa8\xaa\x1c\x8d\x18\x37\x7c\x61\x92\x11\x00\x80\x8d\x49\x5a\xf1\x04\x10\x21\x91\x8d\xa3\xd1\xa8\x6e\x4a\xae\xbb\xf8\x18\x7e\x34\x72\x61\x1a\x6a\x84\x92\xce\x13\x82\x7e\xa8\x32\x55\x26\xe0\xe1\xaf\x53\x12\xa5\xde\x9e\x3b\xca\x6a\xba\xb8\xe3\x46\xdb\xf8\x8a\x60\x92\x3e\xae\x33\xc6\xf0\xd3\xd4\x42\x16\x7a\x9d\xbf\x50\x52\x1b\x2a\x4d\xa4\x9d\xbb\x3b\xcf\x5e\xda\xd0\xda\x24\xe0\x21\x84\xbc\xad\x93\x4b\x96\x80\x47\xd0\xea\xfd\xf4\xe3\xe3\xce\xad\xef\xc4\xd2\xfa\x49\xb4\xf3\xf5\xe4\x6f\xae\xfe\x69\x4b\xbe\x10\xb4\x3c\xb9\xa5\xb5\x03\x36\x18\x27\xf7\x4c\x14\xc2\x24\x69\xba\xfa\xd0\xe3\x7e\x05\xf8\x6b\x0f\xf8\xf9\x70\x20\xce\x8c\xcc\x6b\x44\xc8\xb6\x75\xaf\xb7\x62\xd8\x08\xf4\xbf\xb5\x00\x79\x9e\x87\xf6\x9b\x80\x3c\xf7\x31\xa0\x41\xd5\x80\xd3\x83\x39\x9f\x30\x3e\x47\x36\x86\x0b\x69\x78\xc1\xeb\x21\xb5\x6c\xaa\x8c\xdb\xa2\xf0\x24\x4c\x67\x3e\x61\x93\x9b\xe0\x88\xb0\x09\xc9\x9e\x54\xb6\x4d\xf5\xe3\x7b\xbf\xdf\x39\x0b\xd9\x7b\x6f\x63\xe5\xe3\x38\xfc\x94\xda\x80\x7d\x4e\xda\x38\xf3\x71\xfc\xb6\x4b\xb5\xcf\x60\xb3\x54\xe7\xa5\xa2\xe6\x60\x55\xd1\xce\x7e\x5e\xdf\x00\xe4\xf7\x51\xc1\x0c\x9f\xf1\x74\x90\xf1\x42\xa9\x64\xd2\x86\x81\x2f\x64\xde\x4a\x2a\xb7\xa2\x8f\x69\xcd\xe1\x8e\x3f\x4c\xed\x4d\x77\xf3\x10\xb2\x80\xdf\xc2\xdc\x02\x05\xd7\x08\x50\x35\x30\xaa\x6f\xc1\xe6\xd2\x2a\x13\x45\xa3\x1a\xdd\xa5\x74\xfc\x1a\xa8\x64\x2e\x6c\x77\x60\xc9\xd9\x5a\x86\x60\x5c\x1a\x91\x0b\xa7\x80\x64\xf8\x5b\x78\x4d\xc3\x3f\x37\xe9\xda\x88\xc3\x2f\x37\x61\x7a\xb4\x99\xd0\x18\x8e\x95\x2a\x39\x95\x8e\x4d\xc8\x7c\x0a\x92\x4a\x77\x8e\x6a\x0c\x68\x51\xc8\x61\x79\x99\x52\x65\x64\xea\x86\x3b\x7e\x6b\xfc\x63\xdc\x2e\x29\xa7\xa5\xee\xb2\x9c\xf5\xd2\x57\x41\xb2\x6d\x9b\x76\xd2\x4e\xa9\xe1\x4e\xd7\x95\xa8\xf8\x00\x6a\x31\x6c\x12\x12\xb6\x7a\xf7\xd8\xdd\x7d\x7c\x05\xa9\xb3\x92\xde\xdd\x27\x91\x1b\x9c\x6f\xa7\xd6\xf3\xb7\xd7\xc1\x2c\x98\x0d\x05\x39\xd6\x67\x18\x36\xaa\x4e\x54\x55\x71\x69\x76\x7f\x72\xf7\xfa\x74\xbf\xc6\xc3\xfd\x7a\x33\xdc\xaf\xc1\x0f\xc3\x28\xa6\x12\x40\xfe\xd5\xe5\xe9\x65\x3b\x9f\xcf\xdb\xf3\x8b\xf9\xf7\xb3\x20\x99\xa1\xd1\xdf\x00\x00\x00\xff\xff\x21\x07\x4b\xf9\xc6\x06\x00\x00"
-
-func runtimeSyntaxTomlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTomlYaml,
-               "runtime/syntax/toml.yaml",
-       )
-}
-
-func runtimeSyntaxTomlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxTomlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/toml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTwigHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x29\xcf\x4c\xe7\x8a\xd1\x03\x51\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\xc7\x44\xfe\x5f\x0e\x00\x00\x00"
-
-func runtimeSyntaxTwigHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTwigHdr,
-               "runtime/syntax/twig.hdr",
-       )
-}
-
-func runtimeSyntaxTwigHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxTwigHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/twig.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTwigYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x94\xdb\x6e\xf3\x36\x0c\xc7\xef\xf3\x14\x9e\xbb\x6e\xc9\xba\x64\xc5\xee\x96\x1d\x8a\x61\xc0\x5e\x22\x0a\x02\x5a\xa2\x1d\x35\x3a\x81\xa2\x93\x7a\x65\xdf\x7d\x70\x0e\x5f\x4f\x0e\xbe\xa2\xc0\x77\x17\xdd\x18\xd6\x9f\xa2\x7f\xa2\xc9\x7f\x6d\x1d\x72\x97\x70\x5e\xf0\xce\x36\xa3\x91\x41\x46\xcd\xf3\x51\x51\x14\x45\xaf\x05\xf0\x38\x2f\x4a\xa5\x66\xbd\xfe\x7d\x39\x1a\x51\xeb\x30\x1f\x02\xa6\x85\x0d\xda\xb5\xa6\x8f\x58\xb3\x77\xe5\x71\x37\x77\xbe\x8a\x6e\xc6\xd0\x1c\xe2\xfa\x95\x19\x88\xf7\x99\x1e\x95\x7a\x5c\x2c\xe6\x39\x81\xc6\xf9\x72\x59\x7e\x09\xc1\x60\xe6\x45\xf9\x42\x52\xea\x49\xa9\xa7\xe7\x80\x17\x9f\x3e\xad\x69\x61\x0d\x06\xb6\xb5\x45\xda\x67\xaf\xc6\x50\x65\xa9\x80\xf5\x5a\x34\x24\xcb\xe0\xec\x7f\x28\x3a\x86\x2d\x12\x0b\x06\x1d\x8d\x0d\x8d\x18\x60\x1c\xaf\x7c\x34\xb6\xee\x26\x77\x62\xb0\x86\xd6\xb1\x60\xd6\x90\x50\x6a\x4b\x99\xa5\x8e\xe4\x81\xe5\x3e\xda\x20\xf7\x39\x86\xd5\xfe\x34\xca\x06\xbb\x2c\x0e\x32\x8b\xc3\xd0\xf0\x5a\x5c\xdc\x21\x89\x47\x6a\x50\x82\xfb\xb5\x22\x09\xad\xaf\x90\x56\xc7\x0c\x04\x3b\x21\x4c\x0e\x34\x0a\xe1\x16\x29\xa3\x50\x6c\x83\x91\xec\xac\x46\xc9\x91\x58\x72\x72\x96\x25\x33\xd9\xc4\xd0\x64\x61\xcb\x0e\x85\xc9\x7a\x69\x53\x42\x92\x96\xdc\x91\x60\xa2\x54\x55\x9e\xad\xc3\x4c\x3b\xc8\xf9\x54\x0d\x66\xb2\x55\xcb\x28\x95\x8b\x7a\xd3\x17\x22\x33\x04\x16\xdd\x69\x87\xfb\x32\x88\x69\x7d\x92\xe3\xaf\x14\x0f\x0f\xe2\x6d\x90\x04\x84\xa1\x47\x0f\x26\xfa\xfe\xd1\xf4\x9c\x2d\x69\x14\x46\x9f\x1c\x30\xae\x6a\x8a\x7e\xd5\x13\x87\x66\x08\xa9\x6f\xac\xd9\x06\xbb\x5d\x24\x73\xc2\x09\x46\x20\x3f\x53\x18\xac\x6d\x40\x23\xc6\x6e\x6d\xb6\x95\xc3\xaa\x13\xf4\x89\x3b\xc1\x2d\x06\xa9\xc1\x65\x14\x1b\xc4\x66\xb1\x8c\x04\x95\x43\x09\x91\x25\xb4\xce\x49\x34\x46\x22\x49\x06\x8f\x63\xc8\x93\x3b\x61\x6a\x51\x76\x96\xd7\x43\x34\xc7\xae\x8c\x09\x09\x38\xf6\xdd\xb2\x98\xcd\x7f\xff\xf9\xe6\xa7\x3b\xf9\xf3\x3b\xa5\xae\x97\xf2\x87\xfc\x25\xbf\xc8\x54\x7e\x38\x73\xb4\x22\xd0\x1b\xe4\xbe\xb4\x8b\xf1\xe4\xf1\x69\x29\x4a\x2d\x44\xa9\xe5\xdb\xf8\xd3\xf5\x66\x87\x36\x38\xdc\x7d\x71\x3b\xfd\x6d\x79\xa3\x54\x25\x4a\x55\xb7\x0f\xfd\xeb\xdf\xd3\x7f\x61\x5a\xef\x37\xcf\xa6\x38\x94\xf7\x75\xd7\xbf\x1a\xa8\xb2\x7c\xa7\x1d\x26\x69\x48\xc9\x1b\x9b\xf6\x38\x4a\xbd\x17\x07\xe6\x6b\x08\x28\xa1\xb6\xe0\xfe\x59\x03\x1d\x33\xcd\x3e\x0d\xff\xe3\x39\xf6\x01\xe1\x5b\xa2\x7f\xd5\xb3\xae\x3f\xe6\x58\xd7\x17\xbf\xba\xf8\xd5\xc5\xaf\x2e\x7e\xf5\x79\xf4\x8f\xd9\x95\x8e\xde\x63\xe0\x41\xaf\xba\x7a\x6b\x50\x57\x03\xae\x54\x2c\x96\xa3\xff\x03\x00\x00\xff\xff\xea\x2f\x44\xaf\xfd\x09\x00\x00"
-
-func runtimeSyntaxTwigYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTwigYaml,
-               "runtime/syntax/twig.yaml",
-       )
-}
-
-func runtimeSyntaxTwigYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxTwigYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/twig.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTypescriptHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xa9\x2c\x48\x2d\x4e\x2e\xca\x2c\x28\xe1\x8a\xd1\x2b\x29\x56\xe1\xe2\x02\x04\x00\x00\xff\xff\xdd\x53\x6a\x8b\x12\x00\x00\x00"
-
-func runtimeSyntaxTypescriptHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTypescriptHdr,
-               "runtime/syntax/typescript.hdr",
-       )
-}
-
-func runtimeSyntaxTypescriptHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxTypescriptHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/typescript.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxTypescriptYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xc1\x6e\xe3\x36\x10\xbd\xfb\x2b\x54\x63\xdb\xd8\x32\x14\xa7\xa7\x22\x42\x5b\x21\xed\x26\xa7\x36\x29\xba\xed\xa5\x24\xb3\xa0\xa8\x91\xcd\x86\x22\x55\x72\x18\xc7\xc5\xa0\xdf\x5e\x50\x72\x36\x5e\x3b\x9b\xcd\x65\x7d\x18\x92\x23\xbe\xf7\xc6\x0f\xc3\x69\xb5\x01\xdc\xf6\x50\x66\x29\x06\xe5\x75\x8f\x93\x49\x03\x08\x0a\xcb\x49\x96\x65\x59\xba\x61\x65\x07\x65\x36\xe5\xfc\x14\xc3\x9b\xe9\x64\xe2\xa3\x81\x30\x7e\x2e\x32\xe5\x6c\x40\x69\xf1\xd4\xc6\xae\x06\x3f\xdc\xab\x59\xb1\x10\xd5\x8c\x7d\x5b\x9c\x0b\x76\x56\x9c\x8b\x9c\xce\xd8\x59\xf1\x5d\x5a\x1f\x52\x42\x16\xed\x45\x71\x25\x16\xf3\x19\x8b\x7f\x0a\x66\x7e\x11\x15\xa5\x98\x4e\xd5\xbc\xe2\xbc\x9e\xbe\x82\x3e\x31\x2f\x38\x3f\xdd\x49\x8c\xcb\xe3\x39\x71\x5f\xc2\x6f\xbd\x60\x8b\x42\x54\xbb\x54\xc5\xda\xab\x24\xf6\x6a\xf6\x63\x8a\x03\x06\xdd\x80\x45\xdd\xea\x01\xcc\x2e\x8a\xbf\x64\xf1\xef\x7b\xb1\xdb\x9c\x15\xe7\xef\x45\xce\x58\x19\x7a\xa9\xa0\x14\x22\x67\x33\xf1\x88\x0c\x28\x11\x3a\xb0\x38\xaa\xce\x64\x1d\xd0\x4b\x85\x24\x03\xc9\xb0\xb5\x8a\xe4\x46\x6a\xa4\xda\x83\xbc\x23\x25\x03\x90\x92\xa8\xd6\xa4\x8c\x0c\x81\x86\xd2\xc7\xe8\xa3\x42\xe7\xd3\x1e\xb5\x8d\x30\xdf\xb3\xef\x50\xa4\x81\x3a\xae\x56\xe0\xa9\x01\x65\xa4\x07\x6a\xa0\x95\xd1\x20\x35\x60\x00\x81\x1a\x47\x60\x02\x10\xd8\xd8\x11\x3c\xf4\xce\x23\xc1\x03\x82\x6d\x02\xb5\xda\x4a\x63\xb6\xd4\x3a\x4f\xad\x77\xdd\x4b\x3a\x6d\xb4\x0a\xb5\xb3\xb4\x02\x24\xdd\x92\xee\x7a\x33\x7c\x0f\x69\x9b\x58\xb5\x25\x3d\x98\xaf\xc0\xb5\xa4\x2d\x82\x6f\xa5\x02\xd2\x81\x0c\x20\x75\xae\x89\x06\x28\xb5\xde\x60\xde\x4b\x62\x16\x36\xe4\x5a\xea\xa5\xba\x93\x2b\xa0\xde\xeb\x7b\x89\x69\x75\xa9\x8f\xa1\xa1\x3e\xd6\x46\x2b\xf2\xf0\x4f\xd4\x1e\xc8\x03\x46\x6f\x29\x00\x52\xa2\xd2\x8a\x42\xec\xc1\x53\xd8\x68\x54\xeb\x97\x94\x70\xad\x03\xe1\xda\xbb\x0d\xa1\xdf\x52\x7a\x34\x43\x70\x2d\xdd\x4b\x4f\xf7\x4e\x37\xb4\x59\x6b\x03\xb4\xd1\xb8\xa6\xad\x06\xd3\xcc\x9f\xe9\xe6\x47\x97\x64\xf2\x1a\x7d\x04\xb2\xd1\x18\x8a\xb6\x81\x56\x5b\x68\xe8\x5a\x5e\xef\xe3\xc6\x37\x3a\x60\x2e\xbc\x97\x5b\xfa\xc9\x39\x03\xd2\xd2\xdb\xf4\x47\x2f\x6d\xec\xc0\xcb\xd4\x03\x97\xde\x3b\x4f\x57\x8f\xee\xff\x2a\x71\xfd\x09\x9e\xeb\xa1\xe3\xe9\xa6\xfe\x1b\x14\xd2\xef\xb0\xba\x7c\xe8\xe9\x1d\x7a\x6d\x57\xf4\x6e\xdb\xd5\xce\x7c\x02\x28\xed\x96\xea\x9d\xbc\x85\x7b\xf0\x34\x3e\x1e\x0a\x23\x38\x1c\x81\xf7\x5d\x64\xc5\x62\x99\xff\xf0\xfd\x8f\x5f\xfd\xf7\x75\x55\x7e\x43\xe2\x19\x67\x96\xec\x36\x17\x33\x76\xbb\x14\x34\xe3\x9c\xf3\xe5\x7c\x9e\xb3\xdb\xb4\x13\x4b\xb6\xd2\x9d\xc8\x9f\xb5\x93\xf3\x61\xc4\x0c\xa1\x1a\x23\xa5\xec\x47\x03\x67\xc8\xb0\xba\xb5\x1e\x4f\xf8\x94\xf3\x6a\xa0\x7d\xe2\xeb\x86\x32\x87\x63\xfa\x05\x94\x7e\x28\x69\x39\xfd\x90\x03\xdb\x94\xd9\xf4\xcd\x53\x62\x1c\x87\x19\x13\x9f\x65\xe1\x3c\x3f\xe4\xe1\x3c\x5f\x1e\x52\x7d\x38\xee\xbc\x77\x8d\x2b\xb3\xe9\x1f\x37\x6f\x6f\xca\xe3\xc9\x35\xba\x7e\x2c\xc6\xa7\x47\x52\x7b\x99\x70\xa7\xfb\x9d\x6b\xa7\x9f\x91\x7f\x52\xea\x41\x69\x69\x7e\x5e\x4b\xff\x31\xf4\x15\xd5\x9c\x1c\x16\x73\xf2\x85\x6a\x99\xfc\x1f\x00\x00\xff\xff\x53\xad\xdd\x6c\xd3\x06\x00\x00"
-
-func runtimeSyntaxTypescriptYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxTypescriptYaml,
-               "runtime/syntax/typescript.yaml",
-       )
-}
-
-func runtimeSyntaxTypescriptYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxTypescriptYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/typescript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxVHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xe3\xe2\xe2\x02\x04\x00\x00\xff\xff\x1e\xa4\xbd\x78\x04\x00\x00\x00"
-
-func runtimeSyntaxVHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxVHdr,
-               "runtime/syntax/v.hdr",
-       )
-}
-
-func runtimeSyntaxVHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxVHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/v.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxVYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xdf\x93\xdb\x34\x10\x7e\xcf\x5f\x61\xc2\xf5\x12\xdf\x11\x5f\x69\x3b\xa5\x78\x28\x4c\x29\xdc\x0c\x0f\xd0\x97\x32\x73\x33\xd9\xb4\x95\xad\xd5\x45\xc4\x96\x3c\xfa\x71\xb9\x70\x1b\xfe\x76\x46\xb6\x13\xe4\x84\x69\x0a\xbc\x71\x2f\x8a\x76\xbf\xdd\x4f\xfb\x49\xbb\x67\x21\x2b\x74\x9b\x06\xf3\xe4\x6e\x34\xe2\xe8\xb0\x74\xf9\x68\x64\x7c\x85\x36\x1f\x25\x49\x92\x7c\x9e\xbc\xd6\x8a\x4b\x27\xb5\x62\x95\x4d\x98\xe2\x49\xa9\x95\x33\xba\x4a\x44\xa5\xd7\x2d\x66\x96\xac\x70\xb3\xd6\x86\xdb\x3c\x19\x03\x14\x53\x59\x37\xda\x38\xba\xd5\xc4\x51\xa0\x49\x01\x8a\x71\x8f\xb4\x0d\x96\x92\x55\x3d\x50\x1b\x2a\x0c\xb2\x15\x85\x9c\x52\x79\xa4\x9a\xb9\x72\x49\x25\xb3\x48\xb7\xda\x69\x32\xe8\xbc\x51\xa4\xb4\xc2\x38\x8d\xf0\xaa\x0c\x67\xea\xf3\x08\x15\x3b\x6b\x26\xd5\xfb\x23\x44\x6b\x06\x98\x02\xa4\xe9\x0e\xa9\x9b\xbe\xb0\x1e\x15\x68\x08\x8d\xd1\x06\x60\xba\x47\x59\xc7\x1c\xd6\xa8\xdc\xae\x3c\x41\x58\x59\x24\xa1\x4d\x77\xde\x98\x9c\x59\x8b\x66\x87\xec\x36\x83\xfa\x37\x75\xa1\xab\x4c\x37\x68\x98\xd3\xa6\xc7\xcd\x67\x97\x57\x17\x2f\xbf\xf9\xf6\xb3\x3f\x1e\x9d\xd3\xbb\xc5\xe9\x80\xfc\xe5\x69\x0c\x00\x01\x50\x7a\x1a\x76\x0e\x70\xde\xa5\xeb\x81\xa5\xae\x1b\x59\xe1\x7b\x29\xf6\x98\x33\x29\x08\xe0\x2c\xd4\x1d\x33\x6b\x8b\x3b\xed\x6a\x56\x52\xcd\x4a\x6d\xa9\x92\xca\xdf\xd3\x5a\x2a\xae\xd7\x96\x84\x41\x2c\x2c\x27\xdd\xa0\x0a\xab\x42\x17\x16\x6e\xd8\xad\x56\xa2\xda\xd0\x6f\x96\x98\xe2\x46\x4b\x4e\x56\x57\xcc\x48\x4b\x4b\x26\x57\x3e\x3a\x52\x78\x87\x6f\x37\x0d\xda\x41\x25\x79\x32\x9e\x7e\x41\x00\xd9\xfe\xa6\x8a\xee\x2d\xb7\xe7\x29\xb4\xae\xe2\xa3\xfe\x1e\xf9\xca\x25\x33\x54\x6c\xdc\xa0\x16\x19\x01\xa4\x72\x24\xa7\x2f\xe8\xcb\xe7\xf4\xfc\x59\x4a\xbe\xfb\xf9\xf4\x49\xd8\x0d\xde\x61\x14\x23\xa6\xc7\xfe\x26\xf2\x7b\xa9\x5c\xe3\x0c\x05\xf2\xb0\x06\xfe\xb0\xde\x69\xc9\x1b\x37\xe8\x12\x16\x85\x31\x63\xd8\x66\x70\xdb\x91\xd3\x3a\x23\xd5\x2d\xf9\x6e\x1d\x34\x41\x84\xaa\x59\x13\xbb\x82\x27\xeb\x5b\xb6\x47\x34\xbe\xa0\xda\x3b\xb2\xce\xf8\xd2\x11\x2a\x5f\x93\x54\x0e\x8d\x60\x25\x52\xad\xb9\xaf\x90\x42\x5c\xe8\x54\x3b\x78\xd1\xad\x81\x29\x97\x05\xc1\xfb\x74\xce\x78\x24\xc1\xf6\x8f\x65\x7f\x89\xdf\x1b\x56\xae\xd0\x0d\xef\x31\x2b\x7a\x6b\xb8\x50\x80\x07\x02\xd8\xa6\xe3\x8f\x41\xa6\x14\x77\xf1\xdf\x42\xe6\x04\xb0\x48\x23\xea\x5f\x7c\x5d\xa0\xe9\x46\x58\x27\x97\x3d\xac\x40\xb5\x90\x5d\x4f\x3e\x9e\x7d\xbd\xb8\xa4\xc7\xf7\xe1\x07\x9b\x89\x57\xb3\xeb\xc5\x45\x28\x87\x26\xd9\x24\x6a\x95\x3e\xb6\x4b\x99\xf7\x74\x49\x18\x1a\xdd\x18\x18\x8f\xf7\x36\x54\xfc\xc0\x62\x57\xb2\x69\xf9\x00\xb2\xbf\xac\xd1\xfc\xdd\xfd\xc5\x4c\xdd\x08\x7d\xbd\x64\xe1\xa8\x8f\xa2\xb8\x8f\x02\x03\xc7\x9c\x15\x42\x19\x77\x37\x01\x80\xd6\xb0\xf8\x07\xc1\x41\x91\xaf\x16\x0f\x4f\xb7\x74\x3f\x7f\x35\xbb\x66\x33\x11\x14\x7a\x78\xb2\x25\x1f\xef\x9f\x6d\xe9\xd7\x78\xff\x62\x9b\x7e\xba\x5a\x93\x43\xb1\x26\xff\x4a\xab\x76\x84\xe7\xc9\x38\xcb\x2e\x3f\xb1\xc0\xff\x97\x8c\x1f\x0e\x65\xfc\x70\x28\x58\x32\x5f\x44\xd3\xbe\xfd\xe7\x76\x94\xe5\xea\xea\x30\xcd\xd9\x09\xdd\x9d\xe6\x3a\xb4\xdf\xdb\x37\x3f\xbc\xa1\x9b\x9b\x1b\xba\xfe\xe9\xe6\xe7\x1f\xd3\xfc\xbb\xf1\x69\x32\x80\x8b\xa3\x4e\x81\x8b\xab\xff\xcc\xb8\xfb\x10\xc8\x98\x73\x46\x16\xde\xe1\x31\xf9\x3b\x80\xf9\x31\xf9\xe2\x54\xb9\x2b\xa5\xd7\xbb\x0f\x0c\x8e\x8d\xc1\x92\x39\xe4\x24\x55\x25\x55\x37\x2e\x39\x0a\x92\xa2\x1f\x82\x7f\x06\x00\x00\xff\xff\xf1\x4c\x25\x6d\x6d\x09\x00\x00"
-
-func runtimeSyntaxVYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxVYaml,
-               "runtime/syntax/v.yaml",
-       )
-}
-
-func runtimeSyntaxVYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxVYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/v.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxValaHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4b\xcc\x49\xe4\x8a\xd1\x03\x51\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x3d\x64\xff\x75\x0e\x00\x00\x00"
-
-func runtimeSyntaxValaHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxValaHdr,
-               "runtime/syntax/vala.hdr",
-       )
-}
-
-func runtimeSyntaxValaHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxValaHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/vala.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxValaYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\x5d\x4f\xdb\x30\x14\x7d\x26\xbf\xc2\x8b\xd8\x68\x13\x25\x65\x1f\x42\x23\xda\x88\x26\xed\x9d\x97\x3d\x2d\x0e\xc8\x71\x6e\x1a\x0b\xd7\xae\xec\xeb\x76\xa0\xab\xfd\xf6\xc9\x6d\x0a\x85\x21\xfc\x94\xd8\xe7\x1c\x9f\x7b\x7d\xee\xa0\x34\xe0\xfd\x1a\x2a\xb6\x11\x5a\x24\x49\x0f\x08\x12\x2b\x96\x30\xc6\x58\x3c\x34\x62\x05\x15\x4b\x39\x2f\x23\xe0\x34\x4d\x12\x17\x34\xf8\x6a\x07\x28\xd8\x9e\x9b\x72\xde\xcd\x06\x6d\x05\x52\x6f\x43\xa7\x81\x3a\x6b\x35\x85\x5a\x8e\xc2\x51\xa8\x95\xc1\xd9\x57\xfa\x78\x41\x9f\x3f\xd1\xc5\x97\x79\x4d\xa1\xf6\xa3\x75\x48\xa1\xd6\xd6\x2c\x69\x63\x55\x4f\xbe\xf6\xea\x01\x6e\x91\x82\x51\x91\x37\xe7\xbc\x4b\xa7\x6b\x54\x0f\x06\xd5\xa0\xc0\x95\x52\x0b\xef\x2b\x96\x36\x3f\x8a\xdf\xa2\x78\xb8\x6d\xa7\x8f\xf3\xe2\xf2\xb6\xcd\x9a\xa6\xf2\x6b\x21\xa1\x6a\xdb\xac\x99\xcd\xdb\x83\x80\x47\x81\xb0\x02\x83\x07\xb3\xd6\x91\x1a\x68\x3b\x2a\x0d\xd4\x5b\x02\xed\x81\xa4\xf0\x40\x3d\x0c\x22\x68\x24\xbf\x55\x28\x47\x42\x77\x4f\x38\x3a\xbb\x25\x29\x50\x8e\xc7\xa6\x5e\x6a\x2a\xa3\x95\x01\x8a\x2d\xe9\x61\x20\x8f\x2e\x48\x24\x30\x61\x15\x4b\xb2\x86\xe0\x0f\x82\x33\x14\x79\x4a\x92\xb4\xc6\xe3\x5b\x7a\x76\x0d\x4e\xa0\x75\x64\x60\x4b\x3d\x68\x40\x20\x07\x18\x9c\x21\x13\xb4\x7e\x8b\xba\x6b\x12\xd9\x0d\x38\xa7\x7a\xa0\xb5\x53\x1b\x81\x40\xeb\xd0\x69\x25\xc9\xab\xa5\x11\x9a\x70\x54\x9e\xb6\x20\xee\x9e\x29\xad\x41\x2a\xa1\x27\x9d\xa5\x45\x4b\x9d\x03\x71\x17\xed\xa2\x32\x01\x8e\xc1\xbb\x12\x84\xc1\x32\x3e\xf7\x44\x41\x17\x80\x06\xa1\xfd\xeb\x48\x13\x56\x1d\xb8\x09\xdb\x9c\x17\x97\x6d\xfe\xec\xfa\xfb\x55\x67\x75\x79\x28\x3d\xbe\x33\xe7\x45\xbe\xc8\xbe\x7f\xbb\xaa\xab\x77\x7f\xdf\x7f\xa0\x96\x8a\xab\xff\x64\x3d\x3a\x65\x96\x51\x36\x9d\x71\xce\x79\x49\xcd\x0d\x4f\xdb\x79\xc6\x53\x3a\x7b\xdc\x39\x6b\xe7\xd9\xd9\x13\x77\x35\x75\x6c\x76\x43\x47\xb9\x99\x2f\x16\x65\xf6\x12\xb4\xfb\x8d\xcb\xa3\x70\x91\xb3\xe0\x7c\x02\xc5\x05\xa6\xdf\x95\x94\x2d\x9e\xf6\xf6\x73\xc2\x9a\x36\x39\xcc\x8a\xed\x6d\xc5\xd2\x5f\xd7\x3f\xaf\xab\xfa\x31\xd9\x26\x46\xbb\x88\x81\x2f\xb7\xa3\x42\xd8\xdb\x60\xe9\x91\xa3\xfc\xf4\x15\x74\xc5\xd2\x93\x9c\xe5\xc4\xf2\x93\x3c\x4d\xfe\x05\x00\x00\xff\xff\xa8\xac\xa2\x52\xc8\x03\x00\x00"
-
-func runtimeSyntaxValaYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxValaYaml,
-               "runtime/syntax/vala.yaml",
-       )
-}
-
-func runtimeSyntaxValaYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxValaYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/vala.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxVerilogHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4b\x2d\xca\xcc\xc9\x4f\xe7\x8a\xd1\xd3\x28\xab\x29\xcb\xa8\x29\x2e\xab\x29\x2e\xcb\xd0\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\x87\x7c\x4d\x6e\x1a\x00\x00\x00"
-
-func runtimeSyntaxVerilogHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxVerilogHdr,
-               "runtime/syntax/verilog.hdr",
-       )
-}
-
-func runtimeSyntaxVerilogHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxVerilogHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/verilog.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxVerilogYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x6f\x1b\x39\x0f\xbe\xe7\x57\x0c\xd2\x00\x6f\x92\x22\xae\x7d\x6c\x2e\x45\xf1\xee\x16\xd8\xc3\xa2\x87\x5d\x2c\x82\xc6\x81\x21\x4b\x9c\x19\xae\x35\xd2\x94\xa2\xfc\x11\xf0\xc7\x2f\x28\x8d\x93\xf4\x63\xdd\x62\x0d\x98\xe4\x8c\x24\x3e\xd4\x23\x92\xa3\x16\x3d\xf0\x61\x84\xdb\x66\x0b\x84\x3e\x76\x67\x67\x0e\x18\x2c\xdf\x9e\x35\x4d\xd3\xe8\x70\x30\x03\xdc\x36\xe7\xcb\xe5\xec\x72\x2b\xdb\x5e\xd2\x56\xd2\xb6\xbf\xba\x38\x3f\x3b\xa3\xec\x21\xd5\x99\x37\xcd\x48\x30\x52\xb4\x65\xea\xfa\x72\x88\x2e\x7b\x90\xd1\xd8\x8d\xe9\x40\x46\x8a\x1d\x99\x41\x20\xb8\x69\x04\x82\x3b\x0e\xaa\x59\xc7\xaf\x96\xcb\xf5\xf9\xe4\x4f\xc3\x9a\x6d\xe0\xb0\x8b\xe4\x26\xa7\x6c\xd2\x46\x30\x30\x50\x6b\x2c\x88\xf5\x26\x25\x5d\x5d\xde\x43\x70\xcf\x43\x10\x5c\x19\x7d\x76\xf8\xaa\x59\x67\xf4\x8c\xa1\x69\x73\xb0\x8c\x31\xa4\xc6\xe3\x06\x9a\x0b\x87\x69\xf4\xe6\x30\xc1\xa6\x11\x2c\x1a\x5f\x10\x2f\xee\xe7\x37\x6f\xdf\xdf\x7c\x32\x37\x8f\xab\x87\xd7\xe7\x67\x93\xa3\xbf\x2a\x55\xcd\x14\x5c\x3a\xae\x64\xc3\x30\x40\xe0\x29\x5a\xe3\x77\xe6\x90\xc4\x04\x27\x26\x25\xec\x82\x98\xcc\x71\x30\x8c\x56\xd6\xd0\x61\x90\x75\x6e\xf5\x8f\xed\xbc\xaa\x85\x58\x93\xa0\x88\x7d\x91\x8f\x62\xc1\x7b\xb1\x43\x4c\x62\x63\x68\xb1\x7b\xc9\xd0\xd7\x80\x0e\x26\x1c\x07\xad\xc9\x9e\x55\x8f\x46\x69\x77\x50\xdf\x63\x32\x6b\xe5\xde\x29\xeb\x3e\x15\x9e\x0a\x57\xa6\xda\x15\x43\xad\x23\x49\x6a\x77\x10\x80\x0c\xc3\x29\xec\x72\x86\x38\x20\xe3\xb6\x78\x2a\x34\xb6\x87\x7a\x3a\x05\x73\x0b\x81\xa5\x8d\xa4\x7f\x0b\x2a\x61\x0b\xe5\x69\x23\x4f\x68\x3f\x03\xd5\x41\xd8\x1a\x92\x1e\xbb\xfe\x71\x5e\xd5\x42\xb0\x15\x6c\xf5\x1f\x62\x00\xc1\x60\x1d\x92\x2a\x9f\x9d\x3e\x22\xa3\xf1\x82\x61\xcc\x2c\x18\x12\x9b\x60\x41\xfe\x8e\x18\x4e\x01\x79\x43\x1d\x88\xc7\xb5\xc7\xc4\xaa\xc9\xd0\x41\x7c\xb4\xc6\x57\x5a\x07\x63\x29\x4e\xf9\x3c\x80\xc3\x3c\x48\xd0\xe3\x0e\xd0\x15\x8a\x83\x9e\x5b\x88\x24\x21\xa6\x3e\xee\xac\xa2\x7a\x0f\xee\x14\x68\x88\x2c\x21\xb2\xe6\x44\x51\x0b\x09\xd9\x7b\x89\x24\x31\xb3\x86\x5f\xa0\x81\x81\x64\x54\xf7\x63\x4c\x05\xeb\x99\xfd\x31\x7b\x3f\x2f\x72\x51\xa4\x8b\xbb\x50\x8c\x3c\x9e\x02\x1e\xb3\x4f\x90\xf8\xe0\x61\x15\x43\x3d\xad\x2f\x5e\xd5\xbe\x20\x54\x92\x91\xc0\x78\xc6\x01\x84\xa0\x13\x02\x0f\x9a\x40\x04\x23\x18\x16\x2a\xdb\xa6\x12\x1d\x31\x99\x93\x1c\x97\x09\xba\xd9\xc9\x58\x48\xb2\xc6\x1b\x02\x27\x5f\x50\x26\x69\x30\xde\xcb\x31\xad\x54\xd7\x33\x48\x4c\x31\x74\xf3\x49\x2f\x24\xe5\x71\xf4\x87\xf9\x29\xcc\x3a\x65\x21\x35\x31\xcb\x36\x14\x5c\x8e\xa1\x1c\x23\x61\x42\x7d\xc0\x62\xe9\xb9\x32\x61\x24\x95\xba\xeb\x9c\x40\xf2\x0e\xe9\x64\xae\x6e\xc1\x72\xd4\xcd\xec\x0c\xb2\xec\xd4\xc9\x0e\xcc\x66\x5e\xe4\x42\x76\x3d\x7a\x90\x5d\x24\xd9\x6b\x9a\xec\x23\x55\x67\x53\xa3\xf9\xe3\x90\x18\x86\x9f\x6e\x37\x68\x92\xd4\xa6\xb3\xb2\x71\x58\x1f\xed\xb6\x3d\x5a\xde\xb0\xed\xb5\x19\x01\xb1\xaa\x3c\x80\xac\x41\x2b\x51\xd6\x18\x9c\x8a\x54\x44\x6c\x65\x4d\x60\x36\xa7\xb6\x66\x7b\x13\x9c\xd7\x2e\x1c\xed\x06\x43\xa7\x0d\x2a\x71\x95\x64\x30\x14\x93\x61\x5f\x35\x86\x0c\x62\xa3\x56\x7c\x91\x1d\xc5\x3c\x56\x73\x8c\x65\x32\xc5\x94\xb4\x43\xb1\xb8\xf8\x83\x4e\xf3\x04\xa9\xcd\xa9\x38\xaa\x9f\x90\x11\x88\x4b\xcb\x49\xf0\x39\x43\x28\xdf\x81\x3c\x9c\x74\xb6\x1f\x35\xa9\x61\x3f\x46\x52\xc5\xba\xb8\x68\x0a\xd2\x62\x30\x5e\x5a\xa4\xc4\xab\xa1\x50\xa7\x54\x99\xaa\x37\xda\x3d\x04\xbb\x10\x09\x56\x85\x38\xf4\x1e\x3a\xe3\xa7\x87\x41\x3d\x9e\x82\xc6\x90\xb0\xf4\x26\x06\x4a\x1a\x84\x3a\x5c\x99\x70\xa8\x46\xe9\x63\xa5\xd7\x88\x8f\xa1\x53\x8a\x4a\x0c\x90\x64\x88\xae\x84\x1b\x60\x77\xb2\xa0\x8d\xdd\x80\xd3\xc6\x10\x09\xf9\x20\x4f\x04\x8d\x14\xb5\x94\x75\x2c\x13\x08\x69\x56\xaa\xb0\x55\x96\x52\x36\x2f\x48\x24\x68\x85\x80\x33\x9d\xac\xe4\xa7\xe9\x29\xfa\x2d\x88\x0e\xa3\xd5\xb2\xcc\x96\xb5\x2a\x81\x84\x4d\xd7\x81\x13\xee\x31\x09\xf7\x14\x73\xd7\xc7\xcc\xa5\x02\x47\x02\x8b\x09\xe3\x49\x08\x9d\x98\x03\xb2\xe8\xdd\xa0\x08\x07\xad\xe4\xa0\x5f\x8e\x1c\xf0\x73\x06\xd9\x22\x71\x36\xbe\xd4\xdb\x2a\x92\x03\x92\x1d\x7a\x67\x0d\x39\xd9\x21\xf7\x45\x1c\xdb\xfe\x54\x66\xea\x28\xfd\xfb\xad\x43\xa9\xd7\x53\xea\x80\xc4\xc7\x0e\xad\x68\xd5\x6b\x1b\x90\x1c\xf4\xbb\xaa\xdd\xa9\x2a\x0c\xba\x1f\xfd\x3a\xa5\x3e\x12\xeb\xca\x62\x68\xbb\x2c\x3d\x53\xb6\x11\x9d\x92\xa2\xd9\xbb\x46\x96\xf5\xe1\xf8\xb1\x9b\x82\x29\xf5\x63\x02\x1f\x03\x3a\x3e\xcf\x42\x1e\xd6\x40\x35\x26\xbd\x97\x3c\xbc\x7e\xc1\xd4\x77\x67\xfd\xef\x3e\xe5\x87\x77\xf7\x6e\x1d\xfb\x07\x5d\xb1\x7f\xbc\xfb\x64\x6e\xda\xf7\x37\x1f\x5e\xac\x7d\xd5\xcc\x4c\x72\xed\xe5\x6c\x36\xbb\x6a\x0c\x75\x59\xf9\x6e\xd2\x21\xb0\xd9\x7f\xe7\x4a\x34\xbb\xbc\x5c\x2e\xaf\xaf\xe4\xf2\xbe\xde\x8b\x1e\x26\x3d\xbf\x79\xbb\x7a\xb8\xbe\xba\x9a\xf6\xf1\x22\xa2\xba\xd9\x7a\x4b\xd4\x5f\x62\x43\xe5\x40\xcf\xcf\x9f\xde\x41\x70\x5f\xbd\x49\x1b\x1c\x0b\xe0\x72\x39\x7b\x7e\xfb\xe2\xc2\x79\xfc\xbd\x44\xaa\x71\xfe\xbf\x37\xf4\xbc\xf4\x29\x9c\xa1\x24\xd2\x37\x61\xbc\x79\xf3\x75\x18\x17\x3f\xc0\xe3\xe8\xe2\x6d\x73\x7e\xf9\xe7\xc7\x5f\x3e\xca\xdd\xdd\x9d\x7c\xf8\xed\xee\xf7\x5f\xaf\x6e\xdf\xfd\x04\xd8\x72\x79\xfd\xcd\xae\x97\xd7\x6f\xfe\x3b\xe2\x3f\x01\x00\x00\xff\xff\x7e\xc0\x6f\x53\xc1\x0b\x00\x00"
-
-func runtimeSyntaxVerilogYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxVerilogYaml,
-               "runtime/syntax/verilog.yaml",
-       )
-}
-
-func runtimeSyntaxVerilogYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxVerilogYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/verilog.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxVhdlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xcb\x48\xc9\xe1\x8a\xd1\x03\x51\xf6\x2a\x5c\x5c\x80\x00\x00\x00\xff\xff\x5e\x20\xa0\x34\x0f\x00\x00\x00"
-
-func runtimeSyntaxVhdlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxVhdlHdr,
-               "runtime/syntax/vhdl.hdr",
-       )
-}
-
-func runtimeSyntaxVhdlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxVhdlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/vhdl.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxVhdlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\xdd\x8e\xdb\x46\x0f\xbd\xf7\x53\x18\xc6\x87\x2f\x52\x16\x72\x93\xcb\x1a\x6d\x85\xdc\xf4\x21\x6a\xb9\x06\x25\x51\x12\x9b\x11\x47\xe0\x70\xfc\x13\xf0\xe1\x8b\x91\xd7\x86\x1d\x64\xd7\x6d\x6f\x76\x2d\x0c\x79\xf8\x77\xe6\x70\x3a\x72\xa8\xe7\x09\x37\xcb\xc3\xd0\xba\xc5\xa2\x45\xc5\x46\x37\xcb\xc5\x72\xb9\x5c\xa6\x43\x86\x11\x37\xcb\x55\x55\xad\x93\x41\xf9\xbf\xd5\x62\x21\xd1\x61\xd8\xcc\x16\xc5\xf2\xe2\xbc\xca\x28\xaf\xaa\x3a\x0b\x2a\xc4\xbd\x11\x2b\xf6\x28\xc6\xa0\x51\xc0\xd9\xe4\x03\x29\x1d\xd0\xb2\xc8\x79\x19\xa8\x67\x6c\x2d\x68\xbb\x8f\xa5\xf3\x3d\x35\xd9\xfe\x80\x8d\x7a\xc9\x4b\xab\x49\xef\xbf\xbc\x77\x08\x6c\xb1\x3c\x7d\xfa\xfc\xad\x34\x10\x81\xb3\x09\x70\x8f\x29\xde\xea\x35\x09\x6a\x91\x95\x3a\x42\x49\xa9\x94\x94\x3b\xaa\x05\xe4\xbc\xdd\x6e\xc2\x04\x0d\x6e\x76\xbb\x97\x2d\x14\xdf\xbe\x14\x7f\xec\x3f\x15\x3f\xef\x5e\xde\x74\x8c\x01\xdf\x70\xaa\xaa\xf5\x3b\x7e\x8d\x1f\x27\xcf\xc8\xfa\xef\x43\x66\x20\xcd\x40\xa9\xed\x51\xd0\x1a\xcf\x1d\xf5\x51\x40\xc9\x73\xfe\x26\xda\xfd\x81\xef\xfe\x43\xd0\xf4\xad\x67\x9b\xa0\xf9\x0a\x3d\xfe\xb3\x40\x14\xde\xc4\x43\x6e\xef\x2d\xb3\xc7\xa2\x5e\x83\xdd\x9a\x64\x93\xf8\x06\x43\xb8\x86\xb7\x1e\x19\x05\xf4\x31\x8f\xbc\xfc\x61\x2d\x41\x41\x71\x44\xd6\xd7\xd0\x89\x77\x50\x07\x83\x66\x86\x84\x4e\x51\x0c\x1c\x41\x30\x70\xce\x80\x5b\x7b\x48\x06\x42\x40\x51\x03\x55\xa1\x3a\xea\x03\x91\x7e\x84\x5d\x63\x4f\x6c\xb5\xf3\xcd\x57\xab\x7d\x7b\xb6\x3a\x76\x1d\x8a\xd5\x31\x58\x03\x01\xef\xca\x7a\x18\x5e\xfa\x0a\x0a\xac\xcf\x02\xb4\x14\x1a\xcf\x8c\x8d\x5a\xeb\x8f\xac\xde\xd0\x05\x4c\x7f\xa8\x33\xe4\xf6\xda\x3e\x3c\xd1\x53\xac\x74\x65\xad\xf3\x62\x5d\xe4\x66\xce\xe2\xda\xda\xcb\x0f\x6a\xac\x8f\x20\x2d\xb6\xcf\x90\xa8\x33\x1a\xa7\xd4\x30\x62\x23\x46\x51\x02\x67\xc4\x3e\xaa\x51\x78\xe6\xed\xa0\x46\x67\xaf\xd7\xd0\x1c\xf1\x3c\x66\x47\x8a\x49\x0f\x9c\xf7\x93\x8d\x30\xd9\xe8\x9f\xe6\xc1\x69\x80\x8c\x47\x63\x3c\xa9\xb1\x17\x63\xaf\xc6\xd1\x39\xf3\x9d\x79\x36\x3f\x21\x9b\x17\xf3\x3a\xa0\x04\xf3\xf1\x69\x93\xae\xac\x9b\xbc\x68\xd2\x26\x4d\xe3\x6b\x2f\xa4\x6c\x53\xc5\x37\x7a\x46\x79\x4a\x8f\x59\x8c\x4c\xb0\xf1\xd2\x9a\x60\x4f\x21\xf1\x4f\xf0\xaf\x34\x4f\xc1\xd1\x04\xe7\x38\x82\x1a\x85\x4d\xbc\x33\xf1\xf2\x0c\x35\xa0\x4b\xfe\x01\x0f\x28\x69\xf6\x61\x00\x49\x9a\x49\x3d\x83\xb3\xe0\xc0\x82\x73\x16\x04\x2c\x88\xb3\x10\xeb\xa4\xc3\xcf\x40\x75\x40\x36\xf5\xa6\x02\x1c\xe6\xa4\x92\x97\x45\x86\xae\xc3\x46\xb1\xb5\xc8\xa4\xc1\x22\x2b\x39\x8b\xe1\x29\xe0\x01\x84\xa0\x76\x68\x47\x20\xb5\x63\x82\x3f\x0e\x89\x81\x47\xd2\xc1\x4e\x69\x58\xa7\xf7\x6b\xfd\x90\xd5\xe9\x0a\x39\xec\xd4\x84\xfa\x41\x6d\xa0\x7e\x30\xe7\x8f\x69\x30\x76\x48\xc5\xc6\xa6\xb1\x29\x55\x9f\xac\x7c\x77\xb1\xf3\x89\x9e\x69\x88\x99\x83\xa0\xfb\xbc\x3c\x80\x8b\x98\xbf\x1d\x27\x93\xd4\xcb\x80\xfb\xbc\xbc\x8c\xcc\x21\xf7\x3a\x18\x84\x06\xb9\x4d\x5b\x0b\x0f\xe9\x0e\x07\x4d\x15\xbd\x03\x14\x68\x9c\x1c\xda\x04\x3a\x18\xcd\x37\xbc\xc1\x7c\x9f\xf6\xe4\xbb\x03\xd5\x76\x3f\x82\x36\x83\x65\x42\x21\x85\xeb\xc0\x39\xe2\x3e\xdf\x63\xdb\xa3\x51\xd8\x9f\x9e\xb4\x5b\xfd\x3e\x8b\x7c\xdd\x9e\x97\x7f\xd7\x4d\x7b\x5d\x90\x41\xdb\xeb\x4e\xbd\x2e\xd1\x07\xd4\xf3\x58\x7b\xb7\xf6\x53\x92\x04\x3f\x8b\x77\x55\xbd\x58\x61\x55\xf5\xd1\x7e\xb2\xff\xdb\x2f\xf6\x9b\xfd\x6a\x55\xb5\xb6\xcd\xad\x05\x57\x1d\x5b\x73\x1c\xeb\x9b\xe2\x7f\xc8\xb6\x9f\x8a\xcf\x3b\x8b\x76\xb2\x6f\x76\x34\x67\x83\x15\xf9\x07\xdb\xd6\xfe\xb4\x2b\xab\xd5\x7c\x0c\x45\xf7\xa5\xf8\xfd\x7b\xa3\x97\x6a\xf5\x3e\x76\x55\xd5\xdb\xcb\xca\xdd\xef\x5e\x32\xdc\x56\x55\xb1\x2b\xb7\xf3\x16\xc8\xcb\x6c\x59\x6e\xbb\x89\xe3\xb8\x2b\x43\x5e\xde\x15\x77\xc3\x4a\xaf\x86\x7b\xda\x4b\xc4\xd4\xed\x47\x3e\x5f\xad\xef\xa5\xc6\x6b\xa2\xb2\xf0\xcc\x06\x91\x24\xa3\x40\xee\x3b\x11\xb8\x85\xb9\x3c\x76\xd2\xe3\x68\xb5\xfd\xb3\x5a\xed\x3e\xde\x97\x35\xbe\xce\xae\x28\xd6\x1f\x57\x8b\xbf\x03\x00\x00\xff\xff\x82\x03\x0d\x07\x67\x09\x00\x00"
-
-func runtimeSyntaxVhdlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxVhdlYaml,
-               "runtime/syntax/vhdl.yaml",
-       )
-}
-
-func runtimeSyntaxVhdlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxVhdlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/vhdl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxViHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xcb\xe4\xd2\x88\xab\xd1\xaf\x89\xd1\xd3\xd4\x48\xad\xa8\x29\xcb\xcc\xd5\x2c\x4a\x56\xa9\x89\xd1\x2b\xcb\xcc\xe5\xe2\x02\x04\x00\x00\xff\xff\x51\x57\x94\xb1\x1e\x00\x00\x00"
-
-func runtimeSyntaxViHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxViHdr,
-               "runtime/syntax/vi.hdr",
-       )
-}
-
-func runtimeSyntaxViHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxViHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/vi.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxViYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x90\xc1\x6a\xe3\x30\x10\x86\xef\x7e\x0a\xad\x09\x1b\x3b\x8b\xb3\xb9\xc6\xb0\x98\xa5\x6f\x51\x49\x0d\xb2\x3c\x6e\x45\xa5\xb1\x91\x64\xe3\x96\x79\xf8\x12\x27\x4d\x82\x21\x90\x4b\xe7\x24\xfd\xd2\x3f\xf3\xcd\xdf\x1a\x0b\xf1\xa3\x87\x92\x8d\x26\x49\x1a\x88\xa0\x63\x99\x30\xc6\xd8\xf1\x05\x95\x83\x92\xa5\xd9\x0b\xfd\x25\x21\xb6\x79\x06\x13\x8d\xc6\xe5\x5e\xaf\x8e\xf7\xd1\xb8\x34\x49\xfc\x60\x21\x9c\x3c\x05\x33\x0d\x60\x34\xad\x01\x5f\xb2\x94\xff\x2f\x9e\x55\xf1\x79\x90\xe7\xc3\xae\xd8\x1f\xe4\x86\xf3\x32\xf4\x4a\x43\x29\xe5\x86\x67\xb9\x4c\xcf\xd6\x10\x55\x04\x07\x18\x4b\x96\x0a\x51\x67\x1c\xc7\x29\x74\xc6\x6a\x59\x65\xd8\x79\xa0\x01\xf3\xca\xa9\x9e\x38\x8e\x76\x92\x48\xdc\xe8\x4e\x56\xd8\x11\xd7\xc6\x76\xe3\x24\xf9\xe0\x24\x85\x6a\x40\x97\x0b\x51\xdf\xeb\x1b\xb0\xf3\x84\x03\x12\x3a\x0a\x10\xc9\xb4\x04\xd8\x98\x96\x2c\x44\x1a\xd0\x42\xbc\xe7\xe6\xbf\x7e\xff\xbb\xe0\xea\x0e\x43\x54\x18\xb7\x38\xb8\x7a\x5e\x57\x88\x9a\xef\x8a\xbd\xfc\x33\xdb\x97\xdf\x42\xf4\x06\x5f\x4f\x39\x1d\x2b\x44\xe5\x67\xa4\x34\xbd\x68\x80\xcd\x42\x09\xef\xa6\x9f\x5b\x0b\xb1\xbd\xaa\x37\x91\x7f\xd7\xed\xa4\x1e\xb4\x51\xf6\xe9\x4d\xf9\xab\xf5\x51\x9c\xf5\x92\x66\xfd\x93\x30\x6e\x4e\xf6\x81\x4c\x56\xcb\x79\x8c\xcb\x8b\x92\x24\x5f\x01\x00\x00\xff\xff\xe2\x27\x2e\x17\xc7\x02\x00\x00"
-
-func runtimeSyntaxViYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxViYaml,
-               "runtime/syntax/vi.yaml",
-       )
-}
-
-func runtimeSyntaxViYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxViYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/vi.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxVueHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x2b\x4d\xe5\x8a\xd1\x2b\x2b\x4d\x55\xe1\xe2\x02\x04\x00\x00\xff\xff\xd2\x94\xf3\xc5\x0c\x00\x00\x00"
-
-func runtimeSyntaxVueHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxVueHdr,
-               "runtime/syntax/vue.hdr",
-       )
-}
-
-func runtimeSyntaxVueHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxVueHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/vue.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxVueYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\xcd\x6a\xc4\x20\x10\x80\xef\x3e\xc5\x30\x14\xd2\x1f\x9a\x9e\x7a\x91\xfe\x3c\x48\xed\x41\x74\xd2\xa6\x4c\x24\xc4\x31\x10\xe8\xc3\x17\x31\x0d\xed\xc6\x65\xf7\xb0\xb9\x85\x4f\xfd\x3e\x9d\xae\x67\x92\x65\x24\x0d\x73\x22\xa5\x3c\x09\x39\xd1\x0a\x00\x20\xa3\x60\x07\xd2\x80\xc6\xb4\x73\xa2\x2b\x54\x6a\x4a\x4c\xb1\xf0\x7b\xf0\xd4\xd9\xc4\xeb\xf2\xfc\x45\xb1\x93\x68\xc0\x27\xa1\x61\x64\x2b\xd4\xde\xbe\xbe\xe0\x86\x29\xf8\x0c\x1f\xea\xb4\x1c\x0d\xdb\x7f\x71\xf4\xc1\x71\xf2\x39\xe2\x53\x06\x7e\xc4\x7f\xf8\xa0\x03\xf6\x21\xd1\x4d\xfd\x28\x95\x86\x1d\xf8\x73\xb3\x9a\xfd\xcb\xce\xb6\xec\x41\x75\xae\xf6\x0d\xde\xef\xd8\x86\x8f\xe7\x6b\x83\x12\x0d\x7e\x37\x12\x9b\x9b\x0b\xc4\xe4\x89\xfd\xc6\x54\xde\xa1\xd2\x23\x0b\x1f\x19\x46\x05\x9d\xb0\xbb\x18\x57\xed\x4f\x00\x00\x00\xff\xff\xdc\xab\x0b\xb3\x3e\x02\x00\x00"
-
-func runtimeSyntaxVueYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxVueYaml,
-               "runtime/syntax/vue.yaml",
-       )
-}
-
-func runtimeSyntaxVueYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxVueYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/vue.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxXmlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xc8\xcd\xe1\x8a\xd1\xd3\xa8\xc8\xcd\xa9\x29\x4e\xcf\xcd\xb1\xaf\x29\xca\x4b\xaf\x29\x2e\x4b\xaf\x29\xc8\xc9\x2c\x2e\xd1\x54\xe1\xb2\x89\xb1\xaf\xc8\xcd\xd1\xd3\x8a\xb1\xb7\xe3\x02\x04\x00\x00\xff\xff\xbb\x06\x6b\x95\x2d\x00\x00\x00"
-
-func runtimeSyntaxXmlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxXmlHdr,
-               "runtime/syntax/xml.hdr",
-       )
-}
-
-func runtimeSyntaxXmlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxXmlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/xml.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxXmlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x8f\x3d\x4f\xc3\x30\x10\x86\x77\xff\x8a\xc3\x42\xe2\x43\x4a\xd8\x23\x20\x43\x61\x86\x81\x05\xf5\x3a\x98\xe4\x9a\x5a\xd8\x8e\x65\x1f\xa8\x95\xf2\xe3\x51\x1a\x28\x34\x71\x90\x18\xf0\x76\xf7\xd8\xcf\xfb\x7a\xad\x0d\xf1\xce\x53\x01\x5b\x6b\x84\xa8\x89\xa9\xe2\x42\x00\x00\xf4\xc8\x29\x4b\x05\x48\xc4\xfc\x7c\x6b\x4d\x17\x1b\x6b\xca\x2e\xb8\xa6\x8b\xef\x4d\xe7\x8d\x8e\x7c\x71\x2a\xf7\xb7\x37\xa4\x6a\x0a\x05\xc8\x6b\xc4\x72\x6b\x4d\x7e\x89\x58\xde\x4a\x21\xc2\x9b\xa1\x38\x18\x33\xf0\x81\x7c\x68\xab\x61\xec\x4f\x64\x15\xb8\x7f\x75\x72\xf7\xb0\x78\x7a\x7e\xbc\x97\x07\x44\xae\x2e\x40\x2e\xaf\x56\xbd\xe6\x6b\x39\xd8\x60\xb9\x12\x9f\xc6\xaa\xb5\x96\x1c\xa7\x8c\x59\x36\x96\x65\xd9\x6f\xaa\xb8\xb3\x2f\xad\xc9\x59\x35\x09\x1b\x62\x59\x8e\x75\xfd\x6e\x22\x3c\x8c\x83\x54\xd7\xe4\x58\xaf\x35\x85\x63\xf2\x53\x0e\x72\x82\x86\x80\x9b\x29\xf8\x6e\x7d\x9c\x53\xb5\x2e\xb2\x72\x9c\x47\x0e\xda\x35\xf3\x61\x28\xe7\xd2\x52\x24\xbe\x6a\xbf\xff\x29\x62\x3e\x57\x66\xb2\x1e\x37\xf2\x54\x69\x65\x16\x1b\x15\xd2\xaa\x3f\xb4\x3f\x9b\x2b\x9f\x00\xff\xd6\xfd\x23\x00\x00\xff\xff\x74\xfd\x70\x36\x35\x03\x00\x00"
-
-func runtimeSyntaxXmlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxXmlYaml,
-               "runtime/syntax/xml.yaml",
-       )
-}
-
-func runtimeSyntaxXmlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxXmlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/xml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxXresourcesHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\x28\x4a\x2d\xce\x2f\x2d\x4a\x4e\x2d\xe6\x8a\xd0\x48\x49\x4d\x4b\x2c\xcd\x29\x29\xae\x81\x0b\x6a\xaa\x70\x71\x01\x02\x00\x00\xff\xff\x1b\x8e\xfc\x39\x23\x00\x00\x00"
-
-func runtimeSyntaxXresourcesHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxXresourcesHdr,
-               "runtime/syntax/xresources.hdr",
-       )
-}
-
-func runtimeSyntaxXresourcesHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxXresourcesHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/xresources.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxXresourcesYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\xdd\x4a\xc3\x30\x18\xc6\xf1\xe3\xe5\x2a\x5e\xc3\x0e\xda\x86\x15\x4f\x7d\x41\xbc\x0d\x21\xcd\x20\xcd\xde\xb2\x40\x3e\x4a\x3e\xd4\x61\x2f\x5e\x6a\xdd\x98\xe8\xf9\xef\xf9\xc3\x33\x59\x47\xe5\x32\x13\xc2\x47\xa2\x1c\x6b\x32\x94\x19\x3b\x51\x21\x53\x10\x18\x00\xc0\x4a\x82\xf6\x84\xc0\x5f\x9b\x13\x4d\xba\xba\x92\x97\x9b\x6e\xf7\x9c\xb1\x54\x1d\x65\xfc\xe6\x07\xc8\x33\x19\xab\x1d\x02\x3f\x4a\x89\xda\x85\xea\x51\x29\x31\x0c\x1d\xff\x11\xf6\x44\xa1\xd8\xc9\x52\xea\xdf\x74\x42\xe0\xc3\xd0\xfd\xa6\x78\xa5\x26\x86\x5c\x74\x28\x7d\xa8\x7e\xa4\xcd\x8e\xf2\xf1\xf0\xb4\xaa\xf1\xaa\xf2\xc5\x8f\xd1\xf5\x71\xa6\xa4\x4b\x5c\x95\xec\xf0\x59\xfd\x89\x8c\x31\xba\x2d\xd1\x94\x54\x69\x99\xb4\xcb\xd4\xde\x85\x4c\xf4\x9e\x42\x41\xe0\xcd\x71\x91\x12\xf3\xac\x0d\xa1\x52\xed\x43\x23\x8f\x9f\xaa\xef\xda\x97\xfd\xed\x45\x58\x6f\x1c\xcc\x59\xa7\xfe\xfd\x6c\x0b\x6d\x18\xf8\xdd\x4e\xfc\xa7\x11\xf8\x4e\x80\x58\x40\xec\x04\x67\x5f\x01\x00\x00\xff\xff\x03\xc7\xb0\x2d\x83\x01\x00\x00"
-
-func runtimeSyntaxXresourcesYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxXresourcesYaml,
-               "runtime/syntax/xresources.yaml",
-       )
-}
-
-func runtimeSyntaxXresourcesYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxXresourcesYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/xresources.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxYamlHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\x4c\xcc\xcd\xe1\x8a\xd1\xab\x4c\xb4\xcf\xcd\x51\xe1\x52\x8d\x74\xf4\xf5\xe1\x02\x04\x00\x00\xff\xff\xc3\x03\xef\xb8\x14\x00\x00\x00"
-
-func runtimeSyntaxYamlHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxYamlHdr,
-               "runtime/syntax/yaml.hdr",
-       )
-}
-
-func runtimeSyntaxYamlHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxYamlHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/yaml.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxYamlYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\x41\x8f\xd3\x30\x10\x85\xef\xfe\x15\x5e\xb3\x4b\x93\xad\x1c\x71\xc5\x07\x50\x85\x5a\x2e\x4b\x2b\xb1\xe5\x50\x32\x89\xe4\xb6\x13\xd6\xc2\x71\x42\xec\x0a\x05\xcd\x8f\x47\x4e\x28\x0d\x5d\x2e\x48\x58\x95\x55\xbd\x89\xdf\x7c\x7a\xaf\x32\x16\x43\xdf\xa2\xe2\xbd\xae\x2d\x63\x47\x0c\x78\x08\x8a\x71\xce\x79\x9c\x39\x5d\xa3\xe2\x02\x20\xeb\xf5\xdb\xda\xde\x8a\x61\xf2\x84\xfa\x88\x9d\xe2\xe2\x6e\xb7\xf8\xf0\x20\x18\xeb\x4e\x16\xfd\xf8\x4a\xf2\xd1\x4f\x24\x25\xf1\xf4\xe6\x26\xd9\x1b\xa7\xbb\x9e\xf6\x4d\x63\xa9\xb2\x8d\x0e\x64\x5c\xa0\x5a\xb7\xe4\x4e\xd6\x52\x13\xff\x79\xfc\x46\x1e\x03\xf9\xd0\xa5\x5c\xfc\xf2\x39\x34\xce\x07\xed\x82\xe2\x11\x60\x9f\xec\x96\x8f\xd4\xa3\xa7\x1d\xf5\xb4\x59\x53\xe3\x68\xfb\xf1\xd3\x92\xb6\xdd\x09\x29\xc4\x6b\xbd\x21\xd7\xd0\x9a\x1c\x6d\x56\x2b\x6a\xaa\x8a\x56\x8b\x87\xc7\x25\xad\xb4\xf5\x48\x55\xbc\x53\x80\xfd\xd9\xdf\x07\x1d\xb0\xc6\xb8\x40\x24\x2a\xcf\x95\x6f\xf5\x01\x55\x51\x10\x40\x4e\x00\x05\x4d\xc5\x79\x4e\x6f\x0a\x2a\x27\xca\xbd\xe4\xe9\xd9\xcb\x1c\xd1\x05\x53\x99\x21\x95\xc9\x37\x39\xc0\xfd\xcb\x22\x5f\xc8\xcf\x5a\xfe\x78\x25\x5f\x17\x73\xf1\x67\x4a\xb9\xcc\x00\xbe\x17\x73\xf5\x37\xaa\x8b\xd8\xe2\xc1\x68\x1b\x93\x48\x4a\x29\x25\x95\x00\xd9\xf8\xa3\x72\x28\x81\xca\xbb\xed\xe2\x7d\x2a\xd8\x55\x78\x99\x0f\x9d\x71\x5f\xc6\x6e\xe2\xf1\x41\x77\xe1\x5c\x0f\x08\xf1\x7b\x80\xee\x18\x9b\x9e\x28\xfe\xab\x69\x87\xf2\x01\xb2\x8b\x3a\xe9\xfa\x7c\xa6\xeb\x46\xd2\x77\x4f\xba\xbb\x3c\xfd\x27\xa6\xd9\x35\xd2\xec\x19\x51\x32\xf8\xa6\x94\xcc\x66\xe9\xff\x01\xab\x87\xc4\x9f\x01\xbd\xb8\x66\xb9\xbd\x5e\xc7\xf3\x82\x31\xf6\x33\x00\x00\xff\xff\xd6\xcd\xd8\x11\x47\x03\x00\x00"
-
-func runtimeSyntaxYamlYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxYamlYaml,
-               "runtime/syntax/yaml.yaml",
-       )
-}
-
-func runtimeSyntaxYamlYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxYamlYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/yaml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxYumHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\x2c\xcd\xe5\x8a\xd1\x2b\x4a\x2d\xc8\x57\xa9\xa9\x2c\xcd\xd5\xd3\x8a\xd1\x4b\xce\xcf\x4b\x53\xe1\xe2\x02\x04\x00\x00\xff\xff\x60\xc7\x8f\x6f\x1a\x00\x00\x00"
-
-func runtimeSyntaxYumHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxYumHdr,
-               "runtime/syntax/yum.hdr",
-       )
-}
-
-func runtimeSyntaxYumHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxYumHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/yum.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxYumYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4d\x4b\xc4\x30\x10\x40\xcf\x9b\x5f\x31\xc4\x1e\xfa\x41\x83\x57\x03\x8b\x07\xcf\x1e\x3d\x48\x92\x42\x4c\xa7\x34\xd0\xa6\x25\x1f\x4a\x31\x3f\x5e\x5a\x57\x5d\x70\x6f\x03\xf3\x1e\x6f\x66\xb0\x13\xc6\x6d\x45\x0e\x5b\x9a\x09\xe9\x31\xa2\x89\x1c\x08\x00\xc0\xbe\x73\x7a\x46\x0e\x54\x4a\xe6\x71\x5d\x8a\xbc\xa5\x99\xd5\x52\x32\xb3\xb8\xa1\xa0\x84\xf8\x34\x61\xe0\x07\xde\x82\xed\xd1\x45\x3b\x58\xf4\x1c\x68\x27\x04\x0f\xab\x36\xc8\x95\xaa\x45\x77\x56\xf5\x99\x5e\x38\xb3\xb8\x10\xb5\x8b\x2c\xac\x68\xac\x9e\x9e\x46\xfd\xcf\x90\x52\xec\x21\x55\xfc\x48\x21\xea\x88\x33\xba\x78\x9c\x53\x94\x1e\x27\xd4\x01\xdf\xd1\x67\xed\xcd\x98\xdf\x74\xc0\x63\x48\xc9\xf6\xf9\xf5\xe5\x59\xdc\xb7\x0f\xaa\xfa\x6b\xce\x17\xb9\xec\xf2\x55\xa8\xba\x2b\x45\xf7\xa9\x58\x5d\x3d\xfe\xa6\xac\xdb\x1f\x69\xcd\xa8\x3d\xfb\x18\x6d\xc4\x6f\x18\xe8\x95\xd7\xdc\xa2\x39\xd0\x53\x03\x4d\x86\xe6\xd4\x50\xf2\x15\x00\x00\xff\xff\x86\x2c\x1d\xe7\x5c\x01\x00\x00"
-
-func runtimeSyntaxYumYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxYumYaml,
-               "runtime/syntax/yum.yaml",
-       )
-}
-
-func runtimeSyntaxYumYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxYumYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/yum.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxZigHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xca\x4c\xe7\x8a\xd1\xab\xca\x4c\x57\xe1\xe2\x02\x04\x00\x00\xff\xff\x11\x2d\x3b\x18\x0c\x00\x00\x00"
-
-func runtimeSyntaxZigHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxZigHdr,
-               "runtime/syntax/zig.hdr",
-       )
-}
-
-func runtimeSyntaxZigHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxZigHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/zig.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxZigYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x55\xdd\x6e\xe3\x36\x13\xbd\xf7\x53\xf0\xd3\xb7\x6d\xec\x1a\xf6\x3a\x69\xb1\x6d\xdd\x9f\x74\xb1\xed\x02\xbd\x28\xb2\x28\xf6\x22\xa8\xe5\x1a\x14\x35\xb2\x89\x50\x43\x61\x38\xb4\x63\x67\xd2\x67\x2f\x28\xcb\x3f\x49\x17\x8b\xa2\x37\xab\x0b\x99\x3c\x9c\x33\x3c\x73\x86\xb4\x2a\xeb\x80\xb7\x0d\x4c\xd5\xce\x2e\x7b\xbd\x12\x18\x0c\x4f\x7b\x4a\x29\x95\x96\x50\xd7\x30\x55\x59\x9e\x8f\x77\x76\xf9\x22\xeb\xf5\x28\x3a\x08\xfb\x75\xa5\xfe\xaf\x7e\x87\x00\xb4\x86\x52\x6d\x3c\x95\xa1\x85\x47\x2a\xb0\x66\xa8\x01\xb9\x65\x16\x7d\xed\xec\x12\x45\x3b\xe7\x37\x3b\x20\x2f\x1a\x4b\xd1\xa1\x16\x1d\xb6\x68\x44\x6f\xb4\x65\x29\x08\xf4\x9d\x18\xed\x9c\xf1\xb8\x16\xa3\xd9\xac\xc4\xf8\xba\x61\x5b\x83\x18\x8f\x81\xd3\x9b\x2d\x46\x90\x12\x2a\x20\x01\x17\x40\x80\xa8\x9b\x11\x79\x12\xb8\x6f\x3c\xb1\xc0\x3d\x03\xa1\x54\x28\x95\x27\xb1\x95\x58\x74\x16\x41\xd0\x6b\x67\x75\x10\xf4\x47\x20\xc4\xd0\x00\x96\xe2\x49\x3c\xb5\x29\x1b\x6d\xee\xa0\x94\x26\x16\x42\x10\x62\x0d\x42\xc0\x91\x50\x9c\xc5\xbb\x00\x86\xad\x47\x39\xd0\xc2\xc6\x26\xa5\x0c\x81\x85\x57\x04\xba\x74\xde\x68\x27\x4c\x5b\x89\x48\xa0\xcd\x4a\x17\x0e\x24\x06\x8b\xcb\xe4\x66\x68\xb4\x01\x59\x6b\x92\xb5\x77\x9a\xad\x03\xd9\xac\xac\x83\x41\x9e\x17\xd9\xd1\xd7\x22\x5a\xc7\x16\x55\x15\xb1\xdd\xef\x68\x6d\x03\xc6\x6a\x37\x55\xd9\x4f\x33\x3d\xda\xbd\x1e\xfd\xb1\x98\x0f\x4f\xb4\x77\x64\x6b\xcb\x76\x0d\xea\xfd\xb6\x81\x03\x69\xdf\xdf\x7d\x2b\x70\x5b\x91\xae\x41\x34\x6e\x13\x9c\x7e\xf7\xce\x15\xde\xbb\xa3\xe1\x0b\x8b\x7c\x9a\x54\xce\x6b\x16\xc0\x58\x4b\xd5\xbf\x7c\x25\x5f\x5e\xc9\xab\xaf\xe4\xf2\xea\x9b\x81\xd8\x60\x77\xc9\xc5\xce\xa1\xc0\x14\x0d\x4b\x9b\x39\x62\xf2\x29\xb6\x01\x6b\x6f\xcb\x53\x81\x4f\x14\x99\x45\xbc\xee\x87\x55\xea\x5a\xda\xd4\x79\x5c\xf6\xd3\x6b\x70\x3d\x10\xb3\x48\xa3\xd2\xc7\xe4\xa0\x59\x7c\x24\x4b\xdf\x4a\x1c\xcc\x26\xa3\x6f\xe7\xc3\x7d\x44\xaf\x73\xe4\xa6\x01\xd2\xec\xe9\x68\xe0\xb6\x2e\xbc\x1b\xfb\x0e\x9e\xaa\x6c\x36\xfa\x9f\xfc\xf0\xdd\x67\xe3\xe1\x9f\x5f\x4c\x3f\xbf\xfe\xfe\xc7\xbf\xe6\x27\xf6\x3b\x4d\x80\xbc\x82\x60\x9f\xf1\x0b\x4a\x87\x84\x43\xe2\xf7\x07\x0f\x8f\x73\xc9\xf3\x99\xe4\xf9\x19\xf7\x4d\x3a\xb3\x1a\xf9\xc0\x34\xdd\xbc\x53\x8c\xd1\x39\x89\x58\x42\x65\x11\x9e\x94\x75\x08\x1c\x63\xac\x0b\xa0\x2e\x7e\x52\xcc\x26\x97\x8b\xf9\x50\x26\x7e\x36\x19\x7d\x9d\x46\xa9\xde\x16\xb9\x9f\xe9\x51\xf5\x7a\xf4\x76\x3f\xff\x60\xae\xd4\xde\x2e\x13\x53\x04\xa9\xb4\x0b\x70\x66\xd5\x59\x68\x60\xb2\xb8\x3c\xdc\x71\x95\xae\x33\xb5\xaa\xb3\xec\x88\x01\x96\xcf\x90\x70\x67\x9b\x76\x83\x3c\x1f\x9f\xd0\x27\x7f\x17\xfb\xe7\x7c\xa7\xfd\x69\x7e\xb3\xd2\xd4\x51\xfb\x33\x24\x4e\x83\x8b\x3c\x9b\xcb\x59\x5d\xf3\x87\xab\x47\x89\x0f\x67\xc0\xf0\x71\xf0\xef\xb5\x5f\x3c\x97\x7e\xf1\x9f\x94\xb7\x57\x65\xaa\xb2\xf1\x78\x98\x7d\xfa\xa2\xf2\xee\x79\x5e\xdb\x8b\x4f\xdd\x95\x94\xf0\x58\x44\xdd\x7e\x09\xfe\x21\xfe\xe5\xcb\x8f\xc8\xfe\xa0\x40\xf6\xa5\x9f\xaa\xac\xff\xfe\xe6\xe7\x1b\xb9\xbd\xbd\x95\xb7\xbf\xde\xfe\xf6\xcb\x60\x7a\x9d\xf5\xfe\x0e\x00\x00\xff\xff\x60\x17\xdb\xef\xc6\x06\x00\x00"
-
-func runtimeSyntaxZigYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxZigYaml,
-               "runtime/syntax/zig.yaml",
-       )
-}
-
-func runtimeSyntaxZigYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxZigYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/zig.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxZscriptHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\x2a\x4e\x2e\xca\x2c\x28\xe1\xd2\xb0\xcf\xd4\x8c\xd1\xab\xd2\x48\xae\x29\x4e\xd6\x54\xe1\xe2\x02\x04\x00\x00\xff\xff\xdb\xfd\x62\x96\x18\x00\x00\x00"
-
-func runtimeSyntaxZscriptHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxZscriptHdr,
-               "runtime/syntax/zscript.hdr",
-       )
-}
-
-func runtimeSyntaxZscriptHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxZscriptHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/zscript.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxZscriptYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x55\x6d\x8f\x1b\x35\x10\xfe\x9e\x5f\x31\xe4\x0a\x97\x17\x25\xd7\x42\x55\x41\x04\x9c\xaa\x96\x93\x2a\x0e\x8a\x74\x05\x9d\xc8\xae\x90\xd7\x9e\x24\xe6\x1c\xdb\x8c\x67\x73\x97\x76\xca\x6f\x47\xde\x6c\x5e\x9a\x6b\x69\xc5\x37\xf6\x83\xd7\xf6\xce\xdb\x33\x7e\x1e\xef\xcc\x3a\xe4\x75\xc4\x09\xbc\x4e\x9a\x6c\xe4\xce\x09\x5c\x86\x90\xd0\xad\xa1\x52\x09\x0d\x04\x0f\xbc\x40\xd0\x69\xa1\x28\x8e\xd7\x6a\xe9\xc0\xe0\xcc\x7a\xcb\x36\xf8\xce\x09\xf4\xce\x6d\x3f\x1b\xe1\x0a\x69\xcd\x0b\xeb\xe7\x50\xa1\x56\x75\x42\xf8\xfd\xaa\x09\x09\x36\xf9\x53\x06\xad\x12\x42\x42\x9f\x2c\xdb\x15\x76\x3a\x06\x19\x35\x4f\x3a\x00\x00\xb9\x0c\xaf\x96\x38\x81\x6e\x8e\x57\x14\xe3\xd7\x3d\x2d\x49\xf7\x1f\x74\x3b\x1d\xaa\x1d\xa6\x49\xa7\x31\x3c\xd9\x05\x0d\xde\xad\x61\xa1\x12\x04\x8f\x10\x09\x23\x05\x8d\x29\x05\x02\x63\x09\x75\xce\x01\xca\x1b\x50\x40\xf8\x57\x6d\x09\x0d\xa0\x9f\x5b\x8f\xb0\x42\x4a\x36\x78\x30\xa8\x9d\x22\xd5\xe0\xc8\xb1\x47\xdb\x30\x6d\x15\x27\xd6\x6b\x57\x1b\xec\xbe\xf7\x6b\x1b\xa5\xbb\xad\xeb\x8a\x15\x23\x38\x55\xa1\x4b\xd0\xeb\xce\x03\x87\x2e\xdc\x06\x32\x10\x56\x48\x64\x8d\x41\x0f\xd5\x1a\xd2\xc6\x2e\xcc\xad\x86\x8c\x0c\x2a\x74\xe1\xb6\xdf\xe6\x48\xeb\x65\x15\xdc\x98\xd5\xbc\x4d\x33\x55\xa3\xd7\x0f\x47\xdf\x8c\xcb\xe1\xa4\xfb\x21\x9b\x9c\x0b\x5a\xc3\x72\x38\x2d\x8a\x61\x9e\x0c\x76\xa5\x3d\x73\x2a\x25\x4c\xad\xbb\x35\xe8\xd9\xce\x2c\xd2\x58\xe7\x0f\x6d\x90\x66\x0e\xc3\x36\xcc\x1f\xe5\x10\x06\xbd\xde\xa4\xbf\xdb\x19\x97\xc3\xfe\xf9\x2e\xe4\x45\xed\x75\x6e\x5c\x82\x5e\x88\xe8\x21\x2a\x42\x7f\x8c\x74\x53\x67\x45\x4a\xdf\x20\xa7\x2d\xda\x0d\x37\x22\x92\x03\xc2\x39\xde\x81\x8a\x8d\x37\xbb\x35\x98\x80\x0d\x57\x52\x1d\x63\x20\x86\x18\x52\x73\x90\x2e\x84\x1b\xb5\x40\x65\xfa\xf7\x40\x6c\xfb\x54\x14\xe3\x72\xb0\xaf\x7e\x0a\xe5\x60\xda\x2b\x87\xbb\x8a\x7f\x53\x64\x55\xe5\x10\x32\xdd\xb7\xbd\xd8\x50\xbf\xe5\x5c\xd5\x53\x9a\x03\x49\xa8\xfe\x44\xcd\xb2\xc2\xbc\xfa\xb2\x7d\x7f\x25\x99\x9f\x92\x98\xac\x9f\x8b\x0e\x2e\x90\xa4\x50\x7b\x23\xab\x60\x8d\x98\x50\x57\x0e\xa5\x0a\xc1\x89\xf5\x2c\x33\x17\x54\x3b\x3e\x79\x2c\xb5\xf5\xfc\x75\x33\x3e\x7a\xd2\xbc\xa4\xd9\xd8\xac\x5f\xe1\x1d\xd7\x84\x2f\x9e\xcb\x55\x24\xcb\x79\xf2\x94\x48\xad\x9b\xc0\x91\x49\xd2\x22\x10\x8b\x6a\xfa\x2d\x0d\x7d\x36\x63\xc3\xb5\x5c\xf7\x0e\xe3\x8f\xb8\xce\x8c\xdb\xa2\x6b\xac\x96\xe8\xf9\x00\x62\x73\xcc\x62\x70\xa6\x6a\xc7\x12\xc9\xae\xb6\xf1\xac\x16\xaf\x72\xb7\x85\x90\x6b\xf2\x62\x67\x82\x2e\xa1\xcc\x02\xc9\xed\xc2\x3a\x14\x13\xc4\x60\x24\xd4\x8a\xd1\x88\xaf\x9d\x13\x42\x65\xb2\x14\x85\xa9\x46\x99\xa9\xec\x90\x98\x6a\xcd\x82\x77\x8c\xde\x88\x76\xa8\x28\xe9\x10\x51\x56\x8a\x14\xcd\xa5\xb6\x12\x5d\x06\x68\x89\x6b\xe5\xb6\xef\x8d\xcd\x12\x59\xc9\x2f\x14\x22\x12\xaf\xc5\x7a\x09\x35\x6f\xf0\x26\x69\xf9\x85\x92\xea\x88\x24\x36\x89\x43\x16\x1d\x7c\x62\x21\x8c\x4e\x69\x4c\x12\x29\xe4\x8b\x05\x8d\x24\x74\x33\x51\x55\x62\x52\xb9\x1c\x5f\x2f\x25\xdd\x5a\xd6\x0b\xc9\x77\xd1\x3b\x9d\xbb\x3a\x50\xe5\xcd\x51\x17\x23\x6a\xab\xdc\x41\x0f\xb3\xde\xc4\x85\x10\x25\x71\x88\x52\x11\xaa\x9b\x5c\x05\x5b\xdf\xf4\xc0\xbe\x7b\x2a\x57\x8d\x0e\xd2\xbb\xea\xcd\xf8\x14\x87\x4c\xdf\x69\x51\x8c\x86\x67\x83\xef\xbe\xfd\xfe\x7c\xf2\xd9\xdf\x9f\x7f\x21\xe5\x91\xd2\xb7\x0a\xca\xb6\xbd\xfe\x9b\xb7\xa5\x14\xc5\x54\x8a\xa2\xdc\x2b\x3c\xb7\x40\x79\xde\x26\xd1\xed\x7a\x9c\x09\xd9\x56\xde\xcb\xa5\xef\x4f\x29\x97\x28\x3f\xff\x7a\x79\xd9\xef\x1e\x3b\xf9\x7a\x59\xed\x84\x95\xbd\xa6\xf9\x3e\x99\x66\x7d\x35\x17\x4b\x7f\x78\xde\xe0\xfb\x98\xdb\xc3\xbb\xe9\xd3\xd1\x85\x1a\xcd\x36\x92\xec\x7f\xa2\x57\x35\x7d\x38\x7a\x94\xed\xa7\x17\x97\xe5\xde\xe7\xe4\xdf\x9c\xee\x97\x28\x47\xd9\xe5\x7d\x71\x77\xa7\x9f\x55\x7d\xaf\x79\x1b\xb1\x6f\xfe\x50\xf9\x49\xac\x28\x6b\xa9\xe8\x76\x77\x7b\xe8\xcd\xd1\x4e\xba\xb1\x31\x6f\x15\x45\x31\xde\xef\xb6\x3f\x31\x38\x78\x0e\x33\x6d\x38\xf6\x6c\xa1\xa8\x75\xed\x4d\x2b\xf6\x33\x2a\xe5\x54\x8a\xa2\xe8\xe6\xa1\xe8\x77\x3f\xdd\xbf\xde\x83\x2f\xdf\x3c\x7e\xdb\x42\xfd\x04\x70\xa7\xc7\xd8\x4e\xff\x1f\xd0\xb2\x08\x96\xf9\xb2\xdb\x1f\x63\xb3\xbc\x8f\xf0\xec\xec\x18\xe2\x83\x8f\x80\xe1\x60\x42\x26\xdb\xab\x97\xcf\x5f\xca\xf5\xf5\xb5\x5c\xbc\xb8\xfe\xe9\x87\xfe\xe4\xfc\xa0\xad\x1f\x4a\x56\x14\x83\x7b\x6c\x29\x06\x67\xff\x3d\xe3\x3f\x01\x00\x00\xff\xff\xe6\xa0\xde\xdb\xb3\x09\x00\x00"
-
-func runtimeSyntaxZscriptYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxZscriptYaml,
-               "runtime/syntax/zscript.yaml",
-       )
-}
-
-func runtimeSyntaxZscriptYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxZscriptYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/zscript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxZshHdr = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\x2a\xce\xe0\xd2\x88\xd1\xab\x2a\xce\x50\xa9\x89\xd1\xb3\xd7\xa8\x2a\xce\x48\xcd\x2b\xab\xa9\x2a\x28\xca\x4f\xcb\xcc\x49\xad\xa9\x2a\xce\x28\x4a\xae\xa9\xca\xc9\x4f\xcf\xcc\x03\x53\xf9\xa5\x25\x9a\x2a\x9a\x5c\x71\xca\x8a\x7a\x5a\xfa\x1a\xa9\x79\x65\x0a\xda\x9a\xf6\x55\xc5\x19\x1a\x0a\x35\x2a\x9a\x5c\x80\x00\x00\x00\xff\xff\xe7\xaa\xc8\xe4\x4f\x00\x00\x00"
-
-func runtimeSyntaxZshHdrBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxZshHdr,
-               "runtime/syntax/zsh.hdr",
-       )
-}
-
-func runtimeSyntaxZshHdr() (*asset, error) {
-       bytes, err := runtimeSyntaxZshHdrBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/zsh.hdr", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-var _runtimeSyntaxZshYaml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5b\x73\xdb\xbc\x11\x7d\xf7\xaf\x60\x64\x4f\x43\xc6\x95\x9b\xa4\x49\xa6\x75\x2f\x6a\x9b\x99\x4e\x1f\x3a\x7d\xe9\x4c\x1f\x62\x38\x2d\x04\x2c\x05\x84\x20\xc0\x60\x17\x96\xa5\x9c\xfc\xf7\x0e\x28\xdf\x3e\x25\x99\xef\xd3\x88\x04\x71\xd9\xb3\x8b\x83\x3d\x8b\xde\x07\x92\xdd\x44\x97\xcd\x9e\xdd\xc9\x89\x25\x21\x23\x97\x27\x4d\xd3\x34\x75\x2a\xea\x91\x2e\x9b\x45\xab\xd4\xc5\x9e\xdd\x19\x94\xba\x58\xb5\x7b\x76\x14\x6f\xb0\x9f\x72\xaa\x6b\xb0\x67\x97\x0d\xf6\x21\x6d\x7c\x9c\x9b\x54\xa4\x3b\xeb\x16\x33\x8a\x23\x6d\x29\x5f\x36\x8b\x8f\xa7\xcf\x2e\x5e\xfc\xa6\xa5\x78\xd3\x9c\x77\xab\x3d\xbb\xb6\x41\x5d\x74\x92\x4b\x20\x3e\xb8\x3c\x3d\x6d\xfe\x55\xc6\x35\x65\x9e\xbb\xcb\xc6\xa4\xc8\xa2\xa3\x5c\xc4\x79\xf8\xb2\x59\x28\xb5\xbe\x7a\xb9\xfc\xfd\xf5\xb9\x52\xeb\xc5\xc9\xbc\x6c\xb6\x7b\x9f\xa2\xf5\xe2\x53\xd4\x81\x1b\x1d\x6d\x35\x95\x9c\x42\xd3\x87\xb4\xbd\x43\x63\xd1\x42\x23\x45\x39\xe0\xb4\x3a\x6c\xf5\x8e\xb1\xce\xa4\x07\xac\x77\x04\xa3\x99\x50\x0d\x7d\x2c\x04\xeb\x39\x6d\x23\x6c\x82\x4d\x91\x40\xc1\xf7\xa0\xc0\x04\x62\x6d\x40\xb7\x5e\xd0\x7b\xf4\x29\xa3\x2f\xd1\x54\xdf\xf0\x3d\x7c\x44\x48\x46\x07\x64\xd2\x16\x99\xa4\xe4\x08\xa6\x40\x46\xc0\xce\xf7\x02\x71\x14\x21\x7e\x24\x94\x28\x3e\x60\xeb\x7c\xa0\xee\x71\x3f\x3f\x0d\xb4\x55\xea\x0b\x94\xfa\x0a\xa5\x5a\x28\xd5\x41\xa9\x3f\x40\xa9\x6b\x28\x75\x85\xff\x41\x29\xa5\xa0\xd4\x19\xfe\x88\x3f\xe3\x19\xfe\x84\x5f\x41\x29\xdc\x91\x7f\xcc\x4c\xd3\x07\xbd\xb9\xe7\x96\x27\x32\x5e\x87\xcb\x66\xb1\xbc\xfa\xa7\xa5\x7e\x93\xcb\xf6\xf6\x7a\x0e\xe3\x9b\x05\x2d\x7d\x46\x24\x6c\x04\x41\xb0\x21\x04\x02\x23\x62\xdf\x1d\x9d\xc2\xdf\x34\xbb\xa5\x8f\x8e\xb2\x17\xb2\x3f\xa0\xbd\x2d\xb1\x5b\xe9\xe0\x35\x63\xed\xa3\x1d\x68\x87\x75\xf1\x41\x7c\x84\xb1\xb0\x64\x82\xce\x04\xba\xd1\x01\x74\x4b\x95\xe9\x29\x65\xc1\xa7\xb4\x66\x04\x12\x4c\x69\xb2\x98\x0a\x3b\x0b\x26\x01\xa7\x92\x0d\xa1\x66\x71\xed\x96\x51\xf3\x80\x12\x99\xa4\x7b\xd8\xcc\x1c\xdc\x87\x7f\xff\x63\x39\xef\xa9\xf7\xe6\x2e\xb4\x43\xea\x1f\x92\xc1\xda\xe5\x9e\xdd\xd2\xa5\x34\x40\x17\x49\x21\x69\x0b\xe3\xac\xcf\x30\x69\x9c\x7c\xf4\x02\xeb\x33\xa3\xb5\x9e\x41\xb1\xd3\xeb\x40\x20\xe3\x92\x18\xd0\x58\x82\x16\xc2\x94\x7d\x14\x4c\x39\x8d\x93\xb4\xd5\xa4\x5b\x61\xde\x2f\x93\xa4\x49\xb0\xaf\x7a\x19\x93\x9d\xc1\xf7\x2c\xbb\x40\xd8\x3a\x8a\x86\x8e\xa9\x7c\x9f\xc6\x31\xc5\x26\xf8\x58\x6e\x1b\x93\xc6\x51\x47\xcb\x3f\x62\x74\x03\xbf\xe9\x56\x7a\x3b\xa0\xf7\xd1\x42\xa9\xed\x97\x97\xbf\x7e\xf3\x75\x93\x69\xc2\xe0\x43\x98\x5f\x3a\x84\x87\x99\x40\xcc\x18\xf5\x40\x98\xe6\x79\x26\x0b\xd1\xf9\xdb\x20\x32\x15\xf1\x81\x7f\x2e\x82\xb5\x66\x7a\xf7\x06\xb5\xa9\x35\x03\x46\x0b\x8c\x33\x29\xc2\xb8\x4d\x9e\x60\xdc\x98\x2a\x9b\x55\x50\xc6\xe5\x94\x04\x66\xe0\x32\x56\x6a\x47\x98\x09\x86\xa7\xe0\x05\xa6\x08\x6c\x25\xd2\x5a\xd8\xbe\xf2\x5d\x1f\x93\x42\xca\x5c\xbf\x66\x70\x5b\x66\xda\x51\xab\x10\xdd\x4e\x3a\xda\xda\x64\xf4\xda\x48\x55\xa3\xae\x22\xed\x47\x41\x9f\x82\x45\xad\x40\x70\x89\xc5\x5b\xd4\x7f\xad\x28\x21\xe0\x53\xaa\x4a\xf5\x71\x40\xa8\x8a\xdd\xcc\xc8\x81\x31\xda\xb7\x35\xae\x71\xa8\xbe\xc7\xa1\xf7\x7d\xc2\x38\xc4\x64\x31\x0e\x42\xe3\x84\xf1\x06\xd1\x1b\x42\x0c\x88\xc9\x95\x09\x71\xca\xc9\x20\x96\xb1\xba\x4c\x16\x93\xe6\x9a\x09\x5a\x9c\x71\x03\x26\x1f\x87\x1d\xa6\x7c\x48\x8d\x1a\xf2\xfc\xd1\x63\x92\x5b\x4c\x5b\x3b\xd7\x89\x39\x8e\x4c\x3a\x54\x2b\xe4\x11\x79\xac\xee\x73\x89\x95\x42\xa6\xcf\x68\xd9\xe9\x57\x60\xa7\x5f\xbf\x7e\x33\x37\x6f\xdf\xd5\xe6\xb7\xbf\x9b\x7b\x6f\x5f\xbd\xee\x6a\xd4\xec\x32\x59\xb0\x2b\x3d\x38\x10\x4d\xe0\xaa\x9c\x03\xb5\xf5\xc8\xc0\x62\xd7\x75\x52\x64\x87\xd9\x60\x17\x0d\x44\xd7\xc7\x07\x08\x11\x84\x58\xe6\xea\x94\x8a\x40\x52\x31\x0e\x92\x21\xb9\x50\x7d\x45\x53\x0f\x47\x66\xd8\x8a\x51\x66\xda\x4a\xbc\x3b\x86\x12\xfd\x67\x94\x38\x6f\xa7\x30\x65\xc6\x4d\xdd\xc7\xd6\x60\xeb\x52\x7d\xf4\xe8\xb1\x23\x3e\xce\xb3\xbf\xdf\x15\xd0\xc6\x52\x5f\x55\xe3\x53\xbc\x4b\x34\x6f\x29\x8a\xef\xfd\xe1\x0e\x51\x8a\xcf\xdb\xfb\x6a\x5b\x3b\x5d\xbd\x0c\xfe\xba\xfc\xf0\xdf\x7a\x21\xf0\xb9\x52\xad\x52\xdd\xa2\x39\x6d\x5a\xdf\x3d\xc1\xff\x8f\xce\xbe\xca\x95\xbf\x87\xaa\xd4\x99\x52\x5f\x56\xf7\x48\xcf\xfe\x72\x7a\xf6\x62\xb5\xac\x80\x5f\x57\x8b\xe6\xf4\x01\xe9\xc9\x75\xc4\x92\x7d\xdc\x5c\xde\x39\x68\xaa\x1c\xf2\x2c\x85\xc5\xe2\x61\x8c\xa2\x3d\x1a\xe1\xc1\x4f\xb3\x3f\xa5\x2e\x1e\x47\x9f\xdc\x7f\xf7\xbf\xa7\x9e\x0e\x45\xf8\xbd\xd3\xf9\xd1\xf4\x97\x86\xf3\xfc\x38\x9a\xe7\xc7\x6e\x9b\xab\xeb\x47\xb4\x71\x16\xf4\x37\x28\xed\x47\x28\xc5\xdd\xe9\x31\xd8\xd9\x77\xc1\xfe\x1f\x00\x00\xff\xff\xa3\x62\x0b\x0e\x52\x08\x00\x00"
-
-func runtimeSyntaxZshYamlBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeSyntaxZshYaml,
-               "runtime/syntax/zsh.yaml",
-       )
-}
-
-func runtimeSyntaxZshYaml() (*asset, error) {
-       bytes, err := runtimeSyntaxZshYamlBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/syntax/zsh.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
-// Asset loads and returns the asset for the given name.
-// It returns an error if the asset could not be found or
-// could not be loaded.
-func Asset(name string) ([]byte, error) {
-       cannonicalName := strings.Replace(name, "\\", "/", -1)
-       if f, ok := _bindata[cannonicalName]; ok {
-               a, err := f()
-               if err != nil {
-                       return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
-               }
-               return a.bytes, nil
-       }
-       return nil, fmt.Errorf("Asset %s not found", name)
-}
-
-// MustAsset is like Asset but panics when Asset would return an error.
-// It simplifies safe initialization of global variables.
-func MustAsset(name string) []byte {
-       a, err := Asset(name)
-       if err != nil {
-               panic("asset: Asset(" + name + "): " + err.Error())
-       }
-
-       return a
-}
-
-// AssetInfo loads and returns the asset info for the given name.
-// It returns an error if the asset could not be found or
-// could not be loaded.
-func AssetInfo(name string) (os.FileInfo, error) {
-       cannonicalName := strings.Replace(name, "\\", "/", -1)
-       if f, ok := _bindata[cannonicalName]; ok {
-               a, err := f()
-               if err != nil {
-                       return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
-               }
-               return a.info, nil
-       }
-       return nil, fmt.Errorf("AssetInfo %s not found", name)
-}
-
-// AssetNames returns the names of the assets.
-func AssetNames() []string {
-       names := make([]string, 0, len(_bindata))
-       for name := range _bindata {
-               names = append(names, name)
-       }
-       return names
-}
-
-// _bindata is a table, holding each asset generator, mapped to its name.
-var _bindata = map[string]func() (*asset, error){
-       "runtime/README.md":                        runtimeReadmeMd,
-       "runtime/colorschemes/atom-dark.micro":     runtimeColorschemesAtomDarkMicro,
-       "runtime/colorschemes/bubblegum.micro":     runtimeColorschemesBubblegumMicro,
-       "runtime/colorschemes/cmc-16.micro":        runtimeColorschemesCmc16Micro,
-       "runtime/colorschemes/cmc-tc.micro":        runtimeColorschemesCmcTcMicro,
-       "runtime/colorschemes/darcula.micro":       runtimeColorschemesDarculaMicro,
-       "runtime/colorschemes/default.micro":       runtimeColorschemesDefaultMicro,
-       "runtime/colorschemes/dukedark-tc.micro":   runtimeColorschemesDukedarkTcMicro,
-       "runtime/colorschemes/dukelight-tc.micro":  runtimeColorschemesDukelightTcMicro,
-       "runtime/colorschemes/dukeubuntu-tc.micro": runtimeColorschemesDukeubuntuTcMicro,
-       "runtime/colorschemes/geany.micro":         runtimeColorschemesGeanyMicro,
-       "runtime/colorschemes/gotham.micro":        runtimeColorschemesGothamMicro,
-       "runtime/colorschemes/gruvbox-tc.micro":    runtimeColorschemesGruvboxTcMicro,
-       "runtime/colorschemes/gruvbox.micro":       runtimeColorschemesGruvboxMicro,
-       "runtime/colorschemes/material-tc.micro":   runtimeColorschemesMaterialTcMicro,
-       "runtime/colorschemes/monokai-dark.micro":  runtimeColorschemesMonokaiDarkMicro,
-       "runtime/colorschemes/monokai.micro":       runtimeColorschemesMonokaiMicro,
-       "runtime/colorschemes/one-dark.micro":      runtimeColorschemesOneDarkMicro,
-       "runtime/colorschemes/railscast.micro":     runtimeColorschemesRailscastMicro,
-       "runtime/colorschemes/simple.micro":        runtimeColorschemesSimpleMicro,
-       "runtime/colorschemes/solarized-tc.micro":  runtimeColorschemesSolarizedTcMicro,
-       "runtime/colorschemes/solarized.micro":     runtimeColorschemesSolarizedMicro,
-       "runtime/colorschemes/sunny-day.micro":     runtimeColorschemesSunnyDayMicro,
-       "runtime/colorschemes/twilight.micro":      runtimeColorschemesTwilightMicro,
-       "runtime/colorschemes/zenburn.micro":       runtimeColorschemesZenburnMicro,
-       "runtime/help/colors.md":                   runtimeHelpColorsMd,
-       "runtime/help/commands.md":                 runtimeHelpCommandsMd,
-       "runtime/help/copypaste.md":                runtimeHelpCopypasteMd,
-       "runtime/help/defaultkeys.md":              runtimeHelpDefaultkeysMd,
-       "runtime/help/help.md":                     runtimeHelpHelpMd,
-       "runtime/help/keybindings.md":              runtimeHelpKeybindingsMd,
-       "runtime/help/options.md":                  runtimeHelpOptionsMd,
-       "runtime/help/plugins.md":                  runtimeHelpPluginsMd,
-       "runtime/help/tutorial.md":                 runtimeHelpTutorialMd,
-       "runtime/plugins/autoclose/autoclose.lua":  runtimePluginsAutocloseAutocloseLua,
-       "runtime/plugins/comment/comment.lua":      runtimePluginsCommentCommentLua,
-       "runtime/plugins/comment/help/comment.md":  runtimePluginsCommentHelpCommentMd,
-       "runtime/plugins/diff/diff.lua":            runtimePluginsDiffDiffLua,
-       "runtime/plugins/ftoptions/ftoptions.lua":  runtimePluginsFtoptionsFtoptionsLua,
-       "runtime/plugins/linter/help/linter.md":    runtimePluginsLinterHelpLinterMd,
-       "runtime/plugins/linter/linter.lua":        runtimePluginsLinterLinterLua,
-       "runtime/plugins/literate/README.md":       runtimePluginsLiterateReadmeMd,
-       "runtime/plugins/literate/literate.lua":    runtimePluginsLiterateLiterateLua,
-       "runtime/plugins/status/help/status.md":    runtimePluginsStatusHelpStatusMd,
-       "runtime/plugins/status/status.lua":        runtimePluginsStatusStatusLua,
-       "runtime/syntax/LICENSE":                   runtimeSyntaxLicense,
-       "runtime/syntax/PowerShell.hdr":            runtimeSyntaxPowershellHdr,
-       "runtime/syntax/PowerShell.yaml":           runtimeSyntaxPowershellYaml,
-       "runtime/syntax/README.md":                 runtimeSyntaxReadmeMd,
-       "runtime/syntax/ada.hdr":                   runtimeSyntaxAdaHdr,
-       "runtime/syntax/ada.yaml":                  runtimeSyntaxAdaYaml,
-       "runtime/syntax/apacheconf.hdr":            runtimeSyntaxApacheconfHdr,
-       "runtime/syntax/apacheconf.yaml":           runtimeSyntaxApacheconfYaml,
-       "runtime/syntax/arduino.hdr":               runtimeSyntaxArduinoHdr,
-       "runtime/syntax/arduino.yaml":              runtimeSyntaxArduinoYaml,
-       "runtime/syntax/asciidoc.hdr":              runtimeSyntaxAsciidocHdr,
-       "runtime/syntax/asciidoc.yaml":             runtimeSyntaxAsciidocYaml,
-       "runtime/syntax/asm.hdr":                   runtimeSyntaxAsmHdr,
-       "runtime/syntax/asm.yaml":                  runtimeSyntaxAsmYaml,
-       "runtime/syntax/ats.hdr":                   runtimeSyntaxAtsHdr,
-       "runtime/syntax/ats.yaml":                  runtimeSyntaxAtsYaml,
-       "runtime/syntax/awk.hdr":                   runtimeSyntaxAwkHdr,
-       "runtime/syntax/awk.yaml":                  runtimeSyntaxAwkYaml,
-       "runtime/syntax/bat.hdr":                   runtimeSyntaxBatHdr,
-       "runtime/syntax/bat.yaml":                  runtimeSyntaxBatYaml,
-       "runtime/syntax/c.hdr":                     runtimeSyntaxCHdr,
-       "runtime/syntax/c.yaml":                    runtimeSyntaxCYaml,
-       "runtime/syntax/caddyfile.hdr":             runtimeSyntaxCaddyfileHdr,
-       "runtime/syntax/caddyfile.yaml":            runtimeSyntaxCaddyfileYaml,
-       "runtime/syntax/clojure.hdr":               runtimeSyntaxClojureHdr,
-       "runtime/syntax/clojure.yaml":              runtimeSyntaxClojureYaml,
-       "runtime/syntax/cmake.hdr":                 runtimeSyntaxCmakeHdr,
-       "runtime/syntax/cmake.yaml":                runtimeSyntaxCmakeYaml,
-       "runtime/syntax/coffeescript.hdr":          runtimeSyntaxCoffeescriptHdr,
-       "runtime/syntax/coffeescript.yaml":         runtimeSyntaxCoffeescriptYaml,
-       "runtime/syntax/colortest.hdr":             runtimeSyntaxColortestHdr,
-       "runtime/syntax/colortest.yaml":            runtimeSyntaxColortestYaml,
-       "runtime/syntax/conf.hdr":                  runtimeSyntaxConfHdr,
-       "runtime/syntax/conf.yaml":                 runtimeSyntaxConfYaml,
-       "runtime/syntax/conky.hdr":                 runtimeSyntaxConkyHdr,
-       "runtime/syntax/conky.yaml":                runtimeSyntaxConkyYaml,
-       "runtime/syntax/cpp.hdr":                   runtimeSyntaxCppHdr,
-       "runtime/syntax/cpp.yaml":                  runtimeSyntaxCppYaml,
-       "runtime/syntax/crontab.hdr":               runtimeSyntaxCrontabHdr,
-       "runtime/syntax/crontab.yaml":              runtimeSyntaxCrontabYaml,
-       "runtime/syntax/crystal.hdr":               runtimeSyntaxCrystalHdr,
-       "runtime/syntax/crystal.yaml":              runtimeSyntaxCrystalYaml,
-       "runtime/syntax/csharp.hdr":                runtimeSyntaxCsharpHdr,
-       "runtime/syntax/csharp.yaml":               runtimeSyntaxCsharpYaml,
-       "runtime/syntax/css.hdr":                   runtimeSyntaxCssHdr,
-       "runtime/syntax/css.yaml":                  runtimeSyntaxCssYaml,
-       "runtime/syntax/csx.hdr":                   runtimeSyntaxCsxHdr,
-       "runtime/syntax/csx.yaml":                  runtimeSyntaxCsxYaml,
-       "runtime/syntax/cython.hdr":                runtimeSyntaxCythonHdr,
-       "runtime/syntax/cython.yaml":               runtimeSyntaxCythonYaml,
-       "runtime/syntax/d.hdr":                     runtimeSyntaxDHdr,
-       "runtime/syntax/d.yaml":                    runtimeSyntaxDYaml,
-       "runtime/syntax/dart.hdr":                  runtimeSyntaxDartHdr,
-       "runtime/syntax/dart.yaml":                 runtimeSyntaxDartYaml,
-       "runtime/syntax/dockerfile.hdr":            runtimeSyntaxDockerfileHdr,
-       "runtime/syntax/dockerfile.yaml":           runtimeSyntaxDockerfileYaml,
-       "runtime/syntax/dot.hdr":                   runtimeSyntaxDotHdr,
-       "runtime/syntax/dot.yaml":                  runtimeSyntaxDotYaml,
-       "runtime/syntax/elixir.hdr":                runtimeSyntaxElixirHdr,
-       "runtime/syntax/elixir.yaml":               runtimeSyntaxElixirYaml,
-       "runtime/syntax/elm.hdr":                   runtimeSyntaxElmHdr,
-       "runtime/syntax/elm.yaml":                  runtimeSyntaxElmYaml,
-       "runtime/syntax/erb.hdr":                   runtimeSyntaxErbHdr,
-       "runtime/syntax/erb.yaml":                  runtimeSyntaxErbYaml,
-       "runtime/syntax/erlang.hdr":                runtimeSyntaxErlangHdr,
-       "runtime/syntax/erlang.yaml":               runtimeSyntaxErlangYaml,
-       "runtime/syntax/fish.hdr":                  runtimeSyntaxFishHdr,
-       "runtime/syntax/fish.yaml":                 runtimeSyntaxFishYaml,
-       "runtime/syntax/forth.hdr":                 runtimeSyntaxForthHdr,
-       "runtime/syntax/forth.yaml":                runtimeSyntaxForthYaml,
-       "runtime/syntax/fortran.hdr":               runtimeSyntaxFortranHdr,
-       "runtime/syntax/fortran.yaml":              runtimeSyntaxFortranYaml,
-       "runtime/syntax/fsharp.hdr":                runtimeSyntaxFsharpHdr,
-       "runtime/syntax/fsharp.yaml":               runtimeSyntaxFsharpYaml,
-       "runtime/syntax/gdscript.hdr":              runtimeSyntaxGdscriptHdr,
-       "runtime/syntax/gdscript.yaml":             runtimeSyntaxGdscriptYaml,
-       "runtime/syntax/gentoo-ebuild.hdr":         runtimeSyntaxGentooEbuildHdr,
-       "runtime/syntax/gentoo-ebuild.yaml":        runtimeSyntaxGentooEbuildYaml,
-       "runtime/syntax/gentoo-etc-portage.hdr":    runtimeSyntaxGentooEtcPortageHdr,
-       "runtime/syntax/gentoo-etc-portage.yaml":   runtimeSyntaxGentooEtcPortageYaml,
-       "runtime/syntax/git-commit.hdr":            runtimeSyntaxGitCommitHdr,
-       "runtime/syntax/git-commit.yaml":           runtimeSyntaxGitCommitYaml,
-       "runtime/syntax/git-config.hdr":            runtimeSyntaxGitConfigHdr,
-       "runtime/syntax/git-config.yaml":           runtimeSyntaxGitConfigYaml,
-       "runtime/syntax/git-rebase-todo.hdr":       runtimeSyntaxGitRebaseTodoHdr,
-       "runtime/syntax/git-rebase-todo.yaml":      runtimeSyntaxGitRebaseTodoYaml,
-       "runtime/syntax/glsl.hdr":                  runtimeSyntaxGlslHdr,
-       "runtime/syntax/glsl.yaml":                 runtimeSyntaxGlslYaml,
-       "runtime/syntax/go.hdr":                    runtimeSyntaxGoHdr,
-       "runtime/syntax/go.yaml":                   runtimeSyntaxGoYaml,
-       "runtime/syntax/godoc.hdr":                 runtimeSyntaxGodocHdr,
-       "runtime/syntax/godoc.yaml":                runtimeSyntaxGodocYaml,
-       "runtime/syntax/golo.hdr":                  runtimeSyntaxGoloHdr,
-       "runtime/syntax/golo.yaml":                 runtimeSyntaxGoloYaml,
-       "runtime/syntax/graphql.hdr":               runtimeSyntaxGraphqlHdr,
-       "runtime/syntax/graphql.yaml":              runtimeSyntaxGraphqlYaml,
-       "runtime/syntax/groff.hdr":                 runtimeSyntaxGroffHdr,
-       "runtime/syntax/groff.yaml":                runtimeSyntaxGroffYaml,
-       "runtime/syntax/groovy.hdr":                runtimeSyntaxGroovyHdr,
-       "runtime/syntax/groovy.yaml":               runtimeSyntaxGroovyYaml,
-       "runtime/syntax/haml.hdr":                  runtimeSyntaxHamlHdr,
-       "runtime/syntax/haml.yaml":                 runtimeSyntaxHamlYaml,
-       "runtime/syntax/haskell.hdr":               runtimeSyntaxHaskellHdr,
-       "runtime/syntax/haskell.yaml":              runtimeSyntaxHaskellYaml,
-       "runtime/syntax/html.hdr":                  runtimeSyntaxHtmlHdr,
-       "runtime/syntax/html.yaml":                 runtimeSyntaxHtmlYaml,
-       "runtime/syntax/html4.hdr":                 runtimeSyntaxHtml4Hdr,
-       "runtime/syntax/html4.yaml":                runtimeSyntaxHtml4Yaml,
-       "runtime/syntax/html5.hdr":                 runtimeSyntaxHtml5Hdr,
-       "runtime/syntax/html5.yaml":                runtimeSyntaxHtml5Yaml,
-       "runtime/syntax/ini.hdr":                   runtimeSyntaxIniHdr,
-       "runtime/syntax/ini.yaml":                  runtimeSyntaxIniYaml,
-       "runtime/syntax/inputrc.hdr":               runtimeSyntaxInputrcHdr,
-       "runtime/syntax/inputrc.yaml":              runtimeSyntaxInputrcYaml,
-       "runtime/syntax/java.hdr":                  runtimeSyntaxJavaHdr,
-       "runtime/syntax/java.yaml":                 runtimeSyntaxJavaYaml,
-       "runtime/syntax/javascript.hdr":            runtimeSyntaxJavascriptHdr,
-       "runtime/syntax/javascript.yaml":           runtimeSyntaxJavascriptYaml,
-       "runtime/syntax/jinja2.hdr":                runtimeSyntaxJinja2Hdr,
-       "runtime/syntax/jinja2.yaml":               runtimeSyntaxJinja2Yaml,
-       "runtime/syntax/json.hdr":                  runtimeSyntaxJsonHdr,
-       "runtime/syntax/json.yaml":                 runtimeSyntaxJsonYaml,
-       "runtime/syntax/jsonnet.hdr":               runtimeSyntaxJsonnetHdr,
-       "runtime/syntax/jsonnet.yaml":              runtimeSyntaxJsonnetYaml,
-       "runtime/syntax/julia.hdr":                 runtimeSyntaxJuliaHdr,
-       "runtime/syntax/julia.yaml":                runtimeSyntaxJuliaYaml,
-       "runtime/syntax/keymap.hdr":                runtimeSyntaxKeymapHdr,
-       "runtime/syntax/keymap.yaml":               runtimeSyntaxKeymapYaml,
-       "runtime/syntax/kickstart.hdr":             runtimeSyntaxKickstartHdr,
-       "runtime/syntax/kickstart.yaml":            runtimeSyntaxKickstartYaml,
-       "runtime/syntax/kotlin.hdr":                runtimeSyntaxKotlinHdr,
-       "runtime/syntax/kotlin.yaml":               runtimeSyntaxKotlinYaml,
-       "runtime/syntax/ledger.hdr":                runtimeSyntaxLedgerHdr,
-       "runtime/syntax/ledger.yaml":               runtimeSyntaxLedgerYaml,
-       "runtime/syntax/lfe.hdr":                   runtimeSyntaxLfeHdr,
-       "runtime/syntax/lfe.yaml":                  runtimeSyntaxLfeYaml,
-       "runtime/syntax/lilypond.hdr":              runtimeSyntaxLilypondHdr,
-       "runtime/syntax/lilypond.yaml":             runtimeSyntaxLilypondYaml,
-       "runtime/syntax/lisp.hdr":                  runtimeSyntaxLispHdr,
-       "runtime/syntax/lisp.yaml":                 runtimeSyntaxLispYaml,
-       "runtime/syntax/lua.hdr":                   runtimeSyntaxLuaHdr,
-       "runtime/syntax/lua.yaml":                  runtimeSyntaxLuaYaml,
-       "runtime/syntax/mail.hdr":                  runtimeSyntaxMailHdr,
-       "runtime/syntax/mail.yaml":                 runtimeSyntaxMailYaml,
-       "runtime/syntax/make_headers.go":           runtimeSyntaxMake_headersGo,
-       "runtime/syntax/makefile.hdr":              runtimeSyntaxMakefileHdr,
-       "runtime/syntax/makefile.yaml":             runtimeSyntaxMakefileYaml,
-       "runtime/syntax/man.hdr":                   runtimeSyntaxManHdr,
-       "runtime/syntax/man.yaml":                  runtimeSyntaxManYaml,
-       "runtime/syntax/markdown.hdr":              runtimeSyntaxMarkdownHdr,
-       "runtime/syntax/markdown.yaml":             runtimeSyntaxMarkdownYaml,
-       "runtime/syntax/mc.hdr":                    runtimeSyntaxMcHdr,
-       "runtime/syntax/mc.yaml":                   runtimeSyntaxMcYaml,
-       "runtime/syntax/micro.hdr":                 runtimeSyntaxMicroHdr,
-       "runtime/syntax/micro.yaml":                runtimeSyntaxMicroYaml,
-       "runtime/syntax/mpdconf.hdr":               runtimeSyntaxMpdconfHdr,
-       "runtime/syntax/mpdconf.yaml":              runtimeSyntaxMpdconfYaml,
-       "runtime/syntax/nanorc.hdr":                runtimeSyntaxNanorcHdr,
-       "runtime/syntax/nanorc.yaml":               runtimeSyntaxNanorcYaml,
-       "runtime/syntax/nginx.hdr":                 runtimeSyntaxNginxHdr,
-       "runtime/syntax/nginx.yaml":                runtimeSyntaxNginxYaml,
-       "runtime/syntax/nim.hdr":                   runtimeSyntaxNimHdr,
-       "runtime/syntax/nim.yaml":                  runtimeSyntaxNimYaml,
-       "runtime/syntax/objc.hdr":                  runtimeSyntaxObjcHdr,
-       "runtime/syntax/objc.yaml":                 runtimeSyntaxObjcYaml,
-       "runtime/syntax/ocaml.hdr":                 runtimeSyntaxOcamlHdr,
-       "runtime/syntax/ocaml.yaml":                runtimeSyntaxOcamlYaml,
-       "runtime/syntax/octave.hdr":                runtimeSyntaxOctaveHdr,
-       "runtime/syntax/octave.yaml":               runtimeSyntaxOctaveYaml,
-       "runtime/syntax/pascal.hdr":                runtimeSyntaxPascalHdr,
-       "runtime/syntax/pascal.yaml":               runtimeSyntaxPascalYaml,
-       "runtime/syntax/patch.hdr":                 runtimeSyntaxPatchHdr,
-       "runtime/syntax/patch.yaml":                runtimeSyntaxPatchYaml,
-       "runtime/syntax/peg.hdr":                   runtimeSyntaxPegHdr,
-       "runtime/syntax/peg.yaml":                  runtimeSyntaxPegYaml,
-       "runtime/syntax/perl.hdr":                  runtimeSyntaxPerlHdr,
-       "runtime/syntax/perl.yaml":                 runtimeSyntaxPerlYaml,
-       "runtime/syntax/perl6.hdr":                 runtimeSyntaxPerl6Hdr,
-       "runtime/syntax/perl6.yaml":                runtimeSyntaxPerl6Yaml,
-       "runtime/syntax/php.hdr":                   runtimeSyntaxPhpHdr,
-       "runtime/syntax/php.yaml":                  runtimeSyntaxPhpYaml,
-       "runtime/syntax/pkg-config.hdr":            runtimeSyntaxPkgConfigHdr,
-       "runtime/syntax/pkg-config.yaml":           runtimeSyntaxPkgConfigYaml,
-       "runtime/syntax/po.hdr":                    runtimeSyntaxPoHdr,
-       "runtime/syntax/po.yaml":                   runtimeSyntaxPoYaml,
-       "runtime/syntax/pony.hdr":                  runtimeSyntaxPonyHdr,
-       "runtime/syntax/pony.yaml":                 runtimeSyntaxPonyYaml,
-       "runtime/syntax/pov.hdr":                   runtimeSyntaxPovHdr,
-       "runtime/syntax/pov.yaml":                  runtimeSyntaxPovYaml,
-       "runtime/syntax/privoxy-action.hdr":        runtimeSyntaxPrivoxyActionHdr,
-       "runtime/syntax/privoxy-action.yaml":       runtimeSyntaxPrivoxyActionYaml,
-       "runtime/syntax/privoxy-config.hdr":        runtimeSyntaxPrivoxyConfigHdr,
-       "runtime/syntax/privoxy-config.yaml":       runtimeSyntaxPrivoxyConfigYaml,
-       "runtime/syntax/privoxy-filter.hdr":        runtimeSyntaxPrivoxyFilterHdr,
-       "runtime/syntax/privoxy-filter.yaml":       runtimeSyntaxPrivoxyFilterYaml,
-       "runtime/syntax/proto.hdr":                 runtimeSyntaxProtoHdr,
-       "runtime/syntax/proto.yaml":                runtimeSyntaxProtoYaml,
-       "runtime/syntax/puppet.hdr":                runtimeSyntaxPuppetHdr,
-       "runtime/syntax/puppet.yaml":               runtimeSyntaxPuppetYaml,
-       "runtime/syntax/python2.hdr":               runtimeSyntaxPython2Hdr,
-       "runtime/syntax/python2.yaml":              runtimeSyntaxPython2Yaml,
-       "runtime/syntax/python3.hdr":               runtimeSyntaxPython3Hdr,
-       "runtime/syntax/python3.yaml":              runtimeSyntaxPython3Yaml,
-       "runtime/syntax/r.hdr":                     runtimeSyntaxRHdr,
-       "runtime/syntax/r.yaml":                    runtimeSyntaxRYaml,
-       "runtime/syntax/reST.hdr":                  runtimeSyntaxRestHdr,
-       "runtime/syntax/reST.yaml":                 runtimeSyntaxRestYaml,
-       "runtime/syntax/renpy.hdr":                 runtimeSyntaxRenpyHdr,
-       "runtime/syntax/renpy.yaml":                runtimeSyntaxRenpyYaml,
-       "runtime/syntax/rpmspec.hdr":               runtimeSyntaxRpmspecHdr,
-       "runtime/syntax/rpmspec.yaml":              runtimeSyntaxRpmspecYaml,
-       "runtime/syntax/ruby.hdr":                  runtimeSyntaxRubyHdr,
-       "runtime/syntax/ruby.yaml":                 runtimeSyntaxRubyYaml,
-       "runtime/syntax/rust.hdr":                  runtimeSyntaxRustHdr,
-       "runtime/syntax/rust.yaml":                 runtimeSyntaxRustYaml,
-       "runtime/syntax/sage.hdr":                  runtimeSyntaxSageHdr,
-       "runtime/syntax/sage.yaml":                 runtimeSyntaxSageYaml,
-       "runtime/syntax/scala.hdr":                 runtimeSyntaxScalaHdr,
-       "runtime/syntax/scala.yaml":                runtimeSyntaxScalaYaml,
-       "runtime/syntax/sed.hdr":                   runtimeSyntaxSedHdr,
-       "runtime/syntax/sed.yaml":                  runtimeSyntaxSedYaml,
-       "runtime/syntax/sh.hdr":                    runtimeSyntaxShHdr,
-       "runtime/syntax/sh.yaml":                   runtimeSyntaxShYaml,
-       "runtime/syntax/sls.hdr":                   runtimeSyntaxSlsHdr,
-       "runtime/syntax/sls.yaml":                  runtimeSyntaxSlsYaml,
-       "runtime/syntax/solidity.hdr":              runtimeSyntaxSolidityHdr,
-       "runtime/syntax/solidity.yaml":             runtimeSyntaxSolidityYaml,
-       "runtime/syntax/sql.hdr":                   runtimeSyntaxSqlHdr,
-       "runtime/syntax/sql.yaml":                  runtimeSyntaxSqlYaml,
-       "runtime/syntax/stata.hdr":                 runtimeSyntaxStataHdr,
-       "runtime/syntax/stata.yaml":                runtimeSyntaxStataYaml,
-       "runtime/syntax/svelte.hdr":                runtimeSyntaxSvelteHdr,
-       "runtime/syntax/svelte.yaml":               runtimeSyntaxSvelteYaml,
-       "runtime/syntax/swift.hdr":                 runtimeSyntaxSwiftHdr,
-       "runtime/syntax/swift.yaml":                runtimeSyntaxSwiftYaml,
-       "runtime/syntax/syntax_checker.go":         runtimeSyntaxSyntax_checkerGo,
-       "runtime/syntax/syntax_converter.go":       runtimeSyntaxSyntax_converterGo,
-       "runtime/syntax/systemd.hdr":               runtimeSyntaxSystemdHdr,
-       "runtime/syntax/systemd.yaml":              runtimeSyntaxSystemdYaml,
-       "runtime/syntax/tcl.hdr":                   runtimeSyntaxTclHdr,
-       "runtime/syntax/tcl.yaml":                  runtimeSyntaxTclYaml,
-       "runtime/syntax/tex.hdr":                   runtimeSyntaxTexHdr,
-       "runtime/syntax/tex.yaml":                  runtimeSyntaxTexYaml,
-       "runtime/syntax/toml.hdr":                  runtimeSyntaxTomlHdr,
-       "runtime/syntax/toml.yaml":                 runtimeSyntaxTomlYaml,
-       "runtime/syntax/twig.hdr":                  runtimeSyntaxTwigHdr,
-       "runtime/syntax/twig.yaml":                 runtimeSyntaxTwigYaml,
-       "runtime/syntax/typescript.hdr":            runtimeSyntaxTypescriptHdr,
-       "runtime/syntax/typescript.yaml":           runtimeSyntaxTypescriptYaml,
-       "runtime/syntax/v.hdr":                     runtimeSyntaxVHdr,
-       "runtime/syntax/v.yaml":                    runtimeSyntaxVYaml,
-       "runtime/syntax/vala.hdr":                  runtimeSyntaxValaHdr,
-       "runtime/syntax/vala.yaml":                 runtimeSyntaxValaYaml,
-       "runtime/syntax/verilog.hdr":               runtimeSyntaxVerilogHdr,
-       "runtime/syntax/verilog.yaml":              runtimeSyntaxVerilogYaml,
-       "runtime/syntax/vhdl.hdr":                  runtimeSyntaxVhdlHdr,
-       "runtime/syntax/vhdl.yaml":                 runtimeSyntaxVhdlYaml,
-       "runtime/syntax/vi.hdr":                    runtimeSyntaxViHdr,
-       "runtime/syntax/vi.yaml":                   runtimeSyntaxViYaml,
-       "runtime/syntax/vue.hdr":                   runtimeSyntaxVueHdr,
-       "runtime/syntax/vue.yaml":                  runtimeSyntaxVueYaml,
-       "runtime/syntax/xml.hdr":                   runtimeSyntaxXmlHdr,
-       "runtime/syntax/xml.yaml":                  runtimeSyntaxXmlYaml,
-       "runtime/syntax/xresources.hdr":            runtimeSyntaxXresourcesHdr,
-       "runtime/syntax/xresources.yaml":           runtimeSyntaxXresourcesYaml,
-       "runtime/syntax/yaml.hdr":                  runtimeSyntaxYamlHdr,
-       "runtime/syntax/yaml.yaml":                 runtimeSyntaxYamlYaml,
-       "runtime/syntax/yum.hdr":                   runtimeSyntaxYumHdr,
-       "runtime/syntax/yum.yaml":                  runtimeSyntaxYumYaml,
-       "runtime/syntax/zig.hdr":                   runtimeSyntaxZigHdr,
-       "runtime/syntax/zig.yaml":                  runtimeSyntaxZigYaml,
-       "runtime/syntax/zscript.hdr":               runtimeSyntaxZscriptHdr,
-       "runtime/syntax/zscript.yaml":              runtimeSyntaxZscriptYaml,
-       "runtime/syntax/zsh.hdr":                   runtimeSyntaxZshHdr,
-       "runtime/syntax/zsh.yaml":                  runtimeSyntaxZshYaml,
-}
-
-// AssetDir returns the file names below a certain
-// directory embedded in the file by go-bindata.
-// For example if you run go-bindata on data/... and data contains the
-// following hierarchy:
-//     data/
-//       foo.txt
-//       img/
-//         a.png
-//         b.png
-// then AssetDir("data") would return []string{"foo.txt", "img"}
-// AssetDir("data/img") would return []string{"a.png", "b.png"}
-// AssetDir("foo.txt") and AssetDir("notexist") would return an error
-// AssetDir("") will return []string{"data"}.
-func AssetDir(name string) ([]string, error) {
-       node := _bintree
-       if len(name) != 0 {
-               cannonicalName := strings.Replace(name, "\\", "/", -1)
-               pathList := strings.Split(cannonicalName, "/")
-               for _, p := range pathList {
-                       node = node.Children[p]
-                       if node == nil {
-                               return nil, fmt.Errorf("Asset %s not found", name)
-                       }
-               }
-       }
-       if node.Func != nil {
-               return nil, fmt.Errorf("Asset %s not found", name)
-       }
-       rv := make([]string, 0, len(node.Children))
-       for childName := range node.Children {
-               rv = append(rv, childName)
-       }
-       return rv, nil
-}
-
-type bintree struct {
-       Func     func() (*asset, error)
-       Children map[string]*bintree
-}
-
-var _bintree = &bintree{nil, map[string]*bintree{
-       "runtime": &bintree{nil, map[string]*bintree{
-               "README.md": &bintree{runtimeReadmeMd, map[string]*bintree{}},
-               "colorschemes": &bintree{nil, map[string]*bintree{
-                       "atom-dark.micro":     &bintree{runtimeColorschemesAtomDarkMicro, map[string]*bintree{}},
-                       "bubblegum.micro":     &bintree{runtimeColorschemesBubblegumMicro, map[string]*bintree{}},
-                       "cmc-16.micro":        &bintree{runtimeColorschemesCmc16Micro, map[string]*bintree{}},
-                       "cmc-tc.micro":        &bintree{runtimeColorschemesCmcTcMicro, map[string]*bintree{}},
-                       "darcula.micro":       &bintree{runtimeColorschemesDarculaMicro, map[string]*bintree{}},
-                       "default.micro":       &bintree{runtimeColorschemesDefaultMicro, map[string]*bintree{}},
-                       "dukedark-tc.micro":   &bintree{runtimeColorschemesDukedarkTcMicro, map[string]*bintree{}},
-                       "dukelight-tc.micro":  &bintree{runtimeColorschemesDukelightTcMicro, map[string]*bintree{}},
-                       "dukeubuntu-tc.micro": &bintree{runtimeColorschemesDukeubuntuTcMicro, map[string]*bintree{}},
-                       "geany.micro":         &bintree{runtimeColorschemesGeanyMicro, map[string]*bintree{}},
-                       "gotham.micro":        &bintree{runtimeColorschemesGothamMicro, map[string]*bintree{}},
-                       "gruvbox-tc.micro":    &bintree{runtimeColorschemesGruvboxTcMicro, map[string]*bintree{}},
-                       "gruvbox.micro":       &bintree{runtimeColorschemesGruvboxMicro, map[string]*bintree{}},
-                       "material-tc.micro":   &bintree{runtimeColorschemesMaterialTcMicro, map[string]*bintree{}},
-                       "monokai-dark.micro":  &bintree{runtimeColorschemesMonokaiDarkMicro, map[string]*bintree{}},
-                       "monokai.micro":       &bintree{runtimeColorschemesMonokaiMicro, map[string]*bintree{}},
-                       "one-dark.micro":      &bintree{runtimeColorschemesOneDarkMicro, map[string]*bintree{}},
-                       "railscast.micro":     &bintree{runtimeColorschemesRailscastMicro, map[string]*bintree{}},
-                       "simple.micro":        &bintree{runtimeColorschemesSimpleMicro, map[string]*bintree{}},
-                       "solarized-tc.micro":  &bintree{runtimeColorschemesSolarizedTcMicro, map[string]*bintree{}},
-                       "solarized.micro":     &bintree{runtimeColorschemesSolarizedMicro, map[string]*bintree{}},
-                       "sunny-day.micro":     &bintree{runtimeColorschemesSunnyDayMicro, map[string]*bintree{}},
-                       "twilight.micro":      &bintree{runtimeColorschemesTwilightMicro, map[string]*bintree{}},
-                       "zenburn.micro":       &bintree{runtimeColorschemesZenburnMicro, map[string]*bintree{}},
-               }},
-               "help": &bintree{nil, map[string]*bintree{
-                       "colors.md":      &bintree{runtimeHelpColorsMd, map[string]*bintree{}},
-                       "commands.md":    &bintree{runtimeHelpCommandsMd, map[string]*bintree{}},
-                       "copypaste.md":   &bintree{runtimeHelpCopypasteMd, map[string]*bintree{}},
-                       "defaultkeys.md": &bintree{runtimeHelpDefaultkeysMd, map[string]*bintree{}},
-                       "help.md":        &bintree{runtimeHelpHelpMd, map[string]*bintree{}},
-                       "keybindings.md": &bintree{runtimeHelpKeybindingsMd, map[string]*bintree{}},
-                       "options.md":     &bintree{runtimeHelpOptionsMd, map[string]*bintree{}},
-                       "plugins.md":     &bintree{runtimeHelpPluginsMd, map[string]*bintree{}},
-                       "tutorial.md":    &bintree{runtimeHelpTutorialMd, map[string]*bintree{}},
-               }},
-               "plugins": &bintree{nil, map[string]*bintree{
-                       "autoclose": &bintree{nil, map[string]*bintree{
-                               "autoclose.lua": &bintree{runtimePluginsAutocloseAutocloseLua, map[string]*bintree{}},
-                       }},
-                       "comment": &bintree{nil, map[string]*bintree{
-                               "comment.lua": &bintree{runtimePluginsCommentCommentLua, map[string]*bintree{}},
-                               "help": &bintree{nil, map[string]*bintree{
-                                       "comment.md": &bintree{runtimePluginsCommentHelpCommentMd, map[string]*bintree{}},
-                               }},
-                       }},
-                       "diff": &bintree{nil, map[string]*bintree{
-                               "diff.lua": &bintree{runtimePluginsDiffDiffLua, map[string]*bintree{}},
-                       }},
-                       "ftoptions": &bintree{nil, map[string]*bintree{
-                               "ftoptions.lua": &bintree{runtimePluginsFtoptionsFtoptionsLua, map[string]*bintree{}},
-                       }},
-                       "linter": &bintree{nil, map[string]*bintree{
-                               "help": &bintree{nil, map[string]*bintree{
-                                       "linter.md": &bintree{runtimePluginsLinterHelpLinterMd, map[string]*bintree{}},
-                               }},
-                               "linter.lua": &bintree{runtimePluginsLinterLinterLua, map[string]*bintree{}},
-                       }},
-                       "literate": &bintree{nil, map[string]*bintree{
-                               "README.md":    &bintree{runtimePluginsLiterateReadmeMd, map[string]*bintree{}},
-                               "literate.lua": &bintree{runtimePluginsLiterateLiterateLua, map[string]*bintree{}},
-                       }},
-                       "status": &bintree{nil, map[string]*bintree{
-                               "help": &bintree{nil, map[string]*bintree{
-                                       "status.md": &bintree{runtimePluginsStatusHelpStatusMd, map[string]*bintree{}},
-                               }},
-                               "status.lua": &bintree{runtimePluginsStatusStatusLua, map[string]*bintree{}},
-                       }},
-               }},
-               "syntax": &bintree{nil, map[string]*bintree{
-                       "LICENSE":                 &bintree{runtimeSyntaxLicense, map[string]*bintree{}},
-                       "PowerShell.hdr":          &bintree{runtimeSyntaxPowershellHdr, map[string]*bintree{}},
-                       "PowerShell.yaml":         &bintree{runtimeSyntaxPowershellYaml, map[string]*bintree{}},
-                       "README.md":               &bintree{runtimeSyntaxReadmeMd, map[string]*bintree{}},
-                       "ada.hdr":                 &bintree{runtimeSyntaxAdaHdr, map[string]*bintree{}},
-                       "ada.yaml":                &bintree{runtimeSyntaxAdaYaml, map[string]*bintree{}},
-                       "apacheconf.hdr":          &bintree{runtimeSyntaxApacheconfHdr, map[string]*bintree{}},
-                       "apacheconf.yaml":         &bintree{runtimeSyntaxApacheconfYaml, map[string]*bintree{}},
-                       "arduino.hdr":             &bintree{runtimeSyntaxArduinoHdr, map[string]*bintree{}},
-                       "arduino.yaml":            &bintree{runtimeSyntaxArduinoYaml, map[string]*bintree{}},
-                       "asciidoc.hdr":            &bintree{runtimeSyntaxAsciidocHdr, map[string]*bintree{}},
-                       "asciidoc.yaml":           &bintree{runtimeSyntaxAsciidocYaml, map[string]*bintree{}},
-                       "asm.hdr":                 &bintree{runtimeSyntaxAsmHdr, map[string]*bintree{}},
-                       "asm.yaml":                &bintree{runtimeSyntaxAsmYaml, map[string]*bintree{}},
-                       "ats.hdr":                 &bintree{runtimeSyntaxAtsHdr, map[string]*bintree{}},
-                       "ats.yaml":                &bintree{runtimeSyntaxAtsYaml, map[string]*bintree{}},
-                       "awk.hdr":                 &bintree{runtimeSyntaxAwkHdr, map[string]*bintree{}},
-                       "awk.yaml":                &bintree{runtimeSyntaxAwkYaml, map[string]*bintree{}},
-                       "bat.hdr":                 &bintree{runtimeSyntaxBatHdr, map[string]*bintree{}},
-                       "bat.yaml":                &bintree{runtimeSyntaxBatYaml, map[string]*bintree{}},
-                       "c.hdr":                   &bintree{runtimeSyntaxCHdr, map[string]*bintree{}},
-                       "c.yaml":                  &bintree{runtimeSyntaxCYaml, map[string]*bintree{}},
-                       "caddyfile.hdr":           &bintree{runtimeSyntaxCaddyfileHdr, map[string]*bintree{}},
-                       "caddyfile.yaml":          &bintree{runtimeSyntaxCaddyfileYaml, map[string]*bintree{}},
-                       "clojure.hdr":             &bintree{runtimeSyntaxClojureHdr, map[string]*bintree{}},
-                       "clojure.yaml":            &bintree{runtimeSyntaxClojureYaml, map[string]*bintree{}},
-                       "cmake.hdr":               &bintree{runtimeSyntaxCmakeHdr, map[string]*bintree{}},
-                       "cmake.yaml":              &bintree{runtimeSyntaxCmakeYaml, map[string]*bintree{}},
-                       "coffeescript.hdr":        &bintree{runtimeSyntaxCoffeescriptHdr, map[string]*bintree{}},
-                       "coffeescript.yaml":       &bintree{runtimeSyntaxCoffeescriptYaml, map[string]*bintree{}},
-                       "colortest.hdr":           &bintree{runtimeSyntaxColortestHdr, map[string]*bintree{}},
-                       "colortest.yaml":          &bintree{runtimeSyntaxColortestYaml, map[string]*bintree{}},
-                       "conf.hdr":                &bintree{runtimeSyntaxConfHdr, map[string]*bintree{}},
-                       "conf.yaml":               &bintree{runtimeSyntaxConfYaml, map[string]*bintree{}},
-                       "conky.hdr":               &bintree{runtimeSyntaxConkyHdr, map[string]*bintree{}},
-                       "conky.yaml":              &bintree{runtimeSyntaxConkyYaml, map[string]*bintree{}},
-                       "cpp.hdr":                 &bintree{runtimeSyntaxCppHdr, map[string]*bintree{}},
-                       "cpp.yaml":                &bintree{runtimeSyntaxCppYaml, map[string]*bintree{}},
-                       "crontab.hdr":             &bintree{runtimeSyntaxCrontabHdr, map[string]*bintree{}},
-                       "crontab.yaml":            &bintree{runtimeSyntaxCrontabYaml, map[string]*bintree{}},
-                       "crystal.hdr":             &bintree{runtimeSyntaxCrystalHdr, map[string]*bintree{}},
-                       "crystal.yaml":            &bintree{runtimeSyntaxCrystalYaml, map[string]*bintree{}},
-                       "csharp.hdr":              &bintree{runtimeSyntaxCsharpHdr, map[string]*bintree{}},
-                       "csharp.yaml":             &bintree{runtimeSyntaxCsharpYaml, map[string]*bintree{}},
-                       "css.hdr":                 &bintree{runtimeSyntaxCssHdr, map[string]*bintree{}},
-                       "css.yaml":                &bintree{runtimeSyntaxCssYaml, map[string]*bintree{}},
-                       "csx.hdr":                 &bintree{runtimeSyntaxCsxHdr, map[string]*bintree{}},
-                       "csx.yaml":                &bintree{runtimeSyntaxCsxYaml, map[string]*bintree{}},
-                       "cython.hdr":              &bintree{runtimeSyntaxCythonHdr, map[string]*bintree{}},
-                       "cython.yaml":             &bintree{runtimeSyntaxCythonYaml, map[string]*bintree{}},
-                       "d.hdr":                   &bintree{runtimeSyntaxDHdr, map[string]*bintree{}},
-                       "d.yaml":                  &bintree{runtimeSyntaxDYaml, map[string]*bintree{}},
-                       "dart.hdr":                &bintree{runtimeSyntaxDartHdr, map[string]*bintree{}},
-                       "dart.yaml":               &bintree{runtimeSyntaxDartYaml, map[string]*bintree{}},
-                       "dockerfile.hdr":          &bintree{runtimeSyntaxDockerfileHdr, map[string]*bintree{}},
-                       "dockerfile.yaml":         &bintree{runtimeSyntaxDockerfileYaml, map[string]*bintree{}},
-                       "dot.hdr":                 &bintree{runtimeSyntaxDotHdr, map[string]*bintree{}},
-                       "dot.yaml":                &bintree{runtimeSyntaxDotYaml, map[string]*bintree{}},
-                       "elixir.hdr":              &bintree{runtimeSyntaxElixirHdr, map[string]*bintree{}},
-                       "elixir.yaml":             &bintree{runtimeSyntaxElixirYaml, map[string]*bintree{}},
-                       "elm.hdr":                 &bintree{runtimeSyntaxElmHdr, map[string]*bintree{}},
-                       "elm.yaml":                &bintree{runtimeSyntaxElmYaml, map[string]*bintree{}},
-                       "erb.hdr":                 &bintree{runtimeSyntaxErbHdr, map[string]*bintree{}},
-                       "erb.yaml":                &bintree{runtimeSyntaxErbYaml, map[string]*bintree{}},
-                       "erlang.hdr":              &bintree{runtimeSyntaxErlangHdr, map[string]*bintree{}},
-                       "erlang.yaml":             &bintree{runtimeSyntaxErlangYaml, map[string]*bintree{}},
-                       "fish.hdr":                &bintree{runtimeSyntaxFishHdr, map[string]*bintree{}},
-                       "fish.yaml":               &bintree{runtimeSyntaxFishYaml, map[string]*bintree{}},
-                       "forth.hdr":               &bintree{runtimeSyntaxForthHdr, map[string]*bintree{}},
-                       "forth.yaml":              &bintree{runtimeSyntaxForthYaml, map[string]*bintree{}},
-                       "fortran.hdr":             &bintree{runtimeSyntaxFortranHdr, map[string]*bintree{}},
-                       "fortran.yaml":            &bintree{runtimeSyntaxFortranYaml, map[string]*bintree{}},
-                       "fsharp.hdr":              &bintree{runtimeSyntaxFsharpHdr, map[string]*bintree{}},
-                       "fsharp.yaml":             &bintree{runtimeSyntaxFsharpYaml, map[string]*bintree{}},
-                       "gdscript.hdr":            &bintree{runtimeSyntaxGdscriptHdr, map[string]*bintree{}},
-                       "gdscript.yaml":           &bintree{runtimeSyntaxGdscriptYaml, map[string]*bintree{}},
-                       "gentoo-ebuild.hdr":       &bintree{runtimeSyntaxGentooEbuildHdr, map[string]*bintree{}},
-                       "gentoo-ebuild.yaml":      &bintree{runtimeSyntaxGentooEbuildYaml, map[string]*bintree{}},
-                       "gentoo-etc-portage.hdr":  &bintree{runtimeSyntaxGentooEtcPortageHdr, map[string]*bintree{}},
-                       "gentoo-etc-portage.yaml": &bintree{runtimeSyntaxGentooEtcPortageYaml, map[string]*bintree{}},
-                       "git-commit.hdr":          &bintree{runtimeSyntaxGitCommitHdr, map[string]*bintree{}},
-                       "git-commit.yaml":         &bintree{runtimeSyntaxGitCommitYaml, map[string]*bintree{}},
-                       "git-config.hdr":          &bintree{runtimeSyntaxGitConfigHdr, map[string]*bintree{}},
-                       "git-config.yaml":         &bintree{runtimeSyntaxGitConfigYaml, map[string]*bintree{}},
-                       "git-rebase-todo.hdr":     &bintree{runtimeSyntaxGitRebaseTodoHdr, map[string]*bintree{}},
-                       "git-rebase-todo.yaml":    &bintree{runtimeSyntaxGitRebaseTodoYaml, map[string]*bintree{}},
-                       "glsl.hdr":                &bintree{runtimeSyntaxGlslHdr, map[string]*bintree{}},
-                       "glsl.yaml":               &bintree{runtimeSyntaxGlslYaml, map[string]*bintree{}},
-                       "go.hdr":                  &bintree{runtimeSyntaxGoHdr, map[string]*bintree{}},
-                       "go.yaml":                 &bintree{runtimeSyntaxGoYaml, map[string]*bintree{}},
-                       "godoc.hdr":               &bintree{runtimeSyntaxGodocHdr, map[string]*bintree{}},
-                       "godoc.yaml":              &bintree{runtimeSyntaxGodocYaml, map[string]*bintree{}},
-                       "golo.hdr":                &bintree{runtimeSyntaxGoloHdr, map[string]*bintree{}},
-                       "golo.yaml":               &bintree{runtimeSyntaxGoloYaml, map[string]*bintree{}},
-                       "graphql.hdr":             &bintree{runtimeSyntaxGraphqlHdr, map[string]*bintree{}},
-                       "graphql.yaml":            &bintree{runtimeSyntaxGraphqlYaml, map[string]*bintree{}},
-                       "groff.hdr":               &bintree{runtimeSyntaxGroffHdr, map[string]*bintree{}},
-                       "groff.yaml":              &bintree{runtimeSyntaxGroffYaml, map[string]*bintree{}},
-                       "groovy.hdr":              &bintree{runtimeSyntaxGroovyHdr, map[string]*bintree{}},
-                       "groovy.yaml":             &bintree{runtimeSyntaxGroovyYaml, map[string]*bintree{}},
-                       "haml.hdr":                &bintree{runtimeSyntaxHamlHdr, map[string]*bintree{}},
-                       "haml.yaml":               &bintree{runtimeSyntaxHamlYaml, map[string]*bintree{}},
-                       "haskell.hdr":             &bintree{runtimeSyntaxHaskellHdr, map[string]*bintree{}},
-                       "haskell.yaml":            &bintree{runtimeSyntaxHaskellYaml, map[string]*bintree{}},
-                       "html.hdr":                &bintree{runtimeSyntaxHtmlHdr, map[string]*bintree{}},
-                       "html.yaml":               &bintree{runtimeSyntaxHtmlYaml, map[string]*bintree{}},
-                       "html4.hdr":               &bintree{runtimeSyntaxHtml4Hdr, map[string]*bintree{}},
-                       "html4.yaml":              &bintree{runtimeSyntaxHtml4Yaml, map[string]*bintree{}},
-                       "html5.hdr":               &bintree{runtimeSyntaxHtml5Hdr, map[string]*bintree{}},
-                       "html5.yaml":              &bintree{runtimeSyntaxHtml5Yaml, map[string]*bintree{}},
-                       "ini.hdr":                 &bintree{runtimeSyntaxIniHdr, map[string]*bintree{}},
-                       "ini.yaml":                &bintree{runtimeSyntaxIniYaml, map[string]*bintree{}},
-                       "inputrc.hdr":             &bintree{runtimeSyntaxInputrcHdr, map[string]*bintree{}},
-                       "inputrc.yaml":            &bintree{runtimeSyntaxInputrcYaml, map[string]*bintree{}},
-                       "java.hdr":                &bintree{runtimeSyntaxJavaHdr, map[string]*bintree{}},
-                       "java.yaml":               &bintree{runtimeSyntaxJavaYaml, map[string]*bintree{}},
-                       "javascript.hdr":          &bintree{runtimeSyntaxJavascriptHdr, map[string]*bintree{}},
-                       "javascript.yaml":         &bintree{runtimeSyntaxJavascriptYaml, map[string]*bintree{}},
-                       "jinja2.hdr":              &bintree{runtimeSyntaxJinja2Hdr, map[string]*bintree{}},
-                       "jinja2.yaml":             &bintree{runtimeSyntaxJinja2Yaml, map[string]*bintree{}},
-                       "json.hdr":                &bintree{runtimeSyntaxJsonHdr, map[string]*bintree{}},
-                       "json.yaml":               &bintree{runtimeSyntaxJsonYaml, map[string]*bintree{}},
-                       "jsonnet.hdr":             &bintree{runtimeSyntaxJsonnetHdr, map[string]*bintree{}},
-                       "jsonnet.yaml":            &bintree{runtimeSyntaxJsonnetYaml, map[string]*bintree{}},
-                       "julia.hdr":               &bintree{runtimeSyntaxJuliaHdr, map[string]*bintree{}},
-                       "julia.yaml":              &bintree{runtimeSyntaxJuliaYaml, map[string]*bintree{}},
-                       "keymap.hdr":              &bintree{runtimeSyntaxKeymapHdr, map[string]*bintree{}},
-                       "keymap.yaml":             &bintree{runtimeSyntaxKeymapYaml, map[string]*bintree{}},
-                       "kickstart.hdr":           &bintree{runtimeSyntaxKickstartHdr, map[string]*bintree{}},
-                       "kickstart.yaml":          &bintree{runtimeSyntaxKickstartYaml, map[string]*bintree{}},
-                       "kotlin.hdr":              &bintree{runtimeSyntaxKotlinHdr, map[string]*bintree{}},
-                       "kotlin.yaml":             &bintree{runtimeSyntaxKotlinYaml, map[string]*bintree{}},
-                       "ledger.hdr":              &bintree{runtimeSyntaxLedgerHdr, map[string]*bintree{}},
-                       "ledger.yaml":             &bintree{runtimeSyntaxLedgerYaml, map[string]*bintree{}},
-                       "lfe.hdr":                 &bintree{runtimeSyntaxLfeHdr, map[string]*bintree{}},
-                       "lfe.yaml":                &bintree{runtimeSyntaxLfeYaml, map[string]*bintree{}},
-                       "lilypond.hdr":            &bintree{runtimeSyntaxLilypondHdr, map[string]*bintree{}},
-                       "lilypond.yaml":           &bintree{runtimeSyntaxLilypondYaml, map[string]*bintree{}},
-                       "lisp.hdr":                &bintree{runtimeSyntaxLispHdr, map[string]*bintree{}},
-                       "lisp.yaml":               &bintree{runtimeSyntaxLispYaml, map[string]*bintree{}},
-                       "lua.hdr":                 &bintree{runtimeSyntaxLuaHdr, map[string]*bintree{}},
-                       "lua.yaml":                &bintree{runtimeSyntaxLuaYaml, map[string]*bintree{}},
-                       "mail.hdr":                &bintree{runtimeSyntaxMailHdr, map[string]*bintree{}},
-                       "mail.yaml":               &bintree{runtimeSyntaxMailYaml, map[string]*bintree{}},
-                       "make_headers.go":         &bintree{runtimeSyntaxMake_headersGo, map[string]*bintree{}},
-                       "makefile.hdr":            &bintree{runtimeSyntaxMakefileHdr, map[string]*bintree{}},
-                       "makefile.yaml":           &bintree{runtimeSyntaxMakefileYaml, map[string]*bintree{}},
-                       "man.hdr":                 &bintree{runtimeSyntaxManHdr, map[string]*bintree{}},
-                       "man.yaml":                &bintree{runtimeSyntaxManYaml, map[string]*bintree{}},
-                       "markdown.hdr":            &bintree{runtimeSyntaxMarkdownHdr, map[string]*bintree{}},
-                       "markdown.yaml":           &bintree{runtimeSyntaxMarkdownYaml, map[string]*bintree{}},
-                       "mc.hdr":                  &bintree{runtimeSyntaxMcHdr, map[string]*bintree{}},
-                       "mc.yaml":                 &bintree{runtimeSyntaxMcYaml, map[string]*bintree{}},
-                       "micro.hdr":               &bintree{runtimeSyntaxMicroHdr, map[string]*bintree{}},
-                       "micro.yaml":              &bintree{runtimeSyntaxMicroYaml, map[string]*bintree{}},
-                       "mpdconf.hdr":             &bintree{runtimeSyntaxMpdconfHdr, map[string]*bintree{}},
-                       "mpdconf.yaml":            &bintree{runtimeSyntaxMpdconfYaml, map[string]*bintree{}},
-                       "nanorc.hdr":              &bintree{runtimeSyntaxNanorcHdr, map[string]*bintree{}},
-                       "nanorc.yaml":             &bintree{runtimeSyntaxNanorcYaml, map[string]*bintree{}},
-                       "nginx.hdr":               &bintree{runtimeSyntaxNginxHdr, map[string]*bintree{}},
-                       "nginx.yaml":              &bintree{runtimeSyntaxNginxYaml, map[string]*bintree{}},
-                       "nim.hdr":                 &bintree{runtimeSyntaxNimHdr, map[string]*bintree{}},
-                       "nim.yaml":                &bintree{runtimeSyntaxNimYaml, map[string]*bintree{}},
-                       "objc.hdr":                &bintree{runtimeSyntaxObjcHdr, map[string]*bintree{}},
-                       "objc.yaml":               &bintree{runtimeSyntaxObjcYaml, map[string]*bintree{}},
-                       "ocaml.hdr":               &bintree{runtimeSyntaxOcamlHdr, map[string]*bintree{}},
-                       "ocaml.yaml":              &bintree{runtimeSyntaxOcamlYaml, map[string]*bintree{}},
-                       "octave.hdr":              &bintree{runtimeSyntaxOctaveHdr, map[string]*bintree{}},
-                       "octave.yaml":             &bintree{runtimeSyntaxOctaveYaml, map[string]*bintree{}},
-                       "pascal.hdr":              &bintree{runtimeSyntaxPascalHdr, map[string]*bintree{}},
-                       "pascal.yaml":             &bintree{runtimeSyntaxPascalYaml, map[string]*bintree{}},
-                       "patch.hdr":               &bintree{runtimeSyntaxPatchHdr, map[string]*bintree{}},
-                       "patch.yaml":              &bintree{runtimeSyntaxPatchYaml, map[string]*bintree{}},
-                       "peg.hdr":                 &bintree{runtimeSyntaxPegHdr, map[string]*bintree{}},
-                       "peg.yaml":                &bintree{runtimeSyntaxPegYaml, map[string]*bintree{}},
-                       "perl.hdr":                &bintree{runtimeSyntaxPerlHdr, map[string]*bintree{}},
-                       "perl.yaml":               &bintree{runtimeSyntaxPerlYaml, map[string]*bintree{}},
-                       "perl6.hdr":               &bintree{runtimeSyntaxPerl6Hdr, map[string]*bintree{}},
-                       "perl6.yaml":              &bintree{runtimeSyntaxPerl6Yaml, map[string]*bintree{}},
-                       "php.hdr":                 &bintree{runtimeSyntaxPhpHdr, map[string]*bintree{}},
-                       "php.yaml":                &bintree{runtimeSyntaxPhpYaml, map[string]*bintree{}},
-                       "pkg-config.hdr":          &bintree{runtimeSyntaxPkgConfigHdr, map[string]*bintree{}},
-                       "pkg-config.yaml":         &bintree{runtimeSyntaxPkgConfigYaml, map[string]*bintree{}},
-                       "po.hdr":                  &bintree{runtimeSyntaxPoHdr, map[string]*bintree{}},
-                       "po.yaml":                 &bintree{runtimeSyntaxPoYaml, map[string]*bintree{}},
-                       "pony.hdr":                &bintree{runtimeSyntaxPonyHdr, map[string]*bintree{}},
-                       "pony.yaml":               &bintree{runtimeSyntaxPonyYaml, map[string]*bintree{}},
-                       "pov.hdr":                 &bintree{runtimeSyntaxPovHdr, map[string]*bintree{}},
-                       "pov.yaml":                &bintree{runtimeSyntaxPovYaml, map[string]*bintree{}},
-                       "privoxy-action.hdr":      &bintree{runtimeSyntaxPrivoxyActionHdr, map[string]*bintree{}},
-                       "privoxy-action.yaml":     &bintree{runtimeSyntaxPrivoxyActionYaml, map[string]*bintree{}},
-                       "privoxy-config.hdr":      &bintree{runtimeSyntaxPrivoxyConfigHdr, map[string]*bintree{}},
-                       "privoxy-config.yaml":     &bintree{runtimeSyntaxPrivoxyConfigYaml, map[string]*bintree{}},
-                       "privoxy-filter.hdr":      &bintree{runtimeSyntaxPrivoxyFilterHdr, map[string]*bintree{}},
-                       "privoxy-filter.yaml":     &bintree{runtimeSyntaxPrivoxyFilterYaml, map[string]*bintree{}},
-                       "proto.hdr":               &bintree{runtimeSyntaxProtoHdr, map[string]*bintree{}},
-                       "proto.yaml":              &bintree{runtimeSyntaxProtoYaml, map[string]*bintree{}},
-                       "puppet.hdr":              &bintree{runtimeSyntaxPuppetHdr, map[string]*bintree{}},
-                       "puppet.yaml":             &bintree{runtimeSyntaxPuppetYaml, map[string]*bintree{}},
-                       "python2.hdr":             &bintree{runtimeSyntaxPython2Hdr, map[string]*bintree{}},
-                       "python2.yaml":            &bintree{runtimeSyntaxPython2Yaml, map[string]*bintree{}},
-                       "python3.hdr":             &bintree{runtimeSyntaxPython3Hdr, map[string]*bintree{}},
-                       "python3.yaml":            &bintree{runtimeSyntaxPython3Yaml, map[string]*bintree{}},
-                       "r.hdr":                   &bintree{runtimeSyntaxRHdr, map[string]*bintree{}},
-                       "r.yaml":                  &bintree{runtimeSyntaxRYaml, map[string]*bintree{}},
-                       "reST.hdr":                &bintree{runtimeSyntaxRestHdr, map[string]*bintree{}},
-                       "reST.yaml":               &bintree{runtimeSyntaxRestYaml, map[string]*bintree{}},
-                       "renpy.hdr":               &bintree{runtimeSyntaxRenpyHdr, map[string]*bintree{}},
-                       "renpy.yaml":              &bintree{runtimeSyntaxRenpyYaml, map[string]*bintree{}},
-                       "rpmspec.hdr":             &bintree{runtimeSyntaxRpmspecHdr, map[string]*bintree{}},
-                       "rpmspec.yaml":            &bintree{runtimeSyntaxRpmspecYaml, map[string]*bintree{}},
-                       "ruby.hdr":                &bintree{runtimeSyntaxRubyHdr, map[string]*bintree{}},
-                       "ruby.yaml":               &bintree{runtimeSyntaxRubyYaml, map[string]*bintree{}},
-                       "rust.hdr":                &bintree{runtimeSyntaxRustHdr, map[string]*bintree{}},
-                       "rust.yaml":               &bintree{runtimeSyntaxRustYaml, map[string]*bintree{}},
-                       "sage.hdr":                &bintree{runtimeSyntaxSageHdr, map[string]*bintree{}},
-                       "sage.yaml":               &bintree{runtimeSyntaxSageYaml, map[string]*bintree{}},
-                       "scala.hdr":               &bintree{runtimeSyntaxScalaHdr, map[string]*bintree{}},
-                       "scala.yaml":              &bintree{runtimeSyntaxScalaYaml, map[string]*bintree{}},
-                       "sed.hdr":                 &bintree{runtimeSyntaxSedHdr, map[string]*bintree{}},
-                       "sed.yaml":                &bintree{runtimeSyntaxSedYaml, map[string]*bintree{}},
-                       "sh.hdr":                  &bintree{runtimeSyntaxShHdr, map[string]*bintree{}},
-                       "sh.yaml":                 &bintree{runtimeSyntaxShYaml, map[string]*bintree{}},
-                       "sls.hdr":                 &bintree{runtimeSyntaxSlsHdr, map[string]*bintree{}},
-                       "sls.yaml":                &bintree{runtimeSyntaxSlsYaml, map[string]*bintree{}},
-                       "solidity.hdr":            &bintree{runtimeSyntaxSolidityHdr, map[string]*bintree{}},
-                       "solidity.yaml":           &bintree{runtimeSyntaxSolidityYaml, map[string]*bintree{}},
-                       "sql.hdr":                 &bintree{runtimeSyntaxSqlHdr, map[string]*bintree{}},
-                       "sql.yaml":                &bintree{runtimeSyntaxSqlYaml, map[string]*bintree{}},
-                       "stata.hdr":               &bintree{runtimeSyntaxStataHdr, map[string]*bintree{}},
-                       "stata.yaml":              &bintree{runtimeSyntaxStataYaml, map[string]*bintree{}},
-                       "svelte.hdr":              &bintree{runtimeSyntaxSvelteHdr, map[string]*bintree{}},
-                       "svelte.yaml":             &bintree{runtimeSyntaxSvelteYaml, map[string]*bintree{}},
-                       "swift.hdr":               &bintree{runtimeSyntaxSwiftHdr, map[string]*bintree{}},
-                       "swift.yaml":              &bintree{runtimeSyntaxSwiftYaml, map[string]*bintree{}},
-                       "syntax_checker.go":       &bintree{runtimeSyntaxSyntax_checkerGo, map[string]*bintree{}},
-                       "syntax_converter.go":     &bintree{runtimeSyntaxSyntax_converterGo, map[string]*bintree{}},
-                       "systemd.hdr":             &bintree{runtimeSyntaxSystemdHdr, map[string]*bintree{}},
-                       "systemd.yaml":            &bintree{runtimeSyntaxSystemdYaml, map[string]*bintree{}},
-                       "tcl.hdr":                 &bintree{runtimeSyntaxTclHdr, map[string]*bintree{}},
-                       "tcl.yaml":                &bintree{runtimeSyntaxTclYaml, map[string]*bintree{}},
-                       "tex.hdr":                 &bintree{runtimeSyntaxTexHdr, map[string]*bintree{}},
-                       "tex.yaml":                &bintree{runtimeSyntaxTexYaml, map[string]*bintree{}},
-                       "toml.hdr":                &bintree{runtimeSyntaxTomlHdr, map[string]*bintree{}},
-                       "toml.yaml":               &bintree{runtimeSyntaxTomlYaml, map[string]*bintree{}},
-                       "twig.hdr":                &bintree{runtimeSyntaxTwigHdr, map[string]*bintree{}},
-                       "twig.yaml":               &bintree{runtimeSyntaxTwigYaml, map[string]*bintree{}},
-                       "typescript.hdr":          &bintree{runtimeSyntaxTypescriptHdr, map[string]*bintree{}},
-                       "typescript.yaml":         &bintree{runtimeSyntaxTypescriptYaml, map[string]*bintree{}},
-                       "v.hdr":                   &bintree{runtimeSyntaxVHdr, map[string]*bintree{}},
-                       "v.yaml":                  &bintree{runtimeSyntaxVYaml, map[string]*bintree{}},
-                       "vala.hdr":                &bintree{runtimeSyntaxValaHdr, map[string]*bintree{}},
-                       "vala.yaml":               &bintree{runtimeSyntaxValaYaml, map[string]*bintree{}},
-                       "verilog.hdr":             &bintree{runtimeSyntaxVerilogHdr, map[string]*bintree{}},
-                       "verilog.yaml":            &bintree{runtimeSyntaxVerilogYaml, map[string]*bintree{}},
-                       "vhdl.hdr":                &bintree{runtimeSyntaxVhdlHdr, map[string]*bintree{}},
-                       "vhdl.yaml":               &bintree{runtimeSyntaxVhdlYaml, map[string]*bintree{}},
-                       "vi.hdr":                  &bintree{runtimeSyntaxViHdr, map[string]*bintree{}},
-                       "vi.yaml":                 &bintree{runtimeSyntaxViYaml, map[string]*bintree{}},
-                       "vue.hdr":                 &bintree{runtimeSyntaxVueHdr, map[string]*bintree{}},
-                       "vue.yaml":                &bintree{runtimeSyntaxVueYaml, map[string]*bintree{}},
-                       "xml.hdr":                 &bintree{runtimeSyntaxXmlHdr, map[string]*bintree{}},
-                       "xml.yaml":                &bintree{runtimeSyntaxXmlYaml, map[string]*bintree{}},
-                       "xresources.hdr":          &bintree{runtimeSyntaxXresourcesHdr, map[string]*bintree{}},
-                       "xresources.yaml":         &bintree{runtimeSyntaxXresourcesYaml, map[string]*bintree{}},
-                       "yaml.hdr":                &bintree{runtimeSyntaxYamlHdr, map[string]*bintree{}},
-                       "yaml.yaml":               &bintree{runtimeSyntaxYamlYaml, map[string]*bintree{}},
-                       "yum.hdr":                 &bintree{runtimeSyntaxYumHdr, map[string]*bintree{}},
-                       "yum.yaml":                &bintree{runtimeSyntaxYumYaml, map[string]*bintree{}},
-                       "zig.hdr":                 &bintree{runtimeSyntaxZigHdr, map[string]*bintree{}},
-                       "zig.yaml":                &bintree{runtimeSyntaxZigYaml, map[string]*bintree{}},
-                       "zscript.hdr":             &bintree{runtimeSyntaxZscriptHdr, map[string]*bintree{}},
-                       "zscript.yaml":            &bintree{runtimeSyntaxZscriptYaml, map[string]*bintree{}},
-                       "zsh.hdr":                 &bintree{runtimeSyntaxZshHdr, map[string]*bintree{}},
-                       "zsh.yaml":                &bintree{runtimeSyntaxZshYaml, map[string]*bintree{}},
-               }},
-       }},
-}}
-
-// RestoreAsset restores an asset under the given directory
-func RestoreAsset(dir, name string) error {
-       data, err := Asset(name)
-       if err != nil {
-               return err
-       }
-       info, err := AssetInfo(name)
-       if err != nil {
-               return err
-       }
-       err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))
-       if err != nil {
-               return err
-       }
-       err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
-       if err != nil {
-               return err
-       }
-       err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
-       if err != nil {
-               return err
-       }
-       return nil
-}
-
-// RestoreAssets restores an asset under the given directory recursively
-func RestoreAssets(dir, name string) error {
-       children, err := AssetDir(name)
-       // File
-       if err != nil {
-               return RestoreAsset(dir, name)
-       }
-       // Dir
-       for _, child := range children {
-               err = RestoreAssets(dir, filepath.Join(name, child))
-               if err != nil {
-                       return err
-               }
-       }
-       return nil
-}
-
-func _filePath(dir, name string) string {
-       cannonicalName := strings.Replace(name, "\\", "/", -1)
-       return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
-}
index 9b000cbebdf2340aa83b638e86cff8866a86f91c..2c23f39b433f970d50654557fa7ac1bea5cea77b 100644 (file)
@@ -269,6 +269,8 @@ var defaultCommonSettings = map[string]interface{}{
        "fastdirty":      false,
        "fileformat":     "unix",
        "filetype":       "unknown",
+       "hlsearch":       false,
+       "incsearch":      true,
        "ignorecase":     true,
        "indentchar":     " ",
        "keepautoindent": false,
@@ -296,6 +298,7 @@ var defaultCommonSettings = map[string]interface{}{
        "tabsize":        float64(4),
        "tabstospaces":   false,
        "useprimary":     true,
+       "wordwrap":       false,
 }
 
 func GetInfoBarOffset() int {
@@ -332,10 +335,12 @@ var DefaultGlobalOnlySettings = map[string]interface{}{
        "mouse":          true,
        "parsecursor":    false,
        "paste":          false,
-       "savehistory":    true,
-       "sucmd":          "sudo",
        "pluginchannels": []string{"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/channel.json"},
        "pluginrepos":    []string{},
+       "savehistory":    true,
+       "sucmd":          "sudo",
+       "tabhighlight":   false,
+       "tabreverse":     true,
        "xterm":          false,
 }
 
index afcfa5bc129736b4ee8a063ad4075fee22a82631..e1db946e1c93668c1439de110b84cc902bd8aeac 100644 (file)
@@ -11,8 +11,7 @@ import (
        "github.com/zyedidia/tcell/v2"
 )
 
-// The BufWindow provides a way of displaying a certain section
-// of a buffer
+// The BufWindow provides a way of displaying a certain section of a buffer.
 type BufWindow struct {
        *View
 
@@ -23,15 +22,20 @@ type BufWindow struct {
 
        sline *StatusLine
 
-       gutterOffset int
-       drawStatus   bool
+       bufWidth         int
+       bufHeight        int
+       gutterOffset     int
+       hasMessage       bool
+       maxLineNumLength int
+       drawDivider      bool
 }
 
 // NewBufWindow creates a new window at a location in the screen with a width and height
 func NewBufWindow(x, y, width, height int, buf *buffer.Buffer) *BufWindow {
        w := new(BufWindow)
        w.View = new(View)
-       w.X, w.Y, w.Width, w.Height, w.Buf = x, y, width, height, buf
+       w.X, w.Y, w.Width, w.Height = x, y, width, height
+       w.SetBuffer(buf)
        w.active = true
 
        w.sline = NewStatusLine(w)
@@ -39,31 +43,119 @@ func NewBufWindow(x, y, width, height int, buf *buffer.Buffer) *BufWindow {
        return w
 }
 
+// SetBuffer sets this window's buffer.
 func (w *BufWindow) SetBuffer(b *buffer.Buffer) {
        w.Buf = b
+       b.OptionCallback = func(option string, nativeValue interface{}) {
+               if option == "softwrap" {
+                       if nativeValue.(bool) {
+                               w.StartCol = 0
+                       } else {
+                               w.StartLine.Row = 0
+                       }
+                       w.Relocate()
+
+                       for _, c := range w.Buf.GetCursors() {
+                               c.LastVisualX = c.GetVisualX()
+                       }
+               }
+       }
+       b.GetVisualX = func(loc buffer.Loc) int {
+               return w.VLocFromLoc(loc).VisualX
+       }
 }
 
+// GetView gets the view.
 func (w *BufWindow) GetView() *View {
        return w.View
 }
 
+// GetView sets the view.
 func (w *BufWindow) SetView(view *View) {
        w.View = view
 }
 
+// Resize resizes this window.
 func (w *BufWindow) Resize(width, height int) {
        w.Width, w.Height = width, height
+       w.updateDisplayInfo()
+
        w.Relocate()
+
+       if w.Buf.Settings["softwrap"].(bool) {
+               for _, c := range w.Buf.GetCursors() {
+                       c.LastVisualX = c.GetVisualX()
+               }
+       }
 }
 
+// SetActive marks the window as active.
 func (w *BufWindow) SetActive(b bool) {
        w.active = b
 }
 
+// IsActive returns true if this window is active.
 func (w *BufWindow) IsActive() bool {
        return w.active
 }
 
+// BufView returns the width, height and x,y location of the actual buffer.
+// It is not exactly the same as the whole window which also contains gutter,
+// ruler, scrollbar and statusline.
+func (w *BufWindow) BufView() View {
+       return View{
+               X:         w.X + w.gutterOffset,
+               Y:         w.Y,
+               Width:     w.bufWidth,
+               Height:    w.bufHeight,
+               StartLine: w.StartLine,
+               StartCol:  w.StartCol,
+       }
+}
+
+func (w *BufWindow) updateDisplayInfo() {
+       b := w.Buf
+
+       w.drawDivider = false
+       if !b.Settings["statusline"].(bool) {
+               _, h := screen.Screen.Size()
+               infoY := h
+               if config.GetGlobalOption("infobar").(bool) {
+                       infoY--
+               }
+               if w.Y+w.Height != infoY {
+                       w.drawDivider = true
+               }
+       }
+
+       w.bufHeight = w.Height
+       if b.Settings["statusline"].(bool) || w.drawDivider {
+               w.bufHeight--
+       }
+
+       w.hasMessage = len(b.Messages) > 0
+
+       // We need to know the string length of the largest line number
+       // so we can pad appropriately when displaying line numbers
+       w.maxLineNumLength = len(strconv.Itoa(b.LinesNum()))
+
+       w.gutterOffset = 0
+       if w.hasMessage {
+               w.gutterOffset += 2
+       }
+       if b.Settings["diffgutter"].(bool) {
+               w.gutterOffset++
+       }
+       if b.Settings["ruler"].(bool) {
+               w.gutterOffset += w.maxLineNumLength + 1
+       }
+
+       w.bufWidth = w.Width - w.gutterOffset
+       if w.Buf.Settings["scrollbar"].(bool) && w.Buf.LinesNum() > w.Height {
+               w.bufWidth--
+       }
+}
+
 func (w *BufWindow) getStartInfo(n, lineN int) ([]byte, int, int, *tcell.Style) {
        tabsize := util.IntOpt(w.Buf.Settings["tabsize"])
        width := 0
@@ -106,63 +198,49 @@ func (w *BufWindow) Clear() {
        }
 }
 
-// Bottomline returns the line number of the lowest line in the view
-// You might think that this is obviously just v.StartLine + v.Height
-// but if softwrap is enabled things get complicated since one buffer
-// line can take up multiple lines in the view
-func (w *BufWindow) Bottomline() int {
-       if !w.Buf.Settings["softwrap"].(bool) {
-               h := w.StartLine + w.Height - 1
-               if w.drawStatus {
-                       h--
-               }
-               return h
-       }
-
-       l := w.LocFromVisual(buffer.Loc{0, w.Y + w.Height})
-
-       return l.Y
-}
-
 // Relocate moves the view window so that the cursor is in view
 // This is useful if the user has scrolled far away, and then starts typing
 // Returns true if the window location is moved
 func (w *BufWindow) Relocate() bool {
        b := w.Buf
-       // how many buffer lines are in the view
-       height := w.Bottomline() + 1 - w.StartLine
-       h := w.Height
-       if w.drawStatus {
-               h--
-       }
+       height := w.bufHeight
        ret := false
        activeC := w.Buf.GetActiveCursor()
-       cy := activeC.Y
        scrollmargin := int(b.Settings["scrollmargin"].(float64))
-       if cy < w.StartLine+scrollmargin && cy > scrollmargin-1 {
-               w.StartLine = cy - scrollmargin
+
+       c := w.SLocFromLoc(activeC.Loc)
+       bStart := SLoc{0, 0}
+       bEnd := w.SLocFromLoc(b.End())
+
+       if c.LessThan(w.Scroll(w.StartLine, scrollmargin)) && c.GreaterThan(w.Scroll(bStart, scrollmargin-1)) {
+               w.StartLine = w.Scroll(c, -scrollmargin)
                ret = true
-       } else if cy < w.StartLine {
-               w.StartLine = cy
+       } else if c.LessThan(w.StartLine) {
+               w.StartLine = c
                ret = true
        }
-       if cy > w.StartLine+height-1-scrollmargin && cy < b.LinesNum()-scrollmargin {
-               w.StartLine = cy - height + 1 + scrollmargin
+       if c.GreaterThan(w.Scroll(w.StartLine, height-1-scrollmargin)) && c.LessThan(w.Scroll(bEnd, -scrollmargin+1)) {
+               w.StartLine = w.Scroll(c, -height+1+scrollmargin)
                ret = true
-       } else if cy >= b.LinesNum()-scrollmargin && cy >= height {
-               w.StartLine = b.LinesNum() - height
+       } else if c.GreaterThan(w.Scroll(bEnd, -scrollmargin)) && c.GreaterThan(w.Scroll(w.StartLine, height-1)) {
+               w.StartLine = w.Scroll(bEnd, -height+1)
                ret = true
        }
 
        // horizontal relocation (scrolling)
        if !b.Settings["softwrap"].(bool) {
                cx := activeC.GetVisualX()
+               rw := runewidth.RuneWidth(activeC.RuneUnder(activeC.X))
+               if rw == 0 {
+                       rw = 1 // tab or newline
+               }
+
                if cx < w.StartCol {
                        w.StartCol = cx
                        ret = true
                }
-               if cx+w.gutterOffset+1 > w.StartCol+w.Width {
-                       w.StartCol = cx - w.Width + w.gutterOffset + 1
+               if cx+w.gutterOffset+rw > w.StartCol+w.Width {
+                       w.StartCol = cx - w.Width + w.gutterOffset + rw
                        ret = true
                }
        }
@@ -171,123 +249,18 @@ func (w *BufWindow) Relocate() bool {
 
 // LocFromVisual takes a visual location (x and y position) and returns the
 // position in the buffer corresponding to the visual location
-// Computing the buffer location requires essentially drawing the entire screen
-// to account for complications like softwrap, wide characters, and horizontal scrolling
 // If the requested position does not correspond to a buffer location it returns
 // the nearest position
 func (w *BufWindow) LocFromVisual(svloc buffer.Loc) buffer.Loc {
-       b := w.Buf
-
-       hasMessage := len(b.Messages) > 0
-       bufHeight := w.Height
-       if w.drawStatus {
-               bufHeight--
+       vx := svloc.X - w.X - w.gutterOffset
+       if vx < 0 {
+               vx = 0
        }
-
-       bufWidth := w.Width
-       if w.Buf.Settings["scrollbar"].(bool) && w.Buf.LinesNum() > w.Height {
-               bufWidth--
+       vloc := VLoc{
+               SLoc:    w.Scroll(w.StartLine, svloc.Y-w.Y),
+               VisualX: vx + w.StartCol,
        }
-
-       // We need to know the string length of the largest line number
-       // so we can pad appropriately when displaying line numbers
-       maxLineNumLength := len(strconv.Itoa(b.LinesNum()))
-
-       tabsize := int(b.Settings["tabsize"].(float64))
-       softwrap := b.Settings["softwrap"].(bool)
-
-       // this represents the current draw position
-       // within the current window
-       vloc := buffer.Loc{X: 0, Y: 0}
-
-       // this represents the current draw position in the buffer (char positions)
-       bloc := buffer.Loc{X: -1, Y: w.StartLine}
-
-       for vloc.Y = 0; vloc.Y < bufHeight; vloc.Y++ {
-               vloc.X = 0
-               if hasMessage {
-                       vloc.X += 2
-               }
-               if b.Settings["diffgutter"].(bool) {
-                       vloc.X++
-               }
-               if b.Settings["ruler"].(bool) {
-                       vloc.X += maxLineNumLength + 1
-               }
-
-               line := b.LineBytes(bloc.Y)
-               line, nColsBeforeStart, bslice := util.SliceVisualEnd(line, w.StartCol, tabsize)
-               bloc.X = bslice
-
-               draw := func() {
-                       if nColsBeforeStart <= 0 {
-                               vloc.X++
-                       }
-                       nColsBeforeStart--
-               }
-
-               totalwidth := w.StartCol - nColsBeforeStart
-
-               if svloc.X <= vloc.X+w.X && vloc.Y+w.Y == svloc.Y {
-                       return bloc
-               }
-               for len(line) > 0 {
-                       if vloc.X+w.X == svloc.X && vloc.Y+w.Y == svloc.Y {
-                               return bloc
-                       }
-
-                       r, _, size := util.DecodeCharacter(line)
-                       draw()
-                       width := 0
-
-                       switch r {
-                       case '\t':
-                               ts := tabsize - (totalwidth % tabsize)
-                               width = ts
-                       default:
-                               width = runewidth.RuneWidth(r)
-                       }
-
-                       // Draw any extra characters either spaces for tabs or @ for incomplete wide runes
-                       if width > 1 {
-                               for i := 1; i < width; i++ {
-                                       if vloc.X+w.X == svloc.X && vloc.Y+w.Y == svloc.Y {
-                                               return bloc
-                                       }
-                                       draw()
-                               }
-                       }
-                       bloc.X++
-                       line = line[size:]
-
-                       totalwidth += width
-
-                       // If we reach the end of the window then we either stop or we wrap for softwrap
-                       if vloc.X >= bufWidth {
-                               if !softwrap {
-                                       break
-                               } else {
-                                       vloc.Y++
-                                       if vloc.Y >= bufHeight {
-                                               break
-                                       }
-                                       vloc.X = w.gutterOffset
-                               }
-                       }
-               }
-               if vloc.Y+w.Y == svloc.Y {
-                       return bloc
-               }
-
-               if bloc.Y+1 >= b.LinesNum() || vloc.Y+1 >= bufHeight {
-                       return bloc
-               }
-
-               bloc.X = w.StartCol
-               bloc.Y++
-       }
-
-       return buffer.Loc{}
+       return w.LocFromVLoc(vloc)
 }
 
 func (w *BufWindow) drawGutter(vloc *buffer.Loc, bloc *buffer.Loc) {
@@ -334,7 +307,7 @@ func (w *BufWindow) drawDiffGutter(backgroundStyle tcell.Style, softwrapped bool
        vloc.X++
 }
 
-func (w *BufWindow) drawLineNum(lineNumStyle tcell.Style, softwrapped bool, maxLineNumLength int, vloc *buffer.Loc, bloc *buffer.Loc) {
+func (w *BufWindow) drawLineNum(lineNumStyle tcell.Style, softwrapped bool, vloc *buffer.Loc, bloc *buffer.Loc) {
        cursorLine := w.Buf.GetActiveCursor().Loc.Y
        var lineInt int
        if w.Buf.Settings["relativeruler"] == false || cursorLine == bloc.Y {
@@ -345,7 +318,7 @@ func (w *BufWindow) drawLineNum(lineNumStyle tcell.Style, softwrapped bool, maxL
        lineNum := strconv.Itoa(util.Abs(lineInt))
 
        // Write the spaces before the line number if necessary
-       for i := 0; i < maxLineNumLength-len(lineNum); i++ {
+       for i := 0; i < w.maxLineNumLength-len(lineNum); i++ {
                screen.SetContent(w.X+vloc.X, w.Y+vloc.Y, ' ', nil, lineNumStyle)
                vloc.X++
        }
@@ -392,16 +365,7 @@ func (w *BufWindow) displayBuffer() {
                return
        }
 
-       hasMessage := len(b.Messages) > 0
-       bufHeight := w.Height
-       if w.drawStatus {
-               bufHeight--
-       }
-
-       bufWidth := w.Width
-       if w.Buf.Settings["scrollbar"].(bool) && w.Buf.LinesNum() > w.Height {
-               bufWidth--
-       }
+       maxWidth := w.gutterOffset + w.bufWidth
 
        if b.ModifiedThisFrame {
                if b.Settings["diffgutter"].(bool) {
@@ -462,25 +426,27 @@ func (w *BufWindow) displayBuffer() {
                }
        }
 
-       // We need to know the string length of the largest line number
-       // so we can pad appropriately when displaying line numbers
-       maxLineNumLength := len(strconv.Itoa(b.LinesNum()))
-
        softwrap := b.Settings["softwrap"].(bool)
+       wordwrap := softwrap && b.Settings["wordwrap"].(bool)
+
        tabsize := util.IntOpt(b.Settings["tabsize"])
        colorcolumn := util.IntOpt(b.Settings["colorcolumn"])
 
        // this represents the current draw position
        // within the current window
        vloc := buffer.Loc{X: 0, Y: 0}
+       if softwrap {
+               // the start line may be partially out of the current window
+               vloc.Y = -w.StartLine.Row
+       }
 
        // this represents the current draw position in the buffer (char positions)
-       bloc := buffer.Loc{X: -1, Y: w.StartLine}
+       bloc := buffer.Loc{X: -1, Y: w.StartLine.Line}
 
        cursors := b.GetCursors()
 
        curStyle := config.DefStyle
-       for vloc.Y = 0; vloc.Y < bufHeight; vloc.Y++ {
+       for ; vloc.Y < w.bufHeight; vloc.Y++ {
                vloc.X = 0
 
                currentLine := false
@@ -496,88 +462,99 @@ func (w *BufWindow) displayBuffer() {
                        s = curNumStyle
                }
 
-               if hasMessage {
-                       w.drawGutter(&vloc, &bloc)
-               }
+               if vloc.Y >= 0 {
+                       if w.hasMessage {
+                               w.drawGutter(&vloc, &bloc)
+                       }
 
-               if b.Settings["diffgutter"].(bool) {
-                       w.drawDiffGutter(s, false, &vloc, &bloc)
-               }
+                       if b.Settings["diffgutter"].(bool) {
+                               w.drawDiffGutter(s, false, &vloc, &bloc)
+                       }
 
-               if b.Settings["ruler"].(bool) {
-                       w.drawLineNum(s, false, maxLineNumLength, &vloc, &bloc)
+                       if b.Settings["ruler"].(bool) {
+                               w.drawLineNum(s, false, &vloc, &bloc)
+                       }
+               } else {
+                       vloc.X = w.gutterOffset
                }
 
-               w.gutterOffset = vloc.X
-
                line, nColsBeforeStart, bslice, startStyle := w.getStartInfo(w.StartCol, bloc.Y)
                if startStyle != nil {
                        curStyle = *startStyle
                }
                bloc.X = bslice
 
-               draw := func(r rune, combc []rune, style tcell.Style, showcursor bool) {
-                       if nColsBeforeStart <= 0 {
-                               _, origBg, _ := style.Decompose()
-                               _, defBg, _ := config.DefStyle.Decompose()
-
-                               // syntax highlighting with non-default background takes precedence
-                               // over cursor-line and color-column
-                               dontOverrideBackground := origBg != defBg
-
-                               for _, c := range cursors {
-                                       if c.HasSelection() &&
-                                               (bloc.GreaterEqual(c.CurSelection[0]) && bloc.LessThan(c.CurSelection[1]) ||
-                                                       bloc.LessThan(c.CurSelection[0]) && bloc.GreaterEqual(c.CurSelection[1])) {
-                                               // The current character is selected
+               draw := func(r rune, combc []rune, style tcell.Style, highlight bool, showcursor bool) {
+                       if nColsBeforeStart <= 0 && vloc.Y >= 0 {
+                               if highlight {
+                                       if w.Buf.HighlightSearch && w.Buf.SearchMatch(bloc) {
                                                style = config.DefStyle.Reverse(true)
-
-                                               if s, ok := config.Colorscheme["selection"]; ok {
+                                               if s, ok := config.Colorscheme["hlsearch"]; ok {
                                                        style = s
                                                }
                                        }
 
-                                       if b.Settings["cursorline"].(bool) && w.active && !dontOverrideBackground &&
-                                               !c.HasSelection() && c.Y == bloc.Y {
-                                               if s, ok := config.Colorscheme["cursor-line"]; ok {
-                                                       fg, _, _ := s.Decompose()
-                                                       style = style.Background(fg)
+                                       _, origBg, _ := style.Decompose()
+                                       _, defBg, _ := config.DefStyle.Decompose()
+
+                                       // syntax or hlsearch highlighting with non-default background takes precedence
+                                       // over cursor-line and color-column
+                                       dontOverrideBackground := origBg != defBg
+
+                                       for _, c := range cursors {
+                                               if c.HasSelection() &&
+                                                       (bloc.GreaterEqual(c.CurSelection[0]) && bloc.LessThan(c.CurSelection[1]) ||
+                                                               bloc.LessThan(c.CurSelection[0]) && bloc.GreaterEqual(c.CurSelection[1])) {
+                                                       // The current character is selected
+                                                       style = config.DefStyle.Reverse(true)
+
+                                                       if s, ok := config.Colorscheme["selection"]; ok {
+                                                               style = s
+                                                       }
                                                }
-                                       }
-                               }
 
-                               for _, m := range b.Messages {
-                                       if bloc.GreaterEqual(m.Start) && bloc.LessThan(m.End) ||
-                                               bloc.LessThan(m.End) && bloc.GreaterEqual(m.Start) {
-                                               style = style.Underline(true)
-                                               break
+                                               if b.Settings["cursorline"].(bool) && w.active && !dontOverrideBackground &&
+                                                       !c.HasSelection() && c.Y == bloc.Y {
+                                                       if s, ok := config.Colorscheme["cursor-line"]; ok {
+                                                               fg, _, _ := s.Decompose()
+                                                               style = style.Background(fg)
+                                                       }
+                                               }
                                        }
-                               }
 
-                               if r == '\t' {
-                                       indentrunes := []rune(b.Settings["indentchar"].(string))
-                                       // if empty indentchar settings, use space
-                                       if len(indentrunes) == 0 {
-                                               indentrunes = []rune{' '}
+                                       for _, m := range b.Messages {
+                                               if bloc.GreaterEqual(m.Start) && bloc.LessThan(m.End) ||
+                                                       bloc.LessThan(m.End) && bloc.GreaterEqual(m.Start) {
+                                                       style = style.Underline(true)
+                                                       break
+                                               }
                                        }
 
-                                       r = indentrunes[0]
-                                       if s, ok := config.Colorscheme["indent-char"]; ok && r != ' ' {
-                                               fg, _, _ := s.Decompose()
-                                               style = style.Foreground(fg)
+                                       if r == '\t' {
+                                               indentrunes := []rune(b.Settings["indentchar"].(string))
+                                               // if empty indentchar settings, use space
+                                               if len(indentrunes) == 0 {
+                                                       indentrunes = []rune{' '}
+                                               }
+
+                                               r = indentrunes[0]
+                                               if s, ok := config.Colorscheme["indent-char"]; ok && r != ' ' {
+                                                       fg, _, _ := s.Decompose()
+                                                       style = style.Foreground(fg)
+                                               }
                                        }
-                               }
 
-                               if s, ok := config.Colorscheme["color-column"]; ok {
-                                       if colorcolumn != 0 && vloc.X-w.gutterOffset+w.StartCol == colorcolumn && !dontOverrideBackground {
-                                               fg, _, _ := s.Decompose()
-                                               style = style.Background(fg)
+                                       if s, ok := config.Colorscheme["color-column"]; ok {
+                                               if colorcolumn != 0 && vloc.X-w.gutterOffset+w.StartCol == colorcolumn && !dontOverrideBackground {
+                                                       fg, _, _ := s.Decompose()
+                                                       style = style.Background(fg)
+                                               }
                                        }
-                               }
 
-                               for _, mb := range matchingBraces {
-                                       if mb.X == bloc.X && mb.Y == bloc.Y {
-                                               style = style.Underline(true)
+                                       for _, mb := range matchingBraces {
+                                               if mb.X == bloc.X && mb.Y == bloc.Y {
+                                                       style = style.Underline(true)
+                                               }
                                        }
                                }
 
@@ -590,63 +567,122 @@ func (w *BufWindow) displayBuffer() {
                                                }
                                        }
                                }
+                       }
+                       if nColsBeforeStart <= 0 {
                                vloc.X++
                        }
                        nColsBeforeStart--
                }
 
+               wrap := func() {
+                       vloc.X = 0
+                       if w.hasMessage {
+                               w.drawGutter(&vloc, &bloc)
+                       }
+                       if b.Settings["diffgutter"].(bool) {
+                               w.drawDiffGutter(lineNumStyle, true, &vloc, &bloc)
+                       }
+
+                       // This will draw an empty line number because the current line is wrapped
+                       if b.Settings["ruler"].(bool) {
+                               w.drawLineNum(lineNumStyle, true, &vloc, &bloc)
+                       }
+               }
+
+               type glyph struct {
+                       r     rune
+                       combc []rune
+                       style tcell.Style
+                       width int
+               }
+
+               var word []glyph
+               if wordwrap {
+                       word = make([]glyph, 0, w.bufWidth)
+               } else {
+                       word = make([]glyph, 0, 1)
+               }
+               wordwidth := 0
+
                totalwidth := w.StartCol - nColsBeforeStart
                for len(line) > 0 {
                        r, combc, size := util.DecodeCharacter(line)
+                       line = line[size:]
 
-                       curStyle, _ = w.getStyle(curStyle, bloc)
-
-                       draw(r, combc, curStyle, true)
+                       loc := buffer.Loc{X: bloc.X + len(word), Y: bloc.Y}
+                       curStyle, _ = w.getStyle(curStyle, loc)
 
                        width := 0
 
-                       char := ' '
                        switch r {
                        case '\t':
                                ts := tabsize - (totalwidth % tabsize)
-                               width = ts
+                               width = util.Min(ts, maxWidth-vloc.X)
+                               totalwidth += ts
                        default:
                                width = runewidth.RuneWidth(r)
-                               char = '@'
+                               totalwidth += width
                        }
 
-                       // Draw any extra characters either spaces for tabs or @ for incomplete wide runes
-                       if width > 1 {
-                               for i := 1; i < width; i++ {
-                                       draw(char, nil, curStyle, false)
+                       word = append(word, glyph{r, combc, curStyle, width})
+                       wordwidth += width
+
+                       // Collect a complete word to know its width.
+                       // If wordwrap is off, every single character is a complete "word".
+                       if wordwrap {
+                               if !util.IsWhitespace(r) && len(line) > 0 && wordwidth < w.bufWidth {
+                                       continue
                                }
                        }
-                       bloc.X++
-                       line = line[size:]
 
-                       totalwidth += width
+                       // If a word (or just a wide rune) does not fit in the window
+                       if vloc.X+wordwidth > maxWidth && vloc.X > w.gutterOffset {
+                               for vloc.X < maxWidth {
+                                       draw(' ', nil, config.DefStyle, false, false)
+                               }
 
-                       // If we reach the end of the window then we either stop or we wrap for softwrap
-                       if vloc.X >= bufWidth {
+                               // We either stop or we wrap to draw the word in the next line
                                if !softwrap {
                                        break
                                } else {
                                        vloc.Y++
-                                       if vloc.Y >= bufHeight {
+                                       if vloc.Y >= w.bufHeight {
                                                break
                                        }
-                                       vloc.X = 0
-                                       if hasMessage {
-                                               w.drawGutter(&vloc, &bloc)
+                                       wrap()
+                               }
+                       }
+
+                       for _, r := range word {
+                               draw(r.r, r.combc, r.style, true, true)
+
+                               // Draw any extra characters either spaces for tabs or @ for incomplete wide runes
+                               if r.width > 1 {
+                                       char := ' '
+                                       if r.r != '\t' {
+                                               char = '@'
                                        }
-                                       if b.Settings["diffgutter"].(bool) {
-                                               w.drawDiffGutter(lineNumStyle, true, &vloc, &bloc)
+
+                                       for i := 1; i < r.width; i++ {
+                                               draw(char, nil, r.style, true, false)
                                        }
+                               }
+                               bloc.X++
+                       }
+
+                       word = word[:0]
+                       wordwidth = 0
 
-                                       // This will draw an empty line number because the current line is wrapped
-                                       if b.Settings["ruler"].(bool) {
-                                               w.drawLineNum(lineNumStyle, true, maxLineNumLength, &vloc, &bloc)
+                       // If we reach the end of the window then we either stop or we wrap for softwrap
+                       if vloc.X >= maxWidth {
+                               if !softwrap {
+                                       break
+                               } else {
+                                       vloc.Y++
+                                       if vloc.Y >= w.bufHeight {
+                                               break
                                        }
+                                       wrap()
                                }
                        }
                }
@@ -661,7 +697,7 @@ func (w *BufWindow) displayBuffer() {
                                }
                        }
                }
-               for i := vloc.X; i < bufWidth; i++ {
+               for i := vloc.X; i < maxWidth; i++ {
                        curStyle := style
                        if s, ok := config.Colorscheme["color-column"]; ok {
                                if colorcolumn != 0 && i-w.gutterOffset+w.StartCol == colorcolumn {
@@ -672,9 +708,9 @@ func (w *BufWindow) displayBuffer() {
                        screen.SetContent(i+w.X, vloc.Y+w.Y, ' ', nil, curStyle)
                }
 
-               if vloc.X != bufWidth {
+               if vloc.X != maxWidth {
                        // Display newline within a selection
-                       draw(' ', nil, config.DefStyle, true)
+                       draw(' ', nil, config.DefStyle, true, true)
                }
 
                bloc.X = w.StartCol
@@ -686,18 +722,9 @@ func (w *BufWindow) displayBuffer() {
 }
 
 func (w *BufWindow) displayStatusLine() {
-       _, h := screen.Screen.Size()
-       infoY := h
-       if config.GetGlobalOption("infobar").(bool) {
-               infoY--
-       }
-
        if w.Buf.Settings["statusline"].(bool) {
-               w.drawStatus = true
                w.sline.Display()
-       } else if w.Y+w.Height != infoY {
-               w.drawStatus = true
-
+       } else if w.drawDivider {
                divchars := config.GetGlobalOption("divchars").(string)
                if util.CharacterCountInString(divchars) != 2 {
                        divchars = "|-"
@@ -719,30 +746,24 @@ func (w *BufWindow) displayStatusLine() {
                for x := w.X; x < w.X+w.Width; x++ {
                        screen.SetContent(x, w.Y+w.Height-1, divchar, combc, dividerStyle)
                }
-       } else {
-               w.drawStatus = false
        }
 }
 
 func (w *BufWindow) displayScrollBar() {
        if w.Buf.Settings["scrollbar"].(bool) && w.Buf.LinesNum() > w.Height {
                scrollX := w.X + w.Width - 1
-               bufHeight := w.Height
-               if w.drawStatus {
-                       bufHeight--
-               }
                barsize := int(float64(w.Height) / float64(w.Buf.LinesNum()) * float64(w.Height))
                if barsize < 1 {
                        barsize = 1
                }
-               barstart := w.Y + int(float64(w.StartLine)/float64(w.Buf.LinesNum())*float64(w.Height))
+               barstart := w.Y + int(float64(w.StartLine.Line)/float64(w.Buf.LinesNum())*float64(w.Height))
 
                scrollBarStyle := config.DefStyle.Reverse(true)
                if style, ok := config.Colorscheme["scrollbar"]; ok {
                        scrollBarStyle = style
                }
 
-               for y := barstart; y < util.Min(barstart+barsize, w.Y+bufHeight); y++ {
+               for y := barstart; y < util.Min(barstart+barsize, w.Y+w.bufHeight); y++ {
                        screen.SetContent(scrollX, y, '|', nil, scrollBarStyle)
                }
        }
@@ -750,6 +771,8 @@ func (w *BufWindow) displayScrollBar() {
 
 // Display displays the buffer and the statusline
 func (w *BufWindow) Display() {
+       w.updateDisplayInfo()
+
        w.displayStatusLine()
        w.displayScrollBar()
        w.displayBuffer()
index a5d02c7b67993e46ffa251622993f4a3b19f03d8..3931067d82ee4f31ca7e982dab8628f5f9c57ca7 100644 (file)
@@ -72,6 +72,23 @@ func (i *InfoWindow) LocFromVisual(vloc buffer.Loc) buffer.Loc {
        return buffer.Loc{c.GetCharPosInLine(l, vloc.X-n), 0}
 }
 
+func (i *InfoWindow) BufView() View {
+       return View{
+               X:         0,
+               Y:         i.Y,
+               Width:     i.Width,
+               Height:    1,
+               StartLine: SLoc{0, 0},
+               StartCol:  0,
+       }
+}
+
+func (i *InfoWindow) Scroll(s SLoc, n int) SLoc        { return s }
+func (i *InfoWindow) Diff(s1, s2 SLoc) int             { return 0 }
+func (i *InfoWindow) SLocFromLoc(loc buffer.Loc) SLoc  { return SLoc{0, 0} }
+func (i *InfoWindow) VLocFromLoc(loc buffer.Loc) VLoc  { return VLoc{SLoc{0, 0}, loc.X} }
+func (i *InfoWindow) LocFromVLoc(vloc VLoc) buffer.Loc { return buffer.Loc{vloc.VisualX, 0} }
+
 func (i *InfoWindow) Clear() {
        for x := 0; x < i.Width; x++ {
                screen.SetContent(x, i.Y, ' ', nil, i.defStyle())
diff --git a/internal/display/softwrap.go b/internal/display/softwrap.go
new file mode 100644 (file)
index 0000000..0597f06
--- /dev/null
@@ -0,0 +1,326 @@
+package display
+
+import (
+       runewidth "github.com/mattn/go-runewidth"
+       "github.com/zyedidia/micro/v2/internal/buffer"
+       "github.com/zyedidia/micro/v2/internal/util"
+)
+
+// SLoc represents a vertical scrolling location, i.e. a location of a visual line
+// in the buffer. When softwrap is enabled, a buffer line may be displayed as
+// multiple visual lines (rows). So SLoc stores a number of a line in the buffer
+// and a number of a row within this line.
+type SLoc struct {
+       Line, Row int
+}
+
+// LessThan returns true if s is less b
+func (s SLoc) LessThan(b SLoc) bool {
+       if s.Line < b.Line {
+               return true
+       }
+       return s.Line == b.Line && s.Row < b.Row
+}
+
+// GreaterThan returns true if s is bigger than b
+func (s SLoc) GreaterThan(b SLoc) bool {
+       if s.Line > b.Line {
+               return true
+       }
+       return s.Line == b.Line && s.Row > b.Row
+}
+
+// VLoc represents a location in the buffer as a visual location in the
+// linewrapped buffer.
+type VLoc struct {
+       SLoc
+       VisualX int
+}
+
+type SoftWrap interface {
+       Scroll(s SLoc, n int) SLoc
+       Diff(s1, s2 SLoc) int
+       SLocFromLoc(loc buffer.Loc) SLoc
+       VLocFromLoc(loc buffer.Loc) VLoc
+       LocFromVLoc(vloc VLoc) buffer.Loc
+}
+
+func (w *BufWindow) getVLocFromLoc(loc buffer.Loc) VLoc {
+       vloc := VLoc{SLoc: SLoc{loc.Y, 0}, VisualX: 0}
+
+       if loc.X <= 0 {
+               return vloc
+       }
+
+       if w.bufWidth <= 0 {
+               return vloc
+       }
+
+       wordwrap := w.Buf.Settings["wordwrap"].(bool)
+       tabsize := util.IntOpt(w.Buf.Settings["tabsize"])
+
+       line := w.Buf.LineBytes(loc.Y)
+       x := 0
+       totalwidth := 0
+
+       wordwidth := 0
+       wordoffset := 0
+
+       for len(line) > 0 {
+               r, _, size := util.DecodeCharacter(line)
+               line = line[size:]
+
+               width := 0
+               switch r {
+               case '\t':
+                       ts := tabsize - (totalwidth % tabsize)
+                       width = util.Min(ts, w.bufWidth-vloc.VisualX)
+                       totalwidth += ts
+               default:
+                       width = runewidth.RuneWidth(r)
+                       totalwidth += width
+               }
+
+               wordwidth += width
+
+               // Collect a complete word to know its width.
+               // If wordwrap is off, every single character is a complete "word".
+               if wordwrap {
+                       if !util.IsWhitespace(r) && len(line) > 0 && wordwidth < w.bufWidth {
+                               if x < loc.X {
+                                       wordoffset += width
+                                       x++
+                               }
+                               continue
+                       }
+               }
+
+               // If a word (or just a wide rune) does not fit in the window
+               if vloc.VisualX+wordwidth > w.bufWidth && vloc.VisualX > 0 {
+                       vloc.Row++
+                       vloc.VisualX = 0
+               }
+
+               if x == loc.X {
+                       vloc.VisualX += wordoffset
+                       return vloc
+               }
+               x++
+
+               vloc.VisualX += wordwidth
+
+               wordwidth = 0
+               wordoffset = 0
+
+               if vloc.VisualX >= w.bufWidth {
+                       vloc.Row++
+                       vloc.VisualX = 0
+               }
+       }
+       return vloc
+}
+
+func (w *BufWindow) getLocFromVLoc(svloc VLoc) buffer.Loc {
+       loc := buffer.Loc{X: 0, Y: svloc.Line}
+
+       if w.bufWidth <= 0 {
+               return loc
+       }
+
+       wordwrap := w.Buf.Settings["wordwrap"].(bool)
+       tabsize := util.IntOpt(w.Buf.Settings["tabsize"])
+
+       line := w.Buf.LineBytes(svloc.Line)
+       vloc := VLoc{SLoc: SLoc{svloc.Line, 0}, VisualX: 0}
+
+       totalwidth := 0
+
+       var widths []int
+       if wordwrap {
+               widths = make([]int, 0, w.bufWidth)
+       } else {
+               widths = make([]int, 0, 1)
+       }
+       wordwidth := 0
+
+       for len(line) > 0 {
+               r, _, size := util.DecodeCharacter(line)
+               line = line[size:]
+
+               width := 0
+               switch r {
+               case '\t':
+                       ts := tabsize - (totalwidth % tabsize)
+                       width = util.Min(ts, w.bufWidth-vloc.VisualX)
+                       totalwidth += ts
+               default:
+                       width = runewidth.RuneWidth(r)
+                       totalwidth += width
+               }
+
+               widths = append(widths, width)
+               wordwidth += width
+
+               // Collect a complete word to know its width.
+               // If wordwrap is off, every single character is a complete "word".
+               if wordwrap {
+                       if !util.IsWhitespace(r) && len(line) > 0 && wordwidth < w.bufWidth {
+                               continue
+                       }
+               }
+
+               // If a word (or just a wide rune) does not fit in the window
+               if vloc.VisualX+wordwidth > w.bufWidth && vloc.VisualX > 0 {
+                       if vloc.Row == svloc.Row {
+                               if wordwrap {
+                                       // it's a word, not a wide rune
+                                       loc.X--
+                               }
+                               return loc
+                       }
+                       vloc.Row++
+                       vloc.VisualX = 0
+               }
+
+               for i := range widths {
+                       vloc.VisualX += widths[i]
+                       if vloc.Row == svloc.Row && vloc.VisualX > svloc.VisualX {
+                               return loc
+                       }
+                       loc.X++
+               }
+
+               widths = widths[:0]
+               wordwidth = 0
+
+               if vloc.VisualX >= w.bufWidth {
+                       vloc.Row++
+                       vloc.VisualX = 0
+               }
+       }
+       return loc
+}
+
+func (w *BufWindow) getRowCount(line int) int {
+       eol := buffer.Loc{X: util.CharacterCount(w.Buf.LineBytes(line)), Y: line}
+       return w.getVLocFromLoc(eol).Row + 1
+}
+
+func (w *BufWindow) scrollUp(s SLoc, n int) SLoc {
+       for n > 0 {
+               if n <= s.Row {
+                       s.Row -= n
+                       n = 0
+               } else if s.Line > 0 {
+                       s.Line--
+                       n -= s.Row + 1
+                       s.Row = w.getRowCount(s.Line) - 1
+               } else {
+                       s.Row = 0
+                       break
+               }
+       }
+       return s
+}
+
+func (w *BufWindow) scrollDown(s SLoc, n int) SLoc {
+       for n > 0 {
+               rc := w.getRowCount(s.Line)
+               if n < rc-s.Row {
+                       s.Row += n
+                       n = 0
+               } else if s.Line < w.Buf.LinesNum()-1 {
+                       s.Line++
+                       n -= rc - s.Row
+                       s.Row = 0
+               } else {
+                       s.Row = rc - 1
+                       break
+               }
+       }
+       return s
+}
+
+func (w *BufWindow) scroll(s SLoc, n int) SLoc {
+       if n < 0 {
+               return w.scrollUp(s, -n)
+       }
+       return w.scrollDown(s, n)
+}
+
+func (w *BufWindow) diff(s1, s2 SLoc) int {
+       n := 0
+       for s1.LessThan(s2) {
+               if s1.Line < s2.Line {
+                       n += w.getRowCount(s1.Line) - s1.Row
+                       s1.Line++
+                       s1.Row = 0
+               } else {
+                       n += s2.Row - s1.Row
+                       s1.Row = s2.Row
+               }
+       }
+       return n
+}
+
+// Scroll returns the location which is n visual lines below the location s
+// i.e. the result of scrolling n lines down. n can be negative,
+// which means scrolling up. The returned location is guaranteed to be
+// within the buffer boundaries.
+func (w *BufWindow) Scroll(s SLoc, n int) SLoc {
+       if !w.Buf.Settings["softwrap"].(bool) {
+               s.Line += n
+               if s.Line < 0 {
+                       s.Line = 0
+               }
+               if s.Line > w.Buf.LinesNum()-1 {
+                       s.Line = w.Buf.LinesNum() - 1
+               }
+               return s
+       }
+       return w.scroll(s, n)
+}
+
+// Diff returns the difference (the vertical distance) between two SLocs.
+func (w *BufWindow) Diff(s1, s2 SLoc) int {
+       if !w.Buf.Settings["softwrap"].(bool) {
+               return s2.Line - s1.Line
+       }
+       if s1.GreaterThan(s2) {
+               return -w.diff(s2, s1)
+       }
+       return w.diff(s1, s2)
+}
+
+// SLocFromLoc takes a position in the buffer and returns the location
+// of the visual line containing this position.
+func (w *BufWindow) SLocFromLoc(loc buffer.Loc) SLoc {
+       if !w.Buf.Settings["softwrap"].(bool) {
+               return SLoc{loc.Y, 0}
+       }
+       return w.getVLocFromLoc(loc).SLoc
+}
+
+// VLocFromLoc takes a position in the buffer and returns the corresponding
+// visual location in the linewrapped buffer.
+func (w *BufWindow) VLocFromLoc(loc buffer.Loc) VLoc {
+       if !w.Buf.Settings["softwrap"].(bool) {
+               tabsize := util.IntOpt(w.Buf.Settings["tabsize"])
+
+               visualx := util.StringWidth(w.Buf.LineBytes(loc.Y), loc.X, tabsize)
+               return VLoc{SLoc{loc.Y, 0}, visualx}
+       }
+       return w.getVLocFromLoc(loc)
+}
+
+// LocFromVLoc takes a visual location in the linewrapped buffer and returns
+// the position in the buffer corresponding to this visual location.
+func (w *BufWindow) LocFromVLoc(vloc VLoc) buffer.Loc {
+       if !w.Buf.Settings["softwrap"].(bool) {
+               tabsize := util.IntOpt(w.Buf.Settings["tabsize"])
+
+               x := util.GetCharPosInLine(w.Buf.LineBytes(vloc.Line), vloc.VisualX, tabsize)
+               return buffer.Loc{x, vloc.Line}
+       }
+       return w.getLocFromVLoc(vloc)
+}
index 947a3ee7b48b828dce783829f0367ac6f8ddfa2f..be808eeec8c8604279b09b2dee453c1e5f44dd24 100644 (file)
@@ -47,6 +47,12 @@ var statusInfo = map[string]func(*buffer.Buffer) string{
                }
                return ""
        },
+       "lines": func(b *buffer.Buffer) string {
+               return strconv.Itoa(b.LinesNum())
+       },
+       "percentage": func(b *buffer.Buffer) string {
+               return strconv.Itoa((b.GetActiveCursor().Y + 1) * 100 / b.LinesNum())
+       },
 }
 
 func SetStatusInfoFnLua(fn string) {
index 706945042c11850d762a499e490629898d8f939f..8e31922c9aa4511fda83822146f81574e2f3b268 100644 (file)
@@ -2,6 +2,7 @@ package display
 
 import (
        runewidth "github.com/mattn/go-runewidth"
+       "github.com/zyedidia/tcell/v2"
        "github.com/zyedidia/micro/v2/internal/buffer"
        "github.com/zyedidia/micro/v2/internal/config"
        "github.com/zyedidia/micro/v2/internal/screen"
@@ -94,16 +95,27 @@ func (w *TabWindow) Display() {
        x := -w.hscroll
        done := false
 
-       tabBarStyle := config.DefStyle.Reverse(true)
-       if style, ok := config.Colorscheme["tabbar"]; ok {
-               tabBarStyle = style
-       }
-       tabBarActiveStyle := tabBarStyle
-       if style, ok := config.Colorscheme["tabbar.active"]; ok {
-               tabBarActiveStyle = style
-       }
+       globalTabReverse := config.GetGlobalOption("tabreverse").(bool)
+       globalTabHighlight := config.GetGlobalOption("tabhighlight").(bool)
+
+       // xor of reverse and tab highlight to get tab character (as in filename and surrounding characters) reverse state
+       tabCharHighlight := (globalTabReverse || globalTabHighlight) && !(globalTabReverse && globalTabHighlight)
 
-       draw := func(r rune, n int, active bool) {
+       reverseStyles := func(reverse bool) (tcell.Style, tcell.Style) {
+               tabBarStyle := config.DefStyle.Reverse(reverse)
+               if style, ok := config.Colorscheme["tabbar"]; ok {
+                       tabBarStyle = style
+               }
+               tabBarActiveStyle := tabBarStyle
+               if style, ok := config.Colorscheme["tabbar.active"]; ok {
+                       tabBarActiveStyle = style
+               }
+               return tabBarStyle, tabBarActiveStyle
+       }
+       
+       draw := func(r rune, n int, active bool, reversed bool) {
+               tabBarStyle, tabBarActiveStyle := reverseStyles(reversed)
+               
                style := tabBarStyle
                if active {
                        style = tabBarActiveStyle
@@ -131,28 +143,33 @@ func (w *TabWindow) Display() {
 
        for i, n := range w.Names {
                if i == w.active {
-                       draw('[', 1, true)
+                       draw('[', 1, true, tabCharHighlight)
                } else {
-                       draw(' ', 1, false)
+                       draw(' ', 1, false, tabCharHighlight)
                }
+               
                for _, c := range n {
-                       draw(c, 1, i == w.active)
+                       draw(c, 1, i == w.active, tabCharHighlight)
                }
+               
                if i == len(w.Names)-1 {
                        done = true
                }
+               
                if i == w.active {
-                       draw(']', 1, true)
-                       draw(' ', 2, true)
+                       draw(']', 1, true, tabCharHighlight)
+                       draw(' ', 2, true, globalTabReverse)
                } else {
-                       draw(' ', 3, false)
+                       draw(' ', 1, false, tabCharHighlight)
+                       draw(' ', 2, false, globalTabReverse)
                }
+               
                if x >= w.Width {
                        break
                }
        }
 
        if x < w.Width {
-               draw(' ', w.Width-x, false)
+               draw(' ', w.Width-x, false, globalTabReverse)
        }
 }
index 56787fff4ef3d2bdf898fe7541edb353dd4faabf..a321cf4f01ae85ba46c62733f6122edc2528dbbb 100644 (file)
@@ -8,10 +8,13 @@ type View struct {
        X, Y          int // X,Y location of the view
        Width, Height int // Width and height of the view
 
-       // Start line and start column of the view (vertical/horizontal scroll)
+       // Start line of the view (for vertical scroll)
+       StartLine SLoc
+
+       // Start column of the view (for horizontal scroll)
        // note that since the starting column of every line is different if the view
        // is scrolled, StartCol is a visual index (will be the same for every line)
-       StartLine, StartCol int
+       StartCol int
 }
 
 type Window interface {
@@ -28,5 +31,7 @@ type Window interface {
 
 type BWindow interface {
        Window
+       SoftWrap
        SetBuffer(b *buffer.Buffer)
+       BufView() View
 }
index 048e3cb28135cf634ee0815d2850f459f4a1dfbe..e88701a4aa5674ef2cd84504c9986a86b2e49594 100644 (file)
@@ -137,11 +137,13 @@ func (i *InfoBuf) DonePrompt(canceled bool) {
        if !hadYN {
                if i.PromptCallback != nil {
                        if canceled {
+                               i.Replace(i.Start(), i.End(), "")
                                i.PromptCallback("", true)
                                h := i.History[i.PromptType]
                                i.History[i.PromptType] = h[:len(h)-1]
                        } else {
                                resp := string(i.LineBytes(0))
+                               i.Replace(i.Start(), i.End(), "")
                                i.PromptCallback(resp, false)
                                h := i.History[i.PromptType]
                                h[len(h)-1] = resp
@@ -156,7 +158,6 @@ func (i *InfoBuf) DonePrompt(canceled bool) {
                        }
                        // i.PromptCallback = nil
                }
-               i.Replace(i.Start(), i.End(), "")
        }
        if i.YNCallback != nil && hadYN {
                i.YNCallback(i.YNResp, canceled)
index 9e5025330f1b1a0bc898a1d9a4df06d45cbf74ec..59ca6c451826935830de746f4fa7dc8ce7cb8cbb 100644 (file)
@@ -1,6 +1,7 @@
 package lua
 
 import (
+       "archive/zip"
        "bytes"
        "errors"
        "fmt"
@@ -9,6 +10,7 @@ import (
        "math"
        "math/rand"
        "net"
+       "net/http"
        "os"
        "path"
        "path/filepath"
@@ -74,6 +76,10 @@ func Import(pkg string) *lua.LTable {
                return importUtf8()
        case "humanize":
                return importHumanize()
+       case "net/http", "http":
+               return importHTTP()
+       case "archive/zip":
+               return importArchiveZip()
        default:
                return nil
        }
@@ -383,6 +389,7 @@ func importOs() *lua.LTable {
        L.SetField(pkg, "Symlink", luar.New(L, os.Symlink))
        L.SetField(pkg, "TempDir", luar.New(L, os.TempDir))
        L.SetField(pkg, "Truncate", luar.New(L, os.Truncate))
+       L.SetField(pkg, "UserHomeDir", luar.New(L, os.UserHomeDir))
 
        return pkg
 }
@@ -570,3 +577,22 @@ func importHumanize() *lua.LTable {
 
        return pkg
 }
+
+func importHTTP() *lua.LTable {
+       pkg := L.NewTable()
+
+       L.SetField(pkg, "Get", luar.New(L, http.Get))
+       L.SetField(pkg, "Post", luar.New(L, http.Post))
+
+       return pkg
+}
+
+func importArchiveZip() *lua.LTable {
+       pkg := L.NewTable()
+
+       L.SetField(pkg, "OpenReader", luar.New(L, zip.OpenReader))
+       L.SetField(pkg, "NewReader", luar.New(L, zip.NewReader))
+       L.SetField(pkg, "NewWriter", luar.New(L, zip.NewWriter))
+
+       return pkg
+}
index f45d402011f78c2b9e1dbb3ffd4a7d1d0243b211..6e1f4b18a5ec2667b2303dc30e0d4298e4ac3def 100644 (file)
@@ -78,7 +78,7 @@ func JobSpawn(cmdName string, cmdArgs []string, onStdout, onStderr, onExit func(
        go func() {
                // Run the process in the background and create the onExit callback
                proc.Run()
-               jobFunc := JobFunction{onExit, string(outbuf.Bytes()), userargs}
+               jobFunc := JobFunction{onExit, outbuf.String(), userargs}
                Jobs <- jobFunc
        }()
 
index a40f9062ee496501d022828b10d94d3419bb63be..6580145ce4320129e1b56af989050630ae884015 100644 (file)
@@ -1,9 +1,11 @@
 package util
 
 import (
+       "archive/zip"
        "bytes"
        "errors"
        "fmt"
+       "io"
        "os"
        "os/user"
        "path/filepath"
@@ -23,7 +25,7 @@ var (
 
        // Version is the version number or commit hash
        Version = "0.0.0-unknown"
-       // Semantic version
+       // SemVersion is the Semantic version
        SemVersion semver.Version
        // CommitHash is the commit this version was built on
        CommitHash = "Unknown"
@@ -339,9 +341,9 @@ func EscapePath(path string) string {
        path = filepath.ToSlash(path)
        if runtime.GOOS == "windows" {
                // ':' is not valid in a path name on Windows but is ok on Unix
-               path = strings.Replace(path, ":", "%", -1)
+               path = strings.ReplaceAll(path, ":", "%")
        }
-       return strings.Replace(path, "/", "%", -1)
+       return strings.ReplaceAll(path, "/", "%")
 }
 
 // GetLeadingWhitespace returns the leading whitespace of the given byte array
@@ -419,19 +421,75 @@ func Clamp(val, min, max int) int {
        return val
 }
 
+// IsNonAlphaNumeric returns if the rune is not a number of letter or underscore.
 func IsNonAlphaNumeric(c rune) bool {
        return !unicode.IsLetter(c) && !unicode.IsNumber(c) && c != '_'
 }
 
+// IsAutocomplete returns whether a character should begin an autocompletion.
 func IsAutocomplete(c rune) bool {
        return c == '.' || !IsNonAlphaNumeric(c)
 }
 
+// ParseSpecial replaces escaped ts with '\t'.
 func ParseSpecial(s string) string {
-       return strings.Replace(s, "\\t", "\t", -1)
+       return strings.ReplaceAll(s, "\\t", "\t")
 }
 
 // String converts a byte array to a string (for lua plugins)
 func String(s []byte) string {
        return string(s)
 }
+
+// Unzip unzips a file to given folder
+func Unzip(src, dest string) error {
+       r, err := zip.OpenReader(src)
+       if err != nil {
+               return err
+       }
+       defer r.Close()
+
+       os.MkdirAll(dest, 0755)
+
+       // Closure to address file descriptors issue with all the deferred .Close() methods
+       extractAndWriteFile := func(f *zip.File) error {
+               rc, err := f.Open()
+               if err != nil {
+                       return err
+               }
+               defer rc.Close()
+
+               path := filepath.Join(dest, f.Name)
+
+               // Check for ZipSlip (Directory traversal)
+               if !strings.HasPrefix(path, filepath.Clean(dest)+string(os.PathSeparator)) {
+                       return fmt.Errorf("illegal file path: %s", path)
+               }
+
+               if f.FileInfo().IsDir() {
+                       os.MkdirAll(path, f.Mode())
+               } else {
+                       os.MkdirAll(filepath.Dir(path), f.Mode())
+                       f, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, f.Mode())
+                       if err != nil {
+                               return err
+                       }
+                       defer f.Close()
+
+                       _, err = io.Copy(f, rc)
+                       if err != nil {
+                               return err
+                       }
+               }
+               return nil
+       }
+
+       for _, f := range r.File {
+               err := extractAndWriteFile(f)
+               if err != nil {
+                       return err
+               }
+       }
+
+       return nil
+}
index 440b1ff0019118436d4e66143f3d2fda0a1d8e80..50545f04da5278f99e8f9d6a791337befa99c2f9 100644 (file)
@@ -67,6 +67,7 @@ func combineLineMatch(src, dst LineMatch) LineMatch {
 // A State represents the region at the end of a line
 type State *region
 
+// EmptyDef is an empty definition.
 var EmptyDef = Def{nil, &rules{}}
 
 // LineStates is an interface for a buffer-like object which can also store the states and matches for every line
index 3ebe13f01f2de0fbd2eae7dd32bea77c50d5e1c6..3efd5d4d4340056551dbccd7b17066e7c6c6670a 100644 (file)
@@ -11,6 +11,7 @@ color-link special "#A6E22E,#1D1F21"
 color-link underlined "#D33682,#1D1F21"
 color-link error "bold #FF4444,#1D1F21"
 color-link todo "bold #FF8844,#1D1F21"
+color-link hlsearch "#000000,#B4EC85"
 color-link statusline "#1D1F21,#C5C8C6"
 color-link tabbar "#1D1F21,#C5C8C6"
 color-link indent-char "#505050,#1D1F21"
index e2737f066983ccaed876dc7a3c442cf9a58a2467..af0dbce68229407290ab0213d44ca083dbe28b18 100644 (file)
@@ -12,6 +12,7 @@ color-link special "167,231"
 color-link error "231, 160"
 color-link underlined "underline 241,231"
 color-link todo "246,231"
+color-link hlsearch "231,136"
 color-link statusline "241,254"
 color-link tabbar "241,254"
 color-link diff-added "34"
index 8dc93a827a2e9d5ddbefcc76300d27a715ae76d0..44be786d4222317720a565f19e5d881c58d7e8d6 100644 (file)
@@ -26,6 +26,7 @@ color-link special "magenta"
 color-link ignore "default"
 color-link error "bold ,brightred"
 color-link todo "underline black,brightyellow"
+color-link hlsearch "white,darkgreen"
 color-link indent-char ",brightgreen"
 color-link line-number "green"
 color-link line-number.scrollbar "green"
index a95e887f50961f8cec6fcc8ee69f866b0d529f7c..c20e7370899c85e08e19fb931705609f2fdd5a80 100644 (file)
@@ -21,6 +21,7 @@ color-link special "#b57edc"
 color-link ignore "default"
 color-link error "bold ,#e34234"
 color-link todo "bold underline #888888,#f26522"
+color-link hlsearch "#b7b7b7,#32593d"
 color-link indent-char ",#bdecb6"
 color-link line-number "#bdecb6,#36393e"
 color-link line-number.scrollbar "#3eb489"
index 68e66620befaedc15e3111050e5362ce0b9b72df..f8918160a0f1544a7f87cc473c6dd28cb7017865 100644 (file)
@@ -12,6 +12,7 @@ color-link special "#CC8242,#242424"
 color-link underlined "#D33682,#242424"
 color-link error "bold #CB4B16,#242424"
 color-link todo "bold #D33682,#242424"
+color-link hlsearch "#CCCCCC,#32593D"
 color-link statusline "#242424,#CCCCCC"
 color-link tabbar "#242424,#CCCCCC"
 color-link indent-char "#4F4F4F,#242424"
index 0c2389b3c5bb79c5dd4ecd9d0044fb50f7d03c6c..27cba2d5e1c314bc0cad581b34f3f20d945d3df0 100644 (file)
@@ -12,6 +12,7 @@ color-link special "#A6E22E,#282828"
 color-link underlined "#D33682,#282828"
 color-link error "bold #CB4B16,#282828"
 color-link todo "bold #D33682,#282828"
+color-link hlsearch "#282828,#E6DB74"
 color-link statusline "#282828,#F8F8F2"
 color-link tabbar "#282828,#F8F8F2"
 color-link indent-char "#505050,#282828"
diff --git a/runtime/colorschemes/dracula-tc.micro b/runtime/colorschemes/dracula-tc.micro
new file mode 100644 (file)
index 0000000..f87572f
--- /dev/null
@@ -0,0 +1,45 @@
+color-link default "#F8F8F2,#282A36"
+color-link comment "#6272A4"
+
+color-link identifier "#50FA7B"
+color-link identifier.class "#8BE9FD"
+color-link identifier.var "#F8F8F2"
+
+color-link constant "#BD93F9"
+color-link constant.number "#F8F8F2"
+color-link constant.string "#F1FA8C"
+
+color-link symbol "#FF79C6"
+color-link symbol.brackets "#F8F8F2"
+color-link symbol.tag "#AE81FF"
+
+color-link type "italic #8BE9FD"
+color-link type.keyword "#FF79C6"
+
+color-link special "#FF79C6"
+color-link statement "#FF79C6"
+color-link preproc "#FF79C6"
+
+color-link underlined "#FF79C6"
+color-link error "bold #FF5555"
+color-link todo "bold #FF79C6"
+
+color-link hlsearch "#282A36,#50FA7B"
+
+color-link diff-added "#50FA7B"
+color-link diff-modified "#FFB86C"
+color-link diff-deleted "#FF5555"
+
+color-link gutter-error "#FF5555"
+color-link gutter-warning "#E6DB74"
+
+color-link statusline "#282A36,#F8F8F2"
+color-link tabbar "#282A36,#F8F8F2"
+color-link indent-char "#6272A4"
+color-link line-number "#6272A4"
+color-link current-line-number "#F8F8F2"
+
+color-link cursor-line "#44475A,#F8F8F2"
+color-link color-column "#44475A"
+color-link type.extended "default"
+
index f9aac6ddc136be505a31281d6de8d352c0c4bd73..5774468b318357e5ec185590ddbdbcf18c739ec7 100644 (file)
@@ -15,6 +15,7 @@ color-link divider "#001e28,#d0d0d0"
 color-link error "#cb4b16,#001e28"
 color-link gutter-error "#cb4b16,#001e28"
 color-link gutter-warning "#fce94f,#001e28"
+color-link hlsearch "#ffffff,#005028"
 color-link identifier "#00c8a0,#001e28"
 color-link identifier.class "#00c8a0,#001e28"
 color-link indent-char "#a0a0a0,#001e28"
index df3e1a21e55c178d2e65e7d827e3061d9820f1c3..d3f492d240896a5fd934e044d0c1eea70bc5b7bf 100644 (file)
@@ -15,6 +15,7 @@ color-link divider "#f0f0f0,#004080"
 color-link error "#500000,#f0f0f0"
 color-link gutter-error "#500000,#f0f0f0"
 color-link gutter-warning "#dcc800,#f0f0f0"
+color-link hlsearch "#000000,#b8d8e8"
 color-link identifier "bold #0078a0,#f0f0f0"
 color-link identifier.class "bold #0078a0,#f0f0f0"
 color-link indent-char "#404040,#f0f0f0"
index cc086960343d24be0992182eb2037bf102677986..1a14b3f8f8ec3fcf387fec391f43f9357eafd18a 100644 (file)
@@ -15,6 +15,7 @@ color-link divider "#2d0023,#d0d0d0"
 color-link error "#cb4b16,#2d0023"
 color-link gutter-error "#cb4b16,#2d0023"
 color-link gutter-warning "#fce94f,#2d0023"
+color-link hlsearch "#ffffff,#005028"
 color-link identifier "#00c8a0,#2d0023"
 color-link identifier.class "#00c8a0,#2d0023"
 color-link indent-char "#a0a0a0,#2d0023"
index 37480187fa29846c58e66a3f13b7662ec192b6e5..b6851a20a64578299e9911164f10a341a19c6cf8 100644 (file)
@@ -12,6 +12,7 @@ color-link type "blue"
 color-link type.extended "default"
 color-link error "red"
 color-link todo "bold cyan"
+color-link hlsearch "black,brightcyan"
 color-link indent-char "bold black"
 color-link line-number ""
 color-link current-line-number ""
index 2efb985d2e36cd72751c889dba5ca42a0156b4bb..e8dc99c9cd0fb8ce3050c0cbaedaca58b23d1815 100644 (file)
@@ -11,6 +11,7 @@ color-link special "#D26937,#0C1014"
 color-link underlined "#EDB443,#0C1014"
 color-link error "bold #C23127,#0C1014"
 color-link todo "bold #888CA6,#0C1014"
+color-link hlsearch "#091F2E,#EDB443"
 color-link statusline "#091F2E,#599CAB"
 color-link indent-char "#505050,#0C1014"
 color-link line-number "#245361,#11151C"
index 8d518c9d1df1a3fbbedaeae89e2d5c9e6bd95991..05c8efe887bb9e059b41204a37ff34ad950c2f53 100644 (file)
@@ -11,6 +11,7 @@ color-link type "#fb4934,#282828"
 color-link special "#d79921,#282828"
 color-link underlined "underline #282828"
 color-link error "#9d0006,#282828"
+color-link hlsearch "#282828,#fabd2f"
 color-link diff-added "#00AF00"
 color-link diff-modified "#FFAF00"
 color-link diff-deleted "#D70000"
index ed984a1394cc97c75677f7a2c239e1ef3105648f..823524ae3d96e7704388270b9b86e000e61ad490 100644 (file)
@@ -11,6 +11,7 @@ color-link special "172,235"
 color-link underlined "underline 109,235"
 color-link error "235,124"
 color-link todo "bold 223,235"
+color-link hlsearch "235,214"
 color-link diff-added "34"
 color-link diff-modified "214"
 color-link diff-deleted "160"
index 001a8f4faaf607a669885c4f9d4ad5536122d611..7cb306588e5fbf4874c6d9a1db664b05cc50fd8d 100644 (file)
@@ -14,6 +14,7 @@ color-link divider "#263238,#80DEEA"
 color-link error "bold #263238,#F07178"
 color-link gutter-error "#EEFFFF,#F07178"
 color-link gutter-warning "#EEFFFF,#FFF176"
+color-link hlsearch "#FFFFFF,#546E7A"
 color-link identifier "#82AAFF,#263238"
 color-link identifier.macro "#FFCB6B,#263238"
 color-link indent-char "#505050,#263238"
index c4e802d3adc9bf9499f8be8a4ab326c2cc2e7b3c..3449b3050be1b925c4a067063f24c19b0324516a 100644 (file)
@@ -11,6 +11,7 @@ color-link special "#A6E22E"
 color-link underlined "#D33682"
 color-link error "bold #CB4B16"
 color-link todo "bold #D33682"
+color-link hlsearch "#1D0000,#E6DB74"
 color-link statusline "#282828,#F8F8F2"
 color-link indent-char "#505050,#282828"
 color-link line-number "#AAAAAA,#282828"
index a91a86915bd5a74fd53cf430182fe35b2af12bbd..4f93211a52fed2aa7226f04c4bb8199c03e91ea9 100644 (file)
@@ -12,6 +12,7 @@ color-link special "#A6E22E,#282828"
 color-link underlined "#D33682,#282828"
 color-link error "bold #CB4B16,#282828"
 color-link todo "bold #D33682,#282828"
+color-link hlsearch "#282828,#E6DB74"
 color-link statusline "#282828,#F8F8F2"
 color-link tabbar "#282828,#F8F8F2"
 color-link indent-char "#505050,#282828"
index 7959a4c92e730d76982d56f222d1a28895e5ac25..c3b0e8cdf451f95a03a58ab49e26fd1baddb3125 100644 (file)
@@ -15,6 +15,7 @@ color-link diff-modified "#FFAF00"
 color-link diff-deleted "#D70000"
 color-link gutter-error "#9B859D"
 color-link gutter-warning "#9B859D"
+color-link hlsearch "#21252C,#E5C07B"
 color-link identifier "#61AFEF"
 color-link identifier.class "#C678DD"
 color-link identifier.var "#C678DD"
index 5aaa25daaf3da0c5a6e7ff6da52f64cc7376d28a..3abb1683fcacd66d5b100a80c80de9e32ebadb94 100644 (file)
@@ -11,6 +11,7 @@ color-link underlined "#cc7833,#2b2b2b"
 color-link todo "bold #cc7833,#2b2b2b"
 color-link error "bold #cc7833,#2b2b2b"
 color-link gutter-error "#cc7833,#11151C"
+color-link hlsearch "#e6e1dc,#474d5c"
 color-link indent-char "#414141,#2b2b2b"
 color-link line-number "#a1a1a1,#232323"
 color-link current-line-number "#e6e1dc,#2b2b2b"
index a072f5ef1619fb1fb7d2e8329f73d4c7177b31e6..4ee416d4dfde0d8abe8da1c0bc7d695129c48763 100644 (file)
@@ -9,6 +9,7 @@ color-link special "magenta"
 color-link ignore "default"
 color-link error ",brightred"
 color-link todo ",brightyellow"
+color-link hlsearch "black,yellow"
 color-link indent-char "black"
 color-link line-number "yellow"
 color-link current-line-number "red"
index 6ad555c00eac473998140e4435596a73486ef39c..f2840ec364d0132960ebc59890429c248050d141 100644 (file)
@@ -11,6 +11,7 @@ color-link special "#268BD2,#002833"
 color-link underlined "#D33682,#002833"
 color-link error "bold #CB4B16,#002833"
 color-link todo "bold #D33682,#002833"
+color-link hlsearch "#002833,#B58900"
 color-link statusline "#003541,#839496"
 color-link tabbar "#003541,#839496"
 color-link indent-char "#003541,#002833"
index 3f9ebcacfb695cff8ca1181b4588201d07f19b30..19b8e2c31c5d2b7e70b1c609ebf1f4a06d51db00 100644 (file)
@@ -10,6 +10,7 @@ color-link special "blue"
 color-link underlined "magenta"
 color-link error "bold brightred"
 color-link todo "bold magenta"
+color-link hlsearch "black,yellow"
 color-link statusline "black,brightblue"
 color-link tabbar "black,brightblue"
 color-link indent-char "black"
index e7264bc1d5e698f0e34a2c493c052df270879c25..f851f31820d9199286d39d8456f23b1079a68ba3 100644 (file)
@@ -11,6 +11,7 @@ color-link special "22"
 color-link underlined "61,230"
 color-link error "88"
 color-link todo "210"
+color-link hlsearch "0,253"
 color-link statusline "233,229"
 color-link tabbar "233,229"
 color-link indent-char "229"
index 341f3b9c313de2a1f4fa266628336d340aee1da8..f59d9e41f48e5e70dbc254ac5812b9d2dbcb2d8b 100644 (file)
@@ -15,6 +15,7 @@ color-link diff-modified "#FFAF00"
 color-link diff-deleted "#D70000"
 color-link gutter-error "#9B859D"
 color-link gutter-warning "#9B859D"
+color-link hlsearch "#141414,#C0C000"
 color-link identifier "#9B703F"
 color-link identifier.class "#DAD085"
 color-link identifier.var "#7587A6"
index 33bce4de702a82fbec6b86630fa8b6926f7857cc..ec8a9580f86c29fd3f5ef4ea073ece2012e9e1b5 100644 (file)
@@ -12,6 +12,7 @@ color-link special "181,237"
 color-link underlined "188,237"
 color-link error "115,236"
 color-link todo "bold 254,237"
+color-link hlsearch "230,22"
 color-link statusline "186,236"
 color-link tabbar "186,236"
 color-link indent-char "238,237"
index 9ebb8689f223b1c5e1a0830440549c65e596dbc1..ac8b4be3705440d8478badca3236148ce9538f17 100644 (file)
@@ -52,7 +52,7 @@ color support comes in three flavors.
   environment variable `MICRO_TRUECOLOR` to 1.  In addition your terminal
   must support it (usually indicated by setting `$COLORTERM` to `truecolor`).
   True-color colorschemes in micro typically end with `-tc`, such as
-  `solarized-tc`, `atom-dark-tc`, `material-tc`, etc... If true color is not
+  `solarized-tc`, `atom-dark`, `material-tc`, etc... If true color is not
   enabled but a true color colorscheme is used, micro will do its best to
   approximate the colors to the available 256 colors.
 
@@ -69,7 +69,7 @@ themes the most.
 * `darcula`
 * `twilight`
 * `railscast`
-* `bubblegum`
+* `bubblegum` (light theme)
 
 ### 16 color
 
@@ -87,14 +87,14 @@ These may vary widely based on the 16 colors selected for your terminal.
 True color requires your terminal to support it. This means that the
 environment variable `COLORTERM` should have the value `truecolor`, `24bit`,
 or `24-bit`. In addition, to enable true color in micro, the environment
-variable `MICRO_TRUECOLOR` must be set to 1.
+variable `MICRO_TRUECOLOR` must be set to 1. Note that you have to create
+and set this variable yourself.
 
 * `solarized-tc`: this is the solarized colorscheme for true color.
-* `atom-dark-tc`: this colorscheme is based off of Atom's "dark" colorscheme.
+* `atom-dark`: this colorscheme is based off of Atom's "dark" colorscheme.
 * `cmc-tc`: A true colour variant of the cmc theme.  It requires true color to
   look its best. Use cmc-16 if your terminal doesn't support true color.
 * `gruvbox-tc`: The true color version of the gruvbox colorscheme
-* `github-tc`: The true color version of the Github colorscheme
 * `material-tc`: Colorscheme based off of Google's Material Design palette
 
 ## Creating a Colorscheme
@@ -175,6 +175,7 @@ Here is a list of the colorscheme groups that you can use:
 * underlined
 * error
 * todo
+* selection (Color of the text selection)
 * statusline (Color of the statusline)
 * tabbar (Color of the tabbar that lists open files)
 * indent-char (Color of the character which indicates tabs if the option is
@@ -182,11 +183,17 @@ Here is a list of the colorscheme groups that you can use:
 * line-number
 * gutter-error
 * gutter-warning
+* diff-added
+* diff-modified
+* diff-deleted
 * cursor-line
 * current-line-number
 * color-column
 * ignore
+* scrollbar
 * divider (Color of the divider between vertical splits)
+* message (Color of messages in the bottom line of the screen)
+* error-message (Color of error messages in the bottom line of the screen)
 
 Colorschemes must be placed in the `~/.config/micro/colorschemes` directory to
 be used.
index 771f06a2c218b336a2cbdcc1d2e3e2aa23557aef..afcffd291b9f11449feb45fad43903851b51deb0 100644 (file)
@@ -22,13 +22,19 @@ quotes here but these are not necessary when entering the command in micro.
    `key` that already exist.
 
 * `help 'topic'?`: opens the corresponding help topic. If no topic is provided
-   opens the default help screen.
+   opens the default help screen. Help topics are stored as `.md` files in the
+   `runtime/help` directory of the source tree, which is embedded in the final
+   binary.
 
 * `save 'filename'?`: saves the current buffer. If the file is provided it
    will 'save as' the filename.
 
 * `quit`: quits micro.
 
+* `goto 'line'`: jumps to the given line number. A negative number can be
+   passed to jump inward from the end of the file; for example, -5 jumps
+   to the 5th-last line in the file.
+
 * `replace 'search' 'value' 'flags'?`: This will replace `search` with `value`. 
    The `flags` are optional. Possible flags are:
    * `-a`: Replace all occurrences at once
index 37552315afc799303babbe19409f30962544e4f4..9e5ca3a732d2fa2cc68423403d4bf1ab5d95e539 100644 (file)
@@ -31,6 +31,10 @@ Here is a list of terminal emulators and their status:
 
 * `gnome-terminal`: does not support OSC 52.
 
+* `alacritty`: supported.
+
+* `foot`: supported.
+
 **Summary:** If you want copy and paste to work over SSH, then you
 should set `clipboard` to `terminal`, and make sure your terminal
 supports OSC 52.
index b724ab5632a7e596bf9767c396d63395d6ab73ca..a470f786aa0bd2362a3c24dc73953c093bef8f15 100644 (file)
@@ -23,7 +23,7 @@ can change it!
 | Shift-arrows                | Move and select text                                                                      |
 | Alt(Ctrl on Mac)-LeftArrow  | Move to the beginning of the current line                                                 |
 | Alt(Ctrl on Mac)-RightArrow | Move to the end of the current line                                                       |
-| Home                        | Move to the beginning of text on the current line                                                 |
+| Home                        | Move to the beginning of text on the current line                                         |
 | End                         | Move to the end of the current line                                                       |
 | Ctrl(Alt on Mac)-LeftArrow  | Move cursor one word left                                                                 |
 | Ctrl(Alt on Mac)-RightArrow | Move cursor one word right                                                                |
@@ -39,7 +39,7 @@ can change it!
 ### Tabs
 
 | Key     | Description of function   |
-|-------- |-------------------------  |
+|-------- |-------------------------- |
 | Ctrl-t  | Open a new tab            |
 | Alt-,   | Previous tab              |
 | Alt-.   | Next tab                  |
@@ -83,6 +83,8 @@ can change it!
 | Alt-DownArrow                       | Move current line or selected lines down  |
 | Alt-Backspace or Alt-Ctrl-h         | Delete word left                          |
 | Ctrl-a                              | Select all                                |
+| Tab                                 | Indent selected text                      |
+| Shift-Tab                           | Unindent selected text                    |
 
 ### Macros
 
index 9e19a1489fa0ec94e2d20debbafbede5ea7c716e..d2b1883c5614ddf986693bb9e735807fe8cd33bf 100644 (file)
@@ -14,8 +14,8 @@ at the end of this document).
 If `~/.config/micro/bindings.json` does not exist, you can simply create it.
 Micro will know what to do with it.
 
-You can use the alt keys + arrows to move word by word. Ctrl left and right
-move the cursor to the start and end of the line, and ctrl up and down move the
+You can use Ctrl + arrows to move word by word (Alt + arrows for Mac). Alt + left and right
+move the cursor to the start and end of the line (Ctrl + left/right for Mac), and Ctrl + up and down move the
 cursor the start and end of the buffer.
 
 You can hold shift with all of these movement actions to select while moving.
@@ -70,7 +70,7 @@ will execute `InsertTab`.
 
 ## Binding commands
 
-You can also bind a key to execute a command in command mode (see 
+You can also bind a key to execute a command in command mode (see
 `help commands`). Simply prepend the binding with `command:`. For example:
 
 ```json
@@ -88,9 +88,9 @@ instead insert unicode characters. To fix this, do the following:
 Now when you press `Alt-p` the `pwd` command will be executed which will show
 your working directory in the infobar.
 
-You can also bind an "editable" command with `command-edit:`. This means that 
+You can also bind an "editable" command with `command-edit:`. This means that
 micro won't immediately execute the command when you press the binding, but
-instead just place the string in the infobar in command mode. For example, 
+instead just place the string in the infobar in command mode. For example,
 you could rebind `Ctrl-g` to `> help`:
 
 ```json
@@ -105,13 +105,13 @@ cursor placement).
 
 ## Binding raw escape sequences
 
-Only read this section if you are interested in binding keys that aren't on the 
+Only read this section if you are interested in binding keys that aren't on the
 list of supported keys for binding.
 
 One of the drawbacks of using a terminal-based editor is that the editor must
 get all of its information about key events through the terminal. The terminal
 sends these events in the form of escape sequences often (but not always)
-starting with `0x1b`. 
+starting with `0x1b`.
 
 For example, if micro reads `\x1b[1;5D`, on most terminals this will mean the
 user pressed CtrlLeft.
@@ -149,7 +149,7 @@ Coming soon!
 
 ## Unbinding keys
 
-It is also possible to disable any of the default key bindings by use of the 
+It is also possible to disable any of the default key bindings by use of the
 `None` action in the user's `bindings.json` file.
 
 ## Bindable actions and bindable keys
@@ -642,7 +642,7 @@ Note: On some old terminal emulators and on Windows machines, `Ctrl-h` should be
 used for backspace.
 
 Additionally, alt keys can be bound by using `Alt-key`. For example `Alt-a` or
-`Alt-Up`. Micro supports an optional `-` between modifiers like `Alt` and 
+`Alt-Up`. Micro supports an optional `-` between modifiers like `Alt` and
 `Ctrl` so `Alt-a` could be rewritten as `Alta` (case matters for alt bindings).
 This is why in the default keybindings you can see `AltShiftLeft` instead of
 `Alt-ShiftLeft` (they are equivalent).
index 36341b8af64d0a5e986eff58c8977a5b44ced332..4a52121a4a63e4a0278e0e19c53e7cd696f3f485 100644 (file)
@@ -89,8 +89,8 @@ Here are the available options:
     binary.
 
        The colorscheme can be selected from all the files in the 
-       ~/.config/micro/colorschemes/ directory. Micro comes by default with three
-       colorschemes:
+       ~/.config/micro/colorschemes/ directory. Micro comes by default with
+       three colorschemes:
 
        You can read more about micro's colorschemes in the `colors` help topic
        (`help colors`).
@@ -159,11 +159,29 @@ Here are the available options:
        default value: `unknown`. This will be automatically overridden depending
     on the file you open.
 
+* `hlsearch`: highlight all instances of the searched text after a successful
+   search. This highlighting can be temporarily turned off via the
+   `UnhighlightSearch` action (triggered by the Esc key by default) or toggled
+   on/off via the `ToggleHighlightSearch` action. Note that these actions don't
+   change the `hlsearch` setting. As long as `hlsearch` is set to true, the next
+   search will have the highlighting turned on again.
+
+       default value: `false`
+
+* `incsearch`: enable incremental search in "Find" prompt (matching as you type).
+
+       default value: `true`
+
 * `ignorecase`: perform case-insensitive searches.
 
        default value: `true`
 
-* `indentchar`: sets the indentation character.
+* `indentchar`: sets the indentation character. This will not be inserted into
+  files; it is only a visual indicator that whitespace is present. If set to a
+  printing character, it functions as a subset of the "show invisibles"
+  setting available in many other text editors. The color of this character is
+  determined by the `indent-char` field in the current theme rather than the
+  default text color.
 
        default value: ` ` (space)
 
@@ -220,7 +238,7 @@ Here are the available options:
    given line and column 0. Note that with this option enabled it is not possible
    to open a file such as `file.txt:10:5`, where `:10:5` is part of the filename.
    It is also possible to open a file with a certain cursor location by using the
-   `+LINE,COL` flag syntax. See `micro -help` for the command line options.
+   `+LINE:COL` flag syntax. See `micro -help` for the command line options.
 
     default value: `false`
 
@@ -249,7 +267,7 @@ Here are the available options:
     default value: `false`
 
 * `rmtrailingws`: micro will automatically trim trailing whitespaces at ends of
-   lines.
+   lines. Note: This setting overrides `keepautoindent`
 
        default value: `false`
 
@@ -257,9 +275,9 @@ Here are the available options:
 
        default value: `true`
 
-* `relativeruler`: make line numbers display relatively. If set to true, all lines except
-       for the line that the cursor is located will display the distance from the 
-       cursor's line. 
+* `relativeruler`: make line numbers display relatively. If set to true, all
+   lines except for the line that the cursor is located will display the distance
+   from the cursor's line. 
 
        default value: `false` 
 
@@ -315,7 +333,8 @@ Here are the available options:
 
 * `statusformatl`: format string definition for the left-justified part of the
    statusline. Special directives should be placed inside `$()`. Special
-   directives include: `filename`, `modified`, `line`, `col`, `opt`, `bind`.
+   directives include: `filename`, `modified`, `line`, `col`, `lines`,
+   `percentage`, `opt`, `bind`.
    The `opt` and `bind` directives take either an option or an action afterward
    and fill in the value of the option or the key bound to the action.
 
@@ -347,11 +366,24 @@ Here are the available options:
 
        default value: `false`
 
+* `tabhighlight`: inverts the tab characters' (filename, save indicator, etc)
+  colors with respect to the tab bar.
+
+       default value: false
+
+* `tabreverse`: reverses the tab bar colors when active.
+
+       default value: true
+
 * `tabsize`: the size in spaces that a tab character should be displayed with.
 
        default value: `4`
 
-* `tabstospaces`: use spaces instead of tabs.
+* `tabstospaces`: use spaces instead of tabs. Note: This option will be
+   overridden by [the `ftoptions` plugin](https://github.com/zyedidia/micro/blob/master/runtime/plugins/ftoptions/ftoptions.lua)
+   for certain filetypes. To disable this behavior, add `"ftoptions": false` to
+   your config. See [issue #2213](https://github.com/zyedidia/micro/issues/2213)
+   for more details.
 
        default value: `false`
 
@@ -361,6 +393,11 @@ Here are the available options:
 
        default value: `true`
 
+* `wordwrap`: wrap long lines by words, i.e. break at spaces. This option
+   only does anything if `softwrap` is on.
+
+       default value: `false`
+
 * `xterm`: micro will assume that the terminal it is running in conforms to
   `xterm-256color` regardless of what the `$TERM` variable actually contains.
    Enabling this option may cause unwanted effects if your terminal in fact
@@ -423,6 +460,7 @@ so that you can see what the formatting should look like.
     "fastdirty": false,
     "fileformat": "unix",
     "filetype": "unknown",
+    "incsearch": true,
     "ftoptions": true,
     "ignorecase": false,
     "indentchar": " ",
@@ -463,6 +501,8 @@ so that you can see what the formatting should look like.
     "sucmd": "sudo",
     "syntax": true,
     "tabmovement": false,
+    "tabhighlight": true,
+    "tabreverse": false,
     "tabsize": 4,
     "tabstospaces": false,
     "useprimary": true,
index eff48d06ecfb03a85ccc0d3d105fe3ba01b10aa6..c2e202ac84394c368a2f98cae2d8616e49a86d9b 100644 (file)
@@ -3,9 +3,9 @@
 Micro supports creating plugins with a simple Lua system. Plugins are
 folders containing Lua files and possibly other source files placed
 in `~/.config/micro/plug`. The plugin directory (within `plug`) should
-contain at least one Lua file and an `info.json` file. The info file
+contain at least one Lua file and a `repo.json` file. The `repo.json` file
 provides additional information such as the name of the plugin, the
-plugin's website, dependencies, etc... Here is an example info file
+plugin's website, dependencies, etc... [Here is an example `repo.json` file](https://github.com/micro-editor/updated-plugins/blob/master/go-plugin/repo.json)
 from the go plugin, which has the following file structure:
 
 ```
@@ -17,7 +17,7 @@ from the go plugin, which has the following file structure:
 ```
 
 The `go.lua` file contains the main code for the plugin, though the
-code may be distributed across multiple Lua files. The `info.json`
+code may be distributed across multiple Lua files. The `repo.json`
 file contains information about the plugin such as the website,
 description, version, and any requirements. Plugins may also
 have additional files which can be added to micro's runtime files,
@@ -259,6 +259,7 @@ The packages and functions are listed below (in Go type signatures):
     - `MTError` error message.
 
     - `Loc(x, y int) Loc`: creates a new location struct.
+    - `SLoc(line, row int) display.SLoc`: creates a new scrolling location struct.
 
     - `BTDefault`: default buffer type.
     - `BTLog`: log buffer type.
@@ -285,16 +286,17 @@ The packages and functions are listed below (in Go type signatures):
        string is a word character.
     - `String(b []byte) string`: converts a byte array to a string.
     - `RuneStr(r rune) string`: converts a rune to a string.
+    - `Unzip(src, dest string) error`: unzips a file to given folder.
 
 This may seem like a small list of available functions but some of the objects
 returned by the functions have many methods. The Lua plugin may access any
 public methods of an object returned by any of the functions above.
 Unfortunately it is not possible to list all the available functions on this
 page. Please go to the internal documentation at
-https://godoc.org/github.com/zyedidia/micro to see the full list of available
-methods. Note that only methods of types that are available to plugins via
-the functions above can be called from a plugin.  For an even more detailed
-reference see the source code on Github.
+https://pkg.go.dev/github.com/zyedidia/micro/v2/internal to see the full list
+of available methods. Note that only methods of types that are available to
+plugins via the functions above can be called from a plugin. For an even more
+detailed reference see the source code on Github.
 
 For example, with a BufPane object called `bp`, you could call the `Save`
 function in Lua with `bp:Save()`.
@@ -358,6 +360,8 @@ strings
 regexp
 errors
 time
+archive/zip
+net/http
 ```
 
 For documentation for each of these functions, see the Go standard
@@ -397,7 +401,7 @@ There are 6 default plugins that come pre-installed with micro. These are
 
 * `autoclose`: automatically closes brackets, quotes, etc...
 * `comment`: provides automatic commenting for a number of languages
-* `ftoptions`: alters some default options depending on the filetype
+* `ftoptions`: alters some default options (notably indentation) depending on the filetype
 * `linter`: provides extensible linting for many languages
 * `literate`: provides advanced syntax highlighting for the Literate
    programming tool.
index faf78918d7f52b9af4a44451f8e48f3516a032ad..7c7d504620bb6c1f72399bdc26dd5e298581d760 100644 (file)
@@ -53,7 +53,7 @@ following in `bindings.json`:
 
 ```json
 {
-    "Ctrl-r": "redo"
+    "Ctrl-r": "Redo"
 }
 ```
 
index ce49dcaabb7becbadda52f0e5727dfa38f6319f6..bcf91c6c910f3ef8287dd9c364787af7ddeb32be 100644 (file)
@@ -60,13 +60,11 @@ ft["zig"] = "// %s"
 ft["zscript"] = "// %s"
 ft["zsh"] = "# %s"
 
-function onBufferOpen(buf)
-    if buf.Settings["commenttype"] == nil then
-        if ft[buf.Settings["filetype"]] ~= nil then
-            buf.Settings["commenttype"] = ft[buf.Settings["filetype"]]
-        else
-            buf.Settings["commenttype"] = "# %s"
-        end
+function updateCommentType(buf)
+    if ft[buf.Settings["filetype"]] ~= nil and ft[buf.Settings["filetype"]] ~= nil then
+        buf.Settings["commenttype"] = ft[buf.Settings["filetype"]]
+    elseif buf.Settings["commenttype"] == nil then
+        buf.Settings["commenttype"] = "# %s"
     end
 end
 
@@ -79,6 +77,8 @@ function isCommented(bp, lineN, commentRegex)
 end
 
 function commentLine(bp, lineN)
+    updateCommentType(bp.Buf)
+
     local line = bp.Buf:Line(lineN)
     local commentType = bp.Buf.Settings["commenttype"]
     local sel = -bp.Cursor.CurSelection
@@ -100,6 +100,8 @@ function commentLine(bp, lineN)
 end
 
 function uncommentLine(bp, lineN, commentRegex)
+    updateCommentType(bp.Buf)
+
     local line = bp.Buf:Line(lineN)
     local commentType = bp.Buf.Settings["commenttype"]
     local sel = -bp.Cursor.CurSelection
@@ -149,6 +151,8 @@ function toggleCommentSelection(bp, startLine, endLine, commentRegex)
 end
 
 function comment(bp, args)
+    updateCommentType(bp.Buf)
+
     local commentType = bp.Buf.Settings["commenttype"]
     local commentRegex = "^%s*" .. commentType:gsub("%%","%%%%"):gsub("%$","%$"):gsub("%)","%)"):gsub("%(","%("):gsub("%?","%?"):gsub("%*", "%*"):gsub("%-", "%-"):gsub("%.", "%."):gsub("%+", "%+"):gsub("%]", "%]"):gsub("%[", "%["):gsub("%%%%s", "(.*)"):gsub("%s+", "%s*")
 
index 8d5b1537836ace52261427b00cde5dcd44fb314d..0e9b9d94984b2e0329dbde65ece70caf427cf120 100644 (file)
@@ -5,24 +5,24 @@ and parses the resulting output so that the messages and line numbers
 can be viewed from within micro. By default, the plugin supports the
 following filetypes and linters:
 
-* c: gcc
-* c++: g++
-* d: dmd
-* go: go build
-* haskell: hlint
-* java: javac
-* javascript: jshint
-* javascript: eslint
-* literate: lit
-* lua: luacheck
-* nim: nim
-* objective-c: clang
-* python: pyflakes
-* python: mypy
-* python: pylint
-* shell: shfmt
-* swift: swiftc (MacOS and Linux only)
-* yaml: yamllint
+* **c**: gcc
+* **c++**: g++
+* **d**: dmd
+* **go**: go build
+* **haskell**: hlint
+* **java**: javac
+* **javascript**: jshint
+* **javascript**: eslint
+* **literate**: lit
+* **lua**: luacheck
+* **nim**: nim
+* **objective-c**: clang
+* **python**: pyflakes
+* **python**: mypy
+* **python**: pylint
+* **shell**: shfmt
+* **swift**: swiftc (MacOS and Linux only)
+* **yaml**: yamllint
 
 If the linter plugin is enabled and the file corresponds to one of
 these filetypes, each time the buffer is saved, or when the `> lint`
@@ -34,31 +34,31 @@ From inside another micro plugin, the function `linter.makeLinter` can
 be called to register a new filetype. Here is the spec for the `makeLinter`
 function:
 
-`linter.makeLinter(name, filetype, cmd, args, errorformat, os, whitelist, domatch, loffset, coffset, callback)`
+`linter.makeLinter(name, filetype, cmd, args, errorformat, os, whitelist, domatch, loffset, coffset, callback)`
 
-> name: name of the linter
-> filetype: filetype to check for to use linter
-> cmd: main linter process that is executed
-> args: arguments to pass to the linter process
-    use %f to refer to the current file name
-    use %d to refer to the current directory name
-> errorformat: how to parse the linter/compiler process output
+* **name**: name of the linter
+* **filetype**: filetype to check for to use linter
+* **cmd**: main linter process that is executed
+* **args**: arguments to pass to the linter process
+    use %f to refer to the current file name
+    use %d to refer to the current directory name
+* **errorformat**: how to parse the linter/compiler process output
     %f: file, %l: line number, %m: error/warning message
-> os: list of OSs this linter is supported or unsupported on
+* **os**: list of OSs this linter is supported or unsupported on
     optional param, default: {}
-> whitelist: should the OS list be a blacklist (do not run the linter for these OSs)
+* **whitelist**: should the OS list be a blacklist (do not run the linter for these OSs)
            or a whitelist (only run the linter for these OSs)
     optional param, default: false (should blacklist)
-> domatch: should the filetype be interpreted as a lua pattern to match with
+* **domatch**: should the filetype be interpreted as a lua pattern to match with
          the actual filetype, or should the linter only activate on an exact match
     optional param, default: false (require exact match)
-> loffset: line offset will be added to the line number returned by the linter
+* **loffset**: line offset will be added to the line number returned by the linter
          useful if the linter returns 0-indexed lines
     optional param, default: 0
-> coffset: column offset will be added to the col number returned by the linter
+* **coffset**: column offset will be added to the col number returned by the linter
          useful if the linter returns 0-indexed columns
     optional param, default: 0
-> callback: function to call before executing the linter, if it returns
+* **callback**: function to call before executing the linter, if it returns
           false the lint is canceled. The callback is passed the buf.
     optional param, default: nil
 
index 5597657bbb1073f94afed78341c95ed216477ee4..0ce4b2b01e5cc568fb24d540b3540ce6628ba766 100644 (file)
@@ -70,8 +70,9 @@ function preinit()
     makeLinter("dmd", "d", "dmd", {"-color=off", "-o-", "-w", "-wi", "-c", "%f"}, "%f%(%l%):.+: %m")
     makeLinter("eslint", "javascript", "eslint", {"-f","compact","%f"}, "%f: line %l, col %c, %m")
     makeLinter("gobuild", "go", "go", {"build", "-o", devnull, "%d"}, "%f:%l:%c:? %m")
-    -- makeLinter("golint", "go", "golint", {"%f"}, "%f:%l:%c: %m")
-    makeLinter("hlint", "haskell", "hlint", {"%f"}, "%f:%l:%c.-: %m")
+    makeLinter("govet", "go", "go", {"vet"}, "%f:%l:%c: %m")
+    makeLinter("clippy", "rust", "cargo", {"clippy", "--message-format", "short"}, "%f:%l:%c: %m")
+    makeLinter("hlint", "haskell", "hlint", {"%f"}, "%f:%(?%l[,:]%c%)?.-: %m")
     makeLinter("javac", "java", "javac", {"-d", "%d", "%f"}, "%f:%l: error: %m")
     makeLinter("jshint", "javascript", "jshint", {"%f"}, "%f: line %l,.+, %m")
     makeLinter("literate", "literate", "lit", {"-c", "%f"}, "%f:%l:%m", {}, false, true)
@@ -83,9 +84,11 @@ function preinit()
     makeLinter("pylint", "python", "pylint", {"--output-format=parseable", "--reports=no", "%f"}, "%f:%l: %m")
     makeLinter("flake8", "python", "flake8", {"%f"}, "%f:%l:%c: %m")
     makeLinter("shfmt", "shell", "shfmt", {"%f"}, "%f:%l:%c: %m")
+    makeLinter("shellcheck", "shell", "shellcheck", {"-f", "gcc", "%f"}, "%f:%l:%c:.+: %m")
     makeLinter("swiftc", "swift", "xcrun", {"swiftc", "%f"}, "%f:%l:%c:.+: %m", {"darwin"}, true)
-    makeLinter("swiftc", "swift", "swiftc", {"%f"}, "%f:%l:%c:.+: %m", {"linux"}, true)
+    makeLinter("swiftc-linux", "swift", "swiftc", {"%f"}, "%f:%l:%c:.+: %m", {"linux"}, true)
     makeLinter("yaml", "yaml", "yamllint", {"--format", "parsable", "%f"}, "%f:%l:%c:.+ %m")
+    makeLinter("nix-linter", "nix", "nix-linter", {"%f"}, "%m at %f:%l:%c", {"linux"}, true)
 
     config.MakeCommand("lint", function(bp, args)
         bp:Save()
@@ -123,12 +126,11 @@ function runLinter(buf)
             ftmatch = false
         end
 
-        local args = {}
-        for k, arg in pairs(v.args) do
-            args[k] = arg:gsub("%%f", file):gsub("%%d", dir)
-        end
-
         if ftmatch then
+            local args = {}
+            for k, arg in pairs(v.args) do
+                args[k] = arg:gsub("%%f", file):gsub("%%d", dir)
+            end
             lint(buf, k, v.cmd, args, v.errorformat, v.loffset, v.coffset, v.callback)
         end
     end
diff --git a/runtime/runtime.go b/runtime/runtime.go
new file mode 100644 (file)
index 0000000..5dc46a6
--- /dev/null
@@ -0,0 +1,36 @@
+package config
+
+import (
+       "embed"
+       "path/filepath"
+       "strings"
+)
+
+//go:generate go run syntax/make_headers.go syntax
+
+//go:embed colorschemes help plugins syntax
+var runtime embed.FS
+
+func fixPath(name string) string {
+       return strings.TrimLeft(filepath.ToSlash(name), "runtime/")
+}
+
+// AssetDir lists file names in folder
+func AssetDir(name string) ([]string, error) {
+       name = fixPath(name)
+       entries, err := runtime.ReadDir(name)
+       if err != nil {
+               return nil, err
+       }
+       names := make([]string, len(entries), len(entries))
+       for i, entry := range entries {
+               names[i] = entry.Name()
+       }
+       return names, nil
+}
+
+// Asset returns a file content
+func Asset(name string) ([]byte, error) {
+       name = fixPath(name)
+       return runtime.ReadFile(name)
+}
index 15310ee82053fced3984192caa4b0597e3591a20..e0bea2ceaa8fb1a48ba1cb584fbbb98f1b8b95b3 100644 (file)
@@ -5,8 +5,9 @@ detect:
 
 rules:
     - identifier: "\\b[A-Z_][0-9A-Z_]+\\b"
-    - type: "\\b(float|double|char|int|short|long|sizeof|enum|void|static|const|struct|union|typedef|extern|(un)?signed|inline)\\b"
+    - type: "\\b(auto|float|double|char|int|short|long|sizeof|enum|void|static|const|struct|union|typedef|extern|(un)?signed|inline)\\b"
     - type: "\\b((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\\b"
+    - type: "\\b[a-z_][0-9a-z_]+(_t|_T)\\b"
     - type.extended: "\\b(bool)\\b"
     - statement: "\\b(volatile|register)\\b"
     - statement: "\\b(for|if|while|do|else|case|default|switch)\\b"
@@ -18,7 +19,12 @@ rules:
       # Operator Color
     - symbol.operator: "([.:;,+*|=!\\%]|<|>|/|-|&)"
     - symbol.brackets: "[(){}]|\\[|\\]"
-    - constant.number: "(\\b[0-9]+\\b|\\b0x[0-9A-Fa-f]+\\b)"
+      # Integer Constants
+    - constant.number: "(\\b([1-9][0-9]*|0[0-7]*|0[Xx][0-9A-Fa-f]+|0[Bb][01]+)([Uu]?[Ll][Ll]?|[Ll][Ll]?[Uu]?)?\\b)"
+      # Decimal Floating Constants
+    - constant.number: "(\\b(([0-9]*[.][0-9]+|[0-9]+[.][0-9]*)([Ee][+-]?[0-9]+)?|[0-9]+[Ee][+-]?[0-9]+)[FfLl]?\\b)"
+      # Hexadecimal Floating Constants
+    - constant.number: "(\\b0[Xx]([0-9A-Za-z]*[.][0-9A-Za-z]+|[0-9A-Za-z]+[.][0-9A-Za-z]*)[Pp][+-]?[0-9]+[FfLl]?\\b)"
     - constant.number: "NULL"
 
     - constant.string:
diff --git a/runtime/syntax/conf.yaml b/runtime/syntax/conf.yaml
deleted file mode 100644 (file)
index 0fbefa6..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-filetype: conf
-
-detect:
-    filename: "\\.c[o]?nf$"
-
-rules:
-    - constant.string:
-        start: "\""
-        end: "\""
-        skip: "\\\\."
-        rules: []
-
-    - comment:
-        start: "#"
-        end: "$"
-        rules: []
-
index c213baa3157fdd675d42fbffd30850090e2ba8b2..0da1da6f5536bc048db612d562fc0caa79ece54c 100644 (file)
@@ -7,6 +7,7 @@ rules:
     - identifier: "\\b[A-Z_][0-9A-Z_]*\\b"
     - type: "\\b(float|double|bool|char|int|short|long|enum|void|struct|union|typedef|(un)?signed|inline)\\b"
     - type: "\\b(((s?size)|((u_?)?int(8|16|32|64|ptr))|char(8|16|32))_t|wchar_t)\\b"
+    - type: "\\b[a-z_][0-9a-z_]+(_t|_T)\\b"
     - type: "\\b(final|override)\\b"
     - type.keyword: "\\b(auto|volatile|const(expr|eval|init)?|mutable|register|thread_local|static|extern|decltype|explicit|virtual)\\b"
     - statement: "\\b(class|namespace|template|typename|this|friend|using|public|protected|private|noexcept)\\b"
index db9fd6951414b17f78f5bc0f991ad03988eb8b59..de2441e62e77c282efd5a2e0253de987b5db1b1c 100644 (file)
@@ -10,7 +10,7 @@ rules:
     # Octal integer literals are deprecated
     - error: "(0[0-7_]*)(L[uU]?|[uU]L?)?"
     # Decimal integer literals
-    - constant.number: "([0-9]|[1-9][0-9_]*)(L[uU]?|[uU]L?)?"
+    - constant.number: "([0-9]|[1-9][0-9_]*)(L[uU]?|[uU]L?)?\\b"
     # Binary integer literals
     - constant: "(0[bB][01_]*)(L[uU]?|[uU]L?)?"
     # Decimal float literals
index c75409b90fd7bbe2e4aea544fdb88c1358abaaf9..0eb47de0ae4c82dc5af61a025cfd6172748e0d8b 100644 (file)
@@ -38,4 +38,8 @@ rules:
         start: "\\(\\*"
         end: "\\*\\)"
         rules:
-            - todo: "(TODO|FIXME|WONTFIX|NOTE|HACK):?"
\ No newline at end of file
+            - todo: "(TODO|FIXME|WONTFIX|NOTE|HACK):?"
+    - comment:
+        start: "%"
+        end: "$"
+        rules: []
index b30e5443cce5151f3afee8bb28677218c53a30f8..9e3ed1735d0e6f575c66491b607bf680c799e8e6 100644 (file)
@@ -5,18 +5,18 @@ detect:
 
 rules:
     - type:  "(?i)\\b(action|advance|all|allocatable|allocated|any|apostrophe)\\b"
-    - type:  "(?i)\\b(append|asis|assign|assignment|associated|character|common)\\b"
+    - type:  "(?i)\\b(append|asis|assign|assignment|associated|bind|character|common)\\b"
     - type:  "(?i)\\b(complex|data|default|delim|dimension|double precision)\\b"
-    - type:  "(?i)\\b(elemental|epsilon|external|file|fmt|form|format|huge)\\b"
+    - type:  "(?i)\\b(elemental|enum|enumerator|epsilon|external|file|fmt|form|format|huge)\\b"
     - type:  "(?i)\\b(implicit|include|index|inquire|integer|intent|interface)\\b"
     - type:  "(?i)\\b(intrinsic|iostat|kind|logical|module|none|null|only)\\\\b"
     - type:  "(?i)\\b(operator|optional|pack|parameter|pointer|position|private)\\b"
     - type:  "(?i)\\b(program|public|real|recl|recursive|selected_int_kind)\\b"
-    - type:  "(?i)\\b(selected_real_kind|subroutine|status)\\b"
+    - type:  "(?i)\\b(selected_real_kind|subroutine|status|module|function|logical)\\b"
 
     - constant:  "(?i)\\b(abs|achar|adjustl|adjustr|allocate|bit_size|call|char)\\b" 
     - constant:  "(?i)\\b(close|contains|count|cpu_time|cshift|date_and_time)\\b" 
-    - constant:  "(?i)\\b(deallocate|digits|dot_product|eor|eoshift|function|iachar)\\b" 
+    - constant:  "(?i)\\b(deallocate|digits|dot_product|eor|eoshift|iachar)\\b" 
     - constant:  "(?i)\\b(iand|ibclr|ibits|ibset|ichar|ieor|iolength|ior|ishft|ishftc)\\b" 
     - constant:  "(?i)\\b(lbound|len|len_trim|matmul|maxexponent|maxloc|maxval|merge)\\b" 
     - constant:  "(?i)\\b(minexponent|minloc|minval|mvbits|namelist|nearest|nullify)\\b" 
@@ -24,16 +24,18 @@ rules:
     - constant:  "(?i)\\b(random_number|random_seed|range|read|readwrite|replace)\\b" 
     - constant:  "(?i)\\b(reshape|rewind|save|scan|sequence|shape|sign|size|spacing)\\b" 
     - constant:  "(?i)\\b(spread|sum|system_clock|target|transfer|transpose|trim)\\b" 
-    - constant:  "(?i)\\b(ubound|unpack|verify|write|tiny|type|use|yes)\\b"
+    - constant:  "(?i)\\b(ubound|unpack|verify|write|tiny|type|use|yes|true|false|not)\\b"
+
+    - constant.number: "\\b([0-9]+)\\b"
 
     - statement: "(?i)\\b(.and.|case|do|else|else?if|else?where|end|end?do|end?if)\\b"
     - statement: "(?i)\\b(end?select|.eqv.|forall|if|lge|lgt|lle|llt|.neqv.|.not.)\\b"
-    - statement: "(?i)\\b(.or.|repeat|select case|then|where|while)\\b"
+    - statement: "(?i)\\b(or|and|repeat|select|case|then|where|while|import)\\b"
 
     - special: "(?i)\\b(continue|cycle|exit|go?to|result|return)\\b"
 
       #Operator Color
-    - symbol.operator: "[.:;,+*|=!\\%]|/|-|&"
+    - symbol.operator: "[.:;,+*|=!\\%]|/|-|>|<|&"
 
       #Parenthetical Color
     - symbol.bracket: "[(){}]|\\[|\\]"
@@ -60,4 +62,3 @@ rules:
         end: "$"
         rules:
             - todo: "(TODO|XXX|FIXME):?"
-
diff --git a/runtime/syntax/freebsd-kernel.yaml b/runtime/syntax/freebsd-kernel.yaml
new file mode 100644 (file)
index 0000000..2e42568
--- /dev/null
@@ -0,0 +1,14 @@
+filetype: freebsd-kernel
+
+detect:
+    filename: "GENERIC$"
+
+rules:
+    - identifier: "^(cpu|ident|options|makeoptions|device|include)"
+    - statement: "\\s\\S*"
+
+    - comment:
+        start: "#"
+        end: "$"
+        rules:
+            - todo: "(TODO|XXX|FIXME):?"
diff --git a/runtime/syntax/gemini.yaml b/runtime/syntax/gemini.yaml
new file mode 100644 (file)
index 0000000..b3ea7bf
--- /dev/null
@@ -0,0 +1,19 @@
+filetype: gemini
+
+detect:
+    filename: "\\.(gmi|gemini)$"
+
+rules:
+      # link lines
+    - constant: "^=>[[:space:]].*"
+      # preformatted text lines
+    - special:
+        start: "^```"
+        end: "^```"
+        rules: []
+      # heading lines
+    - special:  "^#{1,3}.*"
+      # unordered list items
+    - identifier: "^\\*[[:space:]]"
+      # quote lines
+    - statement:  "^>.*"
index 9f8ef0d9dfb077d6037bd0ff35d606b1d559693f..07a71c26e0af5a5412cb169f9884964edafdf0e4 100644 (file)
@@ -1,7 +1,7 @@
 filetype: git-commit
 
 detect:
-    filename: "^(.*[\\/])?(COMMIT_EDITMSG|TAG_EDITMSG)$"
+    filename: "^(.*[\\/])?(COMMIT_EDITMSG|TAG_EDITMSG|MERGE_MSG|git-rebase-todo)$"
 
 rules:
     # File changes
index e2dd588a3d92cf727f182e1787e40bc5f4633f75..0d31d13a3378c2cdec5c7b6265e0c404a6d19fd3 100644 (file)
@@ -5,7 +5,7 @@ detect:
 
 rules:
     # Rebase commands
-    - statement: "^(p(ick)?|r(eword)?|e(dit)?|s(quash)?|f(ixup)?|x|exec|d(rop)?)\\b"
+    - statement: "^(p(ick)?|r(eword)?|e(dit)?|s(quash)?|f(ixup)?|x|exec|b(reak)?|d(rop)?|l(abel)?|t|reset|m(erge)?)\\b"
     # Commit IDs
     - identifier: "\\b([0-9a-f]{7,40})\\b"
 
diff --git a/runtime/syntax/gnuplot.yaml b/runtime/syntax/gnuplot.yaml
new file mode 100644 (file)
index 0000000..cf324f6
--- /dev/null
@@ -0,0 +1,15 @@
+filetype: gnuplot
+
+detect:
+    filename: "\\.(gnu|gpi|plt|gp)$"
+
+rules:
+    - statement: "\\b(set|unset|plot|splot|replot|if|else|do|for|while|fit)\\b"
+    - symbol.operator: "[-+/*=<>?:!~%&|^$]"
+    - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b"
+    
+    - comment:
+        start: "#"
+        end: "$"
+        rules:
+            - todo: "TODO:?"
old mode 100755 (executable)
new mode 100644 (file)
diff --git a/runtime/syntax/hc.yaml b/runtime/syntax/hc.yaml
new file mode 100644 (file)
index 0000000..1d085d2
--- /dev/null
@@ -0,0 +1,52 @@
+filetype: hc
+
+detect:
+    filename: "(\\.(hc|HC)$|\\.(hh|HH)$|\\.ii?$|\\.(def)$)"
+
+rules:
+    - identifier: "\\b[A-Z_][0-9A-Z_]+\\b"
+    - type: "\\b(F64|I8|U8|I16|U16|I32|U32|I64|U64|sizeof|enum|U0|static|extern|struct|union|class|intern|public|argc|argv|asm)\\b"
+    
+    - statement: "\\b(for|if|while|do|else|case|default|switch)\\b"
+    - statement: "\\b(try|catch|throw|goto|continue|break|return)\\b"
+    - preproc: "^[[:space:]]*#[[:space:]]*(define|pragma|include|(un|ifn?)def|endif|el(if|se)|if|help_index|ifjit|ifaot|exe)"
+     
+      # Operator Color
+    - symbol.operator: "([.:;,+*|=!\\%]|<|>|/|-|&)"
+    - symbol.brackets: "[(){}]|\\[|\\]"
+      # Integer Constants
+    - constant.number: "(\\b([1-9][0-9]*|0[0-7]*|0[Xx][0-9A-Fa-f]+|0[Bb][01]+)([Uu]?[Ll][Ll]?|[Ll][Ll]?[Uu]?)?\\b)"
+      # Decimal Floating Constants
+    - constant.number: "(\\b(([0-9]*[.][0-9]+|[0-9]+[.][0-9]*)([Ee][+-]?[0-9]+)?|[0-9]+[Ee][+-]?[0-9]+)[FfLl]?\\b)"
+      # Hexadecimal Floating Constants
+    - constant.number: "(\\b0[Xx]([0-9A-Za-z]*[.][0-9A-Za-z]+|[0-9A-Za-z]+[.][0-9A-Za-z]*)[Pp][+-]?[0-9]+[FfLl]?\\b)"
+    - constant.number: "NULL"
+    - constant.number: "TRUE"
+    - constant.number: "FALSE"
+
+    - constant.string:
+        start: "\""
+        end: "\""
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "\\\\([\"'abfnrtv\\\\]|[0-3]?[0-7]{1,2}|x[0-9A-Fa-f]{1,2}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})"
+
+    - constant.string:
+        start: "'"
+        end: "'"
+        skip: "\\\\."
+        rules:
+            - error: "..+"
+            - constant.specialChar: "\\\\([\"'abfnrtv\\\\]|[0-3]?[0-7]{1,2}|x[0-9A-Fa-f]{1,2}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})"
+
+    - comment:
+        start: "//"
+        end: "$"
+        rules:
+            - todo: "(TODO|XXX|FIXME):?"
+
+    - comment:
+        start: "/\\*"
+        end: "\\*/"
+        rules:
+            - todo: "(TODO|XXX|FIXME):?"
index 467f3820112d86eae0793f601f76dac6fe136781..4006931be7b66b3b65a6f9be5cb852a8a504f3ca 100644 (file)
@@ -22,7 +22,7 @@ rules:
     - statement: "\\b(get|if|import|from|in|of|instanceof|let|new|reject|resolve|return)\\b"
     - statement: "\\b(set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\\b"
     # reserved but unassigned
-    - error: "\\b(enum|implements|interface|package|private|protected|public)"
+    - error: "\\b(enum|implements|interface|package|private|protected|public)\\b"
     - constant: "\\b(globalThis|Infinity|null|undefined|NaN)\\b"
     - constant: "\\b(null|undefined|NaN)\\b"
     - constant: "\\b(true|false)\\b"
index 9c33560d6c1724fd75f9a8821661fc432816ba08..fda0e333dd8b822db09698d9887496f39e546385 100644 (file)
@@ -19,30 +19,40 @@ rules:
       # decorators
     - identifier.macro: "@[A-Za-z0-9_]+"
       # operators
-    - symbol.operator: "[-+*/|=%<>&~^]|\\b(in|isa|where)\\b"
+    - symbol.operator: "[:+*|=!%~<>/\\-?&\\\\÷∈∉∘]|\\b(in|isa|where)\\b"
+      # for some reason having ^ in the same regex with the other operators broke things
+    - symbol.operator: "\\^"
       # parentheses
     - symbol.brackets: "([(){}]|\\[|\\])"
       # numbers
     - constant.number: "\\b([0-9]+(_[0-9]+)*|0x[0-9a-fA-F]+(_[0-9a-fA-F]+)*|0b[01]+(_[01]+)*|0o[0-7]+(_[0-7]+)*|Inf(16|32|64)?|NaN(16|32|64)?)\\b"
 
-    - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^']){1}'"
-
     - constant.string:
         start: "\"\"\""
         end: "\"\"\""
         rules: []
 
     - constant.string:
-        start: "\"[^\"]|\"$"
+        start: "\""
         end: "\""
-        rules: []
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "\\\\([\"'abfnrtv\\\\]|[0-3]?[0-7]{1,2}|x[0-9A-Fa-f]{1,2}|u[0-9A-Fa-f]{1,4}|U[0-9A-Fa-f]{1,8})"
 
-    - comment:
-        start: "#[^=]|#$"
-        end: "$"
-        rules: []
+    - constant.string:
+        start: "'"
+        end: "'"
+        skip: "\\\\."
+        rules:
+            - error: "..+"
+            - constant.specialChar: "\\\\([\"'abfnrtv\\\\]|[0-3]?[0-7]{1,2}|x[0-9A-Fa-f]{1,2}|u[0-9A-Fa-f]{1,4}|U[0-9A-Fa-f]{1,8})"
 
     - comment:
         start: "#="
         end: "=#"
         rules: []
+
+    - comment:
+        start: "#"
+        end: "$"
+        rules: []
index ac75ab94f6c6a94e013440c5156c35e3bb0c8969..5c71173594e108b5719e7ccdb3074f43382de7d1 100644 (file)
@@ -1,7 +1,7 @@
 filetype: lisp
 
 detect: 
-    filename: "(emacs|zile)$|\\.(el|li?sp|scm|ss)$"
+    filename: "(emacs|zile)$|\\.(el|li?sp|scm|ss|rkt)$"
 
 rules:
     - default: "\\([a-z-]+"
index 934f6a317508b665647314dd5e2b404c63393c35..965ca956a722d484ede64fcc23265f8a08ae3fcd 100644 (file)
@@ -4,12 +4,12 @@ detect:
     filename: "\\.lua$"
 
 rules:
-    - statement: "\\b(do|end|while|break|repeat|until|if|elseif|then|else|for|in|function|local|return)\\b"
+    - statement: "\\b(do|end|while|break|repeat|until|if|elseif|then|else|for|in|function|local|return|goto)\\b"
     - statement: "\\b(not|and|or)\\b"
     - statement: "\\b(debug|string|math|table|io|coroutine|os|utf8|bit32)\\b\\."
     - statement: "\\b(_ENV|_G|_VERSION|assert|collectgarbage|dofile|error|getfenv|getmetatable|ipairs|load|loadfile|module|next|pairs|pcall|print|rawequal|rawget|rawlen|rawset|require|select|setfenv|setmetatable|tonumber|tostring|type|unpack|xpcall)\\s*\\("
     - identifier: "io\\.\\b(close|flush|input|lines|open|output|popen|read|tmpfile|type|write)\\b"
-    - identifier: "math\\.\\b(abs|acos|asin|atan2|atan|ceil|cosh|cos|deg|exp|floor|fmod|frexp|huge|ldexp|log10|log|max|maxinteger|min|mininteger|modf|pi|pow|rad|random|randomseed|sinh|sqrt|tan|tointeger|type|ult)\\b"
+    - identifier: "math\\.\\b(abs|acos|asin|atan2|atan|ceil|cosh|cos|deg|exp|floor|fmod|frexp|huge|ldexp|log10|log|max|maxinteger|min|mininteger|modf|pi|pow|rad|random|randomseed|sin|sqrt|tan|tointeger|type|ult)\\b"
     - identifier: "os\\.\\b(clock|date|difftime|execute|exit|getenv|remove|rename|setlocale|time|tmpname)\\b"
     - identifier: "package\\.\\b(config|cpath|loaded|loadlib|path|preload|seeall|searchers|searchpath)\\b"
     - identifier: "string\\.\\b(byte|char|dump|find|format|gmatch|gsub|len|lower|match|pack|packsize|rep|reverse|sub|unpack|upper)\\b"
@@ -22,29 +22,30 @@ rules:
     - identifier: "\\b(self|arg)\\b"
     - constant: "\\b(false|nil|true)\\b"
     - statement: "(\\b(dofile|require|include)|%q|%!|%Q|%r|%x)\\b"
-    - constant.number: "\\b([0-9]+)\\b"
+
     - symbol.brackets: "[(){}\\[\\]]"
     - symbol: "(\\*|//|/|%|\\+|-|\\^|>|>=|<|<=|~=|=|[\\.]{2,3}|#)"
 
+    - constant.number: "\\b((0[xX](([0-9A-Fa-f]+\\.[0-9A-Fa-f]*)|(\\.?[0-9A-Fa-f]+))([pP][-+]?[0-9]+)?)|((([0-9]+\\.[0-9]*)|(\\.?[0-9]+))([eE][-+]?[0-9]+)?))"    
+
     - constant.string:
         start: "\""
         end: "\""
         skip: "\\\\."
         rules:
-            - constant.specialChar: "\\\\."
+            - constant.specialChar: "\\\\([abfnrtvz\\'\"]|[0-9]{1,3}|x[0-9a-fA-F][0-9a-fA-F]|u\\{[0-9a-fA-F]+\\})"
 
     - constant.string:
         start: "'"
         end: "'"
         skip: "\\\\."
         rules:
-            - constant.specialChar: "\\\\."
+            - constant.specialChar: "\\\\([abfnrtvz\\'\"]|[0-9]{1,3}|x[0-9a-fA-F][0-9a-fA-F]|u\\{[0-9a-fA-F]+\\})"
 
     - constant.string:
         start: "\\[\\["
         end: "\\]\\]"
-        rules:
-            - constant.specialChar: "\\\\."
+        rules: []
 
 # support first few lengths of "long brackets" explicitly
 # brackets longer than that will give false positives
@@ -52,28 +53,22 @@ rules:
     - constant.string:
         start: "\\[=\\["
         end: "\\]=\\]"
-        rules:
-            - constant.specialChar: "\\\\."
+        rules: []
 
     - constant.string:
         start: "\\[==\\["
         end: "\\]==\\]"
-        rules:
-            - constant.specialChar: "\\\\."
+        rules: []
 
     - constant.string:
         start: "\\[===\\["
         end: "\\]===\\]"
-        rules:
-            - constant.specialChar: "\\\\."
+        rules: []
 
     - constant.string:
         start: "\\[====+\\["
         end: "\\]====+\\]"
-        rules:
-            - constant.specialChar: "\\\\."
-
-    - special: "\\\\[0-7][0-7][0-7]|\\\\x[0-9a-fA-F][0-9a-fA-F]|\\\\[abefnrs]|(\\\\c|\\\\C-|\\\\M-|\\\\M-\\\\C-)."
+        rules: []
 
     - comment.block:
         start: "\\-\\-\\[\\["
index 4717a32b1445cc5ce29944631dd3da4bdd8b7dff..e04d806272793c0cd6136ee74b40a7ffa426a741 100644 (file)
@@ -1,3 +1,5 @@
+//+build ignore
+
 package main
 
 import (
index bcf629d71c7221515c8b200b1365ecbf5c75cb19..7ea4326c85f27c5382c4892497ffc17c710bf8ef 100644 (file)
@@ -1,7 +1,7 @@
 filetype: markdown
 
 detect:
-    filename: "\\.(md|mkd|mkdn|markdown)$"
+    filename: "\\.(livemd|md|mkd|mkdn|markdown)$"
 
 rules:
     # Tables (Github extension)
index 2478774fe849462f9907c9e4d206a63227b85d43..625580caba3943f0043680aea274e6a4abb88350 100644 (file)
@@ -10,7 +10,7 @@ rules:
     - symbol.operator: "[=\\+\\-\\*/<>@\\$~&%\\|!\\?\\^\\.:\\\\]+"
     - special: "\\{\\.|\\.\\}|\\[\\.|\\.\\]|\\(\\.|\\.\\)|;|,|`"
     - statement: "\\.\\."
-    - type: "\\b(int|cint|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|enum|string|cstring|array|openarray|seq|varargs|tuple|object|set|void|auto|cshort|range|nil|T|untyped|typedesc)\\b"
+    - type: "\\b(int|cint|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|enum|string|cstring|cstringArray|cdouble|csize_t|pointer|array|openarray|seq|varargs|tuple|object|set|void|auto|cshort|clong|range|nil|T|untyped|typedesc)\\b"
     - type: "'[iI](8|16|32|64)?\\b|'[uU](8|16|32|64)?\\b|'[fF](32|64|128)?\\b|'[dD]\\b"
     - constant.number: "\\b[0-9]+\\b"
     - constant.number: "\\b0[xX][0-9A-Fa-f][0-9_A-Fa-f]+\\b"
@@ -18,7 +18,7 @@ rules:
     - constant.number: "\\b0[bB][01][01_]+\\b"
     - constant.number: "\\b[0-9_]((\\.?)[0-9_]+)?[eE][+\\-][0-9][0-9_]+\\b"
     - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'"
-    - comment: "[[:space:]]*#.*$"
+    - comment: "[[:space:]]*(?:[^\\\\]|^)#.*$"
     - comment:
         start: "\\#\\["
         end: "\\]\\#"
diff --git a/runtime/syntax/nix.yaml b/runtime/syntax/nix.yaml
new file mode 100644 (file)
index 0000000..a60780a
--- /dev/null
@@ -0,0 +1,32 @@
+filetype: nix
+
+detect:
+    filename: "\\.nix$"
+
+rules:
+    - special: "\\b(Ellipsis|null|self|super|true|false|abort)\\b"
+    - statement: "\\b(let|in|with|import|rec|inherit)\\b"
+    - symbol.operator: "([~^.:;,+*|=!\\%@]|<|>|/|-|&)"
+    - symbol.brackets: "([(){}]|\\[|\\])"
+
+    - constant.number: "\\b[0-9](_?[0-9])*(\\.([0-9](_?[0-9])*)?)?(e[0-9](_?[0-9])*)?\\b"
+
+    - constant.string:
+        start: "\""
+        end: "\""
+        rules: []
+
+    - constant.string:
+        start: "''"
+        end: "''"
+        rules: []
+
+    - comment:
+        start: "#"
+        end: "$"
+        rules: []
+
+    - comment:
+        start: "/\\*"
+        end: "\\*/"
+        rules: []
diff --git a/runtime/syntax/nu.yaml b/runtime/syntax/nu.yaml
new file mode 100644 (file)
index 0000000..827f70e
--- /dev/null
@@ -0,0 +1,114 @@
+filetype: nu
+
+detect:
+    filename: "\\.nu$"
+
+rules:
+    - symbol: "[-+/*=<>!~%?:&|]"
+    # https://www.nushell.sh/book/command_reference.html
+    - statement: "\\b(agg-groups|agg|alias|all-false|all-true|all?|ansi gradient)\\b"
+    - statement: "\\b(ansi strip|ansi|any?|append|append|arg-max)\\b"
+    - statement: "\\b(arg-min|arg-sort|arg-true|arg-unique|as-date)\\b"
+    - statement: "\\b(as-datetime|as|benchmark|build-string|cache|cal|cd)\\b"
+    - statement: "\\b(char|clear|col|collect|columns|compact|complete)\\b"
+    - statement: "\\b(concatenate|config|config env|config nu|contains)\\b"
+    - statement: "\\b(count|count-null|cp|cumulative|date format|date humanize)\\b"
+    - statement: "\\b(date list-timezone|date now|date to-record|date to-table)\\b"
+    - statement: "\\b(date to-timezone|date|db and|db as|db col|db collect)\\b"
+    - statement: "\\b(db describe|db fn|db from|db group-by|db join|db limit)\\b"
+    - statement: "\\b(db open|db or|db order-by|db over|db query|db schema)\\b"
+    - statement: "\\b(db select|db testing|db where|db|debug|decode)\\b"
+    - statement: "\\b(def-env|default|def|describe|describe|detect columns)\\b"
+    - statement: "\\b(df-not|do|drop|drop|drop column|drop nth|drop-duplicates)\\b"
+    - statement: "\\b(drop-nulls|dtypes|du|each while|each|echo|empty?)\\b"
+    - statement: "\\b(enter|env|error make|every|exec|exit|explode)\\b"
+    - statement: "\\b(export alias|export def|export def-env|export env)\\b"
+    - statement: "\\b(export extern|export|expr-not|extern|fetch|fill-na)\\b"
+    - statement: "\\b(fill-null|filter-with|find|first|flatten)\\b"
+    - statement: "\\b(fmt|format filesize|format|for|from csv|from eml)\\b"
+    - statement: "\\b(from ics|from ini|from json|from nuon|from ods|from ssv)\\b"
+    - statement: "\\b(from toml|from tsv|from url|from vcf|from xlsx|from xml)\\b"
+    - statement: "\\b(from yaml|from yml|from|get-day|get-hour|get-minute)\\b"
+    - statement: "\\b(get-month|get-nanosecond|get-ordinal|get-second|get-week)\\b"
+    - statement: "\\b(get-weekday|get-year|get|glob|grid|group-by)\\b"
+    - statement: "\\b(group|gstat|g|hash base64|hash md5|hash sha256|hash)\\b"
+    - statement: "\\b(headers|help|hide|histogram|history|if|ignore)\\b"
+    - statement: "\\b(inc|input|insert|into binary|into bool|into datetime|into decimal)\\b"
+    - statement: "\\b(into duration|into filesize|into int|into string|into)\\b"
+    - statement: "\\b(is-admin|is-duplicated|is-in|is-not-null)\\b"
+    - statement: "\\b(is-null|is-unique|join|keep|keep until)\\b"
+    - statement: "\\b(keep while|keybindings default|keybindings listen|keybindings list)\\b"
+    - statement: "\\b(keybindings|kill|last|length|let-env|let)\\b"
+    - statement: "\\b(lines|list|lit|load-env|ls|ls-df|match|math abs)\\b"
+    - statement: "\\b(math avg|math ceil|math eval|math floor|math max)\\b"
+    - statement: "\\b(math median|math min|math mode|math product|math round)\\b"
+    - statement: "\\b(math sqrt|math stddev|math sum|math variance|math|max)\\b"
+    - statement: "\\b(mean|median|melt|merge|metadata)\\b"
+    - statement: "\\b(min|mkdir|module|move|mv|n|n-unique|n-unique)\\b"
+    - statement: "\\b(nth|nu-highlight|open|open-df|otherwise|overlay)\\b"
+    - statement: "\\b(overlay add|overlay list|overlay new|overlay remove|p)\\b"
+    - statement: "\\b(par-each|parse|path basename|path dirname|path exists)\\b"
+    - statement: "\\b(path expand|path join|path parse|path relative-to|path split)\\b"
+    - statement: "\\b(path type|path|pivot|post|prepend|print|ps|quantile)\\b"
+    - statement: "\\b(quantile|query json|query web|query xml|query|random bool)\\b"
+    - statement: "\\b(random chars|random decimal|random dice|random integer)\\b"
+    - statement: "\\b(random uuid|random|range|reduce|register|reject|rename)\\b"
+    - statement: "\\b(replace|replace-all|reverse|reverse|rm|roll down)\\b"
+    - statement: "\\b(roll left|roll right|roll up|rolling|roll|rotate)\\b"
+    - statement: "\\b(run-external|sample|save|select|select|seq|seq char)\\b"
+    - statement: "\\b(seq date|set|set-with-idx|shape|shells|shift|shuffle)\\b"
+    - statement: "\\b(size|skip until|skip while|skip|sleep|slice|sort)\\b"
+    - statement: "\\b(sort-by|source|split chars|split column|split row)\\b"
+    - statement: "\\b(split-by|split|std|std|str camel-case|str capitalize)\\b"
+    - statement: "\\b(str collect|str contains|str downcase|str ends-with|str find-replace)\\b"
+    - statement: "\\b(str index-of|str kebab-case|str length|str lpad|str pascal-case)\\b"
+    - statement: "\\b(str replace|str reverse|str rpad|str screaming-snake-case)\\b"
+    - statement: "\\b(str snake-case|str starts-with|str substring|str title-case)\\b"
+    - statement: "\\b(str to-datetime|str to-decimal|str to-int|str trim|str upcase)\\b"
+    - statement: "\\b(str-lengths|str-slice|strftime|str|sum|sys|table)\\b"
+    - statement: "\\b(take until|take while|take|term size|to csv)\\b"
+    - statement: "\\b(to html|to json|to md|to nuon|to text|to toml|to tsv)\\b"
+    - statement: "\\b(to url|to xml|to yaml|to-csv|to-df|to-dummies|to-lazy)\\b"
+    - statement: "\\b(to-lowercase|to-nu|to-parquet|to-uppercase|touch|to)\\b"
+    - statement: "\\b(transpose|tutor|unalias|uniq|unique|update|update cells)\\b"
+    - statement: "\\b(upsert|url host|url path|url query|url scheme|url)\\b"
+    - statement: "\\b(use|value-counts|var|version|view-source|watch)\\b"
+    - statement: "\\b(when|where|which|window|with-column|with-env|wrap)\\b"
+    # https://www.nushell.sh/book/types_of_data.html#booleans
+    - constant: "\\b(false|true)\\b"
+    - constant.number: "\\b[-+]?([1-9][0-9])*\\b"
+    # https://www.nushell.sh/book/types_of_data.html#binary-data
+    - constant.number: "\\b[-+]?(0(x|b|o)\\[[0-9a-fA-F ]+\\])"
+    # https://www.nushell.sh/book/types_of_data.html#file-sizes
+    - constant.number: "\\b[-+]?([0-9]+[BbMmGgTtPp][i]?[Bb]?)?\\b"
+    # https://www.nushell.sh/book/types_of_data.html#duration
+    - constant.number: "\\b[-+]?([0-9]+[num]?[s])?\\b"
+    - constant.number: "\\b[-+]?([0-9]+(sec|min|hr|day|wk))?\\b"
+    # https://www.nushell.sh/book/types_of_data.html#dates
+    - constant.number: "\\b([0-9]+[-][0-9]+[-][0-9]+([T][0-9]+[:][0-9]+[:][0-9]+)?([\\+][0-9]+[:][0-9]+)?)\\b"
+    # https://www.nushell.sh/book/types_of_data.html#ranges
+    - constant.number: "([0-9]+(\\.\\.)[0-9]+)?"
+    # https://www.nushell.sh/book/types_of_data.html#open-ended-ranges
+    - constant.number: "((\\.\\.)[0-9]+)?"
+    - constant.number: "([0-9]+(\\.\\.))?"
+    - comment:
+        start: "#"
+        end: "$"
+        rules: []
+    - comment:
+        start: "/\\*"
+        end: "\\*/"
+        rules:
+            - todo: "(FIXME|TODO|NOTE):?"
+    - constant.string:
+        start: "\""
+        end: "\""
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "\\\\."
+    - constant.string:
+        start: "'"
+        end: "'"
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "\\\\."
diff --git a/runtime/syntax/odin.yaml b/runtime/syntax/odin.yaml
new file mode 100644 (file)
index 0000000..1326356
--- /dev/null
@@ -0,0 +1,64 @@
+filetype: odin
+
+detect:
+    filename: "\\.odin$"
+
+rules:
+    # Conditionals and control flow
+    - special: "\\b(asm|auto_cast|break|case|cast|context|continue|do|dynamic|fallthrough|return|transmute|using|where)\\b"
+    - statement: "\\b(else|for|if|switch|in|not_in|or_else|or_return|when)\\b"
+    - preproc: "\\b(assert|package|foreign|import|proc|defer|make|new|free|delete|copy|len|cap|append|raw_data)\\b"
+    - preproc: "\\b((size|align|offset|type|type_info|typeid)_of|offset_of_by_string)\\b"
+    - preproc: "\\b(swizzle|complex|quaternion|real|imag|jmag|kmag|conj|expand_to_tuple|min|max|abs|clamp|soa_zip|soa_unzip|transpose|outer_product|hadamard_product|matrix_flatten)\\b"
+    - symbol.operator: "[-+/*=<>!~%&|^@]|:\\s*=|:\\s*:|\\?"
+
+      # Types
+    - symbol: "(,|\\.)"
+    - type: "\\b(b(8|16|32|64)|(i|u)(8|(16|32|64|128)(le|be)?)|f(16|32|64)(le|be)?|complex(32|64|128)|quaternion(64|128|256))\\b"
+    - type: "\\b(any|bool|byte|rune|u?int|uintptr|rawptr|c?string|map|matrix|typeid)\\b"
+    - type.keyword: "\\b(distinct|struct|enum|union|bit_set)\\b"
+    - constant.bool: "\\b(true|false|nil)\\b"
+
+      # Brackets
+    - symbol.brackets: "(\\{|\\})"
+    - symbol.brackets: "(\\(|\\))"
+    - symbol.brackets: "(\\[|\\])"
+
+      # Numbers and strings
+    - constant.number: "\\b(0b[01]*|0o[0-7]*|0x[0-9a-fA-F]*|[0-9_]+|0d[0-9]*|0z[0-9abAB]*)\\b|'.'"
+
+    - constant.string:
+        start: "\""
+        end: "\""
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "%."
+            - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
+            - constant.specialChar: "\\\\([0-7]{1,3}|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8})"
+
+    - constant.string:
+        start: "'"
+        end: "'"
+        skip: "\\\\."
+        rules:
+            - error: "..+"
+            - constant.specialChar: "%."
+            - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
+            - constant.specialChar: "\\\\([0-7]{1,3}|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8})"
+
+    - constant.string:
+        start: "`"
+        end: "`"
+        rules: []
+
+    - comment:
+        start: "//"
+        end: "$"
+        rules:
+            - todo: "TODO:?|NOTE(\\(.*\\))?:?"
+
+    - comment:
+        start: "/\\*"
+        end: "\\*/"
+        rules:
+            - todo: "TODO:?|NOTE(\\(.*\\))?:?"
index 452dd31cc30d6a50435e5c4c45151aea591eaf5f..996bdc38f5648371d2b119e3274aec9ed67aeaf3 100644 (file)
@@ -1,7 +1,8 @@
 filetype: patch
 
-detect: 
+detect:
     filename: "\\.(patch|diff)$"
+    header: "^diff"
 
 rules:
     - brightgreen: "^\\+.*"
index 3fcb8703434817caeb24038ecbec47cd21f3dd84..edcc9f056007a59a7b3697d5ec7d3bed3ed387c8 100644 (file)
@@ -1,33 +1,52 @@
 filetype: perl
 
 detect: 
-    filename: "\\.p[lm]$"
+    filename: "\\.pp[lmp]$"
     header: "^#!.*/(env +)?perl( |$)"
 
 rules:
-    - type: "\\b(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork))\\b|\\b(get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|int|ioctl|join)\\b|\\b(keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek(dir)?)\\b|\\b(se(lect|mctl|mget|mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|study|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr(y)?|truncate|umask)\\b|\\b(un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\\b"
+    - type: "\\b(accept|alarm|atan2|bin(d|mode)|c(aller|homp|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork))\\b|\\b(get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|int|ioctl|join)\\b|\\b(keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|say|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek(dir)?)\\b|\\b(se(lect|mctl|mget|mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|study|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr(y)?|truncate|umask)\\b|\\b(un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\\b"
     - statement: "\\b(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\\b"
 
     - special: "\\-\\>"
     - symbol: "(,|\\.)"
-
-    - identifier:
-        start: "[\\$@%]"
-        end: "\\W"
+    
+    #regexes
+    - identifier.macro: "m?\\/.*?\\/[a-z]*"
+    - identifier.macro: "m?\\|.*?\\|[a-z]*"
+    - identifier.macro: "\\bs/.*?/.*?/[a-z]*"
+    - identifier.macro: "\\bs\\|.*?\\|.*?\\|[a-z]*"
+    
+    - constant.string:
+        start: '"'
+        end: '"'
+        skip: '\\"'
+        rules:
+            - identifier.var: '[\\$@%].[a-zA-Z0-9_]*'
+
+    - constant.string:
+        start: "'"
+        end: "'"
+        skip: "\\\\'"
         rules: []
-
+    
+    - comment:
+        start: "#"
+        end: "$"
+        rules: []
+    
     - constant.string: "\"\\(.*\\)\"|qq?\\|.*\\||qq?\\{.*\\}|qq?\\/.*\\/"
-    - default: "[sm]/.*/"
+    - constant.number: "\\b([0-9]*[.])?[0-9]+"
+    - constant.number: "\\b[0-9]+"
+    - constant.number: "\\b0x[a-f0-9]+"
+    - constant.string.url: "`(.+?)`"
+    - identifier.var: '[\\$@%].[a-zA-Z0-9_]*'
+    
     - preproc:
         start: "(^use| = new)"
         end: ";"
         rules: []
 
-    - comment:
-        start: "#"
-        end: "$"
-        rules: []
-
     - comment:
         start: "^="
         end: "^=cut"
diff --git a/runtime/syntax/perl6.yaml b/runtime/syntax/perl6.yaml
deleted file mode 100644 (file)
index 6924f8d..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-filetype: perl6
-
-detect: 
-    filename: "(\\.p6$|\\.pl6$|\\.pm6$)"
-
-rules:
-    - type: "\\b(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork)|get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|int|ioctl|join|keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek|seekdir|se(lect|mctl|mget|mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|study|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr|y|truncate|umask|un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\\b"
-    - statement: "\\b(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\\b"
-    - special: "\\b(has|is|class|role|given|when|BUILD|multi|returns|method|submethod|slurp|say|sub)\\b"
-    - identifier:
-        start: "[$@%]"
-        end: "( |\\\\W|-)"
-        rules: []
-
-    - constant.string: "\".*\"|qq\\|.*\\|"
-    - default: "[sm]/.*/"
-    - preproc:
-        start: "(^use| = new)"
-        end: ";"
-        rules: []
-
-    - comment: "#.*"
-    - identifier.macro:
-        start: "<<EOSQL"
-        end: "EOSQL"
-        rules: []
-
index 82fd443a6981d7a9be55e421148dab81113c2b50..a4e20dec3b0d19ecff132e65889a04d9d2a8bd44 100644 (file)
@@ -17,14 +17,14 @@ rules:
     - comment: "<!--.+?-->"
     - default: "<\\?(php|=)\" end=\"\\?>"
     - identifier.class: "([a-zA-Z0-9_-]+)\\("
-    - type: "\\b(array|bool(ean)?|callable|callback|float|int(eger)?|iterable|object|resource|mixed|string|void)\\b"
+    - type: "\\b(array|bool|callable|float|int|iterable|object|mixed|string|void)\\b"
     - identifier.class: "[a-zA-Z\\\\]+::"
     - identifier: "\\b([A-Z][a-zA-Z0-9_]+)\\b"
     - identifier: "([A-Z0-9_]+)[;|\\s|\\)|,]"
     - type.keyword: "\\b(global|final|public|private|protected|static|const|var)\\b"
-    - statement: "\\b(abstract|catch|class|declare|do|else(if)?|end(declare|for(each)?|if|switch|while)|finally|for(each)|function|if|interface|namespace|switch|trait|try|while)\\b"
+    - statement: "\\b(abstract|catch|class|declare|do|else(if)?|end(declare|for(each)?|if|switch|while)|enum|finally|for(each)|function|if|interface|namespace|switch|trait|try|while)\\b"
     - identifier: "\\bnew\\s+([a-zA-Z0-9\\\\]+)"
-    - special: "\\b(as|and|break|case|clone|continue|default|die|fn|echo|empty|eval|exit|extends|goto|or|include(_once)?|implements|instanceof|insteadof|isset|list|new|print|return|require(_once)?|unset|use|throw|xor|yield(\\s+from))\\b"
+    - special: "\\b(as|and|break|case|clone|continue|default|die|fn|echo|empty|eval|exit|extends|goto|or|include(_once)?|implements|instanceof|insteadof|isset|list|match|new|print|return|require(_once)?|unset|use|throw|xor|yield(\\s+from))\\b"
     - constant.bool: "\\b(true|false|null|TRUE|FALSE|NULL)\\b"
     - constant: "[\\s|=|\\s|\\(|/|+|-|\\*|\\[]"
     - constant.number: "[0-9]"
@@ -38,6 +38,12 @@ rules:
         skip: "\\\\."
         rules:
             - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
+    - constant.string:
+        start: "\'"
+        end: "\'"
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
     - symbol.brackets: "(\\[|\\]|\\{|\\}|[()])"
     - comment: "(^|[[:space:]])//.*"
     - comment: "(^|[[:space:]])#.*"
index f13319377403d0f0e550a731e643c59e8d75a8ea..d668809467490fd63bbf21ca99b0ce7626a58a3f 100644 (file)
@@ -34,7 +34,7 @@ rules:
         end: "\"\"\""
         rules: []
 
-    - comment:
+    - constant.string:
         start: "'''"
         end: "'''"
         rules: []
index 49ee66f3118207d7b305912152c7fc322f859aca..93f4f483002b449a2705c848e3d678eb244f5c01 100644 (file)
@@ -18,7 +18,7 @@ rules:
       # definitions
     - identifier: "def [a-zA-Z_0-9]+"
       # keywords
-    - statement: "\\b(and|as|assert|async|await|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|raise|return|try|while|with|yield)\\b"
+    - statement: "\\b(and|as|assert|async|await|break|case|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|match|nonlocal|not|or|pass|raise|return|try|while|with|yield)\\b"
       # decorators
     - brightgreen: "@.*[(]"
       # operators
@@ -26,7 +26,7 @@ rules:
       # parentheses
     - symbol.brackets: "([(){}]|\\[|\\])"
       # numbers
-    - constant.number: "\\b[1-9](_?[0-9])*(\\.([0-9](_?[0-9])*)?)?(e[0-9](_?[0-9])*)?\\b" # decimal
+    - constant.number: "\\b[0-9](_?[0-9])*(\\.([0-9](_?[0-9])*)?)?(e[0-9](_?[0-9])*)?\\b" # decimal
     - constant.number: "\\b0b(_?[01])+\\b"     # bin
     - constant.number: "\\b0o(_?[0-7])+\\b"    # oct
     - constant.number: "\\b0x(_?[0-9a-f])+\\b" # hex
@@ -36,7 +36,7 @@ rules:
         end: "\"\"\""
         rules: []
 
-    - comment:
+    - constant.string:
         start: "'''"
         end: "'''"
         rules: []
diff --git a/runtime/syntax/raku.yaml b/runtime/syntax/raku.yaml
new file mode 100644 (file)
index 0000000..3dea6ad
--- /dev/null
@@ -0,0 +1,42 @@
+filetype: raku
+
+detect:
+    filename: "(\\.p6$|\\.pl6$|\\.pm6$|\\.raku$|\\.rakumod$|\\.rakudoc$)"
+
+rules:
+    - type: "\\b(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork)|get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|int|ioctl|join|keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek|seekdir|se(lect|mctl|mget|mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|study|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr|y|truncate|umask|un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\\b"
+    - statement: "\\b(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\\b"
+    - special: "\\b(has|is|class|role|given|when|BUILD|multi|returns|method|submethod|slurp|say|sub)\\b"
+
+    - identifier: "[$@%&](\\.|!|\\^)?([[:alpha:]]|_)"
+    - identifier: "[$@%&](\\.|!|^)?([[:alpha:]]|_)([[:alnum:]]|-|_)*([[:alnum:]]|_)"
+    - identifier: "[$@%&](\\?|\\*)([A-Z])([A-Z]|-)*([A-Z])"
+
+    - constant.string:
+        start: "\""
+        end: "\""
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "\\\\."
+
+    - constant.string:
+        start: "'"
+        end: "'"
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "\\\\."
+
+    - preproc:
+        start: "(^use| = new)"
+        end: ";"
+        rules: []
+
+    - identifier.macro:
+        start: "<<EOSQL"
+        end: "EOSQL"
+        rules: []
+
+    - comment:
+        start: "#"
+        end: "$"
+        rules: []
index 9247b69196074b9d0be4fe3bd80905e681204685..c55feb4b6999c1e75faae139abe1cbdbdd3d2f8c 100644 (file)
@@ -1,7 +1,7 @@
 filetype: ruby
 
 detect: 
-    filename: "\\.(rb|rake|gemspec)$|^(Gemfile|config.ru|Rakefile|Capfile|Vagrantfile|Guardfile|Appfile|Fastfile|Pluginfile|Podfile)$"
+    filename: "\\.(rb|rake|gemspec)$|^(Gemfile|config.ru|Rakefile|Capfile|Vagrantfile|Guardfile|Appfile|Fastfile|Pluginfile|Podfile|\\.?[Bb]rewfile)$"
     header: "^#!.*/(env +)?ruby( |$)"
 
 rules:
index f24bcfb95b40211cef7231f07394cb3787cc7dfd..733227aa72ecf832e1a19bf0cc686af0d8b6de33 100644 (file)
@@ -24,15 +24,27 @@ rules:
     - constant.string:
         start: "\""
         end: "\""
-        skip: "\\\\."
+        skip: '\\.'
         rules:
-            - constant.specialChar: "\\\\."
+            - constant.specialChar: '\\.'
 
     - constant.string:
         start: "r#+\""
         end: "\"#+"
         rules: []
 
+    # Character literals
+    # NOTE: This is an ugly hack to work around the fact that rust uses
+    # single quotes both for character literals and lifetimes.
+    # Match all character literals.
+    - constant.string: "'(\\\\.|.)'"
+    # Match the '"' literal which would otherwise match
+    # as a double quoted string and destroy the highlighting.
+    - constant.string:
+        start: "'\""
+        end: "'"
+        rules: []
+
     - comment:
         start: "//"
         end: "$"
@@ -49,4 +61,3 @@ rules:
         start: "#!\\["
         end: "\\]"
         rules: []
-
index d06bd575d25b2405ca3b7ffd8954308fc2ebc51c..e38137c38c5de19582a9716c63dece79fa08533c 100644 (file)
@@ -1,12 +1,16 @@
 filetype: scala
 
 detect:
-    filename: "\\.scala$|\\.sbt$"
+    filename: "\\.sc(ala)?$|\\.sbt$"
 
 rules:
     - type: "\\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\\b"
     - statement: "\\b(match|val|var|break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\\b"
     - statement: "\\b(def|object|case|trait|lazy|implicit|abstract|class|extends|with|final|implements|override|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile|sealed)\\b"
+    - constant.string:
+        start: "\"\"\""
+        end: "\"\"\""
+        rules: []
     - constant.string:
         start: "\""
         end: "\""
index 5776c5963566484059392279e67c5bd4f61db973..329b1014a546d13e22a0a76ead6f6c2840717172 100644 (file)
@@ -1,7 +1,29 @@
 filetype: shell
 
+# Detection based on filename is rather complicated as there are many
+# different file extensions and special filenames in use.
+# This expressions aims to capture them all while not matching
+# filenames that coincidentally contain the same substring.
+#
+# File extensions:
+# * .sh
+# * .bash
+# * .ash 
+# * .ebuild (Gentoo ebuild format)
+#
+# Special filenames:
+# * .bashrc, .bash_aliases, .bash_functions .bash_profile
+# * profile, .profile (/etc/profile or ~/.profile)
+# * Pkgfile
+# * pkgmk.conf
+# * rc.conf
+# * PKGBUILD (Arch Linux build scripts)
+# * APKBUILD
+#
+# Fix command (fc) files:
+# * bash-fc. (followed by a random string)
 detect:
-    filename: "(\\.sh$|\\.bash|\\.ash|bashrc|bash_aliases|bash_functions|profile|bash-fc\\.|Pkgfile|pkgmk.conf|rc.conf|PKGBUILD|.ebuild\\$|APKBUILD)"
+    filename: '(\.(sh|bash|ash|ebuild)$|(\.bash(rc|_aliases|_functions|_profile)|\.?profile|Pkgfile|pkgmk\.conf|rc\.conf|PKGBUILD|APKBUILD)$|bash-fc\.)'
     header: "^#!.*/(env +)?(ba)?(a)?(mk)?sh( |$)"
 
 rules:
diff --git a/runtime/syntax/syntax_checker.go b/runtime/syntax/syntax_checker.go
deleted file mode 100644 (file)
index 5b8da24..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-package main
-
-import (
-       "fmt"
-       "io/ioutil"
-       "strings"
-
-       "github.com/zyedidia/highlight"
-)
-
-func main() {
-       files, _ := ioutil.ReadDir(".")
-
-       hadErr := false
-       for _, f := range files {
-               if strings.HasSuffix(f.Name(), ".yaml") {
-                       input, _ := ioutil.ReadFile(f.Name())
-                       //fmt.Println("Checking file -> ", f.Name())
-                       file, err := highlight.ParseFile(input)
-                       if err != nil {
-                               hadErr = true
-                               fmt.Printf("Could not parse file -> %s:\n", f.Name())
-                               fmt.Println(err)
-                               continue
-                       }
-                       _, err1 := highlight.ParseDef(file, nil)
-                       if err1 != nil {
-                               hadErr = true
-                               fmt.Printf("Could not parse input file using highlight.ParseDef(%s):\n", f.Name())
-                               fmt.Println(err1)
-                               continue
-                       }
-               }
-       }
-       if !hadErr {
-               fmt.Println("No issues found!")
-       }
-}
index 037a4bd4aa48f6c7a41732bf09dae5ed3c6b1188..d2954e3aa71159df98d3bd06eded0ed9de17cba2 100644 (file)
@@ -1,3 +1,5 @@
+//+build ignore
+
 package main
 
 import (
index 9ce50ebd71216a61fd4a7d755eaf65a32a0f708e..d3c84f39eb1f8d3fbd864a5ce25a8293150d294d 100644 (file)
@@ -1,7 +1,7 @@
 filetype: typescript
 
 detect:
-    filename: "\\.ts$"
+    filename: "\\.tsx?$"
 
 rules:
     - constant.number: "\\b[-+]?([1-9][0-9]*|0[0-7]*|0x[0-9a-fA-F]+)([uU][lL]?|[lL][uU]?)?\\b"
@@ -16,7 +16,7 @@ rules:
     - constant: "\\b(false|true|null|undefined|NaN)\\b"
     - type: "\\b(Array|Boolean|Date|Enumerator|Error|Function|Math)\\b"
     - type: "\\b(Number|Object|RegExp|String|Symbol)\\b"
-    - type: "\\b(any|boolean|never|number|string|symbol)\\b"
+    - type: "\\b(any|unknown|boolean|never|number|string|symbol)\\b"
     - statement: "[-+/*=<>!~%?:&|]"
     - constant: "/[^*]([^/]|(\\\\/))*[^\\\\]/[gim]*"
     - constant: "\\\\[0-7][0-7]?[0-7]?|\\\\x[0-9a-fA-F]+|\\\\[bfnrt'\"\\?\\\\]"
index 9790f74c4370f2261cba8b188a4a956afd82e606..304947b052d4a716df47b6c2a297193a17ed8920 100644 (file)
@@ -3,34 +3,35 @@ filetype: v
 detect:
 
 rules:
-    # Conditionals and control flow
-    - keywords: "\\b(import|go|defer)\\b"
-    - special: "\\b(or|break|continue|match|case|goto|return|none)\\b"
-    - function: "\\b(fn)\\b"
-    - main_function: "\\b(fn main\\(\\))"
-    - optionals: "\\b(none|error\\()"
-    - statement: "\\b(if|else|for|match)\\b"
-    - assert: "\\b(assert)\\b"
-    - symbol.operator: "\\b([-+/*=<>!~%&|^])\\b"
-    - symbol.operator: "\\b(:=)\\b"
-    - symbol.operator: "\\b(\\|\\|)\b"
-    - symbol.operator: "\\b(\\&\\&)\\b"
+      # Conditionals and control flow
+    - preproc: "\\b(module|import)\\b"
+    - statement: "\\b(if|else|for|match|select|defer|or|unsafe)\\b"
+    - statement: "\\b(break|continue|goto|return)\\b"
+    - type.keyword: "\\b(assert|const|enum|fn|struct|interface|type)\\b"
+    - type.keyword: "\\b(pub|mut|__global)\\b"
 
-    - compile_if: "\\b(\\$if|\\$else)\\b"
-    - oses: "\\b(mac|macos|linux|windows|freebsd|openbsd|netbsd|dragonfly|js|android|solaris|haiku)\\b"
+    - preproc: "\\$\\b(if|else)\\b"
+    - identifier.os: "\\b(mac|macos|linux|windows|freebsd|openbsd|netbsd|dragonfly|android|solaris|haiku)\\b"
+    - identifier.compiler: "\\b(gcc|tinyc|clang|mingw|msvc|cplusplus)\\b"
+    - identifier.platform: "\\b(amd64|aarch64|x64|x32|little_endian|big_endian)\\b"
+    - identifier.other: "\\b(debug|test|js|glibc|prealloc|no_bounds_checking)\\b"
+
+    - identifier.class: "\\b([A-Z][A-Za-z0-9_]*)\\b"
+    - identifier.function: "\\b([a-z_]+\\()"
+    - symbol.operator: "\\b(i[ns])\\b|[-+/*<>!=~*%&:|,.?]"
+    - symbol.attribute:
+        start: "^\\["
+        end: "\\]$"
+        rules:
+            - default: ".*"
+            - symbol: "\\b(deprecated|direct_array_access|if|inline|live|ref_only|typedef|windows_stdcall)\\b"
 
       # Types
-    - symbol: "(,|\\.)"
-    - btype: "\\b(bool)\\b"
-    - ztype: "\\b(char|byte)\\b"
-    - itype: "\\b(int|i(8|16|64)|u(8|16|32|64))\\b"
-    - ftype: "\\b(f(32|64))\\b"
-    - ptype: "\\b(uintptr|charptr|byteptr|voidptr)\\b"
-    - atype: "\\b(array)\\b"
-    - stype: "\\b(string|ustring)\\b"
-    - mtype: "\\b(map)\\b"
-    - type.keyword: "\\b(pub|mut|struct|enum|interface|module|type|const)\\b"
+    - type: "\\b(byte|u(16|32|64|128)|i(nt|8|16|64|128)|f(32|64))\\b"
+    - type: "\\b(bool|cha[nr]|map|rune|string)\\b"
+    - type: "\\b(any(_int|_float)?|size_t|(uint|byte|char|void)ptr)\\b"
     - constant.bool: "\\b(true|false)\\b"
+    - constant.none: "\\b(none)\\b"
 
       # Brackets
     - symbol.brackets: "(\\{|\\})"
@@ -38,7 +39,10 @@ rules:
     - symbol.brackets: "(\\[|\\])"
 
       # Numbers and strings
-    - constant.number: "\\b([0-9]+|0x[0-9a-fA-F]*)\\b|'.'"
+    - constant.number: "\\b(0b[01_]+)\\b"
+    - constant.number: "\\b(0o[0-7_]+)\\b"
+    - constant.number: "\\b(0x[0-9a-fA-F_]+)\\b"
+    - constant.number: "\\b([0-9_]+)\\b"
 
     - constant.string:
         start: "\""
@@ -46,7 +50,7 @@ rules:
         skip: "\\\\."
         rules:
             - constant.specialChar: "%."
-            - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
+            - constant.specialChar: "\\\\[abefnrtv'\\\"\\\\]"
             - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})"
 
     - constant.string:
@@ -54,9 +58,8 @@ rules:
         end: "'"
         skip: "\\\\."
         rules:
-            - error: "..+"
             - constant.specialChar: "%."
-            - constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
+            - constant.specialChar: "\\\\[abefnrtv'\\\"\\\\]"
             - constant.specialChar: "\\\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})"
 
     - constant.string:
@@ -75,10 +78,3 @@ rules:
         end: "\\*/"
         rules:
             - todo: "(TODO|XXX|FIXME):?"
-
-    - function.attribute:
-        start: "^\\["
-        end: "\\]$"
-        rules:
-            - known: "\\b(deprecated|inline|typedef|if)\\b"
-
index f6df706dc7f64cf55df294b83f5241366dbb7242..a505ca4056a8ed750a35e75f50e487b7b04db7a7 100644 (file)
@@ -7,12 +7,46 @@ rules:
     - default:
         start: "<template.*?>"
         end: "</template.*?>"
-        rules: 
-            - include: "html5"
+        limit-group: symbol.tag
+        rules:
+            - error: "<[^!].*?>"
+            - symbol.tag: "(?i)<[/]?(a|a(bbr|ddress|rea|rticle|side|udio)|b|b(ase|d(i|o)|lockquote|r|utton)|ca(nvas|ption)|center|cite|co(de|l|lgroup)|d(ata|atalist|d|el|etails|fn|ialog|l|t)|em|embed|fieldset|fig(caption|ure)|form|iframe|h[1-6]|hr|i|img|in(put|s)|kbd|keygen|label|legend|li|link|ma(in|p|rk)|menu|menuitem|met(a|er)|nav|noscript|o(bject|l|pt(group|ion)|utput)|p|param|picture|pre|progress|q|r(p|t|uby)|s|samp|se(ction|lect)|svg|small|source|span|strong|su(b|p|mmary)|textarea|time|track|u|ul|var|video|wbr)( .*)*?>"
+            - symbol.tag.extended: "(?i)<[/]?(body|div|html|head(er)?|footer|title|table|t(body|d|h(ead)?|r|foot))( .*)*?>"                        
+            - preproc: "(?i)<[/]?(script|style)( .*)*?>"
+            - special: "&[^;[[:space:]]]*;"
+            
+            - identifier: "(alt|bgcolor|class|height|href|id|label|longdesc|name|on(click|focus|load|mouseover)|placeholder|size|span|src|style|target|type|value|width)="
+            - symbol: "[:=]"
+            - constant.string: "\"[^\"]*\""
+            - constant.number: "(?i)#[0-9A-F]{6,6}"
+
+            - symbol.tag: "<|>"
+            - constant.string.url: "(ftp(s)?|http(s)?|git|chrome)://[^         ]+"
+            - comment: "<!--.+?-->"
+            #- preproc: "<!DOCTYPE.+?>"
+            - comment.block:
+                start: "<!\\-\\-"
+                end: "\\-\\->"
+                rules: []
+
+            # Bootstrap
+            - symbol.tag.extended: "(?i)<[/]?(b-alert|b-aspect|b-avatar|b-badge|b-icon|b-breadcrumb|b-button-group|b-button-toolbar|b-button|b-calendar|b-card-text|b-card-input|b-card|b-carousel-slide|b-carousel|b-collapse|b-dropdown|b-dropdown-item|b-dropdown-divider|b-embed|b-form-checkbox-group|b-form-checkbox|b-form-datepicker|b-form-file|b-form-group|b-form-input|b-form-radio|b-form-rating|b-form-select|b-form-spinbutton|b-form-tags|b-form-textarea|b-form|b-form-timepicker|b-img-lazy|b-img|b-input-group|b-jumbotron|b-input|b-container|b-row|b-col|b-link|b-list-group|b-list-group-item|b-media|b-modal|b-nav|b-nav-item|b-nav-item-dropdown|b-nav-text|b-nav-form|b-navbar|b-navbar-brand|b-navbar-toggle|b-navbar-nav|b-overlay|b-pagination|b-pagination-nav|b-popover|b-progress|b-progress-bar|b-sidebar|b-skeleton-wrapper|b-skeleton|b-spinner|b-table|b-table-lite|b-table-simple|b-tabs|b-tab|b-time|b-toast|b-tooltip)\\b"
+            - identifier: "(variant|title|show|shadow|icon|align-h|align-v|label-for|@submit|tag|img-alt|img-src|data-toggle|data-target|aria-controls|aria-expanded|aria-label|aria-disabled|tabindex|:interval|background|img-width|img-height|@sliding-start|@sliding-end|cols|header|@reset)="
+            - symbol: "[:=]"
+            # Vue
+            - symbol.tag.extended: "(?i)<[/]?(component|transition|transition-group|keep-alive|slot)\\b"
+            - identifier: "(v-text|v-html|v-show|v-if|v-else|v-else-if|v-for|v-on|v-bind|v-model|v-slot|v-pre|v-cloak|v-once|key|ref|is|@click)="
+            - symbol: "[:=]"
+            # Vue-router
+            - symbol.tag.extended: "(?i)<[/]?(router-link|router-view)\\b"
+            - identifier: "(to|v-slot)="
+            - symbol: "[:=]"
             
+
     - default: 
         start: "<script>"
         end: "</script>"
+        limit-group: symbol.tag
         rules:
             - include: "javascript"
 
@@ -25,6 +59,9 @@ rules:
     - default:
         start: "<style.*?>"
         end: "</style.*?>"
+        limit-group: symbol.tag
         rules:
             - include: "css"
+
     
index 427ef1b1ddbb8eba8d8ede443b0986ec50ea9e6f..48174c1b14b14b2960ef253b0c2d83358c02cb1d 100644 (file)
@@ -1,3 +1,5 @@
+//+build ignore
+
 package main
 
 import (
index 8aaffa3d8521364e1fa90c26c8e8164d355ec838..8194fba66497ff2631cb82e4173f764a79253779 100644 (file)
@@ -1,3 +1,5 @@
+//+build ignore
+
 package main
 
 import (
diff --git a/tools/go-bindata b/tools/go-bindata
deleted file mode 160000 (submodule)
index 9453701..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 9453701aa0dbd20f88145dbd77c6f50937f17a19
index 231901aaa4eaabe0cbfae0cb678bdb0826afcf08..89b47846fdb905f794c2441343b075d046100b56 100644 (file)
@@ -1,3 +1,6 @@
+//go:build ignore
+// +build ignore
+
 package main
 
 import (
@@ -14,32 +17,35 @@ func check(e error) {
 }
 
 func main() {
-       if runtime.GOOS == "darwin" {
-               if len(os.Args) == 2 {
+       if runtime.GOOS != "darwin" {
+               return
+       }
+       if len(os.Args) == 3 {
+               if os.Args[1] == "darwin" && runtime.GOOS == "darwin" {
                        rawInfoPlistString := `<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-    <key>CFBundleIdentifier</key>
-    <string>io.github.micro-editor</string>
-    <key>CFBundleName</key>
-    <string>micro</string>
-    <key>CFBundleInfoDictionaryVersion</key>
-    <string>6.0</string>
-    <key>CFBundlePackageType</key>
-    <string>APPL</string>
-    <key>CFBundleShortVersionString</key>
-    <string>` + os.Args[1] + `</string>
-</dict>
-</plist>
-`
+       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+       <plist version="1.0">
+       <dict>
+               <key>CFBundleIdentifier</key>
+               <string>io.github.micro-editor</string>
+               <key>CFBundleName</key>
+               <string>micro</string>
+               <key>CFBundleInfoDictionaryVersion</key>
+               <string>6.0</string>
+               <key>CFBundlePackageType</key>
+               <string>APPL</string>
+               <key>CFBundleShortVersionString</key>
+               <string>` + os.Args[2] + `</string>
+       </dict>
+       </plist>
+       `
                        infoPlistData := []byte(rawInfoPlistString)
 
                        err := ioutil.WriteFile("/tmp/micro-info.plist", infoPlistData, 0644)
                        check(err)
                        fmt.Println("-linkmode external -extldflags -Wl,-sectcreate,__TEXT,__info_plist,/tmp/micro-info.plist")
-               } else {
-                       panic("missing argument for version number!")
                }
+       } else {
+               panic("missing arguments")
        }
 }
index 7f3b81bcc212d833e85d3ea96bbcbd910cdcaacd..416b88f92c0ac19bd70b6812f5c4acdc7c148c4d 100755 (executable)
@@ -1 +1 @@
-fpm -s dir -t deb -p micro-$1-amd64.deb --name micro --license mit --version $1 --deb-recommends xclip --description "A modern and intuitive terminal-based text editor" ./micro=/usr/bin/micro ./assets/packaging/micro.1=/usr/share/man/man1/micro.1
+fpm -s dir -t deb -p micro-$1-amd64.deb --name micro --license mit --version $1 --deb-recommends xclip --description "A modern and intuitive terminal-based text editor" --after-install ./assets/packaging/deb/micro.postinst --before-remove ./assets/packaging/deb/micro.prerm ./micro=/usr/bin/micro ./assets/packaging/micro.1=/usr/share/man/man1/micro.1
index 0d7fb48edabdcb3302533bca22599350faef05e9..9367408c7ce47615633210d4e8ff2c1507ce07eb 100644 (file)
@@ -1,3 +1,5 @@
+//+build ignore
+
 package main
 
 import (
index 2465ae0a5d5ed27ef37835957a9ab242d45c97ff..f110202fa96e12907c755268cc763b0dd51c2a19 100644 (file)
@@ -1,3 +1,5 @@
+//+build ignore
+
 package main
 
 import (