]> git.lizzy.rs Git - micro.git/blob - cmd/micro/runtime.go
Add support for lookbehind in region regexes
[micro.git] / cmd / micro / runtime.go
1 // Code generated by go-bindata.
2 // sources:
3 // runtime/README.md
4 // runtime/colorschemes/atom-dark-tc.micro
5 // runtime/colorschemes/bubblegum.micro
6 // runtime/colorschemes/default.micro
7 // runtime/colorschemes/gruvbox-tc.micro
8 // runtime/colorschemes/gruvbox.micro
9 // runtime/colorschemes/monokai.micro
10 // runtime/colorschemes/simple.micro
11 // runtime/colorschemes/solarized-tc.micro
12 // runtime/colorschemes/solarized.micro
13 // runtime/colorschemes/zenburn.micro
14 // runtime/help/colors.md
15 // runtime/help/commands.md
16 // runtime/help/help.md
17 // runtime/help/keybindings.md
18 // runtime/help/options.md
19 // runtime/help/plugins.md
20 // runtime/help/tutorial.md
21 // runtime/plugins/autoclose/autoclose.lua
22 // runtime/plugins/ftoptions/ftoptions.lua
23 // runtime/plugins/linter/linter.lua
24 // runtime/syntax/README.md
25 // runtime/syntax/apacheconf.yaml
26 // runtime/syntax/arduino.yaml
27 // runtime/syntax/asciidoc.yaml
28 // runtime/syntax/asm.yaml
29 // runtime/syntax/awk.yaml
30 // runtime/syntax/c++.yaml
31 // runtime/syntax/c.yaml
32 // runtime/syntax/caddyfile.yaml
33 // runtime/syntax/clojure.yaml
34 // runtime/syntax/cmake.yaml
35 // runtime/syntax/coffeescript.yaml
36 // runtime/syntax/colortest.yaml
37 // runtime/syntax/conf.yaml
38 // runtime/syntax/conky.yaml
39 // runtime/syntax/cpp.yaml
40 // runtime/syntax/crystal.yaml
41 // runtime/syntax/csharp.yaml
42 // runtime/syntax/css.yaml
43 // runtime/syntax/cython.yaml
44 // runtime/syntax/d.yaml
45 // runtime/syntax/dart.yaml
46 // runtime/syntax/dockerfile.yaml
47 // runtime/syntax/dot.yaml
48 // runtime/syntax/erb.yaml
49 // runtime/syntax/fish.yaml
50 // runtime/syntax/fortran.yaml
51 // runtime/syntax/gdscript.yaml
52 // runtime/syntax/gentoo-ebuild.yaml
53 // runtime/syntax/gentoo-etc-portage.yaml
54 // runtime/syntax/git-commit.yaml
55 // runtime/syntax/git-config.yaml
56 // runtime/syntax/git-rebase-todo.yaml
57 // runtime/syntax/glsl.yaml
58 // runtime/syntax/go.yaml
59 // runtime/syntax/golo.yaml
60 // runtime/syntax/groff.yaml
61 // runtime/syntax/haml.yaml
62 // runtime/syntax/haskell.yaml
63 // runtime/syntax/html.yaml
64 // runtime/syntax/html4.yaml
65 // runtime/syntax/html5.yaml
66 // runtime/syntax/ini.yaml
67 // runtime/syntax/inputrc.yaml
68 // runtime/syntax/java.yaml
69 // runtime/syntax/javascript.yaml
70 // runtime/syntax/json.yaml
71 // runtime/syntax/keymap.yaml
72 // runtime/syntax/kickstart.yaml
73 // runtime/syntax/ledger.yaml
74 // runtime/syntax/lfe.yaml
75 // runtime/syntax/lilypond.yaml
76 // runtime/syntax/lisp.yaml
77 // runtime/syntax/lua.yaml
78 // runtime/syntax/mail.yaml
79 // runtime/syntax/makefile.yaml
80 // runtime/syntax/man.yaml
81 // runtime/syntax/markdown.yaml
82 // runtime/syntax/micro.yaml
83 // runtime/syntax/mpdconf.yaml
84 // runtime/syntax/nanorc.yaml
85 // runtime/syntax/nginx.yaml
86 // runtime/syntax/nim.yaml
87 // runtime/syntax/objc.yaml
88 // runtime/syntax/ocaml.yaml
89 // runtime/syntax/pascal.yaml
90 // runtime/syntax/patch.yaml
91 // runtime/syntax/peg.yaml
92 // runtime/syntax/perl.yaml
93 // runtime/syntax/perl6.yaml
94 // runtime/syntax/php.yaml
95 // runtime/syntax/pkg-config.yaml
96 // runtime/syntax/po.yaml
97 // runtime/syntax/pony.yaml
98 // runtime/syntax/pov.yaml
99 // runtime/syntax/privoxy-action.yaml
100 // runtime/syntax/privoxy-config.yaml
101 // runtime/syntax/privoxy-filter.yaml
102 // runtime/syntax/puppet.yaml
103 // runtime/syntax/python2.yaml
104 // runtime/syntax/python3.yaml
105 // runtime/syntax/r.yaml
106 // runtime/syntax/reST.yaml
107 // runtime/syntax/rpmspec.yaml
108 // runtime/syntax/ruby.yaml
109 // runtime/syntax/rust.yaml
110 // runtime/syntax/scala.yaml
111 // runtime/syntax/sed.yaml
112 // runtime/syntax/sh.yaml
113 // runtime/syntax/sls.yaml
114 // runtime/syntax/solidity.yaml
115 // runtime/syntax/sql.yaml
116 // runtime/syntax/swift.yaml
117 // runtime/syntax/syntax_checker.go
118 // runtime/syntax/syntax_converter.go
119 // runtime/syntax/systemd.yaml
120 // runtime/syntax/tcl.yaml
121 // runtime/syntax/tex.yaml
122 // runtime/syntax/toml.yaml
123 // runtime/syntax/typescript.yaml
124 // runtime/syntax/vala.yaml
125 // runtime/syntax/vhdl.yaml
126 // runtime/syntax/vi.yaml
127 // runtime/syntax/xml.yaml
128 // runtime/syntax/xresources.yaml
129 // runtime/syntax/yaml.yaml
130 // runtime/syntax/yum.yaml
131 // runtime/syntax/zsh.yaml
132 // DO NOT EDIT!
133
134 package main
135
136 import (
137         "bytes"
138         "compress/gzip"
139         "fmt"
140         "io"
141         "io/ioutil"
142         "os"
143         "path/filepath"
144         "strings"
145         "time"
146 )
147
148 func bindataRead(data []byte, name string) ([]byte, error) {
149         gz, err := gzip.NewReader(bytes.NewBuffer(data))
150         if err != nil {
151                 return nil, fmt.Errorf("Read %q: %v", name, err)
152         }
153
154         var buf bytes.Buffer
155         _, err = io.Copy(&buf, gz)
156         clErr := gz.Close()
157
158         if err != nil {
159                 return nil, fmt.Errorf("Read %q: %v", name, err)
160         }
161         if clErr != nil {
162                 return nil, err
163         }
164
165         return buf.Bytes(), nil
166 }
167
168 type asset struct {
169         bytes []byte
170         info  os.FileInfo
171 }
172
173 type bindataFileInfo struct {
174         name    string
175         size    int64
176         mode    os.FileMode
177         modTime time.Time
178 }
179
180 func (fi bindataFileInfo) Name() string {
181         return fi.name
182 }
183 func (fi bindataFileInfo) Size() int64 {
184         return fi.size
185 }
186 func (fi bindataFileInfo) Mode() os.FileMode {
187         return fi.mode
188 }
189 func (fi bindataFileInfo) ModTime() time.Time {
190         return fi.modTime
191 }
192 func (fi bindataFileInfo) IsDir() bool {
193         return false
194 }
195 func (fi bindataFileInfo) Sys() interface{} {
196         return nil
197 }
198
199 var _runtimeReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4d\x4e\xc4\x30\x0c\x46\xf7\x39\xc5\x27\xb1\x1d\x4d\x8f\x81\x58\xb0\x41\x1c\xa0\xf9\x71\xa9\x99\x24\xae\x1c\x87\x92\x0d\x67\x47\x9d\x0a\x09\x09\xb6\xb6\xdf\x7b\xf2\x03\x5e\x7a\x35\x2e\x84\x85\x33\x35\x2c\xa2\x78\xe6\xa8\xe2\xdc\xeb\xca\x0d\x89\x95\xa2\x89\x0e\xec\x9c\x33\x02\x81\x4a\xa0\x94\x28\x81\x2b\x6c\x25\x3c\x0a\x02\x57\xaf\xe3\xce\x6e\xa2\xe6\x03\x67\xb6\x71\x41\xe8\x06\x36\x14\x3f\xf0\xde\x9b\xc1\x37\xec\x74\x5a\xb6\x63\x55\x31\x7f\x4d\xd7\x28\x75\xe1\xb7\xa9\x1c\xd5\xf9\x8a\xa7\x05\x43\x3a\x76\xe9\x39\x21\xf3\x8d\x60\x82\xe2\x6f\x74\x8c\x15\xb2\x57\x44\xc9\xa2\x2d\xae\x54\xa8\x39\x5f\x13\xda\xa8\xe6\x3f\xcf\x17\x2e\x77\x3c\xfa\xfa\xd3\xf8\x27\x33\xfd\x36\xcc\x38\x14\x7f\x4e\x4e\xe7\x0c\xa5\xb6\x51\x34\xfe\xa0\x3c\xae\xce\x7d\x07\x00\x00\xff\xff\xd8\x8e\x0e\x48\x31\x01\x00\x00")
200
201 func runtimeReadmeMdBytes() ([]byte, error) {
202         return bindataRead(
203                 _runtimeReadmeMd,
204                 "runtime/README.md",
205         )
206 }
207
208 func runtimeReadmeMd() (*asset, error) {
209         bytes, err := runtimeReadmeMdBytes()
210         if err != nil {
211                 return nil, err
212         }
213
214         info := bindataFileInfo{name: "runtime/README.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
215         a := &asset{bytes: bytes, info: info}
216         return a, nil
217 }
218
219 var _runtimeColorschemesAtomDarkTcMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xd1\x8e\xab\x20\x10\x86\xef\xcf\x53\x10\xb8\xad\x27\x15\x15\xe9\x65\xab\xf0\x1e\x16\x69\x97\x2c\x82\x19\x21\x9b\xbe\xfd\x86\xd6\x64\xdb\x06\x1b\x6e\x48\xfc\xfc\x66\x98\x7f\x94\xb7\x1e\x0a\x6b\xdc\x37\x1a\xf5\x65\x88\x36\x20\x4c\xba\xa6\xe3\x1d\xdb\x91\xb2\x2f\x25\x2d\xf1\xbf\x27\x48\xf9\x69\xd2\x2e\x41\x6d\x97\x4e\x16\x32\xa3\x76\xc1\x5c\x8c\x06\x84\x89\x3c\x08\x71\xe0\x1b\x32\xb7\x84\xe1\x6e\x93\xb2\xad\x64\xff\x91\xfa\xbf\x04\x30\xee\x8a\x30\x39\x72\x29\xd9\x3e\x0b\x2f\x61\x08\x7a\xed\xf0\xc0\xba\x93\x14\x79\xec\x36\x9d\xbd\x7d\x61\x64\xf9\xc6\xcc\xa0\x67\xf0\x0a\x61\xc2\xe8\xa9\xdc\x10\x85\xdb\xac\xd3\xc4\x58\xd7\x6c\x95\x9a\xb5\x32\x43\xaa\x75\x64\x82\xd2\x3c\x14\xdd\xa8\xc1\x1a\xa7\x47\x84\x49\x5f\x55\x8c\xd3\x2c\xa7\x01\x3c\x20\x7c\xf6\x76\x44\x44\xca\xba\xae\xeb\x7c\x5b\x7e\xf4\x7f\x18\xe7\x1b\x58\x9a\x56\x5c\x52\x5d\x84\xd7\xef\xbb\x35\xfd\xd7\x40\x5d\x4a\xb4\x50\x5f\x43\x4a\xb4\xd9\xa7\x93\x15\x26\x55\xe1\xe2\x74\xbe\x47\xcf\x1a\xc6\x19\xdb\x11\x5a\xd1\x86\xbe\x1a\x55\x04\x48\xca\xfc\x0f\x19\xf3\x35\x86\xa0\xa1\x58\x07\xf0\xe9\xed\x2b\xf9\x33\x80\x7b\xac\x8b\x10\x42\xb4\x6d\x7e\xb7\x22\x2c\x8f\x7b\x9a\x00\xed\xa9\xac\xde\x97\x2f\x5d\x95\xb7\x71\x72\x4f\xc4\x6f\x00\x00\x00\xff\xff\x3c\xbd\xfb\xed\x37\x03\x00\x00")
220
221 func runtimeColorschemesAtomDarkTcMicroBytes() ([]byte, error) {
222         return bindataRead(
223                 _runtimeColorschemesAtomDarkTcMicro,
224                 "runtime/colorschemes/atom-dark-tc.micro",
225         )
226 }
227
228 func runtimeColorschemesAtomDarkTcMicro() (*asset, error) {
229         bytes, err := runtimeColorschemesAtomDarkTcMicroBytes()
230         if err != nil {
231                 return nil, err
232         }
233
234         info := bindataFileInfo{name: "runtime/colorschemes/atom-dark-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
235         a := &asset{bytes: bytes, info: info}
236         return a, nil
237 }
238
239 var _runtimeColorschemesBubblegumMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x51\x6e\xc3\x20\x0c\x86\xdf\x77\x0a\xc4\x73\x5b\x15\xc8\xb2\xed\x38\x14\xdc\x0a\x0d\x4c\x64\x8c\xa6\xde\x7e\x22\xc9\xa6\x36\xa4\x6f\x96\xbe\xdf\xe6\xc3\x76\x39\x66\x3a\xc6\x80\xdf\xc2\xc3\xd5\xd6\xc8\x42\xea\x41\x1d\xb4\x51\xf2\xed\x01\xba\x9c\x12\xe0\x0c\xc7\x1d\x88\x85\x6d\xa3\xca\x9c\x5f\xd2\x53\x61\x0a\x78\x6b\xa1\xd7\x23\x4e\x58\xd3\x05\xa8\x85\x7a\x89\xe0\x01\x39\x5c\xc3\xc2\x4d\xc7\x0b\x5b\x86\x45\xd3\xe8\x9e\xde\xd3\x25\xc7\x5d\x34\x11\x4c\x94\x9d\x90\xfa\xb3\x63\x7c\x9f\x40\xc8\xb1\xb7\x29\x13\xb8\x60\xa3\x90\x6a\xfc\xe8\x20\x10\x65\x12\x52\x1b\x75\x10\x6a\x3c\x3f\xb1\x8a\x1e\x28\x06\x04\x2f\xe4\x7f\x2d\xf6\xb6\xce\xd9\xe7\x87\x95\x6f\xff\x5a\xcb\xdc\xb9\x1c\xec\x7d\x78\x6a\xbd\x55\x66\xa0\xe3\xea\xa1\xbe\x7a\xc5\x35\xf1\x63\x09\xd7\xb3\x0c\x5d\xa6\xcd\x3f\xfe\x9d\x64\xf6\xd8\x3c\xe3\x2a\x95\xa5\x6e\x1e\x5b\x38\x97\x2e\xc7\x9a\x70\xa5\xbf\x01\x00\x00\xff\xff\xa4\x23\x8c\x18\x70\x02\x00\x00")
240
241 func runtimeColorschemesBubblegumMicroBytes() ([]byte, error) {
242         return bindataRead(
243                 _runtimeColorschemesBubblegumMicro,
244                 "runtime/colorschemes/bubblegum.micro",
245         )
246 }
247
248 func runtimeColorschemesBubblegumMicro() (*asset, error) {
249         bytes, err := runtimeColorschemesBubblegumMicroBytes()
250         if err != nil {
251                 return nil, err
252         }
253
254         info := bindataFileInfo{name: "runtime/colorschemes/bubblegum.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
255         a := &asset{bytes: bytes, info: info}
256         return a, nil
257 }
258
259 var _runtimeColorschemesDefaultMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4d\x8e\xa3\x30\x10\x85\xf7\x73\x8a\x92\xbd\x0d\xd1\x84\x24\x86\x2c\x61\x80\x13\xcc\x05\x08\x54\x82\x15\xff\xa0\xb2\xad\x51\x6e\x3f\x32\x4d\x4b\x89\xe4\xa6\x9b\xda\x94\xc4\xe7\xe7\xaa\xe7\xc7\xe1\xef\x24\x1d\x48\x07\x7e\x42\xd0\xd6\xd8\x47\x2f\x61\xb0\xca\x92\x1b\x26\xd4\xf8\x6b\xe9\x33\x25\xcd\x03\x46\xbc\xf5\x41\x79\x60\xbc\x2b\xbb\xb2\xcb\x77\x3c\x2f\x63\xb1\x57\x68\xb0\x5a\xa3\x89\x50\x71\x2e\x0e\xe7\x36\x09\xc9\x11\x8d\x97\x37\x89\x04\x8c\x0b\xd1\x5c\xda\xee\x0b\x31\xe3\x7c\xbf\xa8\x55\x6d\x79\xe8\xb6\xa9\xbd\xf3\x24\xcd\x1d\x18\x6f\x45\x53\x17\xa7\x9f\xc0\xfb\x61\xea\xe3\x10\x75\xd3\x8a\xaa\x49\x9e\x70\xbe\xf7\xb8\xee\xd4\x5d\x72\x51\xa4\x17\x77\x4f\x7d\xb5\x6a\x9b\x99\x09\x67\xb2\x03\x30\xfe\xa7\x3e\xd5\x07\x91\x84\xfc\x73\xc6\x6d\x5b\xdc\x8c\x83\xec\xe3\x5d\x95\x68\xf3\x3c\xed\x71\x30\x23\x92\x92\x06\x47\x60\xbc\x39\x1e\x45\x99\x9e\x09\x89\x2c\x01\xbb\x5a\x35\xc2\xe6\x58\x76\xb4\x9f\xd8\x86\x5c\x74\x2b\xb8\x78\x2f\xb0\xf5\xff\x6e\xcd\xcb\x7b\x04\x4c\xcc\x40\xb6\xda\x7f\xfe\x1d\x2b\x29\x18\xa5\x32\x13\xf4\x75\x09\x4b\xb5\x7c\x3b\x7e\xcc\x63\xbd\xbf\x6c\x20\x8a\x92\xe9\x03\x09\xe5\x7b\xf0\x1e\x29\x5b\x0d\xd8\xda\x7d\x25\xff\xf5\x64\xbe\x0f\x58\x20\xf7\xd1\x47\x07\x52\x73\x2e\xed\x60\x55\xd0\xe6\x85\xf8\x1f\x00\x00\xff\xff\x35\xa1\xd3\xd9\x8b\x03\x00\x00")
260
261 func runtimeColorschemesDefaultMicroBytes() ([]byte, error) {
262         return bindataRead(
263                 _runtimeColorschemesDefaultMicro,
264                 "runtime/colorschemes/default.micro",
265         )
266 }
267
268 func runtimeColorschemesDefaultMicro() (*asset, error) {
269         bytes, err := runtimeColorschemesDefaultMicroBytes()
270         if err != nil {
271                 return nil, err
272         }
273
274         info := bindataFileInfo{name: "runtime/colorschemes/default.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
275         a := &asset{bytes: bytes, info: info}
276         return a, nil
277 }
278
279 var _runtimeColorschemesGruvboxTcMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcb\x6e\xc3\x20\x14\x44\xf7\xf9\x0a\x84\xb7\x75\xe4\x82\x1f\xf0\x39\x3c\xae\x53\x54\x0c\xd6\x35\xa8\xca\xdf\x57\x38\xe9\x53\xd4\x8d\xd8\xdc\xc5\x99\xd1\xcc\x60\xa2\x8f\xd8\x7a\x17\x5e\x89\x85\x59\x65\x9f\x08\x6d\x40\x5b\xad\xd9\x53\xc3\x44\x79\xf4\xf4\x0d\x32\x71\x59\x20\x14\x48\x32\xc1\xa7\xbe\x0a\x6d\xd7\x45\x47\x4f\x68\x63\x27\x29\xd9\xf3\x1f\x46\x61\x4b\x6a\x77\xb2\x5c\x8c\x52\x1f\x52\xe7\x2d\xa1\x0b\x17\x42\x1b\x2d\xb4\x66\xe3\x23\xf0\xd9\xbc\x28\x3c\x56\x38\x0b\x21\xb9\xd9\x41\xe1\x04\x98\x6e\x32\xf5\x42\x49\x25\xb8\xf7\x9e\x75\x2f\x79\xbd\xf7\x8a\xb0\x62\x34\x5f\x10\xe3\xc3\x0f\x20\x5d\x57\x38\xb6\xd8\x56\x30\x4e\xfd\xb3\x5d\x0e\x16\xd0\xbb\x00\x96\xd0\xcf\x9b\xd4\x48\x40\x8c\xa5\x9b\xb4\x5d\xd7\xd5\x37\xb8\xe4\x94\x00\xdb\x0f\xf2\x20\xdb\x9d\x7c\x53\x18\x6e\x7f\x71\x10\xb1\x24\x6a\x43\x5e\xf4\x3e\xed\x38\x0e\x66\xa8\x9b\x9a\x8c\x08\x21\xb5\x75\x01\x37\x5c\xf0\xf1\xb7\x60\xbb\xdd\x65\xca\x1a\xb0\x9f\x26\xfa\xbc\x04\x42\x9b\x49\x4e\x7d\x07\xf4\xf4\x1e\x00\x00\xff\xff\x74\xbb\xf9\x29\xea\x02\x00\x00")
280
281 func runtimeColorschemesGruvboxTcMicroBytes() ([]byte, error) {
282         return bindataRead(
283                 _runtimeColorschemesGruvboxTcMicro,
284                 "runtime/colorschemes/gruvbox-tc.micro",
285         )
286 }
287
288 func runtimeColorschemesGruvboxTcMicro() (*asset, error) {
289         bytes, err := runtimeColorschemesGruvboxTcMicroBytes()
290         if err != nil {
291                 return nil, err
292         }
293
294         info := bindataFileInfo{name: "runtime/colorschemes/gruvbox-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
295         a := &asset{bytes: bytes, info: info}
296         return a, nil
297 }
298
299 var _runtimeColorschemesGruvboxMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6e\xc4\x20\x0c\x44\xef\xfd\x0a\xcb\xe7\x4d\x55\x48\xa2\xa8\x9f\x93\x80\xb7\x42\x05\x3b\x72\xe0\xb0\x7f\x5f\xd1\x54\x55\x53\xd8\xdb\x48\x6f\x18\x0f\xe3\x24\x8a\x0e\x31\xf0\x27\x78\xba\xaf\x25\x66\x40\x6b\xc7\x9b\x1d\x67\x7c\xf9\x03\x9d\xa4\x44\x5c\xe1\xd4\x83\x7c\xe4\xb5\x52\xb3\xcc\x4f\xe9\xeb\x91\x35\xf0\x07\xa0\x99\x6c\x63\x0a\x9e\x38\x87\x7b\x20\x05\x34\x6f\xef\x0d\x3f\xf2\x9a\xe9\x6c\x60\xec\xd4\xe2\x47\xda\x24\xf6\xd9\xae\xb4\xab\x38\xc0\xa5\x3d\x9b\x1f\x3b\x01\x5a\xd3\x49\xdc\xc9\x85\xb5\x46\x76\x9e\x15\xf6\xa4\x31\x30\x79\xc0\x5f\x0d\xbd\xde\xa4\x2a\x0a\x68\xc7\xf9\x66\xec\x74\xbd\x2d\x5e\x00\x37\x89\x1e\x7a\x8b\xd7\xc8\x81\x4b\xda\xea\x24\xe7\xea\xcb\x75\xd7\xa2\x4a\x9c\x87\x8b\xf1\x6c\xdb\x18\x8f\x53\xd7\xbf\xfe\x87\xdf\xd2\x49\x2c\x89\x7f\xe8\x57\x00\x00\x00\xff\xff\x71\xbc\x5b\xa5\x14\x02\x00\x00")
300
301 func runtimeColorschemesGruvboxMicroBytes() ([]byte, error) {
302         return bindataRead(
303                 _runtimeColorschemesGruvboxMicro,
304                 "runtime/colorschemes/gruvbox.micro",
305         )
306 }
307
308 func runtimeColorschemesGruvboxMicro() (*asset, error) {
309         bytes, err := runtimeColorschemesGruvboxMicroBytes()
310         if err != nil {
311                 return nil, err
312         }
313
314         info := bindataFileInfo{name: "runtime/colorschemes/gruvbox.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
315         a := &asset{bytes: bytes, info: info}
316         return a, nil
317 }
318
319 var _runtimeColorschemesMonokaiMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xdd\x6e\x83\x30\x0c\x85\xef\xf7\x14\x51\x72\x5b\xaa\x95\xb6\x81\x5e\xc2\x80\xf7\xe0\xc7\xed\xa2\x85\x04\x39\x89\xa6\xbe\xfd\x64\xc6\xa4\x56\xca\xb2\xe1\x9b\x48\x7c\x39\xb6\x4f\xce\x68\xb5\xc5\x4c\x2b\xf3\xc1\x26\xb8\xf6\x41\x7b\xc6\x45\x57\x76\x65\x97\xef\x44\x5e\x52\xf1\x97\x07\x68\xb4\xf3\x0c\x86\xa0\xe2\x5c\x1c\xce\x6d\x14\x52\x13\x18\xaf\xae\x0a\x90\x71\x21\x65\x73\x69\xbb\x5f\xc4\x8c\xf3\xfd\xaa\x56\xb5\xe5\xa1\x4b\x53\x7b\xe7\x51\x99\x1b\xe3\xa2\x95\x4d\x5d\x9c\xfe\x03\xef\xc7\xf7\x9e\x86\xa8\x9b\x56\x56\x4d\xf4\x86\xf3\xbd\x87\x6d\xa7\xee\x92\xcb\x22\xbe\xb8\xbb\xcf\x83\xd5\x69\x66\x41\x58\xd0\x8e\x8c\x8b\xb7\xfa\x54\x1f\x64\x14\xf2\xf7\x05\xd2\xb6\xb8\x05\x46\xd5\x53\xaf\x4a\xb6\x79\x1e\xf7\x38\x98\x09\x50\x2b\x03\x13\xe3\xa2\x39\x1e\x65\x19\x9f\x09\x10\x2d\x32\x3e\x58\x3d\xb1\xe4\x58\x76\xb2\x3f\x58\x42\x8e\xdc\x0a\x8e\xfa\x32\xbe\xfd\xdf\x6d\x79\x79\x8e\x80\xa1\x0c\x64\x9b\xfd\xe7\x57\xaa\xa8\x20\x49\x65\x26\xcc\xc3\x1a\x96\x6a\xfd\x76\xe2\x98\x53\x3d\xbf\x6c\x40\x24\xc9\xf8\x85\x88\xf2\x2d\x78\x0f\x98\x6d\x06\xa4\x76\xdf\xc8\xcf\x1e\xcd\xdf\x01\x0b\xe8\xbe\xcf\xe4\x40\x6c\xce\xf5\x38\x5a\x1d\x66\xf3\x40\x7c\x05\x00\x00\xff\xff\xe4\x96\xda\x25\x69\x03\x00\x00")
320
321 func runtimeColorschemesMonokaiMicroBytes() ([]byte, error) {
322         return bindataRead(
323                 _runtimeColorschemesMonokaiMicro,
324                 "runtime/colorschemes/monokai.micro",
325         )
326 }
327
328 func runtimeColorschemesMonokaiMicro() (*asset, error) {
329         bytes, err := runtimeColorschemesMonokaiMicroBytes()
330         if err != nil {
331                 return nil, err
332         }
333
334         info := bindataFileInfo{name: "runtime/colorschemes/monokai.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
335         a := &asset{bytes: bytes, info: info}
336         return a, nil
337 }
338
339 var _runtimeColorschemesSimpleMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd1\xd1\x6a\x85\x30\x0c\x06\xe0\xfb\x3d\x45\xe9\xf5\x7c\xa8\x18\x73\x6a\x38\x69\x22\x31\x45\x7c\xfb\x51\x0e\x13\xea\xdc\x5d\xe0\xf3\xb7\xe9\x5f\x34\x31\x9f\x84\xf5\x9d\xd0\x6a\x25\x8d\x94\x67\x69\x94\xbf\x06\xd1\x3d\xa0\x93\xd3\x32\x08\x2f\xa4\xc1\x2f\x26\x4f\x19\x4f\xd0\x01\xf7\x80\xa0\xcf\x2f\x4f\x12\xb1\x63\xd4\xb3\xce\x26\x8f\xb4\x39\x6d\x6e\x98\x72\x85\x42\x1a\x30\x60\x9c\x1b\xa5\x5c\x9c\xe8\x76\xda\x46\xc8\x20\xcf\x21\x2e\x6a\x4e\x29\x2f\xf4\x82\x26\x31\x18\xb9\x9b\xa7\xfc\x3d\x3b\x97\x35\xee\x37\x0c\x5b\xec\xc2\x87\x5d\x59\x7b\x05\x13\xae\xe0\xbd\x39\xc0\xf7\xc0\xc2\x4a\x93\xb6\x3a\xf7\x86\x1e\xe2\xd8\xdc\x7b\x7e\xf8\xee\xbe\x43\x69\x11\xe4\xd3\xef\xa2\xff\xf0\x01\xae\xac\xe5\x6f\x1c\x9b\xef\x9f\x99\x52\x3e\x56\x8e\xfb\xeb\xf6\x11\x4d\x5a\xd5\xcb\x7f\x02\x00\x00\xff\xff\x4c\xa9\xb4\xc2\x18\x02\x00\x00")
340
341 func runtimeColorschemesSimpleMicroBytes() ([]byte, error) {
342         return bindataRead(
343                 _runtimeColorschemesSimpleMicro,
344                 "runtime/colorschemes/simple.micro",
345         )
346 }
347
348 func runtimeColorschemesSimpleMicro() (*asset, error) {
349         bytes, err := runtimeColorschemesSimpleMicroBytes()
350         if err != nil {
351                 return nil, err
352         }
353
354         info := bindataFileInfo{name: "runtime/colorschemes/simple.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
355         a := &asset{bytes: bytes, info: info}
356         return a, nil
357 }
358
359 var _runtimeColorschemesSolarizedTcMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x72\xc2\x20\x14\x45\xf7\xfd\x0a\x06\xb6\x66\x06\xc1\xa4\x64\x69\xb4\xfd\x0f\x84\xa7\x65\x4a\x20\xf3\x02\xd3\xf1\xef\x3b\x54\xdb\x6a\x8b\xd9\xb1\x38\x39\x97\xdc\x8b\x89\x3e\x62\xe3\x5d\x78\x27\x16\x8e\x3a\xfb\x44\x28\x53\xb2\xdf\xf4\xdd\x8a\x71\x2e\x94\x94\xf4\xe9\x06\x32\x71\x1c\x21\x14\xa8\x55\xdd\xcb\x73\x5b\x85\x9c\x85\x90\xdc\xd1\x01\x12\xca\x44\xa7\x86\xbd\x78\x20\x0b\x73\xd2\x5f\x36\xb1\xdd\xae\x7b\x55\xa5\xe6\xa4\x13\x5c\x43\x55\xdb\xf7\x9c\xd7\xb1\xf3\x78\x88\x7e\x99\x99\x10\x26\x8c\x86\x50\xb6\x1b\x36\xc3\xba\xfe\x8b\xe9\x3c\x01\xa1\x6c\x68\xd5\xc3\xa8\x09\x8c\xd3\x25\x6b\xbf\x93\x42\xbc\x56\xa1\x1c\x2c\xa0\x77\x01\x6c\xe1\xa4\xec\x54\xbd\x04\x40\x8c\x48\xe8\x21\x7a\x4b\x16\xaf\x15\x6d\xfc\xc6\x16\x74\xa5\xad\x3c\x97\x5c\x42\x19\xe7\xb2\xdd\xac\x57\xd7\x41\xef\x37\x0a\x65\xa4\xc6\xbc\x69\x5c\x1e\xb3\xa8\x9a\x90\xc7\x03\xdc\x83\xc5\x7c\xbf\x66\x46\x2c\xca\x47\x1f\xfc\x33\x9f\x72\x4a\x80\xcd\xb5\x80\x9f\xcb\x5e\x3a\xa8\x91\x1f\x1a\x83\x0b\xa7\xe5\xf9\x4c\xc6\xf9\x72\xfe\x6d\xe0\xcf\xab\x2b\x47\x13\x7d\x1e\xc3\x0d\xf1\x19\x00\x00\xff\xff\x5c\x13\xfa\x0f\x0a\x03\x00\x00")
360
361 func runtimeColorschemesSolarizedTcMicroBytes() ([]byte, error) {
362         return bindataRead(
363                 _runtimeColorschemesSolarizedTcMicro,
364                 "runtime/colorschemes/solarized-tc.micro",
365         )
366 }
367
368 func runtimeColorschemesSolarizedTcMicro() (*asset, error) {
369         bytes, err := runtimeColorschemesSolarizedTcMicroBytes()
370         if err != nil {
371                 return nil, err
372         }
373
374         info := bindataFileInfo{name: "runtime/colorschemes/solarized-tc.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
375         a := &asset{bytes: bytes, info: info}
376         return a, nil
377 }
378
379 var _runtimeColorschemesSolarizedMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x51\x8e\xc3\x30\x08\x44\xff\xf7\x14\x96\xbf\x9b\x43\x11\x4c\x53\xab\x18\x22\x82\x55\xe5\xf6\x2b\x6f\xd2\x6d\xdd\xa4\x7f\x96\x66\x78\x66\x06\x54\x56\x1b\x38\xcb\x3d\xa0\x96\x42\xe2\x21\x8e\x96\xa7\x9b\x4f\x46\x24\xf1\xa7\x33\xc8\xe2\xd0\x1c\xb8\x42\x2f\xe5\x44\xe2\xf9\x9a\xc9\x42\x1c\xb9\x52\x27\x2e\x0e\x4e\x1b\xfa\x08\x5d\xd6\x32\x2a\x9f\x29\xb3\xd1\x6c\x8a\xcf\x7d\x8c\x52\x27\xfb\x3a\x53\x88\x2b\x31\xeb\xa3\x27\xce\x84\x19\x38\xc4\xcf\x89\x2a\x89\x8c\xb3\x50\x0a\xb1\xc0\x44\xe2\xd0\xe9\x64\xa6\x6d\x7f\xe5\x14\xbe\xfc\xa9\x49\x77\xc3\x19\xa0\x05\xad\x4b\xfb\xa1\xb5\x00\x78\xbf\x6c\x98\x43\x23\x59\x5a\x5f\x03\xde\xc0\x76\x67\x27\x37\xc2\x20\xb5\x8c\x7f\x75\xbe\xae\x71\x39\x5a\xb1\x9a\x35\xd4\xd7\x91\x44\x57\xa8\xec\xdd\xd0\x54\xdd\xc9\x86\x67\xde\xb7\x4d\x3f\x03\xef\xce\x07\x98\x64\x99\xde\x4e\x71\xca\xc5\x6a\xcb\xf6\xa6\xb3\x58\xdb\x13\x95\x6b\x91\x7f\xfd\x37\x00\x00\xff\xff\x20\xb6\x90\x0c\x81\x02\x00\x00")
380
381 func runtimeColorschemesSolarizedMicroBytes() ([]byte, error) {
382         return bindataRead(
383                 _runtimeColorschemesSolarizedMicro,
384                 "runtime/colorschemes/solarized.micro",
385         )
386 }
387
388 func runtimeColorschemesSolarizedMicro() (*asset, error) {
389         bytes, err := runtimeColorschemesSolarizedMicroBytes()
390         if err != nil {
391                 return nil, err
392         }
393
394         info := bindataFileInfo{name: "runtime/colorschemes/solarized.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
395         a := &asset{bytes: bytes, info: info}
396         return a, nil
397 }
398
399 var _runtimeColorschemesZenburnMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xd1\x6e\x83\x30\x0c\x45\xdf\xf7\x15\x11\xcf\x30\x2d\x81\x02\xbf\x13\x12\xb7\x8b\x16\x1c\x64\x1c\x4d\xfd\xfb\xc9\xed\x36\x8d\x25\xbc\x59\x3a\xd7\xf6\xf5\xb5\x4b\x31\x51\x17\x03\x7e\x28\x0f\x57\x9b\x23\xab\x46\xcf\x73\x6b\xfa\xa9\x79\xf9\x03\x5d\x5a\x57\x40\x81\x6f\x35\x88\x3b\x5b\xe4\xd7\x9d\x29\xe0\x4d\x35\x7a\x1a\xce\x45\x98\xd7\x05\x48\x35\x5a\x8f\xa7\x22\x31\xa1\x0b\x1a\x3c\x20\x87\x6b\x90\x6e\x63\xfa\x82\xef\x6c\x19\x9e\x36\xab\xf8\xbe\x2e\x29\xd6\xd9\x46\xb0\x51\x72\x75\xc8\xf7\x0d\xc4\xd1\x54\x8e\xdc\xc0\x05\x1b\xeb\x76\x33\x7a\xa0\x18\x10\x7c\x3d\x53\x20\x4a\x8f\x1c\x2e\xad\xe9\xc7\xe3\xc6\xe4\x93\x6a\x96\x14\xbd\x32\x97\x32\x4b\x39\x34\xef\x32\x5a\x26\x8f\x45\x7b\x40\x49\xaa\x73\xef\x56\x92\xea\xcb\xd5\xd2\xda\xfd\x3c\xc2\x0c\x22\x98\x0f\x82\x5b\x66\x06\xea\xbe\x2d\x9a\x7e\x6a\xf5\x34\xd4\x14\x9f\x96\xf0\xfc\xe7\x99\xf6\x67\x0d\x0f\x1f\xff\x7e\x2d\xa5\x4b\x31\xaf\x58\xa1\x99\x48\x6e\x38\x38\xfd\x4d\xf1\x2b\x00\x00\xff\xff\x98\x7a\xf7\x1e\xb7\x02\x00\x00")
400
401 func runtimeColorschemesZenburnMicroBytes() ([]byte, error) {
402         return bindataRead(
403                 _runtimeColorschemesZenburnMicro,
404                 "runtime/colorschemes/zenburn.micro",
405         )
406 }
407
408 func runtimeColorschemesZenburnMicro() (*asset, error) {
409         bytes, err := runtimeColorschemesZenburnMicroBytes()
410         if err != nil {
411                 return nil, err
412         }
413
414         info := bindataFileInfo{name: "runtime/colorschemes/zenburn.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
415         a := &asset{bytes: bytes, info: info}
416         return a, nil
417 }
418
419 var _runtimeHelpColorsMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x58\xdf\x8f\xe3\xc6\x0d\x7e\x9f\xbf\x82\xd8\x14\xd8\x3d\xc3\x96\x71\x05\x1a\x14\x1b\xe4\xa1\x39\xa4\xcd\x01\x4d\x02\x24\xdb\x87\xa0\x29\x6a\x4a\xa2\xad\xe9\x8e\x66\xd4\x19\x6a\x6d\xdf\x43\xff\xf6\x82\x9c\xd1\x0f\xef\x5d\xae\x7d\x5a\x58\x1a\x91\x1f\xc9\x8f\x1f\x39\xfb\x05\xbc\x0b\x2e\xc4\x64\xcc\x53\x67\x13\x74\xe4\x06\x18\xf0\x44\x80\xb6\x4f\xc0\x01\x9a\xf0\x42\x11\xf8\x1c\x00\xd3\x40\x0d\x27\x08\x47\xe8\x6d\x13\xc3\x7d\x82\x74\xf5\x8c\x17\xe8\xec\xa9\x73\xf6\xd4\xb1\xf5\x27\x20\x7f\xb2\x9e\x1e\x8d\xd9\xc1\x77\xe1\xac\x26\x22\x21\x13\x34\xea\xa8\xe9\xa8\xa7\x04\xe8\x5b\x18\x13\x01\x77\xd4\x7f\x74\xb2\x98\x3d\x5a\x47\x8a\x01\xdb\x56\xfe\x70\x47\xe0\x6c\x62\x41\xe0\xd0\x9f\x46\x3c\x51\xca\x58\xa0\x41\xbf\xc0\x30\xe6\x8b\x2f\xa6\xc0\xb2\x3f\x63\xbe\xcf\xc7\x82\x38\x3f\x5b\xee\x00\xc1\x8f\x7d\x4d\x51\xac\xdd\x40\xab\xaf\xd0\xd2\x11\x47\xc7\x15\x7c\x47\x91\xc0\xa6\xd9\xf5\xa3\x31\x1b\x48\xb6\x1f\x1c\x3d\x02\x4b\xc6\xca\xcb\xfc\x2c\xf1\xda\x54\x05\xef\x59\x82\x4c\xf0\xf6\xcb\xf2\x1c\xce\x9d\x6d\x3a\xc0\x48\x06\x20\x11\x8b\xb3\x6b\x18\x23\x30\xc5\xde\x7a\x74\x62\xbf\x0f\x3e\x3c\xa3\xbd\x75\x50\x1e\xae\xed\x7f\x25\x9f\x42\x8f\x57\x88\xd4\x84\x93\xb7\x1f\x08\x2c\x03\x26\x03\xf0\xf3\x58\x3b\xdb\x13\x3c\xd1\x85\xef\xd3\x14\xd0\x47\xe8\x22\xfd\x7b\xb4\x51\xb2\x1c\xc7\x52\x21\xe0\x60\x00\x5c\x08\xcf\x30\x50\x3c\x52\xc3\x5b\xa8\x47\x56\x10\xbf\xff\x43\x09\x04\x70\x18\x62\xb8\xd8\x1e\xd9\x06\xaf\xa7\x13\xbc\x50\xbc\xc2\x29\x84\x16\x30\xc1\x99\x9c\xab\x0c\xc0\x7b\x71\x8f\x2e\xe5\xf2\x7d\x0a\x87\x84\xfc\x81\x7c\x3d\x46\xff\x08\x4f\x1d\xc1\x7d\xf9\x75\xbf\x3e\xa6\x8c\x39\x87\xf8\x9c\x4d\xe7\x1a\x2e\x78\xa6\xfc\x25\x2d\x50\x70\x18\xed\x07\x6a\x5f\xd5\x68\x7a\x7c\xeb\x1e\xe0\x97\x30\x42\xea\xc2\xe8\x5a\xe8\xf0\x85\x3e\x75\x18\x06\x74\xc4\x4c\x60\xfd\x6d\xc1\x84\x98\x42\x64\xcb\xd5\x8d\xeb\x1d\x37\xff\x87\x77\x38\x0a\xf6\x39\xf7\x5f\xc1\xbf\xc6\xc4\x06\xa0\xc7\x67\x82\x34\x46\x7a\xe5\x2c\x8d\xc3\x10\x22\xdf\xd4\xab\xa6\x63\x88\x04\x63\x92\xee\x93\xfa\xfb\x16\xb8\x43\xad\x98\x01\xf8\xfe\xfd\xbb\x9f\x7e\xfc\xe7\xd3\x4f\x7f\xfb\xf6\xdd\x8f\x7f\xfd\xf1\x27\x20\xff\x62\x63\xf0\x3d\x79\x86\x17\x8c\x16\x6b\xa7\x14\x17\x36\x72\x80\xb7\x93\xbd\xc4\x18\xb5\xa1\xb5\xc1\x34\x38\xe4\xd0\xef\x5a\x8c\xcf\x4b\x70\xeb\x58\x6c\x82\x1a\x13\xb5\x10\x8e\x47\xe9\xaa\x3f\x71\xe8\xef\x13\xdc\xc9\x17\x77\xaf\x73\xfe\x9b\xe4\xcb\xd4\x13\x1a\x55\xc6\x3c\x05\x20\xaf\x08\x83\x27\xb1\xc9\x1d\xa5\x57\x52\x22\x29\x83\x21\x52\x4a\xf0\x8e\xa3\xfb\x56\x4a\x94\x45\x41\x33\x71\x1d\x08\x0e\x12\xdc\x1a\xea\x5c\x8c\x43\x65\x1e\x42\xcc\x6d\x49\xa2\x74\xe2\x47\xda\xaa\xe9\x42\x48\xf4\xa6\x32\x66\xb7\xdb\x15\xf9\xb8\x4f\xaf\x44\x2c\x52\xa6\x36\x5d\x38\x52\x4f\xee\x5a\x74\x60\xd1\xb2\x4a\x19\x3d\xd1\x3e\x78\x4a\x2a\x55\xb5\x54\x7e\xf4\xad\xf9\x7b\x47\x91\xfe\xf1\xd0\x31\x0f\xe9\x71\xbf\x3f\x59\xee\xc6\xba\x6a\x42\xbf\xff\x70\xa5\xd6\xb6\x16\xf7\x1a\xcb\x9e\x23\xd1\xbe\xc7\xc4\x14\xf7\x71\xf4\x6c\x7b\xda\xaf\xc1\x08\xd2\xa7\x8e\xae\x0a\x2a\x78\x77\x05\xac\xc3\xc8\xf0\xf6\x8f\xe0\xac\xb8\xb5\x1e\x38\x30\xba\xca\x98\x6f\x30\xd9\x06\x9d\xbb\xae\x34\x57\x28\xba\xce\x90\xe4\xc0\x13\xa9\xf0\x3a\xeb\x9f\x17\x75\x85\x53\x0c\xe3\x30\xa9\x68\xc3\x23\xba\xf2\x65\x95\x87\x88\x4d\xd0\x4a\x1a\x33\x23\xc5\xf0\x41\xdf\xef\xc4\xce\x41\x34\xb8\x47\x2f\xd5\xfd\x73\x88\x40\x17\x94\x8c\x6d\xc5\xcf\xe2\x02\x9d\xd3\x73\xe4\x59\x91\x9f\x22\x91\xdf\x2a\xa8\xb3\xf6\x69\x99\x1d\x93\xb1\x47\x63\x0e\x87\x83\x59\xdc\x4c\x5f\xc3\x9d\x7e\x7a\xa7\xaf\xcd\x37\xd8\x3c\x0b\x7a\x3f\x35\xa1\x16\x43\x4b\x58\x13\xc8\x7c\xb3\x47\x4b\xed\x34\x20\xd4\xf8\xff\x32\xbd\xad\xdd\x48\xc5\xbe\x86\x7f\xb6\xce\xc1\xc9\xbe\x2c\x00\x35\x0a\x04\x39\x08\xf5\x0c\xa1\x32\xe6\xfd\x71\x15\x92\xb3\xcf\x04\x3e\x88\x24\x50\x01\xa9\x44\x44\x9f\x29\x2e\x21\x17\x4c\x19\xa0\x0f\xdc\x69\xcf\x7b\x38\xc6\xe0\xf9\x33\x48\xd7\x20\x7f\x29\x46\x35\xec\x61\x64\xa8\x83\x6b\xb7\x10\x22\x8c\xbe\xa5\x28\x6c\x99\x4d\x96\x96\xcb\xd9\xfa\x8c\x7d\x31\x01\x91\xda\xe2\x42\x5b\xe6\x49\xa8\xad\x74\xe4\x2e\x12\x41\x6b\x8f\x47\x8a\x72\xfc\x8c\x57\x9d\xeb\x39\xe1\xd7\xc5\x43\x65\xcc\xbb\x5b\x39\x87\x31\x8d\xca\x54\x15\xe6\x65\x8e\xaa\xc0\x89\x6d\x69\xfc\x3c\x47\xc5\xca\x98\x28\x4a\xcb\xd9\x04\x3d\xa1\xcf\xe7\x4c\x49\xa3\x0f\x0c\x2d\x0d\xe4\x5b\x08\x1e\xb8\x0b\xb3\x92\x00\x3a\xc5\x54\xd3\xc4\xd8\x84\x32\x21\xa7\x54\x65\xb6\xad\xce\x4b\xfe\x8d\x9c\xf3\x28\x42\x70\xa8\x1d\x36\xcf\x5b\xc9\xc0\x76\xe6\x2a\x39\x17\xce\x5b\xad\xfa\x16\x7a\x3c\x91\x67\xdc\x42\x73\x45\xbf\x15\xbd\x61\x3a\x14\xa9\x26\xa8\xa3\xb2\x5e\xe5\xd8\x73\x32\xe1\x08\x84\x4d\xa7\x62\xf4\x90\x5f\x16\x0f\xf9\x47\xa4\xb6\xaa\xaa\xd2\xf2\x7e\xa6\xc9\xd4\x14\x4b\xf6\xe6\x01\xa9\x6b\xcd\xdc\x90\x36\x96\xe5\x27\xc1\xdb\x9d\x9c\x79\x58\x7e\xbe\xfd\x52\x19\x6c\x22\x1d\x29\x4e\x6b\x97\x84\x39\xf5\xcc\x9b\x4c\xdc\x29\xdd\xf7\xe9\xb3\xe3\x69\x2b\x07\x17\x88\x4a\xba\xa9\xee\x05\x19\x5d\xb0\x61\x57\xe0\x99\x0c\xaf\xa3\x0b\x34\xa1\xa5\x54\x41\xf1\x35\x3b\xb1\x49\x98\x7f\x33\x01\x47\x2e\x8a\x2f\xb3\x56\xa8\x58\x86\x32\xae\x4f\xad\xd4\xcd\x58\xce\x6d\x8a\xcc\xd4\x0f\x3a\xf8\x7a\x1c\x56\x22\x38\x05\x8e\x2f\x68\x9d\x0e\xa0\x25\x95\x95\x31\x7f\x21\x4f\x51\x79\x79\x33\x10\xf2\x76\x57\xe6\xda\xcd\x58\x9b\x2b\xb2\x1e\x70\x4a\xe0\x1e\xe3\xf3\x22\x39\x87\x1d\x37\x07\x48\xe3\xf1\x68\x2f\xd3\xec\x99\x96\x50\x9c\xb7\xdf\xd7\x62\x5d\x14\x59\x9b\x62\x45\x06\xdd\x56\xa7\xd9\xf3\x90\x91\x94\xaf\x17\x19\x52\x12\xae\x34\xe7\xa8\x42\x30\x4b\xb1\x4c\x00\xba\xf0\x1b\xb3\x99\xba\xdd\x6c\xc0\xb6\xe4\x59\xa4\x32\xea\x63\x9f\x18\xf5\x79\x62\x64\x2a\x67\xd2\xb5\xaf\x83\x33\x1b\xe9\xd0\x21\x86\xc6\x6c\x74\x16\xcb\x1b\x29\x3f\xca\xab\x59\x70\x5a\xb3\x01\x8a\x31\x88\x3d\x0e\x6d\x28\xb6\xc6\xa4\x6a\x74\x0b\x7d\x79\x21\xa0\xac\x17\x2c\xbb\xa6\xc3\xf8\xea\x9c\x3c\xc2\x86\xa9\x4c\x77\x39\x69\x1b\x64\xd9\x37\xb0\x4e\x60\xf3\xa9\x30\xe8\x06\x6b\x53\x59\x34\x5a\x31\x2a\xc6\x77\xb9\x25\xcc\x06\x4e\x23\x33\xc5\xdd\x84\xaf\xfc\x3c\x63\xf4\xc2\xd7\x0d\x34\x63\x4c\x59\x11\x29\xff\x12\x91\xdb\xdd\xda\xc8\xa2\xd9\x04\x37\xf6\xbe\x88\xdc\x44\x9a\xb2\x0f\x0c\x0e\x1b\x6a\x75\x4c\xcb\xc4\xfc\xcf\xbe\x6a\x82\x3f\xda\x53\x99\xff\x6b\x9e\x1d\xa0\xb5\x91\x1a\x0e\x51\x27\x78\xad\x8d\x28\xf3\x44\xae\x3d\x3f\xaf\x2e\x4f\xaa\x0f\xb7\xd7\xa9\xa9\xf7\xba\x7c\xe3\x5a\x46\x6e\x43\x91\xd1\xfa\xe5\x66\x95\xd5\x05\x8e\x36\x26\x5e\x2a\x2b\x00\x71\x6d\x32\x37\xd2\x10\x43\x8d\xb5\xcb\x2a\x5c\xde\xce\xdf\x14\x45\x66\x72\xae\xdc\xd7\xcc\x59\xa8\x3a\xb9\x5a\x7f\xa4\x26\x6d\x52\x1a\x0a\x33\x0b\xce\x96\x98\x1a\x06\x2c\xef\x7d\xe6\xfa\x64\xa0\x32\xe6\xdb\x94\x84\x93\xd2\x93\x5b\xb0\x72\xe9\xd0\x55\x5a\xe7\x51\x31\x7d\xf7\x03\xf6\xb4\xbe\x3c\xde\xc1\xdd\xaf\x15\x5d\x98\x7c\xb2\xc1\xff\xae\x0c\x2f\xd9\x4a\x04\xd0\xfc\x62\x5b\xc4\x45\x03\xd5\x51\xdc\x84\x7e\xc8\x83\x0d\x65\x8d\x3d\xd1\x65\xd2\x0b\x81\x27\x62\xa9\xd8\xed\x51\xf6\xf1\x1e\xb9\xe9\x28\x65\x1d\xb4\x6c\xd4\xcc\x24\xd5\x05\x5a\x1c\xa5\x36\x2d\x1d\xa5\x17\x26\x0e\x44\xea\x51\xe8\x3d\x33\x5a\x8c\x57\xd3\x60\xb5\xe5\x5a\x85\x30\x84\x94\x6c\x6d\x9d\xe5\xeb\x22\x7c\x1d\xa1\x7c\xb9\xd4\xad\x34\x81\xc8\x48\x41\x2c\xe0\x57\x91\x95\xa0\x8c\x2a\x11\xcf\x95\xd7\x0e\x5c\x03\x80\x69\xc9\x43\xd7\x07\xd1\x23\xaf\xda\x4d\x59\x3a\x52\x47\x35\xfa\x53\x82\x7c\x01\x01\x0e\x83\x7c\x9d\x3a\xb9\xb4\xa5\x26\xda\x81\x93\xc9\x58\xda\xe0\xef\x39\x0f\x76\xf4\xd7\x25\xdf\xf0\x90\x88\x20\x75\x55\x06\x97\x99\x30\x2d\x8a\xf3\x46\xfe\xa4\x19\xca\x7a\x88\xaf\xd9\xa3\x57\xd1\xb2\x8b\x6b\x25\x12\xd0\x42\x90\x95\x92\x6a\x2a\x96\xb6\x90\xf9\xf8\xba\x33\xcc\xb2\xb8\xd0\x45\xef\x19\x36\x78\xe9\x8e\xf7\x2c\x76\xe5\xee\x2d\xba\xd8\x52\xb9\x76\x9d\xa5\xce\xba\x55\x8b\xb5\x5b\x68\x22\xce\xcb\xea\xfa\x91\x80\x6b\xe0\x58\x87\x17\x7a\x23\xd7\xf0\xa5\x39\x3f\x0d\x41\xf7\x13\xb9\xff\x2b\x11\x3a\x8c\xad\xce\xcc\x62\x79\xba\xb6\x4b\x95\xf1\xaa\x33\x73\x99\x3c\x79\x0f\x12\xfd\x0a\x1e\xb4\x19\xe7\xf9\xba\xc6\x35\x0d\x79\xe8\x50\xf6\xf0\xc4\xe8\x9c\x2a\xcd\x3c\x93\xe6\xc2\xbc\x52\x93\x69\xed\x7d\x58\x01\x5e\xee\x94\xca\xb1\xc3\x7e\x7f\x78\xb3\x5e\x2a\x97\x7d\x72\xbf\xaf\x36\x1f\xed\xd4\x8b\xf5\xdc\x1d\x42\xe2\x83\x9c\x3c\x4c\x1d\x53\x86\x6d\xb9\xfc\x4e\xeb\xc9\x3a\x20\x89\x43\x56\x57\x9a\xff\xa3\x34\x4d\x35\x2d\x41\x65\xcc\x0f\x81\x69\x32\xa1\xe5\x15\x37\xca\xf1\x55\x23\x4f\x2a\xaf\xdd\xb1\xfc\x9b\x68\x95\x0d\x61\x6d\x3f\x3a\xb6\xda\x3f\x4b\x3a\x0e\xfb\x79\x90\xc2\xe6\xb7\xe2\xd7\x3c\x7d\x7d\xb7\xff\x75\x73\x07\xe4\xdb\xaf\xef\x7e\xdd\xec\x73\x3a\xfe\x1b\x00\x00\xff\xff\x87\xbd\x8a\x93\xb0\x13\x00\x00")
420
421 func runtimeHelpColorsMdBytes() ([]byte, error) {
422         return bindataRead(
423                 _runtimeHelpColorsMd,
424                 "runtime/help/colors.md",
425         )
426 }
427
428 func runtimeHelpColorsMd() (*asset, error) {
429         bytes, err := runtimeHelpColorsMdBytes()
430         if err != nil {
431                 return nil, err
432         }
433
434         info := bindataFileInfo{name: "runtime/help/colors.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
435         a := &asset{bytes: bytes, info: info}
436         return a, nil
437 }
438
439 var _runtimeHelpCommandsMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x8f\xdb\x36\x10\xbd\xfb\x57\x0c\xb6\x87\x4d\x8a\x5d\xe7\xee\x4b\x51\x04\x05\x5a\x20\x69\x53\x24\x97\x9e\xca\x91\x34\x92\x08\x53\x1c\x85\x43\xd9\x71\x7f\x7d\x31\x1c\x4a\xb6\x77\x0b\x34\x7b\x59\x99\x9c\x8f\xc7\x99\x79\x8f\xfc\x01\x3e\xb1\x88\x6f\x02\x41\xcb\xd3\x84\xb1\x93\xdd\xee\x2f\x5e\xa0\xc5\x08\xf4\x8d\xda\x25\x13\xe8\x67\xe7\x33\xa7\xd5\x06\x9a\x0b\xcc\x89\x44\x7c\x1c\xc0\xbd\xcf\x29\x3c\x93\x83\x9e\x43\xe0\x33\x95\xdd\x3c\x6e\x01\xf7\xbb\x5f\x29\x11\x60\xa2\xb2\x3a\xbf\xcc\x07\x79\xc4\x0c\x97\x9a\x73\x11\xda\xef\x76\x3f\x82\xfb\xba\xf8\xec\x0e\xf0\xe7\xe2\xb3\xc0\xe4\xdb\xc4\xb6\x2e\x78\x22\xe8\x7d\xa0\x88\x13\xfd\xe4\x0e\xf0\x19\x4f\x24\x96\x70\x49\x89\x62\x86\x66\xe9\x7b\x4a\x7b\xf8\xad\x2f\xcb\xab\x31\x78\x81\x39\xf1\xc9\x77\xd4\x81\xcf\x70\xf6\x21\xec\x00\xe0\xb1\x84\x44\x79\xbc\xb3\xb6\x6c\x89\xe6\x80\x2d\xc1\x83\x10\xa6\x76\x7c\x80\x87\x13\x86\x85\x1e\xa0\x0f\x38\x88\x3b\xc0\x97\xd1\x4b\x89\x04\xab\xa9\x33\x53\x07\x67\x9f\x47\x70\xc5\xde\xed\x41\x33\x7d\x19\x09\x9c\x79\x96\x7a\xf0\x9c\x3d\x47\x0c\x7b\xdd\xfc\x39\x43\xd6\x60\x33\xfb\x98\x9f\x14\x4b\x2a\x90\x39\x86\x0b\x70\xa4\x92\xf2\x00\xae\x75\x4f\x70\x1e\x7d\x3b\x02\x45\x6c\x02\x09\xb8\x76\xa4\xf6\xe8\x60\xe2\x8e\x4a\x1e\xdb\x46\x39\x0a\xf8\x5e\x4b\xfb\xd8\x41\xf0\x47\x82\xcc\x30\x53\xea\x39\x4d\xe5\xac\x15\xf2\xa4\x45\x23\x6c\x47\xc8\xbe\x1c\x1c\x00\x7e\xe7\x4c\xd6\x99\xed\x3c\xd3\x22\x19\x1a\x02\x84\x13\x06\xdf\x41\xa2\x81\xbe\xed\x41\xcb\xac\xf0\xd8\xaa\x8d\x69\x58\x34\xa0\x68\x94\x8e\x49\x20\x72\x86\xb1\x94\x38\x5e\x40\x66\x6c\x49\xc0\x47\xf0\xf9\xa9\x74\x7d\xc2\x0b\xf0\xe4\x73\xf1\xfe\xba\x70\x26\xa9\x9d\xa6\x5c\x2b\x04\x56\xc4\x03\x08\x65\x6b\x75\x5d\xcf\x6c\x5b\x7b\xf8\x4c\x36\x5e\xce\x76\xc4\xc1\x48\x61\x86\xcc\xb3\x6f\x15\x49\xcf\x09\x10\x82\x97\xac\x40\xab\xd1\x36\x75\x42\x79\xcb\x19\xb8\xc5\xf0\xbd\x89\xa1\x58\x87\x0b\xbc\x29\x6d\xf2\xf1\x76\x10\x35\xaf\xcd\xe2\xdb\x1a\x7d\xe4\x73\x8d\xa0\x31\x47\x3e\xdf\x0f\xae\x85\xac\x85\x1c\xfc\x89\x62\xb5\x36\x77\x3a\x61\x80\x07\xfa\x66\xd4\xe3\xf8\xe0\x0e\xf0\x8b\xfa\x60\x26\x01\x84\x0f\x0b\xc2\x75\x77\x7f\xd3\xc3\xc2\x1f\x1b\xd3\xc8\x05\xd7\x9c\x7c\xcc\xda\x91\x3c\x2a\x89\x85\x4b\x2d\x64\xe4\x25\x74\x4a\x42\x70\x13\x89\x50\x1c\x28\x1d\x3e\x92\x08\x0e\xf4\x66\xbf\xdf\xbf\x75\x7a\xf4\xce\xcb\x1c\xf0\x02\xa8\x91\xac\x01\xc6\x96\x25\x82\x8c\xcf\x95\xd9\xee\x00\x69\x89\x72\x73\x18\x19\x29\x84\x4d\x44\x6a\xb1\x1a\x6c\x8f\x43\xe2\x25\x76\xfb\x42\x10\x8d\x59\x4d\x1e\x05\x78\xc9\xf3\x62\x5c\xd5\xd9\xab\x99\xa9\x78\xeb\xd4\x05\x1f\x09\xce\x23\xe9\x3c\x41\xef\xa3\x97\x91\x44\xf3\x46\x1f\x07\x43\xd5\xf8\xd8\xc1\x91\x2e\x80\x6d\xad\x7c\x9b\xa8\x96\xec\x48\x17\xdd\xd6\x12\xf4\x89\xa7\x62\x96\xb9\x5a\x5e\xa7\x4a\xa8\xb5\x81\xe1\xa8\xf0\xae\x5e\x02\xd8\xb0\x0a\x12\x27\x98\x58\x09\x1b\x7b\xd6\x35\xc5\xac\x95\x3f\xd2\x45\x40\x4f\x8b\x35\x82\xf2\x1e\x4f\xe8\x83\x72\xd7\x00\x9e\x64\x0e\x05\xbd\x29\x8f\x3b\x00\xcf\xa4\xa6\x70\xa2\x94\xbd\x8e\xa3\x59\x98\xa2\x6c\x76\x45\xe1\x22\xdf\x0a\x9c\xb5\xd6\x34\xee\xe9\x75\x00\x95\x93\x99\x22\x75\x16\x4a\x85\x7d\x9a\xf3\x65\x55\xcc\x82\x66\x7c\x85\x46\x34\x36\xca\x0a\xd4\x41\xb3\xe4\x0d\xe2\xc8\xc9\xff\xc3\x31\x5f\x73\x44\xc9\x84\x1d\x70\xaf\x60\x5e\x42\xb0\x1c\x19\x9b\xd7\xc7\xbd\xce\x89\x6e\x69\x83\x11\x22\x9d\x21\x63\xb3\x79\xc9\xd9\x67\xd5\x29\x6c\x56\xed\x5d\xa7\xa9\x4c\xc8\xba\xcd\xd6\xb5\x99\x5a\xdf\x7b\xea\x2c\xc4\x2a\xc0\xea\x6c\xf7\x9b\x57\x91\x35\x49\x53\x44\x71\x99\x1a\x4a\x4f\x50\xa4\xa2\x14\x94\x7b\xdb\x2a\xce\xaf\xff\x0a\xaa\xc0\xc3\x4d\xc7\x02\x0f\xc5\x2b\x04\x98\x8c\x36\xd6\xfe\x8e\x9a\x65\x00\xc9\x98\x8b\xdc\x56\x89\x9b\xc3\x32\xa8\x14\x46\xc9\xea\x61\x3f\xff\xae\x55\xa9\xab\xb7\x85\x31\x83\x3b\xdf\x44\x93\x0e\xe0\xbd\xab\x2d\xfe\x8f\xa7\x8a\xa1\x3b\x94\x7f\x52\x00\xd7\x84\xd4\x55\xeb\x7b\x90\xcb\xdc\x61\xd6\xe0\xf6\xf1\x3d\x2e\x76\x73\xbc\xc0\x66\x8b\x24\x85\x33\xaf\x01\xde\xdd\x3d\xab\x3e\xf7\x4a\xe1\xab\x7c\x6b\xe6\x8d\x43\x6b\x66\xc0\x22\x6c\x83\xcf\xe3\xd2\xec\x5b\x9e\xde\x15\xd5\x7b\xb6\xa7\xcb\x3b\xb3\x7a\x6e\x47\x8c\x91\x82\x5d\x72\xeb\x43\x07\x83\x30\x08\xd1\x95\xc2\x69\xc2\xa2\xf3\xc6\xe4\xf2\x6e\xb1\x23\x4d\x18\x71\xa0\xa4\xde\x55\xbf\xdc\x27\xdb\xf9\x68\x3b\x6e\x15\x8b\x55\xc7\x6b\x31\xee\x6e\xa4\xbb\x2a\x6d\x27\xa9\xcd\xb8\x1e\x68\x3b\xa2\x96\xaa\xe3\x73\x0c\x8c\x1d\xbc\x29\xcf\x04\x1f\xdb\xb0\x74\x54\x18\xaf\x17\xeb\xea\x64\x7a\x8f\x97\x32\xd6\x21\x11\x76\x97\x6b\x97\xde\xae\xaf\x1a\x0d\x54\xe6\x44\x3f\xac\x95\x69\x89\x7a\xfd\x17\xf2\xd5\x36\xb6\x1d\xcc\x98\x47\x77\x80\xf7\x23\xc6\xc1\xb4\xf0\xcc\xe9\xa8\x7a\xd9\xf9\x44\x6d\xe6\x74\x59\xe9\x66\x7d\x74\xc5\xa3\x1e\xf0\xac\x49\x3e\x95\xab\xe6\xf6\x9e\x7b\x15\xc2\xcc\x95\x43\xb7\xb2\xf0\x87\xfe\xc6\x4d\x0d\xfe\xe3\x89\xb7\xdb\x3d\x3f\x3f\xef\x76\x4a\x6b\x7b\x7d\x6a\xd4\xed\x61\xa9\x52\xbb\x3d\xf8\xea\xa3\xb4\xa3\x1e\x97\xb0\xd5\xf8\x60\x14\xf6\x51\x99\xf0\xe1\x25\xce\x92\x59\x6b\x4f\x29\x71\x92\xfd\xee\xdf\x00\x00\x00\xff\xff\x80\x11\x5d\x0b\x2f\x0b\x00\x00")
440
441 func runtimeHelpCommandsMdBytes() ([]byte, error) {
442         return bindataRead(
443                 _runtimeHelpCommandsMd,
444                 "runtime/help/commands.md",
445         )
446 }
447
448 func runtimeHelpCommandsMd() (*asset, error) {
449         bytes, err := runtimeHelpCommandsMdBytes()
450         if err != nil {
451                 return nil, err
452         }
453
454         info := bindataFileInfo{name: "runtime/help/commands.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
455         a := &asset{bytes: bytes, info: info}
456         return a, nil
457 }
458
459 var _runtimeHelpHelpMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\xcf\x8e\xdc\xb6\x0f\xbe\xeb\x29\x08\xec\x21\xbf\xdf\x62\xd6\x0f\x90\x43\x80\xa0\x48\x9b\x3d\x04\x48\x90\xa0\x41\x6f\x43\xdb\x1c\x8b\x18\x59\x74\x25\xda\xde\xe9\xd3\x17\x94\xec\x99\xd9\xb4\xcd\x69\xc6\x94\xf8\xf1\xdf\xf7\x51\x0f\xf0\x89\xbb\x24\xe0\x29\x4c\xa0\xf4\xa2\xce\x55\x03\x67\x40\x50\x4a\x23\x47\x0c\x4f\x2d\x66\xea\xcb\x39\x50\xcf\x2a\x09\xd4\xa3\x02\xf2\x98\x41\x05\x5a\x02\xc2\x7c\xb1\xbf\x73\x26\xc0\xd8\x03\x47\x9d\x59\x79\xa1\x03\xb8\xd5\x73\x20\xc0\x90\x05\x14\xcf\x1c\x07\xc0\x7e\xc1\xa8\x38\x10\xc8\x09\xd4\x13\x9c\xe6\x10\xa0\xc3\x09\x5b\x0e\xac\x4c\xd9\x0e\x46\xe9\x29\xc5\x6b\x16\xb9\x71\xee\xf9\x04\x17\x99\x61\xc5\xa8\x16\x2d\x93\xe1\x86\x02\x71\xa6\x4b\xcb\xb1\xe7\x38\x64\x98\x12\xe5\x0c\xbf\x68\x0a\x1f\x4a\x36\x7a\x99\x08\x8e\xa5\xc8\xbb\x6b\xc7\xc6\xb9\xaf\x44\xc5\x3b\x5a\x6d\x99\x3a\x65\x89\x70\x92\x04\xa3\x24\x02\x8e\x27\x49\x23\x16\x23\xb6\x32\x2b\xf4\xd2\xcd\x23\x45\xdd\x6c\xb1\x2f\xad\x6b\x9c\x7b\x78\x78\x80\x2f\x33\x77\xe7\xa7\xac\x98\xd4\xb9\xcf\xd7\x1c\xbe\x58\xaa\x7f\xce\xac\x87\xe2\x60\xa6\xaf\x25\x7b\x5c\xa8\x81\xcf\x77\xb9\x9a\xd1\xbc\x2d\x61\xeb\x53\x27\xe3\x88\xb1\xcf\xce\xfc\xac\xf0\x0e\x63\x29\x7a\xf5\xdc\xf9\xeb\x31\x60\x22\xc0\x05\x39\x60\x1b\x08\xda\x4b\x6d\x80\x21\x28\xb6\x07\x90\x04\xed\xc5\x2d\x4c\x6b\x31\x79\xda\xe6\x2d\x13\x77\x70\x7c\x57\xbf\x76\xb0\x63\x03\xdf\x3d\x45\x78\x86\x35\xb1\x92\x9d\x37\x4d\x73\x84\x67\x18\x09\x63\x45\x76\x77\xad\xb5\xbb\xa5\xbf\xab\x47\xa5\x85\x92\x71\x47\x3d\x25\x6a\x9c\xfb\x24\x4b\xed\x6f\x37\xa7\x2c\x09\x30\xc9\x1c\x7b\x58\x59\x7d\x31\x8f\x62\x84\x29\x7c\x22\xc0\x94\x64\xb5\x01\x6d\x93\x2e\x7e\x12\x24\xe5\xce\xd3\x48\xd0\x0b\xe5\xf8\x46\x21\x88\x9c\x61\x10\xe9\x0f\xd7\x9e\x74\x1e\xe3\x40\xc0\x5a\xa1\x8f\xef\x20\x93\xbe\x72\xb6\x1a\x1a\xf7\xc7\x76\xbf\x12\x44\xb1\xdd\x59\x54\xe2\x5f\x3b\x78\xe7\x98\x4b\xfb\xec\xca\x3f\x18\x61\xa1\xdc\xad\x7d\xe6\x62\x94\xba\x0d\xf4\xbb\xa1\x8f\xd6\x82\x96\x74\x25\x8a\x90\xa7\xc0\x9a\x0f\x77\xa4\x7c\x07\x4b\x31\xc2\x89\x03\x45\x1c\xe9\x68\xf1\x0c\xf5\x07\xb3\x53\x01\x99\x28\x02\x42\xa4\xb5\x22\x6d\xbc\x7b\xdf\x75\xdb\xb8\x4b\x8e\x96\xcf\xae\x63\x8f\x26\xe4\x76\xe6\xa0\x4f\x1c\x6b\xaa\xf9\x92\x95\x46\x18\xe7\xce\x43\xe0\x33\xc1\xef\x3c\xbe\xc9\xf0\x3f\x0c\xea\x65\x1e\x3c\x04\x2b\x80\x5e\x94\x62\xe6\x85\xfe\xdf\x38\xf7\xad\x2a\xdb\x28\x3c\xbd\xe6\x2b\x96\xd8\x3b\x7b\x8a\x66\x6f\xd5\x71\xac\xaa\x3b\xc2\x49\x42\x90\x95\x7a\x23\x27\x56\xe6\x35\xee\x5b\x65\xf9\xbf\x5c\x89\xa2\xde\x8e\x56\x0e\xa1\x56\xad\x9e\x33\x4c\x38\x18\xab\x3e\x92\xf1\x3d\xd5\xa9\x4d\x92\x33\xdb\xd0\x6e\x9c\xce\x75\x3d\xed\xe4\x48\x84\xfd\x5b\xe7\x1e\x41\x67\x95\xc4\x18\xde\xc2\x7b\x68\x13\xd3\xe9\x6a\xd9\x04\x35\xf0\x42\x19\x30\x82\x2c\x94\x4c\x2f\xb6\x86\xf6\x05\x23\x46\xea\xfb\x28\xee\xf1\x7e\x9b\xbc\x85\xdf\xaa\x77\x5d\x66\x81\xb3\xee\xdb\xad\xa7\x13\xce\x41\x5f\xad\x28\xcc\xb0\x52\x08\xf6\xeb\x65\xb5\x4e\x26\xb2\x43\x73\x18\xdd\xe3\x55\x8e\x37\xd8\x1d\x71\xcf\xe7\xa6\x7e\x53\x94\x15\xac\x9e\x2e\xd0\x8b\x7b\x04\x99\x8c\xa1\x3f\x71\xde\x2e\xdc\x04\x34\x67\x95\x91\xff\x22\xf7\x08\x53\x98\x07\x36\xe7\x0f\x2f\x53\x40\x8e\x35\xc3\xd1\xf8\xf4\x26\x6f\xa7\x3b\x89\x56\x49\xe7\x9a\xc1\x56\x45\x97\x08\x95\x0c\x37\x81\xac\x71\x07\x2b\x15\x99\x42\xee\x50\x77\xc4\x7b\x99\x1a\x52\xbe\x44\xc5\x17\xf0\x3c\xf8\xc0\x83\x57\x23\x02\xc5\x81\x23\xfd\x47\x20\x07\x25\xd4\xbd\x6a\x4d\x44\xd8\xf7\x45\x2a\x01\xe3\x30\xe3\x40\xe5\xad\xb2\xe2\x2b\x98\x73\xbf\x4a\x02\x7a\xc1\x71\x0a\x74\x80\x5d\x5e\xd7\xf5\x38\x95\xf7\xe9\x5a\x41\x7d\x78\x64\x0e\xfd\xcf\x9e\x97\xed\xb2\xed\x81\x67\x48\x64\x33\xa2\xd8\x97\x95\x55\x1e\xbe\x32\x24\x38\xee\xbc\x3b\xd6\x50\x26\x72\x68\xa9\xc3\x2a\x32\xdb\xa0\xd9\x4b\xd2\xf2\x12\x11\x76\xfe\xfa\x34\x61\xec\x5d\x65\x69\x27\xb1\x4b\xa4\xb4\x57\x50\x9e\xcc\xad\x37\x06\x63\x71\x16\x4c\x2c\x73\xb9\x7b\xe2\x61\x4e\x75\x6f\xed\xb3\xe7\x58\x47\xd0\xc0\x47\x59\x6d\x73\x1f\x1c\x6b\xd9\xb2\xa6\xbf\x22\x86\x82\xc2\xf1\xa9\xa7\x49\xfd\x0f\x8f\x9f\x6e\x94\xdb\x84\xb1\x29\x6f\x4a\xb2\x70\x4f\x8d\xfb\x3b\x00\x00\xff\xff\x8f\x28\x12\xbf\x5b\x08\x00\x00")
460
461 func runtimeHelpHelpMdBytes() ([]byte, error) {
462         return bindataRead(
463                 _runtimeHelpHelpMd,
464                 "runtime/help/help.md",
465         )
466 }
467
468 func runtimeHelpHelpMd() (*asset, error) {
469         bytes, err := runtimeHelpHelpMdBytes()
470         if err != nil {
471                 return nil, err
472         }
473
474         info := bindataFileInfo{name: "runtime/help/help.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
475         a := &asset{bytes: bytes, info: info}
476         return a, nil
477 }
478
479 var _runtimeHelpKeybindingsMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x58\x5b\x77\x1b\x29\x12\x7e\x9e\xfa\x15\x1c\xe5\x61\x67\xce\xda\x8a\x75\xb5\x9d\x37\xc7\x31\xe3\x5c\xed\xc4\x56\x32\x99\x27\xa1\x6e\x24\xb1\xa1\x41\x69\x68\x2b\xda\x3d\xbb\xbf\x7d\x4f\x15\x7d\x01\x49\xf6\x43\x49\x86\x8f\xa2\x28\x8a\xaa\xaf\xf4\x82\xbd\x97\xbb\x85\x32\xb9\x32\x2b\x07\x70\x2b\x4b\xc9\x44\x29\x99\x5f\x4b\x96\xcb\xa5\xa8\xb4\x67\x3f\x3a\x04\x53\x86\xfd\xcb\x59\xc3\x96\xb6\x2c\x84\xef\xb3\xef\xb6\x62\x99\x30\xac\x94\x08\xc1\x65\x05\xf3\x96\xed\x6c\x55\x32\xad\x7e\x28\xb3\x3a\x61\x4b\xab\xb5\xdd\x2a\xb3\x22\xad\x4e\x14\xb2\x59\x0e\x30\x9f\xcf\x51\x1f\xfc\x07\x18\x63\xac\x37\xdb\xf4\x5e\xb1\xf8\xaf\x77\x5d\x95\xce\x96\xb3\x4d\xef\x24\x20\xde\xd8\xad\x49\x30\x35\x82\xc6\x6b\xcc\x17\xb5\x5a\xfb\x18\x54\x63\xc2\x78\x0d\xfa\x20\x97\xfe\x98\x22\x1a\xaf\x31\x0f\x6b\xb5\xf4\xb1\x4d\xbd\x07\xa9\x65\xe6\x3b\x73\x08\x11\xdb\x54\x23\x62\x73\x08\x13\x6f\x57\x63\x0e\x76\x8a\xed\xae\x31\x89\xc9\x57\xda\xa7\x56\xf7\xbe\xd9\x32\x8f\xd5\x5c\x69\x9f\x1e\x9e\x10\xfb\x4a\xd2\xcd\xea\x9d\x9e\x05\xb6\x5b\x46\xc0\xbd\x3d\xd3\x6b\xeb\x7d\xb4\x4f\xf2\x83\x32\xd2\x75\x7e\xba\xd2\x3e\xbd\xb9\x0e\x14\xbb\xea\xda\x97\x3a\x39\x62\xef\xc1\x8b\xd2\xdf\x2d\x11\x19\x83\x92\x53\xf6\x6e\x4c\x7e\x08\x49\x8c\xaf\x6d\x7f\xb4\xcf\xe8\x4b\x5c\xd2\x82\x8f\xea\x4d\x0e\x5b\x07\x0d\x69\x8d\x41\xc9\x61\x6b\xd0\x8d\xc9\x0f\xb6\x6c\x94\xa5\xf6\x1d\xc0\x1a\x75\xb1\x65\x0d\xe8\xc6\x78\x59\x26\xfe\x7f\x6b\x9c\x2c\xfd\x27\xb9\xd5\x91\xe9\x0f\x1b\x91\xc9\x23\xb0\x30\x1e\x6d\x78\x9b\x80\x5e\x8b\xec\x87\x8b\x21\xdd\xc0\xab\xe7\x20\x57\xda\x9f\x26\x9a\x7a\x6f\xa4\x96\x5e\x1e\x89\x9c\xd3\x44\xdd\x33\xb8\x47\xb1\x48\xd3\x42\xef\xad\xc9\xa5\xf1\xc1\x19\xca\x9a\x93\x70\x14\xc4\x45\x56\xfa\x78\x59\xef\xae\xf2\xc9\x9a\xf8\xc8\x77\xc9\x91\xef\x36\xd2\x70\xa5\xd3\xf8\x48\x10\x0f\xe2\x29\x99\xe5\xc9\x2c\x57\xe9\x45\x7f\x3a\x98\xfd\x24\x7f\x25\x77\x7c\x7f\x80\xb8\x2f\xe5\x93\xb2\x95\x8b\x51\x7f\x27\xa8\x99\xc9\x6d\x3c\xfb\x3d\x99\xfd\x22\xd3\xd9\xeb\x34\x1d\xda\xcd\x2e\x9e\xfd\x6b\x2f\x59\x26\xc6\xbd\xdf\x9f\xdc\x7f\x10\x6f\x12\xc0\x9b\x6a\xa3\x55\x26\xbc\xdc\x87\x7d\x4d\x60\xf7\xc2\xf9\x64\xfa\x2a\xf5\x30\x5d\xd3\x95\xd6\x31\xe4\x31\x81\x5c\xe5\x79\x74\xe1\x6d\x52\x78\xf8\x59\xbf\xa8\xc6\x85\x7b\x20\x0a\x38\x2d\xdc\x9a\x02\x0e\x6f\x22\x02\xdc\xda\x42\xa6\x45\xe1\x48\xbe\xc0\xb7\x97\x86\xe3\xd1\x3c\x91\xe8\x7a\x2e\x4f\x24\xba\x0e\xf3\xc4\xbd\x58\xc9\x63\xf9\xa6\x1e\x8f\x50\xc7\x12\x4e\x3b\x1e\x6d\xf8\x67\xe2\xc3\x47\xbb\x5a\x69\x79\x2b\xf5\x26\xf1\xe3\x11\xcc\x97\x4a\xcb\x32\x49\xd3\x09\xe8\x5d\x55\x6c\x62\x07\x84\x87\x1c\x1b\x5e\x8f\xc4\x37\x91\xde\xf8\x5a\x6a\xfd\xd1\xe6\x09\xe4\x73\x02\xf9\x5c\xa9\xd4\x79\x7b\x41\x5d\x14\xc2\xe4\xfb\x2a\xbe\x25\x20\xbc\xef\x87\x8d\x4e\xf5\xcc\x8e\x9c\xf7\xa3\xc8\xca\xe4\x05\xbd\x4b\xc3\x57\x8b\x5d\x03\x21\xcc\xcb\x97\xec\xa6\x10\x99\x3b\x75\x7e\xa7\x65\xcc\x99\xba\x5c\xb7\xc4\xda\x72\xac\xce\x9e\x2e\x9a\x99\xfd\xf4\x28\xa8\x1c\x1d\xc6\x20\xce\xa1\x7b\x0f\x43\x0f\x67\x30\x62\x0e\x98\x13\x4e\x98\x6e\xa2\x0e\x8c\xc6\xf8\xb7\xc6\xcb\x55\x29\x30\x33\xb2\xad\xf2\x6b\xb6\x54\x5a\xb2\x42\x18\xb1\x92\x65\x7d\x06\x3e\xa0\x37\x73\x18\x34\x7c\x18\x8a\x53\x94\x16\xf9\x98\x86\xe2\x2b\xe3\xe7\x34\x14\xa7\x47\x3e\x38\x43\x8b\x62\xd4\x8d\xcb\xe8\x5c\x2e\x13\x1b\xd4\xf6\x5f\xe4\x88\x00\x0d\xd1\xac\x5c\x20\xa7\x22\x10\x53\xc7\xfe\xc9\x44\x59\xda\xad\x43\xda\x59\xd8\x27\xc9\xb6\xb6\xcc\xd9\x62\x47\x9f\x7d\xc0\xab\x63\x5a\x2e\x3d\x13\x26\x67\x25\x3a\x3e\xc0\x50\x49\x46\x9e\xc0\x95\xc4\x4c\xd1\xcd\x04\x93\x26\x67\x76\x49\x83\x58\x42\x4f\x70\x10\x32\xd4\x54\x6d\x08\x90\xdb\xad\x39\x54\xf3\x9c\x8e\x45\xb5\x5c\xca\xb2\xdf\x1d\x62\x6d\x75\xce\x1c\x16\xf6\xe0\x6b\xa1\x75\x8d\x75\x92\xd4\x16\xd2\x78\x26\xa8\x4e\xd1\xc1\x1c\xa5\x43\xb6\x5d\xd3\xa5\xd8\x27\x65\x56\x7d\x80\x17\xec\x8b\xac\xa3\x8c\x7c\x01\xf0\x88\xbb\x35\x5c\xbd\x10\x3b\xb6\x90\x48\xcd\x6d\x65\x72\x56\xb9\x86\x82\xcf\xff\xf7\xb2\x9f\x59\xb3\x54\xab\x97\x85\xca\x4a\xfb\xb2\x59\xd2\x47\x2e\x3e\x07\xbc\xfa\x3e\xbb\x11\xd9\x1a\xd5\x32\xe5\x58\xd0\xe0\x2d\x13\xa6\x36\xab\x0f\xc0\x6d\xc9\xe4\x2f\x51\x6c\xb4\x3c\xc1\x39\xea\x00\xe6\xe8\xf0\xd3\xdd\x1c\x07\x2a\x93\x5b\xf2\x45\x18\xfc\x37\x0d\x96\x32\xb7\x27\xd8\x20\xb0\xcc\x56\x3a\x67\x9b\xca\xa3\x51\xd0\x75\x09\xca\x04\x2b\x53\xab\x28\x20\x93\x8e\xe1\xb7\xb6\xee\x35\xc5\xf0\xb7\xb6\x4e\x86\x02\xb8\x1f\x3c\x42\x3b\xcb\xb2\xb5\x50\x86\x65\x21\x5b\x38\xb6\x5d\xcb\xa6\x7d\x41\xaf\xb2\xe4\x54\x6a\x49\x96\x6e\x85\xf1\x0c\xdf\x4f\xb8\x0c\xf1\x24\x01\x8f\xf5\xb3\x52\x3e\x9c\x44\x98\x70\x7a\xe5\xb1\xeb\x91\xcc\xd9\x57\x07\xbd\x0d\xad\xa7\xe7\x2c\x9e\xe4\x09\x85\x7c\x63\xdf\x0b\x36\x33\xe9\x45\xbe\xf5\xe8\x76\xb2\x77\x63\x9d\x53\x0b\x2d\x71\xeb\x5c\x39\x81\x5f\x85\xd9\x35\xc1\x15\x75\x69\xdd\xd5\x2f\x76\xf4\x50\x6a\x08\xcc\x83\xfa\xf7\x72\x37\xaf\xaf\xaf\x71\x72\xe5\x64\xf9\x0f\xf7\x9c\xaf\x5f\xb0\xd7\xca\xe4\x61\xc7\x3a\x18\xf1\xdc\x8b\x66\xb0\x0b\x3a\xad\x9c\xc7\xed\x8e\xf5\x8c\x99\x35\x5e\x28\xe3\x58\x61\x03\x08\x37\x6e\x4f\x15\x2b\x26\x7d\xdb\xb5\xca\xd6\xad\x5b\x2b\x27\x4f\xd8\xa2\xf2\xcc\x58\x1f\xbd\x93\xa2\xcf\xa8\x57\x45\x27\xb1\x65\xa5\x75\x6b\xc1\xc2\xfa\x35\x06\x67\x3c\xb6\xbf\x59\xb8\x1c\x68\x32\x24\x74\x19\x11\xe2\xfa\x0a\x69\x19\x85\xae\x41\x84\xa8\xa1\x84\xa8\xb4\x43\x5b\xc1\x21\x21\xf4\x10\xf1\x76\x68\x7a\x48\xe8\x5a\x45\xe8\x3a\x42\x88\x1a\x3f\x68\x8b\x05\x34\xc5\x01\xf6\xba\x35\x48\x9b\x32\x88\x7a\x2f\x48\x5a\x2c\xe8\xb8\x75\x58\x98\x72\x6d\x38\xd2\x20\xc1\x41\x1f\x04\x49\x6b\x01\x51\x07\x01\x2d\x91\xaf\x15\xc3\xb5\xc4\xc6\x04\x5a\x6a\x0e\x18\xf7\x24\xae\x1c\x60\x11\x80\x86\x0a\x43\xcc\x78\x01\xdf\x32\xe0\xf3\x05\xa4\xa9\x70\x5d\xa1\x57\x89\x74\x42\xc2\x2d\xeb\x7d\x6a\xb3\x12\x6e\x0f\xfb\x64\x1f\x88\x6e\x42\xcb\x2a\xa1\xe1\xf8\x10\xae\x07\xaf\xa5\xbe\xf3\xf6\xb6\x6f\x85\x5e\xd6\x63\xcd\xd7\x70\x55\x91\x83\x3a\xc7\x74\x45\x11\x22\xc2\x04\x0d\x2f\x82\x6b\x2d\x05\xc6\x88\xaf\x1c\xb4\x54\x07\x22\xce\x02\x98\x11\x48\xa0\x7d\x81\xdc\x42\xc4\x61\xa1\xa6\xaa\xd0\x52\x18\x98\x19\x47\x9f\x5f\xc3\xbf\xb7\xe1\xa3\x59\x13\xfe\x8b\xd8\x0c\xb4\xa4\x05\xda\x7c\x10\xf2\x4f\xf3\x94\x7c\xf4\x92\xf1\xad\xb5\xef\x86\x2a\x6d\x9c\xe9\xea\x17\x34\xdb\x00\xf9\x24\x44\x14\xc5\xd1\x6c\x53\x7f\xd4\x51\x66\xb7\x86\x06\xf0\x4b\xfd\x5e\x42\x60\x1c\xf8\xdb\x16\xe4\xd0\x3a\x62\x9a\x30\x22\x97\xde\xfc\x52\x3e\xb8\x10\xae\x85\xc9\xa4\x86\xfb\x52\x19\x0f\xf7\xa2\x72\x21\xf4\xbc\x58\x00\x1f\x00\x1f\x02\x1f\x01\x1f\x03\x9f\x00\x9f\x02\x3f\x07\x7e\x01\xfc\x12\xf8\xe0\x0c\xf8\x60\x00\x7c\x30\x04\x3e\x18\x01\x1f\x8c\x81\x0f\x26\xc0\x07\x53\xe0\x83\x73\xe0\x83\x0b\xe0\x83\x4b\xe0\xc3\x33\xe0\x43\xd4\x33\x04\x3e\x1c\x01\x1f\x8e\x81\x0f\x27\xc0\x87\x53\xe0\xc3\x73\xe0\xc3\x0b\xe0\xc3\x4b\xe0\xa3\x33\xe0\xa3\x01\xf0\x11\x6e\x38\x02\x3e\x1a\x03\x1f\x4d\x80\x8f\xa6\xc0\x47\xe7\xc0\x47\x17\xc0\x47\x97\xc0\xc7\x67\xc0\xc7\x03\xe0\xe3\x21\xf0\x31\x5a\x36\x06\x3e\x9e\x00\x1f\x4f\x81\x8f\xcf\x81\x8f\x2f\x80\x8f\x2f\x81\x4f\xce\x80\x4f\x06\xc0\x27\x43\xe0\x93\x11\xf0\x09\x1e\x61\x02\x7c\x32\x05\x3e\x39\x07\x3e\xb9\x00\x3e\xb9\x04\x3e\x3d\x03\x3e\x1d\x00\x9f\x0e\x81\x4f\x47\xc0\xa7\x63\xa2\x38\xe1\x0d\x52\x1f\x45\xf2\x35\xc9\x6b\x92\x6f\x48\xde\x90\xe4\x24\xff\x24\x79\x4b\xf2\x2d\xc9\x77\x24\xdf\x93\xfc\x40\xf2\x23\xc9\x4f\x24\xef\x48\xde\x93\xfc\x4c\xf2\x4b\xd8\x95\xe4\x23\xc9\x19\xc9\xaf\x24\xbf\x91\xfc\x8b\xe4\x77\x92\x7f\x43\xf3\xd3\xce\xc3\x4f\x48\xda\x30\x88\x3a\xb7\x60\xb4\x28\x85\x0f\x2a\x4d\x2e\x4b\x97\xd9\x32\xce\x2e\xf8\x04\x6e\x5c\x06\x81\x20\x02\xfd\xfa\x11\xa2\xf8\x93\xf5\xf2\x15\xbb\x33\xcc\xd9\x42\x32\xa4\x58\x5e\x96\x85\x32\x42\x33\x59\x54\x5a\x78\x5b\x86\x32\x63\x0d\xfb\xa6\x4c\x8e\xa4\xb1\x10\xd9\x1a\x33\xe4\x49\xe0\x28\xb7\x73\xe6\xd6\x44\x4b\x16\x54\x1b\x73\x58\xda\x92\x2d\x9a\xcd\xfb\x80\x0f\x53\x61\x46\x11\x5a\xef\x4e\x3a\x16\x4a\xef\x42\xd6\x3c\x89\xaa\x2f\xd6\xf2\x39\xd6\xfc\x1f\x72\x37\x4f\x68\x45\x18\x16\x73\xb0\x65\xf8\x3a\xdb\xcc\xfb\xec\x23\x32\x31\xe6\xaa\xcd\xc6\x96\x1e\xed\x64\x76\x13\x36\x62\xf3\xd3\x39\x5b\x48\xbf\x95\x12\x49\x67\xae\x96\x4a\x96\x2e\x10\x0d\x5c\x3f\xef\x38\xd6\x1c\x9c\x6d\xd4\xd7\xfc\x8a\x18\xe0\xb6\x54\xde\x4b\xc3\x84\xa3\x59\x31\x67\xbf\x67\x02\xb9\xa6\xf0\x1e\x75\xe1\x29\xf1\x2c\x4d\xcd\xfe\xa3\xcf\x1e\xd7\xca\x31\x85\xe5\x78\xd7\x90\x85\x63\xc5\xbd\x49\x0a\x4e\x06\x63\xda\x5f\xdd\xe6\x4c\x19\xe7\xa5\x20\x16\x4c\x26\x45\x53\xf0\xbb\x5f\xcb\x1d\xfd\xd2\x2c\x7f\x56\xea\x49\x68\x69\xfc\x1f\x7d\xf8\x7f\x00\x00\x00\xff\xff\x37\xd0\x10\x87\x8f\x16\x00\x00")
480
481 func runtimeHelpKeybindingsMdBytes() ([]byte, error) {
482         return bindataRead(
483                 _runtimeHelpKeybindingsMd,
484                 "runtime/help/keybindings.md",
485         )
486 }
487
488 func runtimeHelpKeybindingsMd() (*asset, error) {
489         bytes, err := runtimeHelpKeybindingsMdBytes()
490         if err != nil {
491                 return nil, err
492         }
493
494         info := bindataFileInfo{name: "runtime/help/keybindings.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
495         a := &asset{bytes: bytes, info: info}
496         return a, nil
497 }
498
499 var _runtimeHelpOptionsMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x58\x51\x8f\xdc\x36\xee\x7f\x5e\x7f\x0a\x62\x53\x60\x77\x83\x59\x6f\xd0\x7f\x1e\x8a\x79\xf9\x23\x4d\xee\xd2\x00\x4d\x53\xb4\xc1\xa1\xc5\xe1\x50\xc9\x36\x6d\xeb\x22\x4b\x3e\x49\x9e\x59\xa7\xc8\x7d\xf6\x03\x29\x69\xec\x99\x9d\xdd\xe6\x6d\x46\x96\x48\xea\x47\xf2\x47\x52\xcf\x9e\x3d\x83\x0f\x63\x50\xd6\xf8\xa2\x78\xaf\x6a\x67\xc1\x07\xeb\xd0\x83\xd4\x1a\x6c\x0b\xa1\x47\x98\x3c\x3a\xa8\xad\x69\x55\x37\x39\x49\x9b\x41\x19\x50\xc1\x9f\x2c\x36\xca\x61\x1d\xac\x9b\xcb\x2c\x6b\xf2\xe8\x59\x84\xf8\xe6\xb7\x37\x6f\xff\x78\xfd\xe1\xa7\xbf\xbf\x7b\xfb\xc7\x0f\x1f\xde\xff\xed\x6e\xa0\x0d\x02\x64\xfc\xfe\x98\x20\x78\xe5\x61\x44\x57\xd0\x9e\xdf\xde\xbc\x05\x3f\x62\xbd\x01\xd5\x3e\x14\x28\x40\x79\x30\x36\x80\xc7\xb0\x01\xf1\xdf\xbb\x32\xca\xcc\x8a\x94\x27\x6b\x1a\x52\x58\x2c\x1a\x8f\x6c\xfe\x01\x1d\x82\x74\xc8\x16\xd9\x88\x0a\x84\x5e\x06\x98\xed\x04\xb5\x34\x24\x7b\x5b\x14\xcf\x41\xd4\x56\x5b\xe7\xeb\x1e\x07\x14\x5b\xd0\x56\x36\xf9\x1e\x87\xf5\x08\x64\x43\x50\x15\x00\xf0\xcd\x75\xd4\xf8\x46\xb9\x9b\xbb\xd5\x36\x7f\x27\xa2\x2a\x51\xb2\xa5\xb4\xf7\x63\xaf\x3c\xe9\x0a\xca\x74\x64\xb8\xe8\xb4\xad\xa4\x06\x6b\xf4\x2c\xca\xa2\xb8\x68\xb0\x95\x93\x0e\xb0\x93\x7a\xc2\x2d\x88\xf4\x5f\x14\x17\x3f\xd9\x80\xd1\x66\x32\x27\xef\x5b\xeb\x83\xeb\xb4\xba\x01\x6f\xb5\x74\xea\x33\x36\x1b\x90\xa6\x59\xfe\xde\x86\xfa\xa6\xb8\x20\x24\x08\x50\x6d\x6b\x19\xe2\x45\x0e\x57\xd8\x40\x85\xb5\x9c\x3c\x63\x35\x33\x68\x38\x54\xd8\x34\x71\x1f\xe9\xe6\xdb\x40\xa5\x8c\x64\x70\x2f\x3e\x9e\xc0\x43\x78\x56\x08\x1e\x35\xd6\x24\xbe\x75\x76\xe0\xa8\xa3\xc3\xad\xd2\xe8\xb3\xa4\xe2\xe2\xc4\x9b\xc7\xf8\xad\xc3\x25\x86\x5d\x6d\xe9\x9e\xd5\x7c\xb8\xff\x5e\x85\x1e\x42\xef\x10\x8b\x8b\xf5\xd9\x6d\x41\x70\xc3\xef\xc9\xbd\x0e\x65\x03\x83\xa5\x28\xa8\xec\x14\xe2\x15\xae\xfc\x31\x7c\xc9\xa8\x14\x02\x02\x7a\xd4\x23\x04\x3b\xaa\x9a\x65\x5d\x0b\x5e\x48\x5f\x6f\xca\x25\x5c\x6a\xab\xa7\xc1\x88\x2d\x85\x6f\x20\x0f\x2f\x01\x0b\xc1\xc2\x8b\x0d\x28\xb2\x54\x6b\x68\x94\x1f\xb5\x9c\x41\x42\x3c\x03\xc9\x9d\x14\xfd\xaa\x55\xd8\x90\xa6\xf8\xa9\x8c\xc1\x12\xa3\xbb\x9d\x34\x09\xa7\x68\xdd\x4b\x13\xf2\xe9\xef\x5e\x90\xfc\x0a\xa1\x57\x5d\xaf\x55\xd7\x13\xdc\x2c\x4b\x6a\x68\xad\x03\xbc\x97\xc3\xa8\xf1\x5c\x64\xbd\x10\x7c\x01\xb4\xad\xc1\xbd\x56\x86\xc2\x3d\x7a\x96\x2d\x95\x53\xb0\x83\x0c\xaa\x96\x5a\xcf\x20\x9b\x06\x24\xa4\x8d\xa4\x33\xbb\xf2\x9c\xe4\x56\x6a\x8f\x51\xba\x1b\x82\x93\x4a\x2b\xd3\xed\xfd\x53\xf2\x83\x53\x03\xe4\xad\xb0\xef\x55\x40\x3f\xca\x9a\xd8\x2a\x00\x5a\xfd\x17\x6a\x82\xac\xbc\xfa\x4c\x37\xf0\x18\x62\xbe\x06\x59\x01\xad\x91\xb1\x39\x0f\xcf\x08\x79\x19\x05\x28\xd3\xa0\x09\x75\x2f\xdd\x5a\x46\x5c\x8d\xcc\x45\xdf\x64\x1d\xd0\x9d\x11\x02\x59\x48\x6b\x2b\x96\x80\x46\x56\x3a\x11\x24\x23\x96\xdc\x5c\xd9\x10\xec\x90\xd9\x17\x1b\x15\xac\x83\x7d\x4f\xec\x34\xa0\xf7\xb2\xa3\x0b\x3b\x84\xd1\x29\x13\xb0\x29\x0f\x94\x11\x2f\xf0\x55\x8c\xc1\xf7\x7c\x0e\x82\xbc\x13\xe6\xf1\x08\x94\xbc\xc6\xb1\xc1\xac\x36\x39\x87\x26\x40\x35\xb5\x2d\xba\xf2\x21\x3f\x11\x45\x24\x65\x31\xa3\x4e\xd4\x71\xb8\xb3\x43\x2b\x3c\xf1\x29\x45\x7f\x83\x23\x9a\x86\x84\x59\x73\xb0\x80\xc3\xb8\x97\x3b\xa2\x62\x34\x11\xba\xce\x58\x87\xb5\xf4\x64\xee\x88\xae\xb5\x6e\x00\xfa\x7b\xab\x8c\x47\xe3\x55\x50\x3b\x62\x14\xe9\xea\x1e\xfd\xb9\x5b\xb7\x6d\xbc\xb6\x9f\x4d\x90\xf7\x62\x0b\x61\x72\xc6\x43\xfc\x4b\xda\xad\x03\xdb\xb6\x4f\x00\x46\x41\x14\x6c\x0c\x3b\xb1\xa5\xac\x83\x14\x83\xca\xf8\x40\x04\x42\x7e\x93\xd5\x93\xea\x09\x82\x18\x36\x62\x4b\x9e\x35\x50\x3b\x94\x0c\x27\xe7\x4f\x0c\x87\x44\xaf\xe0\xe5\x70\x1c\x65\xa9\x68\x12\xd2\xa3\xc3\x9d\xb2\x93\xe7\x13\x4f\x98\x5d\x4f\xce\x5b\x97\x12\xf8\xc0\x03\x4b\xe8\x1d\x4a\x46\xdc\x48\x5e\x8d\x65\x5e\x42\xa3\xc8\xeb\x68\x52\x19\x21\xad\xd7\x87\x5a\x47\x1b\x1b\x6c\x95\xc1\x86\x08\xf7\xb4\x06\x92\x0f\x29\x54\x27\xaf\x4c\x77\xf3\x84\x7d\x6e\xd2\x48\x39\x91\xa9\x8f\x8d\x32\xd3\x50\xa1\x3b\x8b\x64\x3a\xe6\x83\x0c\x93\x4f\xd7\xca\x67\x19\x33\xfe\xf0\x44\x5a\xf9\xda\x21\x85\xd5\xe3\xa2\xe5\x0e\x23\x18\x62\x0b\x0e\x07\xaa\x6f\x39\x0d\x57\x40\xed\xa5\x07\x2d\x7d\x80\xa0\x06\x5c\x82\x97\x96\x29\x6e\xa9\xe3\x30\xcc\xd7\xe3\x14\x88\xe0\x03\x0b\x60\x9f\x13\x38\xb4\x67\x39\x25\x3b\xa9\xce\xda\x74\x88\x5b\xb9\xc3\xc9\x34\x36\x87\x4d\x38\x4e\x7b\x6b\x36\x40\x9f\xe9\x37\x6d\x6d\x00\x77\x68\x40\xb6\x01\x5d\x6c\x62\xb4\xf5\x08\x92\xb5\x91\x51\xde\xe6\x82\x91\xbe\x98\x06\x1c\xb2\x51\x71\xd3\xe6\xd0\xfb\x7c\x42\x1c\x59\xb8\x32\xdd\x93\x26\xd6\xce\x6a\x3d\x48\xd7\x29\x2a\x76\x72\xb0\x93\x09\x84\x3a\xf9\xc2\xc7\xe2\x64\x27\xdd\x80\x56\x9f\x98\x77\x3d\x72\xbd\xdd\x45\xed\x15\x6a\xbb\x5f\x01\x7c\x46\xd5\xff\xad\x15\xf9\x11\xb1\x39\xa3\x87\x04\xf3\x06\x66\x31\x6b\x30\xff\x25\x44\xc2\x19\xa9\xdf\x26\xa9\xb6\x0d\x7b\x27\x47\x22\xc4\x9e\xed\x4c\xe5\xc8\xc9\x31\x8b\xa6\x5c\xe1\x3e\xd1\x5a\xd0\xd6\x74\xa4\xac\x55\x21\xb3\xd7\xe3\xa1\x75\xc0\x68\xd4\x2a\xfc\x42\x19\x98\x1d\x29\x61\x87\x8e\x39\x11\xf8\x23\x79\x90\x39\x81\x9a\xb3\x64\x88\x0a\x44\x9f\x69\x35\x97\x57\xc7\x79\x6c\x5b\xf2\xe6\x9a\xab\x59\xca\xff\x3f\x15\xdf\xb4\xe1\x7b\xce\x89\xc5\x88\xde\x3a\xf5\xd9\x9a\xf0\xf5\x66\x1c\xfc\xc5\x3d\xc9\xd7\x2a\x27\x02\xa4\x00\x3d\xae\xf6\xb4\x12\x53\x95\x0b\x0d\xb9\xca\xcd\xf0\x1d\x78\xac\xad\x69\xfc\x71\xe5\xe0\xb2\x17\xfb\x3d\xa9\xfd\xd9\x7e\x81\xe5\x51\x50\xfd\x67\xa2\xd6\x2a\xe7\x1c\xde\xab\xd8\x12\x52\x8f\x27\xfd\x27\x65\x3a\x16\xf6\x3d\x35\xa5\x8e\xbb\x28\xde\xcb\xa4\x15\x53\xac\x45\x19\x26\x87\x4b\xdb\x4b\x72\x06\x86\x5e\xd6\xb5\x62\x6a\x5e\x34\xc6\xcc\x21\x91\x76\x87\x6e\xef\x54\x88\xfd\x8a\x0c\xcc\x0b\x91\x02\x2a\x6c\xad\x3b\xdb\x19\x1d\xc2\x64\xd4\x53\xa7\x4c\xdd\x4b\x63\x50\x53\xb5\xa9\xc9\x35\xca\xf8\x43\x9f\x9c\xbf\x1d\x5a\xd5\x78\x04\x06\x69\x64\x47\x74\xc5\xb0\x72\x41\x24\x73\x28\x15\xe2\x0e\x2a\x57\x25\xbc\xca\x02\x98\x30\xd4\x30\x52\x13\x07\x5a\x79\x4e\xa4\x2b\x87\xa3\xf5\xd4\x7d\xcc\x57\xf0\x6f\x6f\x4d\x6a\xcb\xf7\xbd\xaa\xfb\x6c\x0b\x89\x1d\x30\xc8\x46\x06\x99\xda\x66\x32\xac\x53\x44\x3c\x51\x57\x09\xbf\x62\xf4\xab\xf8\x39\x9a\xf7\x3e\x9a\x27\xc8\xb3\xcc\x5d\x89\x94\xd3\x8d\x1f\x74\xd5\x64\x37\xf7\xe5\xd4\x3c\xb9\x81\xab\xe0\x39\xe4\xfa\x10\x46\xbf\xbd\xbb\xeb\x54\xe8\xa7\xaa\xac\xed\x10\x07\x86\xdb\xd8\x44\xdd\x45\xf1\xb7\xe9\xd2\x6b\x90\xf9\xaa\xe7\x10\x5e\x40\x50\xe8\xaf\xbe\x02\x67\x32\x96\xf9\xfe\x08\xe7\x05\x4a\x52\xe1\x95\x0f\x9e\x2e\x2d\x41\xd0\x97\x92\xd0\x15\xa9\x72\xac\xd1\xf5\x0b\xb6\x84\x81\x64\xce\x56\xa6\xd3\x98\xb1\x7d\xbc\xd1\x9c\x3c\x8e\x4e\x0d\xd2\xcd\x02\xae\xa9\x37\xcb\x23\x82\x35\xf0\xa3\x32\xd3\xfd\xcd\x36\x95\x6e\x72\x29\x52\x54\x52\xfb\x43\x23\xc9\x2a\x27\x73\x13\x92\x44\x41\xad\xd5\x58\x59\xe9\x98\x80\x6a\x3b\xce\x69\x82\xe3\x27\x04\x80\x3c\x1e\x55\xb2\xfe\xd4\x39\x3b\x99\x26\xb5\x8b\x8d\xc5\x38\xee\xc8\xb6\xc5\x3a\x06\x89\x21\x5f\xea\x95\xc8\x98\x71\xaf\x83\xd3\xb7\xaf\x39\x71\xf9\xe7\x3f\x1e\x6d\x60\x6f\x6f\x6f\x8b\xe2\x4d\xfa\x92\x5c\x92\x06\xf7\xed\x81\x67\xb8\xb2\x89\x2d\xbc\x3a\xe2\x86\x58\xef\xc4\x9f\x5f\x04\x88\xeb\x1b\x01\xe2\x9f\xff\x12\x20\x2e\x2f\x05\x88\xab\x2b\x51\xc2\xcf\xce\xee\x54\xb3\x74\x35\x2b\x51\x49\xd3\x13\xf4\xa6\xa9\x31\x77\x0f\x74\xd2\x72\xae\xdb\xa9\xe2\xe7\x42\x7d\x46\x61\x12\xf2\x17\xda\x5e\x99\x39\x37\x00\xc4\x49\xd4\x4e\x27\x17\xe4\xc1\x21\xb5\xdd\xb1\x1f\x58\x0d\x65\x50\x9c\x8e\xd5\xa9\xa5\xf7\x1c\x8e\xe0\xed\x86\x44\x21\xfb\x8b\xfb\x80\xd3\x57\xa0\x18\xaf\x49\x7e\x91\x2b\x02\x05\xea\x6c\xa7\x12\xde\x71\x67\x71\xb5\x54\xfa\x20\x3f\xe1\x39\x39\x3c\x9e\x93\xf5\xc1\x82\x34\x96\x22\xb1\x18\x64\xdd\x2b\x83\x9b\x4c\x4b\x1c\x6a\x5c\x5d\x8f\x8c\x4c\xf7\xe1\x33\x90\xce\x94\x45\xf1\x0c\xde\xc6\x01\x88\x82\x28\x4e\x27\xf9\x5c\x51\xfc\xbe\xbc\xe6\xd0\x61\xbf\xc8\x04\x54\x2c\x28\x4e\x4f\x7a\xa6\x7c\xe0\xd3\x7a\x2e\xe1\xc7\xf8\x03\x06\x94\xf9\x5d\x68\x65\x4f\xb1\xb7\xe6\x2a\x1c\x01\x7d\xfa\x08\x75\x8c\xaf\x60\xdb\x58\x4c\x9e\xfb\x39\x49\xf9\x4d\x84\x9c\x58\x9c\x1b\xbd\x7e\x4d\x53\x97\xcc\x81\xbe\xd8\xaa\xfc\xfa\xcd\x27\x3e\xe9\x24\x5e\x0a\xab\x27\xad\x82\x9a\x7a\x72\x19\x4b\xf4\x65\x51\x7c\x5c\x9e\x33\xe2\x8b\xd6\xaa\xa3\x5c\xcd\x91\x9b\x64\x30\xae\xa6\xc6\xd5\xce\x65\x06\x2c\xe1\xa3\x2d\x48\xe9\x62\x64\x02\x71\xc3\x74\x22\x3c\x06\x5e\x10\xeb\x99\x89\x56\x69\x54\x7d\x97\xde\x57\x4e\xc0\x3a\x8c\x84\xe4\x39\x2e\xf8\xd4\x50\x93\x96\xfc\x52\x97\x74\x50\xfe\xc4\x87\x92\x39\xce\x53\x74\x85\x32\x3e\xee\x29\x4f\x36\xa5\xe7\x8e\xc4\xb4\xbd\xf4\x27\x53\x1d\x11\x24\xb3\x2d\x35\x8f\x5c\xf1\xf0\xbe\xc6\x31\xc0\x5b\x1b\xff\x33\x12\xc5\xe1\x3d\x01\x5e\x9e\xdf\xfe\xcb\x54\xcd\x71\x65\x5b\x14\x42\x08\xba\x48\xf1\x27\xcf\xc7\x97\xcf\xcb\xce\x5e\x6e\x21\xfe\xe3\x95\xb5\x09\x97\x5b\xe0\x77\x0b\xfe\xfa\x65\x93\x8f\xb8\xea\xe1\x11\xf5\x19\x2f\xb7\xf0\xed\xd1\xce\x13\x51\xc1\x4d\xb8\xfa\x12\x4f\xbc\x2c\xbe\x90\x4d\x45\xf1\xca\xaf\x9e\x37\x11\x62\xcf\x47\x0d\x13\x02\x4a\x3f\xc7\x0e\xfd\x21\xca\xb9\x39\x3a\xef\xa9\xb2\xf8\x5f\x00\x00\x00\xff\xff\xdf\xb7\x0d\xca\x5a\x16\x00\x00")
500
501 func runtimeHelpOptionsMdBytes() ([]byte, error) {
502         return bindataRead(
503                 _runtimeHelpOptionsMd,
504                 "runtime/help/options.md",
505         )
506 }
507
508 func runtimeHelpOptionsMd() (*asset, error) {
509         bytes, err := runtimeHelpOptionsMdBytes()
510         if err != nil {
511                 return nil, err
512         }
513
514         info := bindataFileInfo{name: "runtime/help/options.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
515         a := &asset{bytes: bytes, info: info}
516         return a, nil
517 }
518
519 var _runtimeHelpPluginsMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x3a\x5d\x8f\xdc\x36\x92\xef\xfa\x15\x85\xd9\x07\x77\x07\x6d\x4d\x16\xf7\x36\x80\x17\xb0\x9d\xc4\xf1\x9e\x63\x07\x9e\x49\x82\x85\x61\x80\x6c\xa9\xd4\x62\x86\x22\xb5\x24\xd5\x3d\x7d\x46\xee\xb7\x1f\xaa\x8a\x94\xd4\xe3\xc9\x22\x2f\xb7\xc0\x66\xd4\x52\xb1\xbe\xbf\xe9\xbf\xc1\xcf\x76\x3a\x18\x17\xab\xea\x27\xd3\x04\x0f\x71\x1a\x47\x1f\x52\x84\x26\xa0\x4e\xc6\x1d\x60\x14\x00\x38\x99\xd4\x83\x86\x68\x86\xd1\x22\xbc\x9b\x34\xc4\x73\x4c\x38\xd4\xf0\xfd\x11\xc3\x39\xc3\x41\xaf\x23\xe8\x6a\xd0\xc6\x41\x6c\x82\x19\x13\x9c\x7a\xd3\xf4\x60\x22\x84\xc9\x81\x4e\x10\x93\x0e\x69\x1a\xf3\xfb\xd8\xfb\xc9\xb6\xb0\x47\x18\xad\x6e\xb0\x05\xe3\xa0\x52\xff\x7b\x5d\x37\xde\x75\xe6\x70\x3d\x10\x5b\xd7\x99\x89\xfc\xf7\xbd\x1e\x70\xf5\x58\xdb\x49\xab\xba\xaa\xee\x7a\x0c\x08\x9a\xfe\x0f\x6e\x1a\xf6\x18\xc0\x77\xd0\x68\x6b\xf7\xba\xb9\x87\x6e\x72\x4d\x32\x9e\x44\x61\xca\x67\x3f\x41\xa3\x9d\x48\x8a\x44\xf7\xec\xa7\x50\x65\x39\x92\x67\x7e\x1b\xdf\x22\x31\x9d\xcc\x80\x11\x7c\xea\x31\x40\xea\xb5\x2b\x52\xd4\x70\xd7\x23\x38\x3d\x90\xaa\x62\xd3\xe3\x80\x60\x62\xa5\xbc\x7b\xc9\xc4\x36\x47\x83\xa7\xad\xaa\xe1\x07\x1f\x00\x1f\x34\x2b\x4f\xcf\xbc\x5c\x2a\x07\x59\x91\x44\x0a\x52\x8f\x30\x45\x0c\x10\xf5\x11\x63\x45\x3f\xf7\x53\xd7\x61\x80\x53\xd6\xd7\x4d\x55\x29\xa5\xec\xa4\xab\x19\x99\x77\xb7\xfa\x88\x42\xb2\x02\x00\xa8\xeb\x9a\xff\x06\x4c\x53\x70\xd0\x69\x1b\xb1\x42\xd7\xd2\x49\xd6\x17\x28\x02\x56\x70\xd4\xc1\xe8\xbd\x25\xde\x41\x43\xc0\x0e\x03\xba\x06\x49\x0b\x44\x9a\x80\xf8\x41\x0b\x21\x13\x61\x8f\x24\x31\x3e\x60\x33\x25\x6c\xc1\xbb\xba\xba\xeb\x4d\x64\x04\x76\xf0\x31\x81\xb6\x27\x7d\x8e\x7c\xac\x99\x42\x40\x97\x18\xcf\xee\x91\xfa\x0f\x98\xc4\xb7\xd4\xeb\x29\xfc\x6a\xf0\xb4\xd9\x2a\xd0\x11\x4e\x68\x6d\x5d\x55\x2f\xad\x05\x7d\xd4\xc6\x32\x7b\x3a\x5b\x90\x8c\x6c\x4d\x4c\xe2\x2f\x44\xe2\x1e\xcf\x7b\xe3\x5a\xe3\x0e\x11\x22\x66\x7d\x74\xfc\xa9\x47\x3b\x8a\x7b\x44\x5c\x79\x41\xf6\x3c\x6d\xa3\x2f\x0a\xd2\xb0\xf7\xde\x22\x99\x77\xc4\xc6\x74\x67\x92\xf1\xd4\x63\x36\xbb\x28\xa2\x5a\x5c\x36\xa0\xf5\x8d\x26\x2e\xb2\xa2\x9a\x29\x44\x1f\xc0\x07\x70\x3e\x81\xee\x52\x3e\xb7\xe8\xad\xf1\xe4\x02\x09\xeb\xaa\x7a\xef\x13\x19\x9a\xbc\x8b\x59\x2b\x9e\x1a\xc1\x37\xcd\x14\xbe\x3e\x4e\xb1\xb5\x47\x74\x33\x92\xb6\x86\xb7\x1d\x69\xb2\x3a\x69\x97\x40\x2f\xce\xbe\xc7\xce\x07\x7c\x44\xbb\x58\x6b\x47\xae\x05\x6a\x0c\x98\x9d\x94\x1c\xf4\x2d\xe9\x91\x18\xd4\x11\xc5\xdf\xb2\x2a\x44\x37\xd8\x66\x9d\x18\x8c\xb3\x4a\xb2\x9c\x2b\x2a\x8b\x6e\x0a\xb1\x6a\x11\xc3\x4e\x5a\x02\xaa\xf0\x1f\xc9\xc0\x4e\xa2\x6a\x8a\xd8\x4d\x76\x91\x20\x79\xb8\x77\xfe\x04\x7a\xef\xa7\x55\x12\x61\xbd\x2e\x32\x51\xa4\x91\xd3\x7c\x18\xb1\xc4\xda\x02\x4b\xb8\xb0\x25\x6e\x1d\x85\x16\xa5\x05\x3c\x89\x33\x9b\x08\x7e\x44\x92\x4a\xbb\x96\x99\x73\x78\xaa\xca\xa7\x51\xc7\xc8\xae\x45\xe1\x2d\x4e\x9d\xd9\xeb\x7c\x80\x88\x89\x33\x23\xd9\xde\x82\x1f\xc5\x9d\xf6\x3a\x72\x1c\x30\xb2\xce\x58\x4c\xe7\x11\x77\x55\xb7\x8a\x7b\xd2\x23\x1d\xf4\x5d\x07\x2a\xe9\x7d\x4c\x3e\x8e\xba\xc1\xa8\xc0\x3b\x7b\x66\xe4\x6f\x3c\x1f\x66\x1d\x33\xae\x33\x3b\xbb\x30\x5b\x57\xd5\xf3\xe7\xcf\xff\x2c\xd3\x2d\xae\x4d\x32\x95\x90\x8e\xe2\x62\x0c\x3c\xc7\x51\xf2\x1c\x7f\xc6\x55\x3e\xb4\x64\x1d\x0f\xba\x69\x30\x4a\xb8\x1a\xe7\x38\xd1\x84\x7b\x0e\x27\xdf\x01\x67\xe1\x1a\x7e\x24\xb2\x9c\x22\x28\xf8\x60\x43\xc0\x24\x26\x44\x73\x70\x3a\x4d\x01\x23\x0b\xbc\xe2\x24\x20\x1c\xcc\x11\x1d\x4c\x91\x44\x7f\xe3\x9f\xc5\x7c\x84\xab\xc7\xf6\xa6\xaa\xbe\x01\xf5\xe1\x56\xdd\x2c\x49\x48\x0c\x48\xc7\x84\x9f\x0f\xb7\xc2\x00\xdb\x54\x52\x89\x3d\x53\xc6\x14\x6d\x3a\x62\x44\xac\x44\xd0\x51\x0f\x58\xe9\x28\xa4\xde\x7c\xf8\x70\x3b\x23\xde\x41\xf4\xa0\x5a\x1d\x4e\xc6\xa9\x1d\xa8\x93\x71\xad\x3f\x45\x7a\xb4\xc6\x4d\x0f\xf4\xd0\x05\xc4\x7d\x6c\x55\x5d\xd7\x5b\x66\x4d\xea\xd0\x77\x26\xa8\x1b\x68\xbc\x4b\x9a\x8a\x21\xd1\x19\x75\xea\x4b\xdc\x0b\x7b\x02\x3a\x05\xcd\xce\xc9\x66\x64\x14\x64\x6a\x75\x53\xb4\xe6\x3b\xd0\xd6\xf2\x31\xfa\xb0\x92\xc8\x90\x96\x50\xa8\x4e\xe1\x4e\xef\xd5\x4d\xb6\x47\x8b\x0f\x25\x9b\x95\x5c\xca\x67\x73\xf2\xe3\x67\x42\xce\x67\x07\x8c\x11\xdd\x01\x89\x63\x8b\x29\xb2\xa9\x23\xba\x16\xe8\x8b\x3e\x90\x56\xfd\x52\x61\x7c\x28\x25\x70\x0c\x7e\x18\x93\xf0\xfc\x1e\x4f\xaf\xb8\xe0\x6c\x12\x3e\xa4\x9d\x48\x1b\x53\x30\xee\xb0\x85\x6f\xe4\x13\x69\x84\x4f\xc6\x1c\x5a\xb9\x44\x75\xc1\x0f\xa0\xb3\xdd\x03\x6a\xf2\xb0\xdc\x3e\xc8\x3b\x42\xc6\x54\xde\x60\x7a\x87\x9a\xb2\xf6\x6f\xbd\x49\xc8\xd1\xb0\xd9\x72\xea\x51\x37\x39\xf3\x88\xb6\xad\x80\x91\x6f\x64\xb8\xa2\x10\x41\x29\xac\x31\xd2\xb7\xf1\x37\x1f\xda\xd7\xbd\x0e\x9b\x98\xc2\xcc\xf4\x23\xa4\x4f\xe4\x30\x81\x14\x07\x7f\x76\xf2\xa1\x85\xa6\xd7\x41\x37\x09\xc3\x33\xc6\xfc\x71\x72\x78\x9b\xc2\x26\x90\xf3\xe1\x36\x1f\x58\x21\xd5\x05\x47\xf6\x14\x7a\x5c\x78\xa4\x43\x8c\xe7\x9d\x6f\x36\x0f\x3b\x20\x8b\xa7\x2d\xbc\xf3\xcd\x05\x0a\xd2\x24\x81\x28\x42\x36\x35\x62\xd4\x7f\x7a\xe3\x7e\xd6\xa9\x8f\x9b\xd6\x84\xba\xae\x67\xb1\x32\x0f\x94\x53\xf7\xc6\x61\x84\x61\xb2\xc9\x50\xba\x69\x4d\xc0\x26\xf9\x60\xc4\xe0\xd4\x75\x58\xbb\xe8\xfe\xbb\xfc\xf9\x4c\x3d\xd4\x66\x6d\x5f\xb5\x30\x63\x2d\xec\x27\xd1\x8e\xd5\x31\x01\x5a\x1c\xc8\xfb\x7c\x27\x1e\xb1\x4b\xe7\xd1\x50\x9e\x3d\xcf\x31\xf1\x2c\xce\x94\xcf\xc5\xc8\x1f\x38\x49\x6e\x9c\x1e\x70\x26\x72\x69\xdf\xa3\xb6\xd3\x6c\xd2\x80\xff\x9e\x90\xab\xbb\x64\x57\x46\xf3\xb2\x6d\xbf\x46\xb3\xcb\x07\x8d\x4b\x18\x3a\xdd\xe0\x97\x3f\x08\x73\x24\xb7\x5f\x14\x2f\x58\xc4\x07\xe7\xb7\xd4\x19\xc9\xe1\x8d\x5a\x1d\x57\x30\xa0\xe6\x1c\x7a\x96\x44\x65\x1c\xbc\xf1\x92\x0b\x6e\x67\x49\x04\x63\xa1\xbe\x88\xf4\x34\xe1\xd2\x46\x11\x70\x2e\x29\x27\x63\x2d\x71\x10\x51\xb4\x9b\x21\x0f\xd6\xef\x49\x9b\x3b\x98\x9c\xa5\x7c\x6c\x52\x4e\xb8\x52\x6c\xa8\x4c\x08\x68\x5d\x38\x7a\x47\x5f\xfe\x03\x5b\x3b\xa9\x78\xdf\xfc\xca\xd5\xf1\xcf\x59\x24\x6e\x16\x4b\x30\x3d\xc9\x49\x0b\xac\xc4\x37\x13\x7e\x65\x5c\xfb\xdf\x78\xde\xdc\xe3\x79\x37\x17\xff\x59\x0d\xd4\x8a\x45\x50\xf7\x78\x56\x24\xbc\x12\x00\xc5\x27\x7f\xd2\xf7\xf8\xda\x0f\x83\x76\x2d\x5b\x72\xb7\x74\xc3\x85\xe1\xdc\x1f\x70\x05\xa9\xeb\xfa\xf5\xfc\x93\x70\x13\x9f\x4b\xda\x69\x04\x53\x6e\x21\x09\x5f\x69\x00\x48\xc3\xdc\x02\x80\x2a\x04\x94\x54\xd5\xd2\x9a\x70\x73\xfc\x4b\x44\xf8\x96\x4b\xef\x9a\x6a\xf2\xdc\x98\xbe\xf7\x0b\xed\x7a\xcd\x7d\x7e\xb7\x79\xc4\xfa\x56\xdd\x5c\xb2\xa7\x16\x58\xd6\x04\x35\x5e\xc2\xea\x4a\x0d\xa2\x97\xa5\xfd\xbd\x8c\x8c\x75\xf3\xcc\x80\x3f\x6a\xd7\xda\x59\x85\xcd\xd0\xae\x43\x6a\x72\x6b\xe3\x66\xed\xac\x8e\xdd\xf6\x68\x6d\x39\x1b\xf9\xc7\x8c\x60\x27\x61\x44\xc6\x3a\x4a\xff\xb7\x83\x93\x36\xe9\xce\xbf\xb6\x3e\xca\x9b\x27\x88\x30\x16\x16\x5b\xd0\xca\x4c\xa4\x56\xb8\x14\x1f\x7d\xa2\x81\x64\xf9\xb2\x05\x73\xeb\x48\x83\x50\x76\x3a\xea\x03\x0f\xc1\x4f\x19\x25\x91\x50\x2b\x7e\x32\x56\x8e\x09\x3d\x8e\x96\x10\x9b\xee\x11\x61\x6a\x0a\xc2\x84\xdc\x12\x49\x60\x73\x3b\x64\x52\xa1\x47\x08\x73\xbb\x5c\xcd\xa3\x12\xe7\x6d\x09\x5a\x6c\x4d\xf2\x41\x8c\x7f\xe7\xa9\xaa\xfc\xec\xe3\xc6\xfa\x86\xf2\xf6\x8e\x42\xa2\x94\xc3\x2d\xa9\xef\xb1\xf1\x4a\x01\x81\xd1\x47\x53\xa6\x92\x52\x07\xb9\x06\xf0\x08\x51\x92\xdc\x47\xb4\x5e\xb7\xea\x06\x36\x1f\x71\x4b\x8f\x32\x14\xa6\xbe\x14\xb7\x57\xe7\x84\x1f\xba\x2e\x62\xfa\x8f\x3c\xe0\x83\x6e\xa8\xa5\xb0\xe6\x1e\x57\x7c\x2b\xc0\x87\x06\x47\x96\xdf\x24\x68\xfc\xe4\x52\x84\xfd\x99\x9c\xd5\xb8\x98\x50\xb7\xc4\x1f\x15\xaa\x98\xcb\xce\xfe\x76\xd4\x27\x47\x6e\xf6\x7e\x9d\x76\x9b\xa1\x7d\x19\x0e\x11\x3e\x7d\x2e\x6f\xbc\xbb\x4d\xad\x9f\x52\x7e\xc2\x10\xe8\xe9\xfb\x07\x52\x75\x06\xa1\x7e\x43\xd3\xa9\xba\xae\x2f\x02\xe6\x96\xa6\xe9\x38\xb7\x74\x8b\x6f\x8d\xc1\x73\x5b\xfa\x84\x47\xa8\x42\x50\xe5\x47\x0c\x41\xb1\x9d\x95\x90\x55\x84\x99\x1a\xd0\x65\xb0\x4a\x9e\x87\x90\xc7\xab\x00\x4e\x15\x7b\x5c\x0f\x0c\x2b\x1e\xca\xd0\xd9\xeb\x71\x94\xb2\x91\x5d\x63\xe1\xa6\xf0\xc9\x19\x45\x15\x31\x15\x53\xe7\xe9\x28\x1c\x26\xaa\x9b\x17\x04\x29\xc1\xe4\x49\xa3\x8c\x8f\x5f\xed\x2a\x66\x23\x90\x82\x56\xb1\xfe\xff\xa4\x6e\x0e\xe5\x39\x22\x9f\x50\xfa\xc5\xcc\x3a\x03\xe6\x84\x4a\xa8\x4d\x84\xce\x84\x48\x92\x05\x92\x6c\x7f\xa6\xa6\x88\xd1\xb2\x5a\x65\x0c\x90\x49\xb3\xa4\x8b\xb7\x69\x3d\x9d\xe6\xfc\x18\x7b\x78\xde\xa8\x7a\x56\x00\xe6\x5c\xf7\x0d\xc1\xd5\xaf\x87\x76\x07\xad\x4e\xfa\xa2\xf6\xba\x76\xe9\xc0\x8c\xcb\x4a\x8d\xa9\x35\xf3\x2e\xe0\x77\xbf\x2f\xb6\x5a\x54\xeb\xc7\x4b\xcc\x84\xec\x9e\x2c\xa4\x09\xbe\x92\xc5\xc6\xa0\xcf\x10\x11\x07\x09\x29\x0d\x71\xa0\xd2\x32\x77\xf4\xf3\x68\xb5\xf8\x16\x35\x4e\xd1\x0f\x73\x57\xe3\xf7\xbf\x63\x93\x62\x35\x0f\xd4\x7b\x69\x9a\x96\x13\xbd\x3e\x22\x0c\xd4\x79\x0c\x98\x7a\xdf\xc6\xfa\x62\x2b\xb2\xb4\x88\x5c\xd1\x05\x5f\x25\x1e\xc5\x7b\xb7\x3c\x56\xe8\xa7\xf7\x5c\xda\xda\xcb\x3d\xd4\x82\xfb\x86\x17\x47\xbc\x1f\xda\xaa\xba\xfa\x57\x3e\x12\x11\x33\x87\x2b\x51\x47\x1f\xa3\x59\x2f\x63\x9e\xd8\xc0\xf4\x68\x47\x48\x7e\x34\x4d\xcd\x6b\xa6\xb2\x4b\xf0\xee\x2b\x26\xe9\x48\xc3\xd5\xf2\x89\x8e\x9c\x37\x06\x73\xf4\x4a\xc6\xae\xf6\x48\x9e\x5b\xc3\xdb\xbc\x0b\x0b\x48\x9e\x44\xc6\x3f\xa0\xc3\xc0\x6d\x4b\x4c\xa6\xb9\xcf\x59\x9c\xc5\x12\xef\x1b\x34\xbf\xd4\x30\x6f\xf9\x2a\x7d\xf4\x86\x71\x4c\x21\x52\xd9\x1b\x83\xdf\x5b\x1c\xe2\x0e\xd6\xa3\xbb\xe9\xb2\x1e\xa9\x9d\x78\xa4\x36\xaa\x2f\x5b\x45\x6a\x50\x79\x03\x47\x3a\xfc\xe7\x14\x93\xec\x59\x9e\xd6\x32\xcd\xa2\xa5\x14\x9d\xbc\x7b\x96\x32\xf2\x19\x05\xe8\x83\x36\xd4\x75\xfc\x12\x4b\x90\xae\xcc\xbe\x9b\xed\xca\x0b\xac\xd5\xf4\x9e\x87\x30\x1d\xa3\x6f\x8c\x9e\x03\x8a\x69\x71\x0f\xb1\x3f\xe7\x28\x5c\x38\xab\x5f\x4d\x9d\x2a\x9b\xb9\x79\x66\x5c\x21\x55\x3f\x18\x8b\x77\xe7\x11\x69\x46\xa6\x39\x84\xfe\x52\x41\xa0\x41\x59\x56\x89\xb3\x5f\x64\xdf\x7d\xc2\xfd\xe6\xe8\xc7\xf5\x94\xba\x0c\xfe\x3a\xe0\xcd\xe5\x08\x5b\xff\x24\x23\xeb\x66\x88\x07\x4a\x63\x17\x7d\xfe\x25\xe4\xf7\x21\xf8\xf0\x17\xe0\xfe\x85\xf1\xbd\xff\x99\x47\xdd\x8d\x4c\xbc\xf3\x2c\xb5\x91\x9e\x47\xfa\x9c\xcb\x53\x17\x07\x76\xd0\x9b\x48\xf3\xcd\x1d\x6f\x32\xbe\xea\x5a\xf9\xf5\xaa\x6b\x85\x4d\x81\xc9\xa8\x2b\x59\xdb\x41\x5e\xdb\xc5\xa4\x5d\xab\x43\x0b\x05\xfd\xef\xb3\xf3\xfc\x29\x07\x57\x57\x3b\xf8\x96\x50\xfd\x0d\x5e\xb6\x3c\x1a\x73\xd0\xf1\xd6\x61\x07\xf1\xec\x92\x7e\x28\xbf\xb8\xb9\xb5\x3e\xc8\x82\x3a\x96\x5d\x77\x8e\x82\x6a\x8e\x77\xa2\xc8\xc6\x79\xd9\xb6\x1f\x27\x97\xcc\x80\x64\xf7\xdc\xa6\xf3\x42\x0b\x2e\x07\xc5\xb9\xff\xa5\x01\xb3\x95\xad\x93\x9f\x22\xdc\xf3\x00\xe0\xbb\x4a\x96\x59\xb2\x6f\x2a\x04\x2f\xb2\xd0\x2e\xc7\xd6\xb3\x56\x32\x6b\x46\xa4\x57\x39\xe4\xd1\xf1\x2a\x97\x69\x95\x30\x26\x25\x81\x20\x99\x20\xef\x31\xb4\x7c\xaa\x87\x56\xb1\x06\x76\xdc\x15\x34\x25\xf3\x14\x9e\x97\x0d\xfa\x23\x71\xaf\xe8\xf4\xd5\x0e\xae\x88\x05\xfa\x9b\xb1\x5d\x6d\x65\x71\x4e\x23\xc3\x23\x15\xc5\x1f\x82\x1f\xe6\x89\xfa\x42\x61\xad\x09\xac\xb5\x84\xc1\x6d\xd5\x22\xdf\x6a\x71\xc7\x9b\xa2\x5c\xae\x82\x20\xad\xab\x3b\xcf\xbb\x93\x5c\x68\x5d\xca\x63\xb7\x2e\x10\x7c\x4c\x9c\xe4\x23\xea\x0b\x01\xba\x1c\xac\x3b\xb8\x98\xb8\x2b\x1f\x40\xbd\x33\x31\xad\x19\x9f\x81\x57\x46\xf5\x81\xd3\xf4\x9a\x50\xac\xd9\xd3\xa6\xe4\xcb\xf2\x76\xae\xfe\x73\x73\x53\x55\xb7\x5c\x30\xb8\x98\xe7\x95\xa7\x07\x8b\x3a\x38\xe8\xfd\xa9\xcc\x3f\x8f\x66\xa8\xdc\xb3\x5d\xce\x43\xd9\x30\x32\xf5\xce\x4e\x26\x7d\xcb\x6f\x26\xf5\x9b\x5b\x09\x28\x7e\xb3\xad\xa8\xa5\xe1\xaa\xff\x22\x3f\xdc\x4c\xe3\x88\x61\x23\x5f\x74\x48\xfc\x41\x87\x54\xde\xd3\x14\x99\x97\xfe\x22\x76\x1d\xa7\x7d\x41\xfa\xf7\x5d\x7e\x67\xd1\x6d\x84\xc2\xf6\xc5\x0b\x7e\xe0\xdb\x93\xe5\xc6\xa5\xe8\x62\x63\xdc\x38\x31\x1f\xc2\xb1\xe6\x19\x6b\x9e\x26\x5f\xc0\x97\xab\x1f\xd1\x5a\x4f\xce\xf4\x9b\x0f\xb6\xa5\x87\x1f\x3c\xff\x7e\xa5\xc3\xd5\x1f\xf3\xc9\x80\x71\xb2\xc4\xee\x17\x7a\x47\x6c\x92\x35\xcc\xee\x48\x41\x3b\x6a\x13\xe2\xe6\x12\xf9\x16\x5a\x1a\xdd\x4d\xb7\xd6\xce\x91\x46\x39\xe2\x88\xbc\x87\x5b\x56\xfa\x5f\xa2\x24\x5b\x1b\x17\x31\xa4\x8d\x10\xda\xc1\x51\xae\x8a\x80\x04\x5b\xfe\x64\xdd\x08\xd0\x23\xa1\x3b\xef\x37\x3a\x1c\xe8\xdc\x9c\x9d\x6e\x4a\x9e\xe6\x0f\x0c\xbf\x9e\xf3\xaf\x3a\x91\x35\xbb\x45\x2d\x3f\x1f\xcd\xd2\xf3\xd7\xa2\xd5\xab\x6d\x0e\xb8\xbf\xc1\x77\xd8\x69\xd2\xcb\x58\xae\x2b\x57\x19\x84\x37\xd4\xf9\xc3\x6e\xee\x59\xda\x7c\x42\x69\xf2\x59\x99\x17\xd9\xd1\x2c\xd7\x06\x35\xa3\xda\x50\x26\x5f\x2e\x92\x9c\x0f\x83\xb6\xf3\x46\x37\x20\x04\x1c\x3d\x4c\xae\xc5\x00\x2a\x87\x44\xb9\x90\x54\xdb\x72\x55\x05\x3a\x56\xd4\xb8\x95\xeb\xd2\x79\xe9\x7e\x89\xdd\x77\x9d\x69\x8c\xb6\x34\x18\x3a\x87\x16\x3e\xf5\x18\xf0\xf3\xa6\x4f\x69\x8c\x37\xd7\xd7\x07\x93\xfa\x69\x4f\x1a\x90\x9b\xcf\xe7\x32\x7e\x66\x7a\xcf\xf3\xa9\x2d\x07\xa3\x5c\xdd\xc2\x4f\xda\xe9\x03\x86\x72\x83\xcb\xed\x00\x77\x83\xb0\x9f\x8c\x4d\xec\x37\x02\x39\x08\xe4\xa3\xc2\x6c\xdc\xd1\xdf\xe3\xb2\x1c\x53\xff\x28\xf0\x75\x5d\xab\xb9\x4b\x17\x95\xe7\x05\x91\x69\xcb\xfb\x38\xe3\x99\x22\x2e\xda\x57\xf9\xb3\xba\x68\x05\xb9\x4f\x28\x5c\x74\x98\x9a\x1e\xe3\xac\x31\xde\x1a\xe7\x99\x99\x84\x8c\xb0\x99\x6f\x72\xf8\xd6\xf9\xbc\xda\xa0\x17\x89\x30\x69\x9a\x02\xb6\xb9\x0b\x36\x89\x2f\x8d\xa2\xdc\x1a\xd5\xf0\xea\x5c\xfc\x60\x97\x2d\xca\xdb\x82\x15\xcc\xd3\x56\x99\x09\xe7\xfb\xbd\x4a\x27\xf8\x6b\xa6\xe1\xae\x7f\x6e\xcd\xda\x56\x0a\x97\x3f\xf1\xed\x5a\x68\x9f\x8f\x3a\xa4\xf3\x22\x22\x37\x44\x7c\xdd\xa6\x04\x4f\xf9\xa2\xca\x62\x8e\x7c\xb6\xe0\x93\xbd\x2a\x8f\xf5\xee\xfe\x02\xe1\xec\x76\xe4\x00\xd6\x9f\x78\x9a\xd7\xd6\xca\x66\x21\xf5\xc1\x4f\x07\x31\xef\x63\x5f\x98\xcd\x2e\x1f\xc8\xd9\x67\xe2\x75\x69\x54\x56\xc5\x79\x9c\xf6\xd6\xc4\x7e\xe9\xa1\xe9\x33\x8f\x2d\x2d\x52\x30\x50\x97\x5f\xd4\x29\x10\x52\xa1\xf3\xba\x65\x1a\x79\xab\xb1\xbe\x6a\xf7\xce\x1a\x87\xb0\x49\x1e\xde\xb0\x8e\x61\xe4\x1b\x68\xbd\xb7\xe7\x2d\xcb\x2f\x05\x53\x11\x6f\xf5\xef\x91\x4a\x06\x95\xa4\xbc\x49\xe5\x32\x28\xcb\x3e\x59\xba\x93\x38\x55\xf1\x0c\x4e\x9f\x17\xbd\xc7\x7c\x89\xe5\x4a\x02\x91\x46\x80\x10\x57\x9f\xbe\x54\x00\x57\xd4\xd8\x5e\xdd\xc0\x95\x1c\xa1\x1a\x7a\xb5\xa3\xf7\xdf\xa1\xfc\x9b\x06\xe3\x1d\x7d\x5e\xae\xc3\x9c\x69\xb8\x48\x37\x26\x52\xe6\x99\xa1\xf8\xee\xac\x58\x47\x70\xdc\xe9\x43\xbc\xba\x81\x4f\x57\xe3\x39\xf5\xde\x51\x56\xa4\x8c\x64\xdc\xe1\xea\x33\x03\xfc\x8a\x21\x52\x62\x27\x20\x4e\xcd\x5f\x72\xfe\x2e\x5f\x88\xf4\xdf\xeb\x6f\xeb\x6f\x19\x21\x7f\xf9\x25\x58\x7a\xfb\x44\x16\x99\x22\x16\x17\xbd\xd6\xa1\xe9\xcd\x11\xaf\x8f\x7c\xba\xfe\x1f\x33\x2e\x18\x3e\xe2\xbf\x27\x13\x48\xea\x42\x0e\xe0\x8a\xfd\x9c\x10\xff\xe3\x05\x1d\xf9\xaf\xab\xfc\x89\x4b\x13\xff\xf7\x73\xf5\xc7\xe7\xf9\x5f\x13\x38\xbe\xa6\x24\xcf\xa0\x79\x31\x2f\xf1\xe1\xaf\x87\x8e\x96\x3e\x56\x67\xf7\xe6\x7e\xa8\x0a\xfa\x74\x61\x79\x99\x99\x1e\xf7\xb0\x9c\xa4\x23\x21\x3d\x73\xe7\x34\xe8\x7b\x84\x69\x6c\xe5\xdf\xb0\xac\xfc\xfe\xe4\xc3\xfd\x2e\xdf\xd1\x86\x98\x80\x5d\xcf\x77\x6b\x5c\x71\xb9\xa8\xce\x4e\xbb\x72\x2c\x38\x8a\x11\xca\x50\x5f\xbc\x6a\xf3\x8e\xe3\xa3\x37\xf1\x06\xd4\xaf\xdf\x7f\xbc\x7d\xfb\xe1\x3d\xbc\x28\x86\x52\xdb\xea\x67\x8b\x3a\xa2\x30\x16\xa7\x80\xa5\x1b\xfa\x14\x71\x38\x62\x90\x12\x70\x73\x7d\x2d\x3f\x6b\x1f\x0e\xd7\x5b\x76\xde\x4c\x90\xfa\x91\xea\xff\x02\x00\x00\xff\xff\x77\xe8\x60\xd9\xb0\x23\x00\x00")
520
521 func runtimeHelpPluginsMdBytes() ([]byte, error) {
522         return bindataRead(
523                 _runtimeHelpPluginsMd,
524                 "runtime/help/plugins.md",
525         )
526 }
527
528 func runtimeHelpPluginsMd() (*asset, error) {
529         bytes, err := runtimeHelpPluginsMdBytes()
530         if err != nil {
531                 return nil, err
532         }
533
534         info := bindataFileInfo{name: "runtime/help/plugins.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
535         a := &asset{bytes: bytes, info: info}
536         return a, nil
537 }
538
539 var _runtimeHelpTutorialMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x57\x5d\x6f\xdd\x36\x12\x7d\xe7\xaf\x18\xdc\x3c\xc4\x5e\x5c\x2b\x40\xd0\x27\x03\x09\xd0\x1a\xdb\x4d\xd0\x5d\xa0\x68\x8c\x02\xfb\x26\x4a\x1a\x5d\xb1\xa6\x48\x81\x1f\x57\xd5\x2e\xba\xbf\x7d\x31\x33\xa4\x7c\xaf\xed\xf6\x21\xb1\x25\x91\xf3\x71\xe6\xcc\x99\xf1\x3b\x78\xcc\xc9\x07\xa3\xad\x52\x8f\x93\x89\x60\x22\x68\xe8\x82\xc1\x11\x8c\x4b\xc1\x43\xf2\x30\x9b\x3e\xf8\xf7\x11\x7a\xef\x46\x73\xca\x41\x27\xe3\x1d\xc4\x2d\x26\x9c\x21\x4d\x3a\xc1\x6a\xac\x85\x93\x39\x23\x44\x3f\xa3\x8a\x66\x5e\x2c\x02\xfe\xae\xe9\x67\x84\x38\xf9\xd5\xb8\x13\x4c\x7e\x25\x7b\xd5\x0e\x42\xc4\x94\x8c\x3b\xc5\x23\x04\xec\x8c\x1b\xe0\x09\xb7\x78\x54\xda\x0d\x90\x23\x42\x6b\x9c\x49\x8d\xcd\xba\xbd\xbe\xc6\x01\xd1\xab\xcd\xe7\x00\xd6\x3c\x19\x77\x6a\x94\xfa\xe2\x17\x1c\xb3\xb5\x1b\xbd\x7f\x6f\x2d\x8c\x64\x32\x51\x5a\x39\xd2\x97\x46\xa9\x77\xef\xde\xc1\xcf\x36\x9f\x8c\x8b\x4a\xfd\x8b\xed\x4c\x9a\x72\x5e\xf8\x25\xcc\xda\xe9\x13\x06\x58\x27\xd3\x4f\xd0\x6b\x07\x3a\x27\x3f\xeb\x64\x7a\x4d\x96\x07\xbf\x3a\xeb\xf5\x50\xce\x47\x18\x7d\x20\x77\x8d\x7a\xf4\x10\x11\x21\x4d\xb8\x7f\x7b\xef\xc7\xd1\xf4\x46\xdb\xf7\xf5\xd5\x11\x4e\x1c\xf8\xc9\xa4\x29\x77\x4d\xef\xe7\x0f\x9c\xcc\x1d\x0e\x26\xf9\xf0\x41\x8e\xdd\xf5\x93\x76\x0e\x29\xde\x1f\x7d\xa8\x38\x1e\xc1\x8c\x9c\xd9\x40\x29\x23\x99\x31\x2e\x26\x6d\x2d\x3b\x8d\xce\x2c\x0b\xa6\x58\x33\xb9\xb1\x26\x26\x1c\xc0\x38\xa9\x51\xc0\xc5\xdf\x1e\xd5\x6f\x39\x26\x58\x02\xc6\x08\xed\x43\x0a\xf6\xef\x8c\x2d\xfe\x8e\x7d\x4e\x08\x1a\x7a\x3f\xcf\xda\x0d\x47\xa0\x22\xa4\x6d\x41\x68\x8b\xc1\xea\xac\x3a\x6a\x4b\x78\xb3\x0f\x08\xc6\x8d\x3e\xcc\xc2\x0c\xdd\xf9\x9c\x2e\x80\xa8\xa0\x1e\x77\x80\xd0\x0d\xe0\x47\xfe\xb5\x58\x8f\x2d\x4c\x68\x17\x95\xfc\x62\xfa\x52\xa7\x6f\x85\x1d\x4a\x7d\x75\x52\xf3\xa3\x54\xbc\xd2\x06\x34\x71\x28\xf9\x20\x69\xb6\xff\xfb\xd0\x08\x49\x04\xd4\x0f\xf5\x5c\xf3\x5b\xf4\xae\x3d\x82\x86\xd1\x58\x54\x0c\x87\x89\xd0\x07\xd4\x84\x10\x85\x31\x9a\x10\x13\x24\x33\x23\xb9\x80\x90\x8b\xc7\x06\xbe\x26\x69\x0a\xb2\xc1\xf7\x0b\x37\x26\x6f\x87\xa8\x76\xf4\xf7\x90\x98\x72\x68\x02\x9c\xb5\xcd\x18\x1b\x78\xf4\x40\xf5\x3c\x21\x68\x07\x7e\x21\x88\x38\x0f\x66\x17\x9a\x34\x61\x50\xe5\x00\x59\xe2\x6b\x52\x35\x84\xf6\x3a\x05\xf6\x7f\x04\xa1\x1c\xdf\xe7\x0a\x99\x44\xe7\x07\x13\xb0\x4f\x76\x53\xeb\x44\x51\xe6\x48\x2d\x27\x49\x28\xf5\x8d\x5a\x72\x2b\x85\xe7\xba\x33\x0d\xbd\x34\x16\x97\x1c\x66\x3f\xe0\x65\xdd\x23\xa6\x12\xaf\x04\xd5\xc2\x8d\x84\xa5\xc6\x9c\x72\xc0\x23\x7c\x95\xce\xe7\x5e\xfd\x0c\xaf\xcf\x33\x45\x07\xd3\xeb\x84\xe2\x9a\x42\x62\xef\xb7\x0d\x3c\x4e\x58\xf3\x66\x2b\x49\x3f\x21\xe0\x38\x62\x9f\xc0\xcc\x33\x0e\x46\x27\xb4\x1b\x07\xc4\x07\xb4\x8d\x1e\x3a\x84\xa8\xcf\x54\x35\xff\x16\x42\x8a\x2b\x14\xbd\x70\xfe\xa2\x32\x62\x22\x26\xd3\x3f\x01\x9e\xd1\x81\x1e\x13\x16\x1c\xad\x8f\xb8\x23\xf5\xef\x82\x2c\x7b\x7b\x4e\x29\x82\xf5\x22\x01\x52\xfe\x19\xb5\x8b\x7f\xe2\xc5\x3b\xbb\xc1\xa4\xcf\x44\xb5\x5a\x50\x72\xc4\x0a\x29\xc5\xa2\x0f\x5d\x1e\xc7\x12\x02\xf9\xe1\x0f\x0d\xbc\xd1\xf1\xc5\xd6\xea\x21\x2e\xd6\xa4\x08\x7e\x41\x27\x95\xa2\xaf\x52\x2d\xc6\x9f\x63\x84\xa4\xbb\x68\xfe\x83\xf0\xb1\x3d\xb2\xa3\xfa\xbc\x07\xa7\x3a\x84\x8f\x35\x8c\x3e\x87\x80\x2e\x95\x70\x1a\xf8\x9e\x12\x17\x89\xe5\x0b\xce\x27\x86\x5c\x94\x54\x3c\x54\xbe\x72\x0d\xd4\x5b\x2c\x6d\xe0\x8b\x5f\xf1\x4c\x5d\x5f\xb9\x1a\x13\x97\xe0\x0d\x48\x0b\xad\xde\xb6\xf3\x16\x20\xab\x76\x82\x7b\x5b\x72\x63\xae\x71\x56\x9c\x9f\x71\xf0\x4b\xee\x36\xb6\x10\x05\xa9\xef\xc0\x53\xab\xad\x26\x62\x09\xc9\x67\x3b\xc0\x52\xa4\x6a\xf4\xd6\xca\x94\x22\x25\xb9\x0e\xe4\x5e\xa9\xb6\x6d\xe9\x57\xf5\x5f\x05\x00\x70\xf8\x5b\x13\xba\xc3\x3d\xc8\x13\xbf\x29\x71\x1c\xee\xe1\x23\xbf\xfc\xe3\xa8\x5e\xbc\xff\x4e\xfd\x41\x66\xea\xd8\x59\x2b\x18\xaf\xd2\x90\x1c\x28\x0e\x0e\xbf\x12\x4e\xa7\x7e\xe2\xc3\x27\xeb\x3b\x68\x29\x04\x92\xe0\xaf\x05\x11\xce\xa6\x0e\x86\x27\xe7\x57\x11\x66\x11\xe3\x2a\x53\xfa\xac\x8d\xd5\x9d\xc5\x5a\x82\x5d\x93\x55\x5b\xde\x50\x08\x8b\xe9\xe1\xa6\xfd\xcc\x92\x5c\x4f\xb6\xb7\x45\x96\x7f\xc2\x8d\x66\xb5\x28\xf3\xc5\x03\xac\x3e\x3c\x51\xd4\x73\x2e\x81\x46\x3d\x23\xac\x7a\x03\x1d\xab\x95\x06\xb8\xbf\xf6\x51\x9e\x26\x9c\x45\xaa\xb8\x57\x5e\x49\x78\x35\x7e\xc9\x88\xab\xa9\xb8\x33\xe2\x2a\x7f\x5e\x26\x78\xbe\xfd\xc2\x90\x06\x1c\xfc\xeb\xa2\xab\xeb\xa2\x5f\xfb\x7a\x5d\x74\x36\x77\xb8\x87\x03\x59\x3b\xd4\x6a\xfe\x8a\x61\x03\xd9\x78\x5e\xaa\xc7\xbe\xd2\x80\x48\xb2\x29\x43\x05\xba\xad\xc8\x33\xe7\xfc\x79\x3f\x08\xba\x27\x94\xda\x7d\x0a\xab\xae\xd0\x73\x07\x99\x92\x98\x49\x29\x57\x93\x04\xe5\x2a\xdf\xab\x77\xef\xd3\x6b\x7d\xbc\xce\x4a\x5d\x20\xf8\x27\x83\xfb\xe9\xb9\xa4\x47\x01\x54\x08\xc8\x89\x50\x6e\x1d\x42\xe7\x73\xd9\x11\xd4\x4a\x12\x28\x71\xcb\x40\xde\x39\xf6\x3c\xef\xdb\x0b\x9b\x32\xe8\x5f\x92\xec\xf2\x40\x25\xda\xc3\xd5\xbe\xc9\xf9\xfe\x33\xeb\x9d\xf1\x0e\x71\x90\x1c\x16\xbf\x62\x20\x2d\x16\x41\xdb\x27\x75\x84\x25\xf8\xb3\x19\xf0\x59\x83\x68\x54\x71\x44\xfb\x6a\x29\x88\xc0\x03\x2f\x03\x45\x9d\x5f\xd2\xb0\xa5\x69\x65\xa2\x8c\x7f\xde\x06\x6c\x96\x65\x02\xea\x32\x11\xb2\x53\xeb\x84\xb5\xc2\x31\xe9\x90\x64\x1b\x30\x11\x30\x46\x74\xc9\xb0\xd6\x69\xf0\x0e\xef\xf8\xae\xac\x3e\xd4\xc3\xb4\xad\xd2\x96\x2c\x6a\x2f\x6b\xf2\xeb\x50\xc5\x63\xb7\xd1\x20\x21\xf6\xd0\xfe\x50\xba\xc0\x8f\xe5\x9a\x92\xad\x86\xb6\x78\xc1\x93\x4c\xd5\x4e\x90\x42\xb2\xf2\xd4\x8d\xaf\x3d\x79\x8a\xbd\x05\x7f\x3d\x0d\x78\xd3\x50\x34\xb1\xdc\xf3\x94\xbb\xfc\x28\x38\xfc\xc3\xd7\x9e\xac\xcc\x1f\xca\xec\xed\x36\x6a\xb3\x54\x59\x7e\xdd\x6a\x7b\x4a\xd2\x65\x36\x6b\x35\x66\xc7\x24\x82\x93\x0f\xd9\xdd\xdc\x72\xcf\xc9\xb4\xe9\xf2\x08\x9f\xe0\x21\x87\x5f\x0d\xae\x37\xb7\xcd\x0f\x79\x84\xbb\x3b\x5a\x20\x5e\x0c\x2f\xbe\x63\x46\x7a\xba\xff\xd1\x58\x7c\xdc\x16\xbc\xb9\x85\x4f\x9f\xe0\x70\xf2\x07\x8a\xc3\xed\x8a\xfd\x45\xbb\xc1\xe2\xb7\x09\xad\x7d\x90\x0e\xba\x39\x08\x16\x70\x80\xa6\x21\x1b\xcd\xcf\x3a\x4d\x47\x48\x21\xa3\xfc\x7f\x4b\x6e\x2f\xd6\xc5\x90\xb1\x2c\x02\x03\x37\x1f\x5d\xbe\x98\xef\xba\x7f\x3a\x05\xea\x14\x76\x8a\x6e\x50\xf4\x4f\xfd\x60\xdc\xf0\x13\x6e\x37\x45\x50\x8e\x70\x60\x38\x38\xef\xc3\xad\xa8\xca\xf7\x36\x61\x70\x3a\x99\x33\xda\xed\x72\x5e\x9d\x30\x41\x30\xcf\xeb\x73\x31\xd6\x82\x35\xae\x6c\x6f\xa2\x6e\x34\xab\x8d\xa3\x06\x57\x6f\xe8\x00\x57\xed\x2f\x24\xee\x22\xa2\x2a\x74\x7f\x21\x19\xf5\x0f\x9e\xb2\xfc\x72\x77\x5c\xfe\x7d\x28\x3d\x91\x23\xca\xbc\x51\xaf\x17\xff\x97\x7a\x50\x3f\xde\x36\xea\xff\x01\x00\x00\xff\xff\xd0\x1f\xa1\x6d\xa4\x0e\x00\x00")
540
541 func runtimeHelpTutorialMdBytes() ([]byte, error) {
542         return bindataRead(
543                 _runtimeHelpTutorialMd,
544                 "runtime/help/tutorial.md",
545         )
546 }
547
548 func runtimeHelpTutorialMd() (*asset, error) {
549         bytes, err := runtimeHelpTutorialMdBytes()
550         if err != nil {
551                 return nil, err
552         }
553
554         info := bindataFileInfo{name: "runtime/help/tutorial.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
555         a := &asset{bytes: bytes, info: info}
556         return a, nil
557 }
558
559 var _runtimePluginsAutocloseAutocloseLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x55\x51\x6b\xdb\x3c\x14\x7d\xcf\xaf\x38\xb8\x0f\xb1\xa9\x13\xc8\xf7\x58\x3e\x0f\xda\x0e\x4a\xa1\x6c\xa3\x0c\xba\xd1\x16\xaa\xc8\xd7\xb1\xa8\x2b\x05\x49\x4e\x3a\x4a\xff\xfb\x90\xed\xaa\x76\x62\x27\x29\x94\x19\x22\x1c\xeb\x1c\xdd\x7b\x8f\xae\x8e\xb2\x52\x72\x2b\x94\x04\xcf\x99\x3e\xb5\xa1\xb1\x3a\x86\x88\x46\x00\x20\x32\x08\xfc\x9f\xe0\xc8\x58\x0d\x9b\x93\xac\xbe\xba\x47\x93\x2d\xb5\x84\xb1\x5a\xc8\xc5\xd4\x94\xf3\x86\xe7\xa9\x54\x18\xda\x44\x07\x41\x3d\x25\xd3\x91\xfb\x8d\x44\x86\x0b\xb2\xdf\x97\x2e\x7c\x18\xb0\xd2\x2a\x5e\x28\x43\x41\x84\x24\x81\x14\xc5\x7b\xc8\xd3\x34\xdd\x86\xc5\xb0\xba\xa4\xa8\x5e\xab\x50\x9c\x15\xf0\x93\x3f\x98\xd0\x06\x09\x5e\x82\xbb\xe0\x2e\x08\x62\x04\xe3\xb1\x1b\x1f\x1e\xdc\x18\x46\x6e\x7c\x79\x75\xe3\xed\x7d\xf0\xda\x62\x7f\xa3\x75\x21\x64\x8b\xbf\x85\x1d\x79\xc5\x94\xbc\x2e\x25\x85\x3a\xc6\xca\xeb\x25\x95\x1d\x2a\xaa\x47\x40\xaf\x47\xf5\x92\x29\x0d\x81\x04\xb3\x18\x47\x1b\x95\xa4\xca\x33\x45\x06\xed\x04\x6a\xf6\xab\x0b\xbc\x15\xf7\x31\xfe\xdb\x88\xe5\x9e\xba\x42\x5e\xea\x2b\x21\x09\x09\x56\xd3\xb3\x32\x3b\x71\x7f\xc2\xd5\xf4\xbc\xd4\x46\xe9\xe9\xef\x68\xd4\xe1\x88\xec\x2d\x48\xc3\x8b\xe1\xb1\xbf\x8e\x67\xd1\xc7\xb3\x70\xcf\xea\xe4\x8c\xf1\x47\xb3\x64\x9c\xc2\x8c\x15\x86\xa2\x1e\x48\x1d\xe5\x5a\x2c\x72\x3b\x04\x9a\x6b\x62\x8f\x9d\xaf\x5e\xc8\x56\x01\xef\x09\xe3\x0b\x66\x60\x32\x45\x78\x69\x6e\x94\x4e\xcf\x73\xa6\xc3\xe1\xfa\x26\xb3\x28\x82\xd2\x3b\x14\x98\xec\x53\xc0\xad\xd0\x2b\x41\x7f\xea\x7d\xef\xfb\x37\x7b\xf6\x79\x9b\xdd\xd2\x2a\x49\x70\xf4\xc6\x57\xba\xea\xea\x83\x54\x3b\x1e\xac\x79\x32\x71\xdf\x31\x9e\x8c\x91\x93\x26\x08\x03\xab\x90\x92\xa6\x8c\x24\xa7\x6a\x72\xa9\x84\xb4\xa4\xdd\x84\x5f\xf2\x4a\x71\xac\x73\xc1\x73\xc7\x70\xf5\x3f\x31\x2b\x38\x2b\x8a\x3f\x78\x62\x29\xf5\xc5\x59\xe7\x24\xc1\x95\x5c\x91\xb6\x42\x2e\xb0\x50\xce\xa8\x4a\x6e\xab\x90\x45\xc9\xfa\x48\x97\x16\x92\x28\xad\x20\x73\x6a\x12\xd3\x2e\xb5\x14\x73\xe2\xac\x34\x75\x8e\xfe\xf4\xd3\xf3\x92\xdc\x92\x0c\x52\x49\x9f\x7a\x1d\x68\xbb\xa3\xab\x1d\xb8\x94\x86\xb4\x0d\x27\xed\xe2\xe2\x9d\x47\xe8\xd0\xb6\xdf\x7c\xf7\x1e\xeb\xd3\x5d\x6a\xaa\xc3\x37\x0e\x17\x7e\x8e\x67\x1d\xd8\x6a\x1d\xa8\x73\x4d\x24\x3b\x4e\x56\x1b\x2f\xe9\xd9\xee\x25\x1c\xcf\xda\x94\xb5\x73\xee\x0b\xb2\x57\xc4\x52\x21\x17\x37\xb9\xb0\x54\xfb\x4d\x43\x8d\xfa\xfd\xb6\xe3\xfd\x5d\xc7\xf5\x59\x77\x8e\x62\x9b\x30\x78\x18\x9d\xc0\xbe\x86\xdd\xf4\x61\xcb\xec\x6e\xdd\xa0\x6d\xd6\xb0\x9f\x6c\x3e\x08\xd9\xd1\x87\xc1\x9d\x0c\x30\x9d\x62\x6d\xb6\x79\xcd\x0d\x5e\xad\x7a\x50\xf3\x8d\x5a\x2c\x77\x4d\x6f\x77\xe3\xfb\x2d\xf0\x2f\x6f\xcf\x0f\xf4\x2b\x3e\xe3\x0a\x74\x17\xce\x8e\x46\xff\xb8\xb7\xaf\x4e\xbe\x52\x41\x76\xab\x09\xf6\x8a\xff\x37\x00\x00\xff\xff\xcc\xc3\x7e\x8b\xe9\x09\x00\x00")
560
561 func runtimePluginsAutocloseAutocloseLuaBytes() ([]byte, error) {
562         return bindataRead(
563                 _runtimePluginsAutocloseAutocloseLua,
564                 "runtime/plugins/autoclose/autoclose.lua",
565         )
566 }
567
568 func runtimePluginsAutocloseAutocloseLua() (*asset, error) {
569         bytes, err := runtimePluginsAutocloseAutocloseLuaBytes()
570         if err != nil {
571                 return nil, err
572         }
573
574         info := bindataFileInfo{name: "runtime/plugins/autoclose/autoclose.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
575         a := &asset{bytes: bytes, info: info}
576         return a, nil
577 }
578
579 var _runtimePluginsFtoptionsFtoptionsLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8e\xb1\x0a\xc2\x40\x0c\x86\xf7\x3e\x45\xc8\x54\x41\xfa\x06\x5d\x7c\x81\x0e\x05\x17\x71\x38\x6b\xd2\x06\xcf\xe4\xf0\x52\x4b\xdf\x5e\xae\x52\x9c\x0d\x64\xf9\xf3\xf1\xe5\xe7\x59\x07\x17\x53\x30\x3d\x0b\x2d\x5d\x22\xad\xdf\x42\xcb\xa1\x02\x00\x88\x36\x84\x08\xec\xd0\x42\x09\x9b\xd3\xcc\x4d\x4f\xee\xa2\x63\xbe\x20\x4b\x24\x5f\x13\xe1\xb5\xda\x68\xe1\x0d\x6d\x01\x9f\xe1\x41\xe5\x8a\x60\xaf\x3d\x1b\x0d\xc1\x27\xd2\x0d\x2d\xd3\x93\x77\xa9\xfc\xae\xd1\xc3\x2d\xbb\xe5\x14\x06\xca\x78\x04\x34\x66\xfc\x36\xa0\x98\xe9\xe7\x4d\xab\x4f\xa6\x7f\x78\x74\xd7\xe8\xbd\x2a\xfb\x09\x00\x00\xff\xff\xf6\x91\x6e\x48\xef\x00\x00\x00")
580
581 func runtimePluginsFtoptionsFtoptionsLuaBytes() ([]byte, error) {
582         return bindataRead(
583                 _runtimePluginsFtoptionsFtoptionsLua,
584                 "runtime/plugins/ftoptions/ftoptions.lua",
585         )
586 }
587
588 func runtimePluginsFtoptionsFtoptionsLua() (*asset, error) {
589         bytes, err := runtimePluginsFtoptionsFtoptionsLuaBytes()
590         if err != nil {
591                 return nil, err
592         }
593
594         info := bindataFileInfo{name: "runtime/plugins/ftoptions/ftoptions.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
595         a := &asset{bytes: bytes, info: info}
596         return a, nil
597 }
598
599 var _runtimePluginsLinterLinterLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x5f\x8b\xdc\x36\x10\x7f\xbe\xfd\x14\x83\xa8\xc1\xbe\xb5\x9d\x36\xf4\x69\xc1\x94\xf4\xda\x04\x4a\x92\x2b\x5c\xda\x3e\xb4\x4d\xd1\x5a\xe3\x5d\xdd\xc9\x92\x91\xe4\xfd\xc3\x92\xef\x5e\x24\x79\xbd\xb6\xd7\x77\xa4\x34\x90\xd3\xac\x34\x33\xbf\x99\xdf\x8c\x3c\xe2\x15\xbc\x43\x7b\xdf\x58\xae\x64\x4c\x04\x97\x16\x35\x49\xa0\x28\x40\x72\x01\x76\x8b\x72\x01\x00\xf0\x86\xb1\x89\x4e\x0a\x56\xb7\x98\x2c\x50\xb2\xc5\xe2\x03\x7d\xc2\x3b\x55\xd7\x54\xb2\xa0\x40\x52\xe8\x14\x73\xb7\x74\x67\x24\x85\x6f\x93\xc5\xa2\x6a\x65\xe9\x7c\xc1\xe0\x28\x4e\x3c\xce\x5d\xab\x7f\xe7\xb8\x8f\x93\xd5\x03\xdd\x61\x5c\x51\x61\x30\x9c\xe8\x56\xbe\xf7\x0e\xe3\x0e\xb3\xf7\x32\x3c\x71\x9a\x42\x95\x54\x40\x65\xa1\xb8\xb8\xcb\x7f\x6c\xab\xd5\x5b\x2e\xf0\xd3\xb1\xc1\xb1\x1e\x17\x38\xd5\xcc\x7f\xa5\x76\x3b\xd0\x61\x5c\x43\x01\x3f\x71\x8d\xa5\x55\xfa\xf8\x91\xd6\x18\x3b\xbb\xe0\x87\x57\x70\xff\xe0\x18\x23\x7b\x2e\x99\xda\x1b\x72\xe1\xcd\xfd\x63\xb8\x93\xad\x10\x50\x00\xf9\xf8\xdb\x7b\xe2\xf7\x51\x18\xf4\xc2\xcd\xe0\xf4\x15\xc3\xdd\x2b\xf7\xa3\xd3\x91\xec\xec\xdf\x25\x53\x00\xd9\xa8\x89\x6b\x47\x60\x4c\x36\x6a\xdd\x72\xe1\xd8\x75\x1a\x29\x9c\x48\xff\x3b\x73\xbf\x3b\x88\x2f\x29\x90\xa8\x5a\x45\x62\x05\x51\x4d\x92\x2b\x27\xe7\xba\xf5\xd2\xc9\xe5\x78\xb1\x8a\xd8\x72\x60\xe9\x32\xb8\x44\x26\x5a\x3a\x1b\x9a\x68\x69\xb9\xc5\xf2\xc9\xf7\xc3\x45\x3e\x91\x2c\x93\x2a\x2b\x95\x50\xae\x93\xbe\x1e\xa7\x39\xda\xad\x92\xb3\x50\xcd\xb1\x12\xf4\x09\x8d\x83\x1a\xc8\x93\x24\xf2\x6c\xf5\xc3\x5c\xfa\xf5\xb1\x39\x3a\xcb\x6e\x9d\x58\xcd\x59\x34\xc7\x33\x61\xbd\xe4\xd2\x52\xad\x6d\x5a\x9b\x55\x4a\xd7\xd4\x16\x0d\xd5\x06\xe9\x5a\xa0\x2f\x46\xa6\xb1\x51\xda\x9a\x42\xaa\xab\xac\x9f\xcb\xb8\x9c\x2f\x79\x59\xfa\x52\xf9\xe5\x44\xb2\xca\x1c\xa5\xa5\x87\x4c\x49\xe1\xd3\xc8\xfe\xa0\x42\x04\x01\x0f\x56\xd3\x59\x92\xf3\x33\xcf\x37\x13\xc8\xe5\x72\x0c\xfa\x35\x98\x24\x33\x96\x15\xe5\x72\xf9\xdd\xf7\xff\x39\x80\x9b\x9b\x99\xc4\xcd\x9e\x57\x76\x36\x79\xb3\xe7\xb6\xf2\xb1\x1c\x4a\xdd\x4a\x1f\x8d\xd7\x2e\x5f\x4e\xf3\x1a\xe3\x7e\xfd\x88\xa5\xe5\x3b\xcc\xee\x66\x91\x4a\x41\xe5\x66\x0c\xd4\x6f\xfd\x4f\xce\xaf\x83\x61\xb3\x21\xb0\xda\x5f\xe4\xb0\x9c\x48\xb8\x33\x85\xaa\xaa\x70\xbd\x33\xbf\xec\xc3\x5f\xee\x97\x31\x0b\x51\x1c\x89\x28\x79\x09\xf7\x91\xee\xe6\x2f\xaf\x3b\xf0\x34\x9f\x85\x13\xc9\x5c\x14\x8c\xeb\xab\xee\x45\xad\x95\x7e\x11\xc2\x94\x9a\x37\xf3\x05\x7d\x34\xdb\xee\x2a\xf5\xd2\xf0\x02\x3a\x2d\x84\x48\xa4\xf9\x32\x7d\x0e\x41\xf2\x7a\xd6\xb5\xdb\x4f\xa1\x5b\x4e\xa4\xff\x18\x65\x99\xe0\xc6\xbe\x6d\x85\x70\xdf\x7a\x13\xb6\x8c\x65\xaa\xb5\x41\x76\x71\x98\x55\xe0\xf9\x12\x4b\x1e\x89\x14\x22\xb6\xcc\x07\x71\x48\x36\x19\x48\x4a\xfa\xe1\xb5\xe3\xb8\xef\x27\xc4\xdc\x90\x1d\x85\x3b\x9d\x62\xfd\x84\x18\x8f\xc5\x3b\x81\x54\xbf\x11\xe2\x5d\x6b\x2d\xea\x0f\x68\x0c\xdd\xa0\x89\x9f\x0b\xc5\x93\x10\x00\x53\x28\x6b\x96\x02\xd5\x1b\x93\x86\x72\x85\x6f\xd4\x74\xf0\x7a\x84\x89\xfb\xe0\x21\x59\x78\xd5\x5f\xd4\xfa\xa1\xa1\x7b\x19\x0f\xfc\x11\xd2\xfd\xef\x86\xbe\x92\x3f\x1f\xb8\x63\xf2\x8c\x3d\x02\x9c\xd2\xe5\x74\xe3\xf0\xe1\x7c\xc6\xe2\x32\x8b\x5d\x2f\x18\x28\xc0\x34\x62\x60\x44\xfe\x92\xa4\x0b\x2f\xa8\x69\xdc\xe0\x01\x8a\xa1\x97\xd5\xc6\xb4\xeb\x98\x44\x91\xbf\x3a\x71\x9e\x67\x09\x49\xfa\x4d\x7f\x73\xe3\x88\x2d\x87\x9b\x75\xd0\x74\x7b\xde\x77\xa5\x34\xfc\x93\xfa\x76\xe4\x12\x78\x43\xb9\xf6\xe4\xa0\x49\x80\xa9\xbe\x5c\x59\x06\x9f\x34\xaf\x61\xbf\xe5\x16\x4d\x43\x4b\x1c\x76\xa5\x7b\x6e\xb8\x65\x55\x53\x5b\x6e\x63\xf2\x39\x32\xb7\x0e\x23\x32\xb7\xdf\x0c\xa6\x0c\xaf\xc0\x58\xcd\xe5\x26\xaf\xb8\x64\x1e\x25\x0d\x69\x4d\x3a\x07\x46\x6f\x19\x4f\x20\xa6\x50\x9b\x8d\x63\x29\x78\x08\x48\x43\x17\x23\x6b\x5e\xc1\x9a\x1a\x94\xee\x5d\x73\xfd\x10\xf2\xaf\xc1\xfe\xdc\xbf\x7b\xae\x03\x18\xf7\xd0\xa8\x7d\xfa\xfe\xb3\x4a\xb6\xf5\x1a\xb5\x0f\x24\xf1\x21\xa6\xf0\x7a\x1c\xca\xf9\xd1\x33\x94\xaf\xdb\x3a\x14\xdf\x58\x9d\x82\xc1\x26\x19\xd5\xdd\xb4\xc2\x3d\xfd\x4e\x5f\x66\xba\x21\x26\xf1\x9f\x9f\x23\xf3\xb7\x2f\x72\xe8\x8a\xb8\x77\xe0\x8a\x8b\xb4\xdc\xba\xd2\x1a\xab\x57\x9b\xc0\x5a\x47\xf9\xa0\xbc\xd6\x0d\xf4\x9c\x4b\x83\xda\xc6\x01\x30\xf5\x96\xc9\xe8\xdd\xa6\xd1\xb6\x5a\x76\x11\x4d\x12\x18\xd3\x39\x88\xd4\x6d\x5e\xea\xe6\xfb\x30\x54\x95\xc4\xf9\xed\xab\x24\xce\x6f\x13\xd7\x93\xd1\xeb\xae\x53\x3a\x10\x67\xe6\x21\xfe\x0d\x00\x00\xff\xff\xba\xca\xd7\xde\xd0\x0b\x00\x00")
600
601 func runtimePluginsLinterLinterLuaBytes() ([]byte, error) {
602         return bindataRead(
603                 _runtimePluginsLinterLinterLua,
604                 "runtime/plugins/linter/linter.lua",
605         )
606 }
607
608 func runtimePluginsLinterLinterLua() (*asset, error) {
609         bytes, err := runtimePluginsLinterLinterLuaBytes()
610         if err != nil {
611                 return nil, err
612         }
613
614         info := bindataFileInfo{name: "runtime/plugins/linter/linter.lua", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
615         a := &asset{bytes: bytes, info: info}
616         return a, nil
617 }
618
619 var _runtimeSyntaxReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x4a\xc6\x30\x10\x85\xf7\x3d\xc5\x03\x17\x2a\x48\x8f\x21\xea\xd6\x03\xd8\xd0\x4e\x93\xa1\xf9\x33\x3f\x33\x13\x62\x6f\x2f\x4d\x0b\x0a\x6e\xf3\xbe\xf7\xf8\x32\x0f\xf8\xdc\x8b\x87\x6f\xbc\x72\x26\x1b\x86\x37\x52\x42\x50\x42\xe2\x98\x32\xc7\xe4\x8f\x06\x3b\x91\xf5\x40\x46\xbc\xaf\xd8\xa5\xa2\x49\xcd\x0b\x32\x6f\x04\x17\xdc\xc2\x46\x08\x28\xd4\xfe\xd2\x2f\x9d\xb4\xd4\xd1\x95\xd5\x1c\x73\xa2\x79\x03\xfb\xd0\xd8\x13\x3c\x11\xa6\xb3\xf0\xd5\x13\xd2\x31\xca\x84\xbb\x4a\xd4\x70\x1b\xf1\x51\xcd\x71\xcf\x61\x26\xb0\x83\x0b\x3c\xb1\x61\x61\xa5\xd9\x45\x77\x84\xb2\x40\x6b\xe9\x43\x57\x09\x4f\x53\x94\xfe\xf8\x7f\xf8\x79\x38\x0a\xec\x68\x9c\x33\x32\x79\x17\xdc\x8a\x34\xf0\x7a\x8c\x5c\xbf\x67\xb3\x4a\x86\xee\x18\xca\x0e\xe9\xe1\x79\x81\xd3\x82\x7e\x25\xc6\x9f\x00\x00\x00\xff\xff\xc2\xd9\x18\x61\x45\x01\x00\x00")
620
621 func runtimeSyntaxReadmeMdBytes() ([]byte, error) {
622         return bindataRead(
623                 _runtimeSyntaxReadmeMd,
624                 "runtime/syntax/README.md",
625         )
626 }
627
628 func runtimeSyntaxReadmeMd() (*asset, error) {
629         bytes, err := runtimeSyntaxReadmeMdBytes()
630         if err != nil {
631                 return nil, err
632         }
633
634         info := bindataFileInfo{name: "runtime/syntax/README.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
635         a := &asset{bytes: bytes, info: info}
636         return a, nil
637 }
638
639 var _runtimeSyntaxApacheconfYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x59\x5f\x73\xe3\xb6\x11\x7f\xf7\xa7\x70\xdd\x3e\xf4\x9a\x89\x93\x49\xdf\x3c\x37\xc9\xe8\x9f\xef\x38\x21\x25\x45\x94\x2f\x9e\x46\x69\x06\x07\xac\x28\xd4\x24\xc0\x02\xa0\x2c\x65\xf0\xe1\x3b\x8b\x05\x29\x4a\x32\xdd\x9b\x39\x71\x7f\x3f\x2e\x80\x05\xb0\xd8\x5d\xc2\x5b\x59\x82\x3b\xd6\xf0\x70\xcb\x6a\xc6\x77\xc0\xb5\xda\xde\xdc\x08\x70\xc0\xdd\xc3\xcd\xed\xed\xed\x2d\x6a\x28\x56\xc1\xc3\xed\xdd\xce\xb9\x5a\x6c\x36\xf7\xa8\xe4\x2b\x59\xc1\x66\x73\x8f\x8d\xad\xdf\xef\xb4\x75\x76\xb3\xb9\x17\x9b\xcd\x66\xf3\x0f\xbf\xd9\xdc\xef\x1c\xe3\x1c\xac\xbd\xbb\xb9\x31\x4d\x09\x96\x7a\xfb\xf6\x56\x0a\x50\x4e\x6e\x25\x98\x87\xdb\xbb\xbf\x8f\x38\x87\xda\x65\x8d\x83\x83\x27\x79\xc9\xdc\x2e\x51\x5b\x1d\xa0\xb5\x8f\xb2\x84\x39\xab\xc0\x8f\xb8\x93\x5a\xf9\x91\x10\xa3\xd2\xc5\xc7\xf8\x38\x53\x5c\x0b\xa9\x8a\x8e\x58\x1f\x6b\x40\x30\xd9\x31\x63\x21\x28\x4e\x61\xcb\x9a\xd2\x9d\x31\x96\x1b\x59\xb7\x1d\xb6\x9d\x7c\xb8\x7b\xdb\x46\x21\x3e\x33\x25\x4a\x30\xa8\x9c\x70\x6a\x84\xcf\xf3\xf1\x89\x69\x0d\x48\x54\xdd\xb8\x47\x59\x3a\x6a\x96\x32\x55\x34\xac\x08\xaf\x32\x2d\x9a\x12\x68\x92\x42\x2c\x1a\x77\xa6\xd9\xc7\xa7\xee\xe8\x59\x4a\x66\xe9\x37\x63\x8e\xef\x86\x0c\x2e\x4b\xfd\xea\xc3\xef\x64\x31\x9f\xcf\x26\x6b\x02\xc1\x58\x10\x79\xc9\xec\x0e\x2c\x71\x8b\x3d\x18\x23\x05\xf8\x91\xd2\xea\x58\xe9\xc6\x9e\xa4\x3f\x46\x8d\xdb\x69\x23\x1d\x73\x72\xdf\xd3\xf8\x23\xd5\xc5\xac\x62\xb2\xec\x51\x59\x63\xdd\x27\xb9\x87\x4b\x7e\xae\x9f\x2c\x98\x64\x3a\x64\x6a\xa7\xf8\x05\x8c\xdc\x1e\x63\x73\x6b\x65\xa1\xa8\xa1\x47\x23\x2e\x0c\x69\xdc\x6e\x3a\xce\xde\x24\x3f\x19\xdd\xd4\xe8\x34\x2d\x41\x0b\x47\x32\xf6\x78\x7a\x27\x0b\xb0\x6e\x54\x16\xd8\xc7\xae\x1a\x32\xb0\xd3\x9c\xea\x8a\x49\xd5\x6b\x7a\xd1\xd3\xc5\xc8\x81\x9b\xf3\xc9\x0e\xf8\x4b\x9f\xd1\x8a\xc3\xa3\x36\x15\x73\x97\x6c\x2a\xb7\xe0\x64\xd5\x6f\xff\x8b\xae\x7b\x28\xdf\x55\x50\xe5\xf2\x4f\x78\xc7\xd6\x73\x2b\xd2\xe9\x68\x79\xbd\x4c\xc8\x8e\xa5\x12\xd3\xf9\x19\x5c\x32\x6b\x5f\xb5\x11\x1d\x19\x4f\xcc\x44\xab\xad\x2c\x4e\xac\xae\x6a\x66\x60\x3a\x5f\xa8\x1c\xcc\x1e\x9d\x36\xbe\x99\x82\x81\x2d\x18\x50\x1c\x82\x8f\x82\x7d\xc7\x50\x6c\x30\x53\xec\x6b\x09\xa7\x01\x1f\x8d\x56\x6e\xc9\x0a\xf8\xcc\xe2\xa2\x21\x1b\xa6\x34\x72\xce\xc8\xaf\x8d\x83\x01\x3a\xb1\xbd\xd9\xac\xa0\xd2\x0e\x82\xff\xf4\xe9\x27\x53\x06\x99\xe2\x49\xe3\x76\x9d\x6f\xb4\x8e\x31\x60\xef\xd8\xe8\x57\x0b\x26\x9c\x39\xdf\x07\x73\x3d\x61\x16\xfc\x38\xff\xe1\xfb\xef\xbf\x1f\x71\xae\x1b\xe5\xfc\xb8\xd9\xe2\x2a\x88\x54\x17\xd6\x4f\x30\xaa\xc6\x08\x34\x3b\xd4\xd2\x40\xa4\xa4\x49\x41\x15\x6e\xd7\x83\x7b\x28\xdb\x06\xd2\xe2\xca\x10\xa0\x55\x8a\x32\x76\x71\x0c\x4e\x35\x60\x6b\x50\x0b\x0e\x40\x92\x36\x1c\x70\xcb\x4a\x08\xe1\x2e\x90\x9f\xf8\xa4\x04\xd6\x81\x29\x93\xe5\xb1\x05\x89\x72\x60\xf6\xac\x6c\x71\x06\xd5\x93\xc5\xc0\x15\xf1\x93\x6a\x2c\x08\x42\x49\xa1\xb4\x81\x20\x4e\xb4\x72\x46\x97\x7d\xfe\x33\x30\x01\x66\xc8\x07\x7a\x8a\x73\x9d\x32\xeb\x32\x1d\x7b\x8d\x00\x35\xc5\x23\xe3\x4e\x1b\xe2\x33\x76\xe8\xaf\x60\xc6\x0e\x38\x4d\x3c\x0f\x91\x90\xea\x9c\x98\x43\xa1\x9d\x64\x0e\xc4\x54\xf3\xb8\xb2\x2b\xad\x1d\x49\x27\xbd\xb5\xac\x20\x63\xa6\x90\x6a\xc8\xd6\x4f\x49\xc6\xea\xd9\xc1\x81\xb2\x61\x11\xe9\x60\xc4\x6d\x6d\xe1\x22\x24\x14\xdb\xc2\x5c\x37\x86\xc3\x4c\x71\x1f\xb6\x2b\xaf\xa1\x2c\x31\x53\x4c\x76\xb2\x14\x4b\x30\x31\xbc\xe1\xc2\x81\x72\x74\xc2\xfd\x44\xeb\x17\x09\x31\xd4\x10\xa0\x39\xdb\x88\x52\x5d\x44\x09\xbd\x78\xc8\xde\xa0\x90\xbb\x23\x7a\x41\x90\xd7\x86\xf1\x97\x30\xba\x36\x30\x6d\xaa\x7a\x2a\x0d\xe0\xd2\x1e\xfd\xa4\xb1\x4e\x57\xd8\xef\x94\xed\xf1\xff\x14\xea\x90\x82\xa5\x92\xee\x88\x44\xaa\xf9\xcb\x74\x8c\x52\x26\x15\x2e\x96\x6e\x9c\x8f\x93\x0f\xe9\x30\xca\x5d\x8e\x8b\x18\x8f\xd7\x80\x85\x53\xd8\x96\xcc\x01\x1d\x95\xb0\x13\x91\x41\x57\x35\x60\x71\x99\xc3\x81\x68\x79\xca\x87\x73\xed\x3a\xcd\x0c\xaa\x33\x8d\x5f\xa5\x12\xfa\x35\xf6\xa5\x8e\xfe\x34\xc3\x4e\x4a\x94\x80\xc3\x09\xd2\x79\xee\x60\xc8\x8b\x43\xf6\x6a\xde\x54\xa0\x5c\x70\x1f\x5c\xbf\x64\x11\x12\x7c\x94\x29\x67\x7b\x3a\xa9\xb3\x03\xd6\x31\x52\xab\xcf\x5a\xbf\x44\x2e\xcb\x46\xcb\x28\xe6\xa0\x04\x16\x55\x7e\x66\x8c\x36\x6d\xc7\x84\x70\x17\x66\x07\x86\xa7\xd5\xc7\x7d\xc7\xba\x67\xdf\x21\x2a\x08\x06\x8c\x8c\x3a\xad\x5b\x06\x7f\xc5\x7c\xef\x98\x6b\x2c\x42\x5a\xc4\x29\x6c\xa5\x82\x13\x6e\xfd\x16\x0f\xcf\x6c\xcd\x8a\x20\x10\xa4\x32\xc3\x87\x20\xd2\xee\xee\xd2\x48\x4c\x27\x47\x62\x43\x08\x7d\xd4\x06\x4f\x06\x47\xf3\x43\x58\xf6\x74\xf6\x07\xec\xa4\x97\x21\x0a\x7f\xd6\xd6\x61\x75\x99\x6a\xfd\xd2\xd4\xd6\x27\x41\xd1\x51\x84\xf3\xc9\x36\xda\x9a\x6c\xa9\x66\xf2\xc9\xf6\x0b\x98\x70\x06\x93\x8a\xd5\x63\x0c\xbe\x28\xb4\x53\x46\x39\x03\xd5\xf8\x44\xf1\xb2\x11\xe0\xc3\x8e\x53\x94\x21\xb9\x9d\x2c\x01\x23\xc2\x72\x60\xdb\x01\x5b\x93\x7c\xb4\x4c\x46\x75\x0d\x0a\xe3\xf9\x5a\x87\x6d\xb2\xfe\x92\xfe\xa5\x01\x73\x24\xf6\x14\x80\x03\x7c\x64\x2f\x30\xb2\x47\xc5\x09\xa6\xba\x98\x6b\x97\x37\x75\xad\x8d\x03\x41\xe4\x0a\x98\x18\xed\x80\x09\x3a\x0f\xfe\x67\x80\x7a\x54\xe2\xb6\x77\x52\x3c\x76\x03\x56\x5e\xed\x4d\x48\xd4\x94\x3c\x9c\x91\x60\x4f\xc4\x7a\x9d\x12\xd0\x4a\x41\xa8\xa9\xdb\x13\x8d\xec\xa2\xbe\x6a\x15\xa9\xb6\x5d\xbe\x63\x06\xc4\x69\x92\x17\xdc\x3b\xe5\x09\x6a\xae\x4d\x63\x1d\x88\xc9\xc8\x9f\xa1\xe0\x45\xa9\xac\xa4\xa3\x5f\x3a\x42\x24\x87\x84\xa4\x58\xb9\x02\xde\xd0\xd6\x07\x7a\x05\xff\x6d\xc0\xba\xb1\x16\xc7\x33\xe2\x51\x42\x29\xec\x35\x15\x02\x43\x9f\x4d\xa5\x1a\xb4\x14\xd5\x9e\xb3\xf4\x7c\x0c\xeb\x40\xc5\xc7\x98\xf1\x17\x74\xf6\x54\x33\x41\xab\xa0\x59\x2c\xeb\x7d\xaa\x39\x0b\xa9\xb6\x15\xe8\x0c\x61\x10\x8d\xaa\x45\xac\xff\x52\x5d\x50\x04\xcb\xd8\x61\x52\x4a\x50\xce\xa2\xd8\xed\x79\x1c\x7e\x28\x83\x66\xec\x90\x41\xf5\x68\x00\xb0\x55\xab\xbc\x04\x13\x32\xcc\x05\xb7\xde\x19\x60\x81\xcc\xb1\x7a\xa3\xca\xcd\x76\x98\x5e\x07\x7c\x2d\x9e\xba\x6c\x13\xef\xe2\xeb\x7f\x80\xbb\x49\x28\x77\x2e\xc8\x77\x1c\xa0\xd3\xcc\x9d\x01\x56\x49\x55\x44\x7f\xcf\xda\xfc\x7d\xea\x22\x72\x58\xc9\xed\x59\xd9\x55\xe9\x91\x26\x0d\x70\x6c\x2a\x4d\x78\x52\xc8\x42\x29\x6f\xb6\x5b\x79\xf0\x59\xc8\xe9\x85\xe4\x61\xcd\x33\xa9\xce\xa7\x1d\x71\x9c\xe0\x90\xbd\x19\xa3\x52\x3a\xd3\x02\xfb\x7b\xb2\xd0\x7d\x9d\x66\x4d\xe9\xe4\x5e\xc2\x6b\x0c\x91\x18\xcd\xbe\x48\xe3\x1a\x56\x62\x4c\xf3\x73\xbd\x34\xfa\x70\xf4\xf3\xa6\x6a\x07\x9d\xff\x9a\xe7\x69\xeb\xf2\x60\x5c\x64\x9e\xea\xc2\x30\x01\xa1\xc6\x6b\xa3\x53\x08\x4c\x1e\x0b\xf2\x99\xda\xfb\xa5\x14\xef\x14\xa7\x4b\xa3\x9d\xe6\xba\x9c\xf1\x9d\xf6\x34\x68\xf8\x1d\x33\x41\x81\x36\xc2\x52\xf3\x17\x12\x63\x79\x11\xe4\x10\xcf\xba\x8f\xc0\x40\x25\x8b\x5e\x5a\x0e\x0c\x4d\x31\x8a\x87\x47\x6d\x5e\x99\x11\x96\x08\x34\xf2\x24\xad\x00\xa7\xfa\x8e\xa9\x87\xe3\xd2\x80\xc5\x15\x09\xcb\x14\x98\x15\x70\x90\x7b\xb8\x1c\x95\xaa\xf8\xbe\xdc\xb3\xa3\x75\x6d\x42\x6d\x08\x0b\xe0\x8b\x64\x1e\x23\x6a\x45\x17\x07\x2b\x10\x21\xc3\x77\xc2\x7b\x9f\xce\xad\xce\x12\x4c\xc5\x14\xe6\xe5\x96\x59\x43\x55\xfb\xe0\x8e\xd0\xde\x24\x10\xea\xae\x00\x08\xb6\x57\x05\x84\xfa\xb7\x00\xc4\x74\x45\x12\xc1\xb3\xaf\x7f\xa2\x42\x30\x8c\xf3\x7b\x37\x8f\xa2\x0e\x96\xc3\x2b\x78\x35\xd2\x41\xc8\x86\x51\x9e\x68\x25\x5a\x79\xa6\x0a\xcc\xa1\x11\x61\x1c\x3a\xc9\x45\x4f\xa4\x58\x14\x71\xc6\xea\x56\x6c\x9d\x32\xc2\x15\x06\xb9\x55\x08\x91\x93\xe5\x53\x94\xb2\x59\x16\xa5\xf9\x72\xb5\x98\x0c\x18\x9c\x33\x27\xed\xf6\xe8\x73\xae\x0d\x8c\x35\x33\x14\x3c\xf3\x70\x19\x13\x1f\x74\xc7\xd1\x93\x69\xd3\x89\x08\xb9\xa0\x36\xe0\xc0\x50\x79\x1d\x79\x9c\x48\x27\xc5\xa0\xd2\xe1\xf8\x9d\x45\x38\xc7\xe9\xe7\x98\x4a\x80\x42\xf9\x90\xa9\xa0\x44\xcf\x21\xe9\x0c\x8f\x44\x25\x55\x2b\x93\x9d\x41\xa6\xcc\x45\x72\xf0\x39\x12\x31\x58\x44\x31\xd4\x8d\x24\xe6\xb2\x50\xcc\x35\xa6\xd5\x5a\xeb\x17\x50\xd8\x93\xc3\xb3\x4e\x8f\x64\xdb\x09\xf1\x13\x33\x07\x17\x3d\x6b\xd0\x60\xd7\x77\xb6\x1c\xdc\x99\x6b\xe5\x79\x32\x53\x02\xab\x3b\x94\xf0\xd0\x67\x36\xc8\xb9\x63\xc6\x45\x1e\x8f\x51\xcc\x4d\x79\x9e\x3c\x29\x11\xaa\x2f\x11\x22\x4b\x9e\xa7\x93\x11\x86\x2d\xb9\x95\x9c\x0a\x72\xb8\x22\x71\xc6\x43\xf6\xa1\xea\x0a\xf6\x31\x29\x9e\x9a\x9f\x38\x5a\xaf\x3c\xed\x75\x38\xd9\x31\x79\xd2\x7d\x63\xf4\x13\xf5\x33\x1c\x3b\x56\xd6\x3b\x30\x79\x23\x5d\x80\xf1\x00\xe4\x79\x4a\x17\x8d\x79\x9e\x46\x9f\x1e\xb6\x15\x83\xd9\x72\x67\x98\x85\xa9\x64\x25\xba\x57\x9e\xb6\x91\x36\xca\x87\xe3\x9b\x0b\x72\xfd\xa6\x9d\x57\x7c\x73\xbd\x08\x57\x2f\xce\x5b\x9c\x66\xf3\x8e\xbd\x21\x98\x77\x13\x8d\xb1\x9a\xef\xa4\x82\x21\x1b\xaf\x5f\x9f\x0d\x7b\x35\x5b\xba\xa1\xbb\x80\xe1\x63\x11\xb9\x15\x53\x42\x57\x39\x80\x08\x88\x42\xd3\xb0\xbd\x51\x21\xcf\x53\x54\xcf\xe9\x8b\x2f\xe4\xf6\x4b\xdc\xc6\x76\x4c\x95\xb6\x3d\x5f\x79\x4a\xc3\x53\xd9\x74\xc2\xd1\x1c\xf4\xe9\x36\xed\x92\x83\xc7\xa2\x26\x6f\xe0\x00\x1c\xfb\xa1\xef\x14\xe2\xc3\xf9\x1d\xb0\xf5\xb2\x06\x22\x9c\x3b\xc6\x5f\x42\x64\x40\xf3\x16\x8d\xf3\xf8\x85\xdd\x5e\xd5\xac\x0d\x53\x76\x0b\xe1\x73\x0e\xa3\xb9\x8d\x57\x68\x4f\xca\xd2\x29\x7f\xb2\x30\x61\x4a\x2b\xc9\x59\x19\x26\x84\x16\x85\x1f\x2c\x68\x62\x1d\xd1\xff\xe6\x1c\x30\xee\x0d\xcd\x64\xe9\xfb\x75\x48\x94\xfb\xb1\xf5\x9a\x4a\x96\xfe\x57\xa9\xfe\xf9\x43\xbc\x76\xa2\x8b\xf8\xd9\xc1\x3f\x8f\xa5\xfb\xcc\x7a\x57\x4d\xf6\x58\x7d\xd5\xe5\xbd\x63\xc5\xc3\xed\xdd\xc7\xdf\xfe\xfd\xe3\xef\xdf\xfc\xf8\xa6\x65\x1f\xbf\xfb\xe9\xb7\xd1\xb7\xff\x62\xdf\xfe\xf9\xfb\x37\x6f\x9b\xfe\xd1\x7f\xfc\xce\xff\xf8\xe1\xee\x26\xbe\xe5\x5a\x59\xc7\x94\xbb\xb7\xce\x48\x55\xd0\x9f\x0b\xf0\x9f\xc5\xfd\x7b\xb8\xbd\xdb\xdc\xdd\x75\x1c\x28\x81\x7d\xfc\xf4\xf1\x2f\x9b\xcd\x66\xf3\xa1\xff\xaa\xf7\xc7\x86\xf6\x5f\xbf\xf3\x1a\xb8\x64\x25\x66\x70\xec\x72\xb3\xd9\xdc\xf7\x2c\xa8\x70\x11\xaf\x47\xfe\xeb\xe5\xc0\x7f\xfb\x3f\xc3\x39\x2d\x74\xf0\x9d\xc5\x74\xe1\x9f\x9f\x9f\xfd\x63\xf2\x9c\xcd\x3e\x3c\xfc\x74\x77\x73\xf3\xbf\x00\x00\x00\xff\xff\x5e\x47\x53\x19\x72\x19\x00\x00")
640
641 func runtimeSyntaxApacheconfYamlBytes() ([]byte, error) {
642         return bindataRead(
643                 _runtimeSyntaxApacheconfYaml,
644                 "runtime/syntax/apacheconf.yaml",
645         )
646 }
647
648 func runtimeSyntaxApacheconfYaml() (*asset, error) {
649         bytes, err := runtimeSyntaxApacheconfYamlBytes()
650         if err != nil {
651                 return nil, err
652         }
653
654         info := bindataFileInfo{name: "runtime/syntax/apacheconf.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
655         a := &asset{bytes: bytes, info: info}
656         return a, nil
657 }
658
659 var _runtimeSyntaxArduinoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x71\x6f\xdb\xb8\x0e\xff\xbf\x9f\xc2\x2f\x1d\xde\xec\x0d\x6b\x5f\xbb\xf7\x86\x77\xc1\x0d\x41\x9b\xa6\xad\x81\x36\x09\x1a\x77\xeb\x5d\xbd\x19\x8a\x45\xc7\xc4\x14\xc9\x93\xe8\xa6\x3d\xf0\xc3\x1f\xe4\xa4\x5d\xce\x59\xba\xe1\x2e\x7f\x88\xa4\x45\xfd\xf8\x13\x25\x52\x29\x50\x01\x3d\x54\xd0\x0d\x50\x9b\x9d\x1d\x09\x04\x39\x75\x77\x82\x20\x08\xfc\x94\x16\x73\xe8\x06\x9d\x34\xdd\xeb\xa1\x36\x2f\x3a\x3b\x3b\xb6\x56\xe0\x96\x0e\x6f\x02\x94\xa0\x09\x0b\x04\xdb\x38\x4d\x6f\x8f\xde\xfc\x9e\x7d\xba\xfd\xcf\x9b\x5f\x1a\xe5\x75\x9a\x4e\x3b\xc1\x4e\xe3\x1c\x04\xbb\xbb\xc1\x6a\xd9\x32\xa0\x5f\x10\x86\xae\xe7\xf0\x0f\x88\x38\x0c\xeb\xac\x17\xf5\x50\x53\xf8\x7f\x3e\x78\xc7\x6f\x0f\xf9\xdd\x7f\xb9\x22\x1b\x45\x51\x46\x1e\x68\x0d\xa7\x6f\xb4\x23\xa1\xc9\xad\x00\xf3\x95\xdd\x0d\x3a\x61\x0f\x23\x0f\x7c\x1e\x9f\x9d\xf3\xc5\xe8\x23\xc7\xc3\xf1\x75\xc2\xa3\xeb\x64\x7c\x9d\x44\x2d\x9c\x09\x58\x14\x2a\x18\x5b\xd4\xb4\x1d\xea\x64\xd0\xe7\xe3\x78\xc8\xe7\x83\x1b\x1e\xf5\x13\x3e\xfe\x2d\x19\xb4\x91\xc6\xf1\xcf\x90\x1a\xc7\x7c\x7e\x74\x71\x9a\x8d\x63\x4e\x3e\x8e\xb2\x71\xbc\x41\xa8\xc4\x82\x46\xf5\x33\x64\x2e\x26\xc7\xa7\xf1\xd5\x24\xe1\xcb\x95\xd2\x86\x38\x22\x12\x79\x19\xc4\x9a\xc0\xda\xba\x7a\x06\xaa\x7f\x7e\x34\x3c\x1b\xf0\xe9\xd1\xc5\x45\x3c\x3c\xe3\xab\x78\x12\x0f\xcf\x36\xe0\xb4\x50\x66\x16\x5c\x41\x01\x16\x74\x0e\xcf\xa5\xe9\xf4\xe8\xfa\x22\xe1\xc1\x4d\x32\xb8\x1a\x1e\x5d\x70\x3c\x6c\x29\x07\x1f\x0e\x9e\xf4\xc3\x0f\xff\x7b\xd7\x8e\xf5\xfe\xfd\xfb\xe0\xf4\x7a\xd8\x4f\xe2\xd1\x70\xd2\x58\xbb\xbb\x6b\xd3\x27\x82\x44\x90\x3c\x54\xe0\x36\xef\xd1\xd4\x18\x05\x42\xf3\xf4\x81\x80\xf3\x52\x58\x2e\x94\x11\xc4\xa8\x89\x95\xd1\x33\x5e\x18\x2b\xdb\xf1\xfa\x46\x93\x35\x2a\x98\x90\xad\x73\x42\xa3\x1f\x81\x1d\x09\x82\x39\x34\xdb\xf3\xe8\xb9\x70\xc0\xb9\x12\xce\xb1\x84\x42\xd4\x8a\x58\x1a\x96\xa6\x9e\x2a\x60\x50\x0e\xb8\x10\xcd\x68\x2c\x63\xc1\x1a\x16\xac\x6b\xa5\xb8\xb2\x78\x27\x08\xb8\xb2\xc6\xd7\x15\x48\xae\xea\xa9\xc2\x9c\x5d\x69\x2c\xb1\xc3\x99\x06\xc9\x3e\x1a\xe6\x3c\x21\x8b\x7a\xc6\x6e\x81\x94\x97\x4c\x25\x3a\xa6\xd2\x9a\x05\x93\x7d\x60\xb2\x35\x70\xad\x57\x2b\xee\x0c\x4a\x5e\x94\xa8\x20\x5a\x96\xd8\xf7\x69\xcf\x0c\x19\xce\x8d\x26\xd4\x35\xf0\xd4\x82\xf8\xc2\x16\xa8\xb6\xba\x9d\x89\x4b\x41\xe5\x96\x9a\x0e\xc5\xd4\xb1\xc8\x8d\x63\xe1\x50\xb3\x20\xb1\x1c\x0e\x39\x07\x54\xdc\x5c\x04\x2b\x50\xb3\x77\x91\x30\xb3\x00\x8e\xe1\xbe\xf2\x07\x60\x2c\x2b\x33\xe3\xb9\xa8\x78\x2e\xee\x79\x8e\x9a\xad\x90\x28\xb4\x63\x2b\xb4\x34\xf3\x95\x98\x00\x48\xb6\xa6\xd6\x92\x7d\x0c\xf7\x95\xdd\x57\x4b\x4c\x62\x83\xe8\x31\x92\x0b\xfe\x1d\x1c\x3f\xd0\xd3\x2d\xd8\x20\x3c\x45\xba\x02\x21\x79\x8a\xf4\xd1\x22\x81\x57\x26\x40\x5e\xf4\x15\x08\xeb\x15\x2e\x71\x56\x7a\x14\x56\x66\xe1\xe5\x96\x7b\x1f\xef\x8f\xb6\xe6\xa5\xf1\x78\x2a\x0c\x7e\xb4\x85\x5c\xa9\x4d\xf0\x36\xee\xe0\x9e\xc0\x6a\xa1\xbe\x15\xe8\xd6\x7d\x88\xa6\x92\x9f\xfc\x58\xc2\x5f\xec\x36\x72\x82\x73\xd8\x06\x25\x41\x89\x07\x6e\xc6\x4b\xcc\xad\x71\x90\x1b\x2d\x1d\xcf\x51\x29\xf4\xc2\x7f\x6b\x03\x9e\xe0\x0c\xc9\x33\xdd\x9e\x83\x0a\xf5\xa5\x91\xc0\x72\xe9\xba\x4c\xf7\xca\xf0\x99\x68\x43\xfe\x78\xd3\xf8\xe4\xc1\xda\x7c\x73\xdf\x38\x1e\x79\x27\x74\x0e\xf2\x39\x72\xda\x24\x46\x03\x57\xb5\x72\x10\x6b\x76\xbe\xb7\x3e\xca\x51\x4d\x4c\x46\x6f\x1c\xcf\xf2\x45\xd8\x86\xb8\x9c\xe5\xa5\x38\x58\xc9\xc3\x95\x7c\xcb\x53\x98\xa1\x66\xd0\x92\x2b\x00\x5f\x6a\x42\xfa\x16\xa0\x69\x39\x2a\xcd\xe2\x4e\xa0\x12\xbe\x6b\x14\xaa\x76\xe5\x46\xf4\xa6\x11\xd5\x76\xeb\x39\x3a\xa0\xba\x62\x65\x4c\xd5\x5e\xfa\x9d\x16\xf0\xf9\xf6\xb6\xeb\x2a\x91\x43\xf7\xd3\xa7\x57\xbb\xeb\x46\x28\xa1\x40\x0d\x8c\x3a\x57\xb5\x84\x30\xd3\x70\x4f\x51\x8f\xc3\x5a\x33\x16\xba\x17\x49\x28\xfc\x3e\xb0\x60\x50\x21\x16\xec\x20\xf2\x8d\x6d\x21\xac\xf6\x3d\x0a\xac\x35\x96\x2b\x2b\x66\x73\x11\xad\xb3\x38\xeb\xf7\x83\x69\x8d\x8a\x50\x7f\xef\x19\xcc\x32\x41\x64\x71\x5a\x13\x64\xd9\x3a\xa1\x34\x0d\xd3\x34\xbc\xfd\x1c\x79\x35\x4a\xd3\x88\xb3\x2c\x14\x6a\xd9\xed\x84\x9b\xf3\x0a\x94\x4b\x94\x12\x34\xa3\x56\x9e\x7f\x25\xf2\x2f\xbe\x73\x80\x23\x8b\x39\xb1\x83\xa6\x8d\xb3\x7f\x18\x4c\xc1\x0b\x10\x5f\xa2\x2c\x7b\x64\xf8\x8d\xcb\x9e\x6b\x7a\x6d\x77\x45\x3c\xf0\x69\xb3\x4d\xd7\xec\x74\x9e\xbe\x81\x96\xcd\xeb\xf6\xeb\xbf\xd2\xd4\x93\x5a\x9b\x5a\xfb\x13\xf4\xf8\x5b\x07\xaf\x20\x47\xa1\xfa\xa5\x58\x1e\x5b\x9a\xee\xfd\x3c\x83\x97\x5b\x09\xbc\xfc\x41\xfc\xca\x42\x65\x4d\xde\x0d\x3a\x7b\x7b\xaf\x3b\x7f\x8f\xdc\xbc\xb9\x3a\x1b\xa4\xf6\xf7\xdb\xac\x5e\xfc\x80\x0c\x19\x69\x3c\xf9\x64\x74\x32\xe2\x9b\x9b\x1b\x3e\x8d\x6f\x2e\x07\x51\xb7\xf7\x13\xc1\xd2\xf4\x55\x3b\x5c\x9a\xbe\xda\xff\x07\x11\xff\x0c\x00\x00\xff\xff\xd3\x5a\x94\xf0\xe6\x0a\x00\x00")
660
661 func runtimeSyntaxArduinoYamlBytes() ([]byte, error) {
662         return bindataRead(
663                 _runtimeSyntaxArduinoYaml,
664                 "runtime/syntax/arduino.yaml",
665         )
666 }
667
668 func runtimeSyntaxArduinoYaml() (*asset, error) {
669         bytes, err := runtimeSyntaxArduinoYamlBytes()
670         if err != nil {
671                 return nil, err
672         }
673
674         info := bindataFileInfo{name: "runtime/syntax/arduino.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
675         a := &asset{bytes: bytes, info: info}
676         return a, nil
677 }
678
679 var _runtimeSyntaxAsciidocYaml = []byte("\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")
680
681 func runtimeSyntaxAsciidocYamlBytes() ([]byte, error) {
682         return bindataRead(
683                 _runtimeSyntaxAsciidocYaml,
684                 "runtime/syntax/asciidoc.yaml",
685         )
686 }
687
688 func runtimeSyntaxAsciidocYaml() (*asset, error) {
689         bytes, err := runtimeSyntaxAsciidocYamlBytes()
690         if err != nil {
691                 return nil, err
692         }
693
694         info := bindataFileInfo{name: "runtime/syntax/asciidoc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
695         a := &asset{bytes: bytes, info: info}
696         return a, nil
697 }
698
699 var _runtimeSyntaxAsmYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5a\xe1\xaf\x1c\x37\x6e\xff\xee\xbf\x62\xeb\xbb\xe2\xfc\x6a\x38\xe7\xdd\x67\x3b\xb6\x5b\x20\x08\x72\x3d\x20\x1f\x92\x14\xcd\x15\x08\x9a\x17\x04\x1a\x51\xb3\xa3\x7d\x1a\x8d\x56\xd4\xec\xcc\x2e\xf8\xc7\x17\x24\x35\xfb\x36\x89\xeb\xce\x87\x1a\xd8\x1f\x29\x0e\x25\x52\x14\x25\x71\xc6\xaf\xf5\xc1\x95\x73\x72\x1f\x37\x06\xfb\x67\xcf\xc0\x15\x67\xcb\xc7\x67\x9b\xcd\x66\xc3\x8f\xa2\xe9\xdd\xc7\xcd\xf3\x87\x87\x2f\x5e\xfc\x48\x48\x06\xfb\xbb\x3f\x3f\x7f\xf6\x2c\x8f\xc1\xa1\x6a\xfd\x69\xf3\x8f\xce\xa3\x28\x6f\x3c\x6e\x7a\x03\x6e\xd3\x0e\x79\xf3\xfd\xd7\x3f\x7e\xb7\x31\x88\xae\x6f\xc2\xf9\x99\xaa\xfe\x69\xf3\x6d\xc4\x92\x47\x5b\xfc\x10\xb1\x76\x9f\xdf\xbf\x13\xee\xd5\x06\x8b\x29\xae\x77\xb1\x88\xc5\xe6\xc5\x57\xfe\xee\x45\x3f\x9c\xc8\x18\x43\xc6\x00\x19\xd3\x93\x31\x48\x06\x2c\x19\x00\x32\x11\xc8\x9a\x10\xc8\x36\x13\xd9\x60\xc9\x06\x20\x1b\x3c\xd9\xde\x92\xed\x13\xff\xb0\x11\x9c\xc8\x4e\x40\x60\x0c\x81\x41\x02\x67\x09\xfc\x89\x1c\x5a\xea\x42\x21\xcf\x0d\xdf\x8f\x81\x7c\x24\x1f\x2d\xf9\x58\xf8\x37\x90\xcf\xae\xd0\xc1\xd0\xc1\x38\x3a\x34\x74\x68\x1c\x1d\x2c\x1d\x1c\x1d\xf6\x74\xd8\x3b\x3a\x04\x3a\x04\x47\x87\x68\xf8\xc7\x4c\xc3\x3f\x66\x2c\x1d\x22\xd3\x3d\xff\x98\x09\xfc\x63\x66\xa0\x43\x4c\x74\x88\x48\x87\x78\xa1\xc3\x40\x87\x44\x87\xe4\xe8\x90\x06\x3a\x20\x1d\x2e\x74\xb0\xf3\x85\x0e\x7d\xa2\x60\xba\x96\x02\x20\x05\x67\x28\x38\xa4\x30\xd8\x47\x0a\x03\x60\x23\x38\x51\x18\x86\x24\xe0\x04\x63\x25\x17\x21\x17\xea\x87\x13\x36\x82\x13\xf1\x04\xa3\xdb\x53\x1c\x12\x0d\x99\xd2\x90\xf8\xd7\x52\x1a\xb1\x13\x68\x29\xdb\x40\xd9\x66\xca\x2e\xf1\xcf\x31\x44\xc5\x0b\x23\x43\xe1\x5f\x64\x68\x29\x0f\x81\xf2\x90\x09\xd9\x4f\x34\x81\xd0\x64\xc2\xa6\x21\xb4\x06\x15\x27\xc2\x2e\x10\x76\x99\xb0\x58\xc2\x02\x84\xc5\x13\x96\x81\x9f\x97\x81\x9f\x8f\x0d\x15\x87\x85\x26\xe3\x0b\xcd\xb6\xdb\xd3\x1c\x4c\xa1\x79\xc8\x77\x2f\xbe\x7a\xe5\xef\x1e\x1e\x9a\xe7\x9f\xc9\x91\x66\x18\x23\x90\x8b\xc5\x65\xf2\x51\x62\x75\x72\x34\x8c\x05\x79\x7e\x46\xa6\x66\x56\x8d\x64\x72\x0a\x64\x43\x41\x0a\x26\x53\xd8\x43\xa1\xe0\x19\x02\x43\x2f\xe1\x36\xc0\x29\x17\x30\x50\x28\x99\x90\x75\x90\x75\x90\x75\x90\x75\xb0\x64\x3a\xb9\x2c\x30\xad\x9b\x01\xb6\xd4\x60\xa6\xa6\x50\x53\x2c\x35\x85\x59\x24\x0b\x47\xc9\x5e\xe0\xec\x75\x3c\x37\xd0\x8c\x64\x50\xb6\xa5\x83\xe3\x64\x09\x2d\x52\xd8\x23\x05\x44\x49\x0c\x90\xf5\xd7\xf4\x70\x53\x4d\x8d\x4a\x2f\x4a\x2b\x51\x4d\x07\x55\xa7\xd2\x8b\xd2\x0b\x90\xcd\x54\x32\x41\x96\x24\x02\xc1\x99\xf1\x32\x4b\x88\x41\x62\x2c\xd8\x82\x86\x5a\x49\x0b\xb2\xfc\x40\xe8\x8a\x11\x70\x8c\x8d\x80\xb0\x96\x41\xb8\xbd\x80\xb0\x41\x40\xd8\x68\x14\xb5\xd1\x28\x6a\x43\xba\x46\xe5\xf7\x8a\xda\x08\x8a\xda\x18\x04\x93\x20\x0a\x5e\x18\x45\x2c\xd2\x24\x7a\x49\x04\xa2\x70\x21\xec\x40\xb2\x15\x24\x39\x61\xe5\xf2\x4d\x46\x4e\x9b\xd9\xee\x3b\xf2\xf1\x04\x0c\x21\xed\x69\x6a\xa4\x35\x1b\x58\x37\x92\x4d\xa3\x07\x1d\xa9\xdb\xbf\x6f\x28\x43\x8f\x99\x32\x14\xb4\x34\x65\xe1\xb1\x5f\x35\x52\x86\xd4\xdb\x55\x9a\x78\x46\x39\x45\xf1\x8c\xd9\x95\x75\x6e\xf6\xc3\xc9\x90\xa0\x13\xd2\x28\x6a\xc3\x0a\x2a\xbf\x57\xd4\x46\x50\xd4\x46\x34\x95\xd4\x66\x53\x49\x6d\xea\x20\xb1\xb6\xf6\x95\xd4\xe6\x32\xc4\x20\x24\x45\x6d\xa1\x92\x8b\x90\xfa\x48\x51\xd5\x93\xca\x54\xed\xc2\xf3\xd5\x33\x83\x99\xd9\x17\x1a\x61\xb7\x6a\xf6\xbd\xc1\xc7\x7e\x38\x1d\x79\x17\xc4\x92\x50\xe9\x91\x52\x76\xad\x2b\xb6\x7b\x7d\xe5\xb6\x57\x6e\x77\xe5\x22\xef\x86\xd6\x45\xeb\xd6\x85\x3a\xb4\x81\xcf\xe7\x20\x5d\xa8\xda\x86\xe3\x48\x7d\x95\xb0\x71\xa8\xce\xf8\xea\x13\x50\x32\x23\xae\xb3\xd0\x0f\xd1\x97\x21\x53\xcf\xc7\xef\x3a\x9f\xe0\xe8\xc8\x1e\x07\x39\x9c\x8e\x4b\xba\x6e\xdf\x35\x72\x24\x1d\xe9\x90\xe5\x48\x1a\x00\x8f\x7a\x6a\xcc\x72\x3c\x1c\xf5\x5c\x38\x6a\x3e\x27\x39\x1e\x8e\xb2\xcd\x8e\xc4\x3b\x68\x8f\x2b\x23\xb2\xf7\x75\x7f\x19\xc2\x47\x1f\x7d\x21\x2c\x7b\x4f\xa7\x9e\x4f\x67\x3a\xf5\xbd\xe4\xf3\xa9\xcf\x63\xa4\x53\x8f\xe6\xb4\x2e\x10\xa7\x3e\x95\x0c\xdc\x31\x95\x8c\x85\x4e\xbd\x0d\xce\x64\x1e\xc8\xc9\xb8\x53\xf6\xc5\xb1\x58\x87\x0f\x66\x8c\xb6\x93\xc7\x38\xf6\xfc\x60\x1e\xda\x56\x48\x5c\x65\x30\x5c\x6c\x2c\x1c\x1a\x1b\xd7\x05\xbe\x71\x33\x5f\x0d\xc1\xb6\x3e\x04\xa6\x5e\xc0\x32\x72\x66\x30\x45\x6a\x02\xd6\xe7\xe8\x2d\x95\x6d\x8f\x8f\x96\xca\xa5\xc7\xc7\x1b\x23\x62\x45\xeb\xaf\x2f\x3f\x63\xb1\xdd\xcd\xfd\x96\x5a\xd3\x20\xb5\x5c\x73\x31\x24\x6a\x9b\x00\xd4\x36\x58\x12\xb5\xb6\x43\x6a\x6d\x70\x33\xb5\x76\xe8\x05\x92\x62\xa2\x16\x9c\x15\x25\xf0\xe8\x19\x4f\xd4\x9e\x3c\x88\xe0\x94\x15\x13\xb5\x2e\x7a\x6a\xdb\xec\x1c\xb5\x5e\x8c\x78\x19\xc9\xeb\x50\x52\x9d\x09\x66\x6a\x3d\x1b\x96\x52\xad\xf5\x51\xc7\x96\x04\x68\x3d\x2a\xb0\x80\x0b\x0a\xc1\x4c\x2d\xeb\x07\xd8\x32\xd8\x89\xd1\xc5\x53\x25\xd2\x0c\x3b\xa7\xa4\x08\xd9\xef\x84\x44\x21\xc9\x33\x5e\xa8\x15\x7b\xfd\x18\x12\xb5\x51\xa7\x1a\x75\x46\x51\x5c\x8f\xea\x02\xd7\x55\x6d\xe4\x74\xab\x84\x6f\xdc\x36\x62\xb1\x4a\xc4\xb2\x52\x15\xe0\x44\x6d\x32\xc5\x44\x6a\x53\x76\x3d\xb5\x49\xf8\x1c\x81\x0b\xd0\x36\x23\x6f\x4b\x25\x13\xb5\x3a\x30\x23\x37\xac\x09\xdc\x3a\xe6\x42\x2d\xca\x8f\xad\x54\x23\x8b\x0d\x09\x07\x16\xae\x7f\x5b\x09\x0a\x8e\x4d\x12\xcc\x8a\x89\xda\xc2\xbd\xa5\xf2\x6a\x67\xd3\x53\x3b\xdb\x8e\xda\xb9\x64\x63\x0b\xb5\xe7\xb0\x9b\x15\xd3\x76\x55\x86\xb6\x7c\x9f\xae\xbb\xa1\x5a\x3b\x60\x5d\x09\xd0\x79\x41\xf5\x1c\x34\x1e\xdb\x3a\x77\x16\xfb\x28\x20\x5d\x16\x9d\x51\xb2\x64\xd4\x2c\x11\x92\x56\x1a\x96\x1b\xab\xad\x57\x56\xab\xb7\xd5\x2d\x89\xcd\x42\x17\xc1\x42\x47\xa5\xe3\xda\x19\xf6\x5e\xf6\x82\xaf\x1e\xfa\x4a\x56\x3a\x3a\xd7\x14\x98\x57\x9f\x61\xbc\x05\xca\xca\xd1\x79\xc7\xa5\x4f\x1d\x09\x3f\x7e\xfb\xdd\xdf\x3e\xd3\xd1\xf5\xbd\xdc\x79\x52\x0c\x1e\x29\x19\xfb\x88\x08\x53\x65\xa6\x46\x98\x51\x19\x00\xc5\x49\x10\x04\x51\x45\xa8\xb2\xb1\x36\x47\x69\x47\x10\x88\x94\xf8\x0d\x65\x66\xb0\x7d\x72\xc7\xa6\xd2\xa9\x52\x10\xba\x2f\x4d\xa5\x53\xa5\x40\xa9\x67\x73\x4c\xc7\xd0\x4d\x42\xc2\x44\x09\x17\x04\xc1\x23\x25\xcc\x5c\xa9\x62\x36\x2c\xcf\x41\x51\x24\xf2\x74\x6c\x1a\xc1\x49\x10\x04\x51\x45\xa8\x32\xf1\x7c\x8c\xc9\x3e\x76\xac\xa5\x1c\x5b\x56\x0e\xf8\xbe\x8b\x8f\xf6\x31\x5c\x9f\x06\x95\x31\x37\xad\x2b\x08\x93\x39\xb9\x1a\x2e\xcf\x93\x31\xfb\x89\x12\x78\x2c\xbe\xba\x22\xd2\xe9\xd2\xe8\x7c\x33\xb7\x4e\x51\x9a\xa7\xa0\x64\xef\xae\x4f\x75\x08\xcb\xcc\xba\x14\x91\xa5\x4e\xe6\xb4\x97\xb9\xb6\x3b\x0f\x94\x5a\x63\x2d\x23\xaf\x66\x2b\x8b\xa1\x74\xef\x2a\x2d\x94\xda\xde\xcc\x8c\x3e\x32\x8e\x81\x52\x9b\x6d\x52\xf4\x65\xbb\x30\x3b\x66\xf0\x58\x25\x72\x98\x25\x39\xa8\x92\x9e\x51\xc9\xef\x5a\x78\x9a\x59\xad\xa0\xae\xcc\xba\x49\xb0\xdb\x13\xa5\x36\xaa\xdf\x49\xa9\xdf\xb5\xbc\x8a\x93\x49\x2b\x17\x42\xfd\x3b\xa9\xeb\xa7\x75\xaf\x93\x00\x09\x89\xd7\x8e\x6b\xce\x94\x04\x99\x1f\x7a\xcf\xe4\x54\x92\xdf\x25\x65\x70\x97\x3c\x33\xe8\x77\xfa\x08\x71\x87\x22\x79\x7a\x56\x65\xe0\x4f\x09\x19\xf9\x5d\x0f\xfa\xd9\x62\xa6\xde\xcc\x5c\x88\x9a\x19\x91\x7a\x1f\x93\x20\xca\x36\x35\x5a\xa1\x76\xa1\x52\x25\x61\xa1\x4a\x7a\x7c\x5c\x0a\x59\xa5\xda\x77\xe4\xc6\x18\x14\x11\x29\x5b\x9e\x45\xb6\x3c\x0b\x89\x47\xaa\x14\x91\xb0\x1b\xdb\x84\x54\xa5\x8b\xb0\xa8\x7f\x7c\xf1\x20\x23\x22\x8d\x75\xfe\xba\x4d\x52\x65\x42\x5a\x57\xfe\xf1\xe9\xc0\x51\x8d\x1c\xdb\x21\x27\xcd\xcf\x46\x70\xa2\xc4\x15\xd2\x44\xc9\x47\x94\xbd\x60\x66\x54\xc2\x49\xc5\x21\x99\x84\x48\x4b\x66\x5d\xb7\xc6\xc8\xc9\x60\x40\x76\x7b\x37\xb6\x13\xcd\x3c\xf4\xca\xfa\x59\xc3\xb4\xc4\x2c\xfc\x36\xde\xe1\x66\x82\x4f\x53\xfe\xdd\x42\xdc\xbe\x1c\x7c\xfe\x35\x82\x8b\x8c\xba\xa8\xb7\xf9\x73\x4d\x9b\xdf\x27\xcb\x6f\x72\x4b\x24\x4b\xf8\x2b\xf9\xed\x7a\xfd\x7e\x51\x75\xc1\x6f\x82\x2d\x71\xa1\xdb\xcc\xbe\xcd\x8f\xdb\x65\xbe\x4d\xc3\xdb\x94\xbd\x4d\xd5\x1a\xec\x25\x8b\xaf\xd9\xa2\xaf\x36\xb7\x7b\x66\x59\x51\x5d\xdf\x9a\x6b\x37\x6b\x58\xd7\x54\x17\xfa\x36\x21\xea\xea\x2e\xef\x68\x4b\x0e\x68\x62\xe8\x92\x2f\x2f\x74\xab\x37\x35\xc8\xd4\x05\x63\x92\xf7\x75\xc5\x95\xdf\x0b\x7e\x33\x44\x94\x21\x38\xc2\xbf\x19\x48\x97\x07\x78\xd9\xe0\xb8\x4b\x57\x46\x17\x19\x76\x70\xac\x8c\x2e\x2d\x33\xd7\x8c\x80\xba\xea\x55\x07\xab\x04\xa1\x26\x04\x33\xd7\xac\x81\x25\x33\x40\x0f\x9b\x65\xe8\xa7\xb1\x9f\x86\xaa\x43\xf0\x6a\x82\xac\x26\xc8\x6a\x0a\x32\xef\x79\x2a\xbd\x7c\xa7\x92\x1c\x05\xcd\x73\xd0\x7d\x00\xcb\x41\x03\x4f\xdf\x92\x46\x6e\x8c\x41\x11\x81\x73\x0c\x74\x75\x41\x33\x53\x09\x82\xa4\x96\x20\x42\x4d\x61\x58\xb6\x13\x2c\x1b\x0c\x24\x3d\xd7\x2d\x82\xbc\x45\xef\xe4\x05\x15\x8e\x86\x96\x97\xea\xe1\x74\xe4\xc9\xf2\x8d\xab\x55\xc0\x51\x52\x68\x94\x56\x37\xb6\x5d\x3d\x21\x42\xa5\x5a\x4e\xc8\xd3\xfc\x74\xbd\x77\xc7\xa7\x9b\xfe\x08\xab\x13\x4b\xe7\x58\x19\xa4\x4e\x13\xa5\xd3\xdd\xd6\xe9\xd3\x4e\x9f\xb1\xbf\x30\xca\x59\x80\xdd\xc2\x04\x58\x57\x98\x06\x80\xe3\x3a\xcd\x84\x7e\x1f\x79\xaa\x7e\xcf\xa5\x19\x93\x46\x27\xbe\xd4\x14\xba\x9b\x00\xb4\x2c\xea\xb4\x62\xea\xf0\xa9\x09\x94\x3a\xad\x00\xbb\x5a\xf5\x75\xb5\x14\x0c\x7e\x1f\x33\x25\x23\xaa\x86\x17\x96\xb1\x59\xe5\x18\xf0\xd1\x00\xbc\x5d\x9a\xe0\xe4\x78\x52\x5a\xdb\xa7\x45\xc0\x99\x9a\x87\x51\x34\x84\x62\xa5\x8b\x1c\x81\x7c\x44\x27\xa7\x9e\xd3\xf7\x9e\xb5\x07\xff\x72\x63\x74\x9c\xf8\x03\x8e\xb5\xda\xd4\x8a\x85\x13\x40\x3d\x68\x2a\xa3\x57\x0f\xea\x31\x85\xf5\xd0\xaa\xb7\x53\xbd\x96\x40\x5b\xa0\x9a\xda\x62\xc2\x87\x5f\xa3\x04\xfe\x2a\xe4\xa8\x47\x61\x73\xbd\xf1\x98\xc0\x5f\x85\x1c\xe5\x60\xc4\x99\x7d\x93\x2f\xb5\x95\xc1\x99\x17\x43\x25\xb0\x48\x8e\x8b\x64\xe9\x35\x2d\x3a\xd3\xa2\x33\x2d\x3a\xd3\xa2\x03\x8b\x84\x19\xf9\x76\xaf\x65\xf9\xb1\xd6\xfe\x30\x2d\xdf\xa5\xd6\x7d\x78\x57\xaf\x75\x1d\xea\xa7\x2c\x3d\x1f\x62\xc1\x95\x5f\x85\xb2\xbd\xdf\xa9\x17\x58\xb2\xbf\x72\xbd\x70\xfe\x2a\xf3\x57\xd9\xbe\xac\xdb\x97\xa7\xb6\xd7\x7d\x58\x19\xac\x0c\x2e\x12\xbc\x4a\x64\x83\x3e\xf1\x22\xc7\xb1\xb9\x76\xaf\xfc\x22\xbf\x0a\xaf\x12\x5c\x24\x32\x66\xbc\x1a\x8e\x57\xcb\xf1\x6a\x3a\x5e\x6d\xc7\xeb\x18\xf1\x3a\x88\x72\xf8\xa9\xd7\xbb\x6f\xf2\x39\x95\xe1\x73\x27\x91\x43\x17\x2d\x29\x09\x06\x0b\xb3\xe0\x6c\x25\x8b\xe4\xd1\x9d\xf7\x2e\x1a\x44\xaf\x6d\xbf\xf6\x83\x73\x67\xb6\x39\x02\xbe\x21\xe6\xa2\x9b\x8b\x13\xae\xc7\xfd\x76\x61\x76\xcc\xec\xde\xbe\x63\xbd\x85\x5f\x9e\x2b\xbb\xfb\xd4\xd4\xfe\x2b\xc2\x60\x47\xb6\xe7\xe0\x73\x13\x94\xff\x49\x04\x42\x13\x2c\x79\xeb\x9a\xf4\xf4\x1f\x3b\x4a\x81\x46\xd8\x7e\xc2\xc2\x9f\x36\xff\xe9\xf6\x1e\x8b\xcb\x58\xc7\xf7\xe0\x62\xf1\xad\x77\xf9\xd6\x40\x20\xd3\x51\x13\xa8\xe9\xc8\x06\xb2\x1d\x41\x20\xe8\xa8\x49\x81\xd0\x07\xca\xef\x1b\xca\x1f\x1a\xca\xdb\xd7\x0c\xdb\x86\xc0\x07\xc2\x14\x28\x6f\x77\x2c\xb9\x67\x78\xc3\xf0\xf6\x0f\x31\xfd\xa4\x45\x3b\x11\x4e\x54\x26\x6a\xd3\xaf\x80\x8c\x43\xb2\x4c\x7c\x12\x91\xa0\x45\xb2\x48\x5c\x8f\x21\x39\xa4\x16\x69\x8f\xb4\x87\x92\xc9\x33\x94\x4c\x81\xa9\x99\xa9\x99\xc9\xce\x04\x33\x35\x89\xd0\x53\x7e\x3f\x51\xfe\x30\xb1\xbf\x0c\xdb\x89\xc0\x13\x26\xf6\x96\xdb\xf7\x0c\x6f\x18\xde\x4e\xf4\x89\x8f\x1b\x9f\xf4\xf8\xea\x95\x4f\xe4\xcc\x4c\xae\x99\xc9\xd9\x99\x1c\x30\x9f\xc8\x89\x5d\xa0\xfc\x01\xd8\x2e\xc3\x16\xc8\x81\x27\xa7\x96\x59\x72\xcf\xf0\x86\xe1\x2d\x90\xe3\x91\xda\x60\xf6\x48\x52\x47\xae\xf3\xa3\xef\x5f\x53\xdf\x6f\xa9\xef\x77\xd4\xf7\xf7\xd4\xf7\x6f\xa8\xef\xdf\x52\xdf\xbf\xa3\xbe\xff\x92\xb2\x99\x29\x37\x33\x65\x3b\x53\x06\xe6\x13\x65\xf1\x8d\xf2\x07\xf6\x8c\x1d\xa3\x0c\x9e\xb2\xfa\xc5\x6e\xb1\x57\xec\x14\x65\x9f\x28\xab\x4f\x36\xbf\x26\x9b\xb7\x64\xf3\x8e\x6c\xbe\x27\x9b\xdf\x90\xcd\x6f\xc9\xe6\x77\x64\xf3\x97\x64\xf3\x7b\xb2\xf9\x03\xeb\x88\x22\x6b\x6e\x59\x75\xcb\xba\x5b\x56\xde\xbe\xa5\x1e\x27\x82\xfc\x9a\x20\x6f\x09\xf2\x8e\x20\xdf\x53\x7e\x43\x90\xdf\x12\xe4\x77\x04\xf9\x4b\x82\xfc\x9e\x20\x7f\x60\x15\xd1\x63\xc5\x2d\x6b\x6e\xef\x19\x58\x79\x6d\x5a\x61\x79\x4d\x58\xb6\x84\x65\x47\x58\xee\x09\xcb\x1b\xc2\xf2\x96\xb0\xbc\x23\x2c\x5f\xae\x1b\x64\xe6\x10\xcf\x1c\xe3\x99\x83\x3c\x73\x94\x67\x0e\xf3\xcc\x71\x9e\x39\xd0\x33\x47\x7a\xee\xfb\xf7\x0c\x1f\x44\x59\xbb\x48\x9f\xad\x74\xda\x4a\xaf\xad\x74\x5b\xeb\xff\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x99\x4d\x9f\xd9\xf4\x59\x4c\x9f\xc5\xf4\x59\x4c\x9f\xc5\xf4\x59\x4c\x9f\xd7\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\xb0\xe9\x0b\x9b\xbe\x88\xe9\x8b\x98\xbe\x88\xe9\x8b\x98\xbe\x88\x69\x46\xe9\xb7\x95\x8e\x5b\xe9\xb9\x95\xae\x5b\xe9\xbb\x93\xbe\x3b\xb5\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\x77\x27\x7d\x77\xd2\xf7\x5e\xfa\xde\x7f\xfa\xc8\xfb\x66\x88\x58\x4c\x2c\x78\x3d\x67\xbf\x1f\xfb\xc6\x65\x9e\x79\xd9\x4c\x43\x7e\x5c\x0e\x43\x5b\x35\xbf\x88\xa2\x50\xa3\x41\x1d\x7d\x4d\xaf\xe7\xbb\x97\x3f\xbf\x7e\xf5\xe1\x97\x97\xd2\xbe\x7b\x79\x13\xbf\x4f\x76\x7b\x3d\xb3\xfa\xc6\xbc\x6a\x37\x5f\xbf\xfa\xfb\x2f\x2f\x7f\xe7\xd4\x7f\x64\x97\xf2\x60\x1d\xe2\x90\x37\x2f\xbe\xff\xfa\xc7\xef\xee\xea\x68\x49\x9f\x7c\xdc\x3c\xff\xe7\x97\x2f\x1e\x1e\x5e\xd2\xc3\xc3\x57\xfc\x63\x72\xf7\xb3\x79\x75\xd9\x7c\xfd\xea\xbf\x37\xe2\xca\xf3\x3f\x76\x79\x78\xf8\xf9\xe7\x2f\x36\xb7\x5a\xff\xf2\xf0\xf0\xcb\xad\xe5\x1f\x4a\xe7\xf2\xe7\x8b\x19\x97\x23\xed\xc3\xd0\x98\x40\xe8\xe4\xcf\x5d\x08\xdd\x9e\xf5\xe8\x57\x2c\x26\x17\x7a\x78\xf8\xa2\xb8\x59\x28\x98\x62\x98\x36\x2b\x4b\x1d\x68\x08\x26\x02\x20\x38\x12\x14\xe2\x17\x15\x18\x3e\x9f\x93\xb7\xb3\xde\xfc\xfa\xcb\xcb\x8f\x75\x3e\x37\xa1\xe7\x0a\x29\xee\x3f\xd6\x69\x6e\x36\xe2\x26\x5b\x7d\xfe\xfc\x2a\x73\x11\x3e\x6e\x9e\xbf\xf8\xea\xdf\xfe\xe9\xe1\xe1\xe1\xe1\xee\xf6\xd1\xcd\x9f\x04\x2d\xff\x6e\x07\x4f\xce\x7a\x13\xbe\xe9\x8c\x2e\xee\xc3\xc3\x17\xeb\x3d\xf8\xcb\xff\xea\xc0\x5f\xfe\x7f\xec\xf7\x12\xe0\x3f\xd8\xfd\xd7\xdf\xdb\xfd\xf3\xff\x61\xae\x0c\x30\xb0\x7b\xff\xf8\xe1\x6f\x3f\xd0\x4f\x3f\xfd\x44\x7f\xff\xf6\xa7\xef\xfe\xfd\xee\xe3\x57\xcf\x9f\x3d\xfb\x9f\x00\x00\x00\xff\xff\x8a\x62\x14\x77\x69\x25\x00\x00")
700
701 func runtimeSyntaxAsmYamlBytes() ([]byte, error) {
702         return bindataRead(
703                 _runtimeSyntaxAsmYaml,
704                 "runtime/syntax/asm.yaml",
705         )
706 }
707
708 func runtimeSyntaxAsmYaml() (*asset, error) {
709         bytes, err := runtimeSyntaxAsmYamlBytes()
710         if err != nil {
711                 return nil, err
712         }
713
714         info := bindataFileInfo{name: "runtime/syntax/asm.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
715         a := &asset{bytes: bytes, info: info}
716         return a, nil
717 }
718
719 var _runtimeSyntaxAwkYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x94\xdf\x73\xe3\x34\x10\xc7\xdf\xf3\x57\xb8\x6e\xe1\x9a\x76\x92\x32\xbc\x11\x0e\x42\x9a\xd8\x39\xcf\x34\xf2\x8d\x63\x4a\x86\xaa\x65\x14\x7b\x9d\x68\x22\x4b\x46\x5a\x93\x94\xd9\x3f\x9e\x51\xd2\x1e\x39\x28\x81\x07\xfc\xb0\xbb\xfa\xb1\x9f\xef\xca\xda\x51\x25\x15\xe0\x73\x03\x83\x40\x6c\x37\x9d\x4e\x09\x08\x05\x0e\x3a\x41\x10\x04\x7e\x49\x8b\x1a\x06\x41\xc8\x79\x5f\x6c\x37\x17\xe1\x7e\x7e\x0d\xa2\x04\x3b\x08\xc2\xa7\xf3\xb3\xfe\xd5\x52\xea\x9b\x4b\xd0\xbf\x05\xd7\xdd\xa1\xd8\x6e\x2e\x03\xba\xe8\x86\x9d\x8e\x6d\x15\xb8\x03\xa7\x17\x34\x16\x1a\x6b\x8a\x3d\xe8\xe2\x61\xd4\xfb\x59\xf4\x7e\xff\xaa\xf7\xcd\x2f\x67\x3f\x9c\x5f\x5c\x0d\x39\xef\x3d\x5e\x87\x6f\x6c\x5d\x5e\x8e\xb2\xe9\x98\x46\xd9\x34\x61\x13\xef\xee\xe9\x36\x61\xb3\x74\x12\xd1\x38\x65\xf7\xf1\x2c\xa7\x88\xdd\x27\x59\xca\x28\xca\x32\x96\x52\x9c\x44\x77\x93\x9f\x92\x49\xfe\x61\xde\xe5\x7c\xf9\x36\x33\x4e\xee\x22\x36\x9a\x45\x14\xb3\x8c\xe2\x39\x25\x53\x96\x66\xd1\x78\x34\x8f\xe8\x2e\x61\x39\xb1\x98\x58\x46\xa9\xa7\xa7\xf1\x9c\xd2\xec\x04\xeb\x63\x96\x8e\x13\x16\xa7\x94\xcd\x29\xcb\x29\x9b\xe7\x23\xef\xee\x22\x36\xcd\x3f\xd0\xfc\xc7\xdb\x79\xf4\x91\xf2\x68\x91\x4f\xd2\xd9\x28\x61\xc7\x20\x59\x82\x46\x59\x49\xb0\xfd\x42\x09\xe7\x5e\x88\x55\xab\x0b\x94\x46\x13\xec\x10\xb4\xf3\xd1\x6d\x34\x4d\x18\x45\x6c\x72\x9c\xee\x9e\xeb\xa5\x51\x7d\xd3\x80\x15\x68\xfc\x6d\x3c\x70\xde\xbb\xbe\xba\xf9\xe2\x89\xce\xbe\xfb\xf2\xfd\xf7\xc3\x6f\x07\x8f\xc4\x39\xe7\xc4\xf9\x03\x71\xfe\xf8\x29\x13\x05\x42\x0d\x1a\x07\xc1\x8b\xa4\xb1\x24\x2b\xda\xae\xa5\x02\x2a\x0d\x81\x72\x40\x52\x53\x09\x0a\x10\x08\x76\x12\x3f\x53\x6e\xa0\x90\x42\xbd\x66\x2f\x2d\x88\x0d\x15\x46\xa3\xd4\x2d\x90\x05\x6c\xad\xfe\x6c\xff\x9f\x7a\xfb\x84\x42\x19\x07\xb4\x02\x54\x52\x03\x69\xd8\xe1\xde\xf8\x6e\xa3\xc6\x4a\x8d\x07\x5b\x91\x7b\x76\x08\x35\x55\x95\x6a\xdd\xfa\x14\x51\xa0\xd0\x5f\x53\x61\x1c\xc1\xae\x21\x4f\x50\x66\x45\x56\xe8\x92\x9c\xd4\xe4\x7e\xb5\x48\xce\x0f\x4f\x42\x9c\xb1\x48\x7b\x2b\x69\x05\xda\xb5\x4b\x5a\x79\x23\x75\x09\x3b\x52\xa0\x57\xb8\xa6\x5a\x60\x71\xb2\x16\xd7\x28\x89\xe4\x5e\x8f\x80\x16\x8d\x6e\x6b\xf2\x20\xd7\x2e\x1d\x5a\x42\xa3\xcc\x16\xbc\x6f\x9b\x06\xec\x29\x58\xbd\x41\x59\x83\xa7\x54\x87\xe0\xd9\x79\x7f\xf2\x18\xba\xa4\xc2\xd4\x8d\x22\xe5\xd6\xb2\x42\x32\x96\xec\x21\xda\x99\x93\x62\x4b\xa9\x4b\x84\x1d\x96\xa6\x16\xfe\xf6\x8b\x15\xa0\x1f\x53\x59\xe8\x97\xf0\xed\x36\x08\xc2\x9b\xfe\xd5\xc3\x93\xef\xb5\xc7\x9b\xb0\xf3\xb2\x5e\x18\xed\x50\x68\xec\x3b\xb4\x52\xaf\x0e\x4f\x81\xff\x1c\x0a\xbb\xd7\x0c\xc3\x4f\x73\xa0\xcb\x41\x10\x5e\x0e\xdf\x9f\x79\x4a\xf7\x78\xe9\xe8\x21\x79\xfd\x8e\xe1\x87\x2a\xc6\x6b\x61\xf7\xc7\xe0\xbc\xff\xdf\x2b\x78\xf7\x8f\x05\xbc\xfb\x7f\xf4\xeb\xfd\xef\xfd\x9b\xee\xf9\x5f\x75\x2f\xfe\x45\x0e\x4d\x69\x7c\x79\x79\x3a\x49\x69\xb1\x58\x50\x9c\x2c\x66\x51\x77\x30\x0c\x3b\x9d\x3f\x02\x00\x00\xff\xff\x8a\xa9\xf6\x02\xc1\x05\x00\x00")
720
721 func runtimeSyntaxAwkYamlBytes() ([]byte, error) {
722         return bindataRead(
723                 _runtimeSyntaxAwkYaml,
724                 "runtime/syntax/awk.yaml",
725         )
726 }
727
728 func runtimeSyntaxAwkYaml() (*asset, error) {
729         bytes, err := runtimeSyntaxAwkYamlBytes()
730         if err != nil {
731                 return nil, err
732         }
733
734         info := bindataFileInfo{name: "runtime/syntax/awk.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
735         a := &asset{bytes: bytes, info: info}
736         return a, nil
737 }
738
739 var _runtimeSyntaxCYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x93\xdb\x36\x0c\xbd\xfb\x57\xa8\x6a\x5a\x8b\x76\xec\x75\x92\x4e\xda\xb8\x1f\x9e\x5e\x7a\xca\xf4\xd6\x4b\x45\xad\x86\xa2\x20\x0b\xb3\x14\xa9\x21\x41\xdb\xdb\x20\xff\xbd\x43\xd9\xeb\x75\xb7\x99\xe8\x20\x89\x04\x1e\x01\x3c\x80\xaf\x43\x03\xf4\x38\xc2\x36\xd3\xcb\xe5\x6c\xd6\x02\x81\xa6\x6d\x36\xcb\xb2\x2c\x4b\x36\xab\x06\xd8\x66\xb9\x94\x6b\x5d\x68\x1e\x47\x3e\x9d\xc4\x2b\x96\x72\xdd\x17\xfd\xed\x12\x71\x37\x7d\x8b\x16\x3a\xf1\x2a\x9f\xcd\x7c\x34\x10\xb6\xd3\x39\xab\x0c\x5b\xb0\x84\x1d\x82\x9f\xce\x6a\xca\xdf\x57\x7f\xd7\x55\xb9\x59\x7d\x98\x7e\x96\x52\x36\xf9\xc5\xf5\x9c\x4c\x72\x2a\x54\x24\xc7\x9d\x71\x8a\xb8\x75\xb1\x31\xc0\x8d\x73\x86\x75\xaf\x3c\xa3\x25\x0e\xbd\xf3\xc4\xc6\xd9\x3d\x07\xfc\x07\x5c\xc7\x60\xe3\xc0\x07\x87\x2d\x07\x52\x84\x9a\xb5\xb3\x81\xce\x6f\x38\x8d\x9e\x03\xf9\xa8\x89\xa3\x45\x67\x39\x85\x6a\xa1\x63\x38\x11\x78\xcb\x45\xb4\x62\x17\x70\x6f\xa1\x65\xb4\x06\x2d\x88\x2f\xe7\x55\x84\x5d\x8a\x27\xb8\x28\x62\xbd\x13\x3b\xb4\x54\xfc\xc4\x6f\xde\xf3\xbb\xb7\xfc\xfe\x07\x1e\xc9\x0b\x21\x6a\xba\x01\xa7\x6c\x60\x00\x4b\x97\x13\xb4\x51\x21\x70\xe2\x36\x8c\x4a\x03\x13\x0c\xa3\x51\x04\x3c\xc6\xc6\xa0\xe6\xd1\xbb\xd4\x07\x68\x79\xf4\x78\x48\x86\x14\x3e\xf9\x33\xf5\x18\xb8\xf3\x08\xb6\xe5\x03\x7a\x8a\xca\x70\x0c\x68\xf7\x3c\x44\x52\x89\xa4\x83\x33\x8a\xd0\x00\x7b\xd8\x63\x20\xf0\x0c\xa7\xd1\xa0\x46\x12\x5f\x49\xa9\x73\x9e\xb1\xe3\x63\x9f\x90\xad\x63\x30\x01\x58\xab\x00\xdc\x42\xa7\xa2\x21\x0e\x47\x24\xdd\x7f\xed\x0c\xf2\x8f\x4c\xbd\x77\x47\xd6\x8a\x74\xcf\x6e\x04\xaf\xc8\x79\xb6\x70\xe4\x16\x0c\xd0\x7f\x28\x0d\x23\x68\x54\xe6\x02\xde\x3b\x72\xa9\x53\x84\x36\x02\x37\x1e\xd4\x03\x7b\xa0\xe8\xed\x2d\x66\xf4\x30\x7a\xa7\xb7\x59\x7e\x5f\x96\xdb\x89\xbd\x6d\x55\x2d\xbe\xbd\x5d\xa4\x19\x44\x0b\x3c\x7a\xb5\x1f\x14\xa3\xd5\x26\xb6\x90\xfa\xcb\xd8\xd9\x9d\x98\x7a\x6e\x5b\xec\x18\x4c\x81\x1d\x07\x10\x53\xe9\xca\xdb\xc4\x23\x78\xef\xbc\x78\x0a\x38\xcd\x8e\x9a\x4a\x9c\x17\xe5\xfd\x5c\x4a\x29\x2b\x2e\xd2\xa7\x94\xf9\x5c\x35\x9d\xf5\x74\x98\x76\x85\x98\xf3\x64\x2f\x8a\x72\xb3\x7a\x57\xed\xca\xcd\xea\xc7\xea\xd3\x9b\xd7\x6f\x3f\x5f\x4d\xa7\xf3\xd0\xff\xa1\x56\xdd\xd9\x32\xff\x12\x99\x75\xad\x88\x3c\x36\x91\xa0\xae\x6f\x4b\x93\xb2\x90\xb2\x28\xef\x45\xfa\x15\x52\x0a\xae\xeb\x42\x99\xf3\xd0\xaa\x30\x70\x13\xd1\x10\x5a\xee\xb1\x6d\xc1\x5e\xe6\x98\x47\xa5\x1f\xa0\x65\x0f\x81\x3c\x6a\xe2\x00\x9a\x9e\x6e\x80\xeb\xf8\x08\xea\x41\xd4\xf5\x35\x93\xc7\xa1\x71\x66\xfd\xd4\xbd\x6d\x96\x97\xeb\xed\xcf\xaf\x97\x0b\xfe\xf5\x1b\x29\xbf\xab\xf8\x17\xfe\x8d\xef\x78\xc5\xdf\xbf\x40\x34\x3e\xc5\xa1\x90\x10\x85\xf8\xf4\xb9\x62\x29\x4b\x96\xb2\x7a\x49\xe6\xda\xc6\xa1\xb9\x8a\xc1\x66\xf5\x61\x92\x00\x96\xb2\xd9\xdc\x12\x74\xab\x0b\x57\x68\xd2\x80\xeb\xbc\x45\xe0\x4e\x99\x30\x8d\x15\xff\xf9\xd7\xc7\x8f\xff\x73\x4f\x15\xdb\x7d\x02\xe4\x53\xd3\xd6\x5c\xde\xcb\xbc\x12\x0b\x99\x3f\xfb\x0e\x17\xde\xef\xee\xd6\x8b\x97\xbb\xd3\x32\x3d\x81\x94\x9f\x9c\xa4\xbc\x38\xa5\x07\x6c\x3b\x65\xb3\xb8\x7b\xde\x3b\x6b\x5f\x56\x56\xb3\x27\xfd\xb3\x49\x00\x57\x49\xb9\xd6\xc7\x1e\xe9\x7c\xed\x13\x4d\xcf\xbd\x5d\xbe\xca\x67\xff\x06\x00\x00\xff\xff\xa1\x4e\x79\xc7\x8e\x05\x00\x00")
740
741 func runtimeSyntaxCYamlBytes() ([]byte, error) {
742         return bindataRead(
743                 _runtimeSyntaxCYaml,
744                 "runtime/syntax/c++.yaml",
745         )
746 }
747
748 func runtimeSyntaxCYaml() (*asset, error) {
749         bytes, err := runtimeSyntaxCYamlBytes()
750         if err != nil {
751                 return nil, err
752         }
753
754         info := bindataFileInfo{name: "runtime/syntax/c++.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
755         a := &asset{bytes: bytes, info: info}
756         return a, nil
757 }
758
759 var _runtimeSyntaxCYaml2 = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x61\x6f\xdb\x36\x10\xfd\xee\x5f\xa1\xaa\xd9\x4c\x26\xb5\x93\xb6\x43\xb7\x6a\xdd\x8c\xc1\x5b\xb7\x01\xdd\xf2\x65\x03\x82\x89\x8e\x40\x91\x27\x9b\x08\x4d\x0a\xe4\x29\x4e\xd6\xeb\x7f\x1f\x28\xcb\x8d\xe1\x64\x69\xb1\xf9\x8b\x29\xde\x3d\xbe\xc7\xbb\xc7\x6b\x8c\x05\xbc\x6d\xa1\xc8\xd4\x68\xa4\x01\x41\x61\x31\xca\xb2\x2c\x4b\x01\x27\xd7\x50\x64\x39\x13\x62\xca\x14\xcd\xf9\x11\xa5\xd5\x8a\x7e\xd9\xae\x8c\x99\x6d\x77\x34\x34\xfc\x88\xe7\xa3\x51\xe8\x2c\xc4\x2d\x7e\x92\x19\x0d\x0e\x4d\x63\x20\x14\x59\x2e\x44\x5d\xfe\x30\xf9\xab\x5a\x94\x67\x93\xd7\xfd\xe2\x44\x88\x3a\xcf\x86\xdc\xad\x84\x94\xc5\x1a\xeb\x25\x92\xf6\x5d\x6d\x81\xd4\x4a\x06\x32\x0e\x29\xae\x7c\x40\xb2\xde\x2d\x29\x9a\xbf\xc1\x37\x04\xae\x5b\xd3\xb5\x37\x9a\x22\x4a\x34\x8a\x94\x77\x11\x29\x62\xe8\x14\x52\xe7\x8c\x77\x94\x8e\xd5\xd0\x10\xdc\x20\x04\x47\xac\x73\x7c\x16\xcd\xd2\x81\x26\xe3\xac\x71\xc0\x93\x88\xfb\x1a\x58\x9c\x25\x16\x4e\x8c\x75\xd5\x8c\xcf\x8c\x43\xf6\x0d\x3d\x7f\x45\x2f\x5f\xd0\xab\xaf\xa8\xc5\xc0\x39\xaf\xf0\x00\x3c\x4d\x34\x4e\x83\x1e\x4e\xa9\xbd\xb7\xfb\x04\x49\x27\xac\xc1\xe1\x10\x4f\x98\x54\x62\x5a\x77\x28\xd3\x6d\xaf\xbd\x95\x68\x2c\x50\x80\xa5\x89\x08\x81\xe0\xa6\xb5\x46\x19\x7c\xec\x98\xc6\x07\x32\x0d\x6d\x56\x09\xa9\x3d\x81\x8d\x40\x4a\x46\x20\x0d\x8d\xec\x2c\x52\xdc\x18\x54\xab\x47\xa5\x84\x5b\xc2\x55\xf0\x1b\x52\x12\xd5\x8a\x7c\x0b\x41\xa2\x0f\xe4\x60\x43\x1a\x2c\x20\x3c\x06\x5f\x7a\xf4\xa9\xfe\x68\x5c\x07\x54\x07\x90\x57\x14\x00\xbb\xe0\xf6\x51\x6d\x80\x36\x78\x55\x64\xf9\x65\x59\x16\xb1\x95\x0a\x8a\xc5\xe2\xf8\xe9\xfe\x47\xf2\x92\x71\x40\x6d\x90\xcb\xb5\x24\xe3\x94\xed\x34\xa4\xce\x91\x69\xdc\x8c\xf7\xdd\x74\xda\x34\x04\x96\x99\x86\x22\xf0\xfe\xf2\x32\x38\xe3\x96\x04\x21\xf8\xc0\x77\x84\xbd\x23\x64\xaf\x72\xcc\xca\xcb\xb1\x10\x42\x2c\x88\xa5\xbf\x52\xe4\x63\x59\x37\x2e\xe0\x75\xbf\xcb\xf9\xf8\x21\x54\x8a\x31\x56\x9e\x4d\x5e\x2e\x66\xe5\xd9\xe4\xeb\xc5\xfb\xe7\xcf\x5e\x7c\x78\x24\xf9\x66\xeb\xef\xb7\x72\xd2\x6c\x73\x87\xcc\x2c\x7b\x9a\xfd\x3c\x9f\x67\x75\x67\x2c\x1a\x17\x1f\x28\x64\x55\x49\xc4\x60\xea\x0e\xa1\xaa\xf6\x6b\x22\x04\x13\x82\x95\x97\x3c\x2d\xb9\x10\xfc\xa1\x36\x54\x15\x93\x76\x6b\x6d\x19\xd7\x34\xf0\xd0\xca\x68\x0d\x6e\x70\x3b\xb5\x52\x5d\x81\xa6\x00\x11\x83\x51\x48\x11\x14\xee\xde\x89\x6f\x68\x03\xf2\x8a\x57\xd5\x9d\xe2\xf3\xc1\x06\xd9\xdc\x5b\x1f\x76\xac\xb7\xeb\xda\xdb\xe9\xce\x22\x69\x40\x94\xd3\xe2\xdb\x67\x27\xc7\xf4\xdd\x13\x21\xbe\x58\xd0\x1b\xfa\x9e\x4e\x69\x42\x5f\xf2\x8f\x0f\x7c\x00\xd5\x21\x29\xc0\x58\x64\x79\xc9\xf8\xfb\x0f\x0b\x12\xa2\x24\x21\x16\x87\xf5\x9c\xba\x6e\x5d\xf7\x93\x83\xa5\xd1\x71\x36\x79\xdd\x0f\x0c\x12\xa2\x3e\xdb\xaf\x71\xda\xbc\xd7\xef\x3b\xf0\xef\x7f\xbe\x7b\x97\x8f\x0e\xc3\xe9\xf6\x6e\x59\x0c\xd7\xcc\x52\x1d\x43\x6f\xe5\x3c\xff\xb8\x07\x2e\x3d\x63\x36\x7b\xf3\x24\xb5\x95\xef\x87\xf6\xa6\xdc\xee\xb7\x7f\x78\x0b\xca\x48\x3b\x5f\xc9\xed\xdc\x13\x62\xfa\xf9\x0a\xc6\xff\x2a\x60\xfc\x09\xfe\xbb\xc7\x35\x9d\x9e\xe4\xff\x4d\xdc\xba\xf7\xd2\x3d\x51\xa7\xa7\x87\xaa\x8e\x3e\x21\x06\xbd\xf6\x49\xfc\x1f\xe7\x3f\x9e\xd3\xc5\xc5\x05\xbd\xfd\xf5\xe2\xb7\x9f\x78\x31\xfb\x0c\x32\x21\x8e\x0f\xe9\x84\x38\x3e\xfd\x1f\x8c\xff\x04\x00\x00\xff\xff\xba\xc1\xdf\x03\xe4\x06\x00\x00")
760
761 func runtimeSyntaxCYaml2Bytes() ([]byte, error) {
762         return bindataRead(
763                 _runtimeSyntaxCYaml2,
764                 "runtime/syntax/c.yaml",
765         )
766 }
767
768 func runtimeSyntaxCYaml2() (*asset, error) {
769         bytes, err := runtimeSyntaxCYaml2Bytes()
770         if err != nil {
771                 return nil, err
772         }
773
774         info := bindataFileInfo{name: "runtime/syntax/c.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
775         a := &asset{bytes: bytes, info: info}
776         return a, nil
777 }
778
779 var _runtimeSyntaxCaddyfileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x6a\xc3\x30\x10\x45\xf7\x3a\xc5\x54\x75\xc0\xae\x13\x77\x2f\x0a\x5e\xe4\x08\x5d\xfa\x3b\x20\xec\x49\x2b\xb0\x15\x23\xa9\x84\xe0\xe4\xee\x45\x76\xdc\x86\xb4\xb4\xb3\x90\xd0\xd7\x63\xe6\xcd\xde\x74\x1c\x4e\x03\x2b\x6a\x74\xdb\x9e\xe2\x53\x88\x96\x03\x37\x41\x09\x22\xa2\x98\x58\xdd\xb3\x22\xb9\x5d\x08\x29\x84\xfb\xe8\xd8\xcf\xc4\x86\x4c\xcb\x36\x98\xbd\x61\xa7\x48\xee\x00\xff\x04\xbc\xe6\x29\xe0\xcf\x49\x26\xaf\xd0\x3c\x45\xee\xd2\x0a\x38\x16\xea\x79\x53\xe7\xeb\x92\xca\x2c\xaf\xd6\x63\x9d\x2c\x54\x73\xb0\x3e\x68\x1b\x0a\x3f\x70\x63\x74\xb7\x7d\xd7\xb1\x29\xe0\xc7\xff\x98\x69\xf0\xe5\x17\x2a\x38\x63\xdf\x66\xd7\x58\x3e\x68\x17\x62\x4f\x29\xbf\x32\xb6\xad\x22\x99\x96\x2f\x0f\x00\x90\xdd\x7e\xdd\x6c\xba\xd4\x1f\x9a\x40\x21\xc5\xd5\x60\x70\x3c\xb8\x43\x33\xe5\x63\x0a\x1c\xf3\x33\x90\x4c\xf7\x2a\x9e\xab\x0c\xb8\x7c\xeb\xf6\x3d\xdb\xf0\x53\xf3\xf1\xde\x32\xb9\x77\xa3\xaa\x16\xe2\x33\x00\x00\xff\xff\x18\x75\x68\x4d\xc9\x01\x00\x00")
780
781 func runtimeSyntaxCaddyfileYamlBytes() ([]byte, error) {
782         return bindataRead(
783                 _runtimeSyntaxCaddyfileYaml,
784                 "runtime/syntax/caddyfile.yaml",
785         )
786 }
787
788 func runtimeSyntaxCaddyfileYaml() (*asset, error) {
789         bytes, err := runtimeSyntaxCaddyfileYamlBytes()
790         if err != nil {
791                 return nil, err
792         }
793
794         info := bindataFileInfo{name: "runtime/syntax/caddyfile.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
795         a := &asset{bytes: bytes, info: info}
796         return a, nil
797 }
798
799 var _runtimeSyntaxClojureYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x5d\x6f\xd3\x3c\x18\xbd\xcf\xaf\xf0\x9b\x77\x12\x09\x23\x5d\xd9\x2a\xd0\xc2\x47\x34\x15\x26\xed\x02\xed\x82\x09\x55\xc4\xbd\xb0\x9d\x27\x89\x87\x63\x47\xb6\x03\x14\xcc\x7f\x47\x76\x42\x1b\xad\x93\x96\x1b\xfb\xd8\xe7\x9c\xe7\x2b\xae\xb9\x00\xbb\xeb\x21\x47\x4c\xa8\xfb\x41\x43\x14\x55\x60\x81\xd9\x3c\x42\x08\x21\x7f\x2d\x49\x07\x39\x8a\x31\x5e\x24\x4c\xdc\xa7\x27\x71\x14\xe9\x41\x80\xc9\xa3\x40\xf9\x1f\xad\x95\x34\x96\x48\x6b\x02\xce\x10\x9b\xf0\x82\x2a\x25\x82\x92\x26\x56\x0f\xe0\x6a\x22\x0c\xa4\x18\xd3\xf8\x21\xb3\x23\x4c\xab\x89\x2a\xb9\x38\x70\xbc\xff\x17\x22\x78\x85\xe4\xd0\x51\xd0\x47\x31\xc6\xe3\x1c\xc5\x25\xc6\xd9\xb6\x28\x97\xd9\xe5\xf6\xb4\x78\x2c\xc6\x9e\xb9\xfc\x19\x58\xe5\x55\x76\x4d\xb2\xfa\x29\xf6\xe8\x9b\x5c\x94\xcb\xec\xd5\xd6\x9d\x07\xa9\x7b\x39\x2e\xe5\x79\x76\xb9\x4d\xb5\x07\x57\xd9\xd7\xb9\x93\xcf\xfb\x46\x7e\x7f\x24\x73\xd0\x5a\xcd\x7c\xcb\x95\x4f\x25\xb8\x5d\x94\xaf\x83\xb7\x5b\x1e\x59\xee\x3d\x3f\xef\x3a\xaa\xc4\x3f\x2f\x13\xd0\x42\xf5\xa0\x89\x1d\x5d\xdf\xbd\x3f\xc5\x38\x7b\x7e\xf6\xac\xd8\xce\x64\x77\xbb\x1e\xcc\x19\x23\xc6\x72\xd9\x4c\xe2\x71\xec\xa1\xe5\x74\x67\xc1\x99\x56\x69\xeb\x12\xca\x9b\xb4\xe0\xd2\x26\xd0\x80\x4e\x0b\x27\x94\x6c\x5c\x2d\x14\xb1\x4e\x0e\x9d\xa3\xbc\xa9\x80\x39\x4d\x2c\x57\x92\x08\xfe\x6b\x1a\xe8\x21\x43\xab\xb9\x6c\x50\xcb\x9b\x56\xf0\xa6\x9d\x05\xdc\xf7\xd6\x04\x4a\x3e\x49\x10\x32\x96\x68\xeb\x53\x89\xe3\xfd\x19\xc8\x2a\x47\x71\x52\xbc\xfd\x0f\x63\x8c\xd3\xf9\xd5\xf4\xf7\xa1\xd9\x37\x37\xef\x81\x71\x22\xd6\x2d\xf1\xfd\x48\xbc\x7a\x18\xbb\x59\xfb\x69\xff\x5e\xbd\x58\xfd\x71\xfe\x54\xc2\x0f\xc1\x25\x84\xbd\xe9\x09\x1b\x77\x96\xd0\xb0\xd6\x4a\x77\x35\x40\x15\x00\x25\xec\xdb\x81\xa2\xc1\x0e\x5a\x86\xed\x22\x9d\x55\xbe\x56\x5d\x07\xf3\x67\x10\xe0\x71\x99\x6f\x1e\x56\x79\xf2\x44\x6d\x56\x55\xfe\x71\x24\x77\xb7\x1f\x6e\xdd\x66\xb3\x71\xd7\x37\x9b\x4f\x1f\xd3\xbc\x88\xa3\xe8\x6f\x00\x00\x00\xff\xff\xf9\x61\xa4\x6e\xc1\x03\x00\x00")
800
801 func runtimeSyntaxClojureYamlBytes() ([]byte, error) {
802         return bindataRead(
803                 _runtimeSyntaxClojureYaml,
804                 "runtime/syntax/clojure.yaml",
805         )
806 }
807
808 func runtimeSyntaxClojureYaml() (*asset, error) {
809         bytes, err := runtimeSyntaxClojureYamlBytes()
810         if err != nil {
811                 return nil, err
812         }
813
814         info := bindataFileInfo{name: "runtime/syntax/clojure.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
815         a := &asset{bytes: bytes, info: info}
816         return a, nil
817 }
818
819 var _runtimeSyntaxCmakeYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x5d\x6f\xd3\x30\x14\x7d\xcf\xaf\x08\x61\xd2\x12\xd0\xaa\x02\x12\xb0\x08\xa9\xca\x52\xaf\x8b\x94\x8f\x92\x64\x6b\x4b\x5d\xa2\xcc\xb9\x65\x66\xa9\x53\x39\x2e\x0c\xed\xf2\xdf\x51\xd2\x0f\x95\x76\x08\x1e\xf0\x4b\x62\x5f\xdf\x73\x8e\x8f\xce\x9d\xf3\x12\xd4\x8f\x25\xd8\x3a\x5b\xe4\xf7\xa0\x69\x05\x28\x60\xca\xd6\x74\x5d\xd7\x9b\xa2\xc8\x17\x60\xeb\x86\xe9\x06\xf9\x3d\xf8\xbc\x56\x35\xa5\x1d\xf5\xa0\x90\xd2\x4e\xdb\x62\x9d\x18\x9a\x26\x57\x25\xd4\xeb\xa6\x33\x9d\x17\x20\x14\x9f\x73\x90\x9d\x6f\xb9\xb4\x75\xe3\xf3\x74\x6a\xd7\xcb\x9c\x81\x3d\x9b\xbd\x98\x3a\x67\x9f\xba\x67\xe7\xd9\xec\xa5\xb1\xb9\xbf\x94\xb0\x94\x15\x3b\xbc\x68\x72\xc1\xca\x55\x01\xb8\xf9\x66\x05\x97\xc0\x54\x25\x39\xd4\xbb\x33\x78\x50\x20\x45\x5e\x66\x8b\x7a\x29\xab\xaf\xc0\x94\x45\xe9\xad\xa1\x6d\xa0\x6b\x95\x2b\x58\x80\x50\x87\xe0\x94\xde\x9a\x26\x94\x35\x20\x88\xc2\xea\xf1\x39\xb6\x1b\xb3\xdd\x7d\xbf\xe3\xe5\xf6\x7f\x5e\x49\xc8\xd9\x1d\xde\x4a\xc8\xef\xd7\xd8\xc7\xd0\x0d\x9a\x1b\x0d\x27\x18\x46\x29\xba\x51\x10\x38\x61\x1f\x87\x71\x34\x24\x71\x3a\xc1\x61\xe4\x7b\xee\x04\x53\x27\x1e\x90\x14\xc9\xd8\x4b\xd2\x04\xbd\x24\x33\xfb\x5e\x4c\xdc\x34\x8a\x27\xe8\x5c\x24\x91\x7f\x9d\x12\x0b\xfb\xe4\xd2\x0b\x49\xbf\x61\xda\xd3\xfb\x14\xe9\x5e\xb9\xe1\x8f\x62\x6c\x58\xbd\x24\x0b\xc9\x88\xc4\x59\x7a\xe5\x84\x18\x38\xa9\x7b\x45\x12\x34\x93\x34\xc6\x1b\x12\x27\x5e\x14\x66\x56\xcf\xf4\x49\x92\xe0\x20\x26\x4e\x4a\x62\x24\x1f\xaf\x1d\xdf\x3a\x62\xdc\x52\x2e\x81\xf1\xbc\x7c\xda\xc0\xc6\x21\x73\xbe\x12\x4c\xf1\x4a\xe0\x22\x67\xb2\xb2\x50\x82\x5a\x49\x61\xed\x10\x58\x25\x6a\x95\x0b\xd5\xa9\x95\xe4\xe2\xcb\x3a\x26\xcd\xaa\x55\x2e\x5b\xfb\x0c\x63\x77\x06\xa2\x68\xe2\xd6\xfb\xf0\x8c\x52\x4a\xad\xfd\xd2\x5e\xc8\xb6\x6b\x1f\x7c\xad\xd3\xbd\x6b\x23\xd7\x34\x77\xfe\x5d\xc1\xe9\x1f\x05\x9c\xfe\x0f\xfe\x6d\xc2\x8f\x5f\x4e\x4f\x4c\x4a\x1f\x91\x84\x37\x94\x3e\x5a\x87\x2a\x28\xfd\x79\x48\xaf\x4f\x67\xda\xf1\x9c\xb5\xce\x6f\x82\xe8\x0c\x87\x3e\xc1\xeb\xd0\x1b\xe3\xc8\x0b\xdf\xbc\x46\x77\x32\x18\x79\x21\x5e\x44\xb1\xdf\x24\x24\xf0\xc2\xc1\x08\x83\xe4\xc6\x35\x33\xaf\x4f\xf0\x6d\x17\xdf\xbd\xc2\xf7\x5d\x3c\xef\x5a\xbd\xdf\xa6\x87\x55\x8b\x36\x6b\x47\xb2\x9f\x1f\x0a\x3d\xf9\x8b\x4b\xaa\x2a\x1a\x79\x66\x1a\xf5\x23\x1c\x8f\xc7\x78\xe9\x8d\x03\x62\xd9\x3d\x43\xd3\x7e\x05\x00\x00\xff\xff\x82\xb7\xb7\xc5\x83\x04\x00\x00")
820
821 func runtimeSyntaxCmakeYamlBytes() ([]byte, error) {
822         return bindataRead(
823                 _runtimeSyntaxCmakeYaml,
824                 "runtime/syntax/cmake.yaml",
825         )
826 }
827
828 func runtimeSyntaxCmakeYaml() (*asset, error) {
829         bytes, err := runtimeSyntaxCmakeYamlBytes()
830         if err != nil {
831                 return nil, err
832         }
833
834         info := bindataFileInfo{name: "runtime/syntax/cmake.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
835         a := &asset{bytes: bytes, info: info}
836         return a, nil
837 }
838
839 var _runtimeSyntaxCoffeescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xcf\x6e\xdb\x3c\x10\xc4\xef\x7a\x0a\x45\x5f\xf0\x41\x4a\x21\xb7\xd7\x0a\xa9\xd3\xa2\x7f\x80\x1e\x8a\x5c\x7a\x30\x6a\x0a\x01\x45\x2d\x2d\x22\xf4\xae\x40\xae\xe0\xaa\xd8\x87\x2f\x68\x3b\xa9\x9d\x14\x29\x4f\x82\xb8\xf8\xed\xcc\x70\xac\xf3\xc0\xf3\x08\x4d\x6e\xc8\x5a\x80\x68\x82\x1b\x39\xcb\x7a\x60\x30\xdc\x64\x79\x9e\xe7\x69\x06\xf5\x16\x9a\xbc\x50\x6a\x71\x98\xbb\x2c\xb2\x2c\x4c\x1e\xe2\x61\xa4\xce\xe3\xbc\xed\xc8\x2f\x68\x84\xa0\x99\x42\x93\x17\xeb\x8b\xff\xe5\xdd\xeb\xab\x57\xf5\xf5\xb2\x15\xa5\xba\x52\x63\x2f\x14\xc4\x45\x71\x11\x59\x90\xb8\x52\xaa\x2b\x8e\x00\xd7\x03\xb2\xb3\x0e\xc2\xc2\x78\x1d\x63\x93\x17\xe5\xfa\x43\xfd\x43\xd7\xbf\xee\xda\xe3\xc7\x9b\xfa\xed\x5d\x7b\xd5\xac\xd7\x4d\x1c\xb5\x81\xa6\x6d\xaf\xca\x7a\x29\x4a\x95\x95\xd4\xcb\xaa\x38\xd7\xd2\x05\x6d\xee\x81\x13\x69\x5d\x56\xed\xe3\x2d\x6b\x86\x2d\x20\x37\x79\x32\xd4\x95\x96\x82\x90\x15\x43\xc8\x0e\x27\x90\x2e\x80\xbe\x3f\x6a\x9c\xbc\x97\x09\x3d\xc4\x28\x3c\xb8\x28\xe0\x23\x88\xb3\x12\x80\xa7\x80\xa7\xfa\x9f\x61\x39\xcc\x62\x34\x9b\x41\xac\x43\xed\xfd\x2c\x3c\x04\xda\x09\xc2\x4e\x7a\xf0\xc0\x20\x29\x79\xb2\xe2\x50\x1c\x46\xd6\x68\x80\xec\x8b\xcc\x1e\xba\x69\xb3\x81\x20\x71\xe7\x12\x79\x37\x38\x0f\xd2\x93\xec\x23\x13\xf8\xc9\x80\x7d\x94\x38\x8d\x10\x5e\x04\x4d\xd8\x83\x75\x08\xbd\xf0\x00\xf8\x60\x71\x42\x76\x5e\x3c\xd1\x98\x02\xe9\x66\xd9\x0d\x70\x66\xd2\xd0\x5e\x27\x2f\x3a\x22\xff\xc7\xe8\x04\x62\x75\x4a\x66\x86\x28\x48\x42\x28\x64\xed\xdf\x5f\xb7\xc9\x8b\xf7\x67\xcf\x59\x64\x4f\xe1\x91\x83\xc3\xcd\xa1\x59\xe9\x44\xd6\x81\x53\xfb\x8a\xe2\xf1\x1f\x60\x9f\x1a\x72\x73\x7d\xa1\x94\x52\xd5\xe9\xd5\x49\x2f\x1f\xce\x29\x7c\x04\xe3\xb4\xff\x38\xe8\xb0\x2f\xb4\x52\x8b\x13\x05\xdb\x7d\x48\xcf\x36\xff\xf7\x74\xf1\xe5\x3f\xd6\x31\xf5\x94\xf4\x7d\xbf\xfd\x74\x2b\xab\xd5\x4a\xbe\x7c\x5d\x7d\xfb\x5c\x35\x37\x45\x96\xfd\x0e\x00\x00\xff\xff\x40\x86\xc6\xaa\x74\x03\x00\x00")
840
841 func runtimeSyntaxCoffeescriptYamlBytes() ([]byte, error) {
842         return bindataRead(
843                 _runtimeSyntaxCoffeescriptYaml,
844                 "runtime/syntax/coffeescript.yaml",
845         )
846 }
847
848 func runtimeSyntaxCoffeescriptYaml() (*asset, error) {
849         bytes, err := runtimeSyntaxCoffeescriptYamlBytes()
850         if err != nil {
851                 return nil, err
852         }
853
854         info := bindataFileInfo{name: "runtime/syntax/coffeescript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
855         a := &asset{bytes: bytes, info: info}
856         return a, nil
857 }
858
859 var _runtimeSyntaxColortestYaml = []byte("\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")
860
861 func runtimeSyntaxColortestYamlBytes() ([]byte, error) {
862         return bindataRead(
863                 _runtimeSyntaxColortestYaml,
864                 "runtime/syntax/colortest.yaml",
865         )
866 }
867
868 func runtimeSyntaxColortestYaml() (*asset, error) {
869         bytes, err := runtimeSyntaxColortestYamlBytes()
870         if err != nil {
871                 return nil, err
872         }
873
874         info := bindataFileInfo{name: "runtime/syntax/colortest.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
875         a := &asset{bytes: bytes, info: info}
876         return a, nil
877 }
878
879 var _runtimeSyntaxConfYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x0a\xc2\x30\x0c\x06\xe0\x7b\x9e\x22\xc6\x1d\xf4\xe0\x1e\xa0\x08\x7b\x90\x65\x87\xd2\xa5\x32\x58\x33\x69\xe3\xc1\xb7\x97\x52\x18\xa2\xcb\xf1\xff\xf3\x7f\x71\x59\xc5\xde\x4f\x71\x18\x36\x8d\x00\xb3\x98\x04\x73\x80\x88\x58\x3b\xf5\x49\x1c\x12\x73\x1f\xc6\x6d\x1a\x34\x76\x04\x90\x5f\xab\x94\xf6\x73\xab\xbb\x62\x5e\xad\x2f\x96\x17\x7d\xb4\xb8\x5e\x31\x9f\xad\x6e\x89\xf6\x4c\x74\x76\x48\x97\xe1\x7e\x62\x66\xbe\x7e\x57\x0d\xc5\x71\x82\x1d\x4e\x49\xd4\xfe\xc1\xf3\xaf\xd7\x1d\x2a\x9f\x00\x00\x00\xff\xff\x1b\xb7\x2c\x80\xdb\x00\x00\x00")
880
881 func runtimeSyntaxConfYamlBytes() ([]byte, error) {
882         return bindataRead(
883                 _runtimeSyntaxConfYaml,
884                 "runtime/syntax/conf.yaml",
885         )
886 }
887
888 func runtimeSyntaxConfYaml() (*asset, error) {
889         bytes, err := runtimeSyntaxConfYamlBytes()
890         if err != nil {
891                 return nil, err
892         }
893
894         info := bindataFileInfo{name: "runtime/syntax/conf.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
895         a := &asset{bytes: bytes, info: info}
896         return a, nil
897 }
898
899 var _runtimeSyntaxConkyYaml = []byte("\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")
900
901 func runtimeSyntaxConkyYamlBytes() ([]byte, error) {
902         return bindataRead(
903                 _runtimeSyntaxConkyYaml,
904                 "runtime/syntax/conky.yaml",
905         )
906 }
907
908 func runtimeSyntaxConkyYaml() (*asset, error) {
909         bytes, err := runtimeSyntaxConkyYamlBytes()
910         if err != nil {
911                 return nil, err
912         }
913
914         info := bindataFileInfo{name: "runtime/syntax/conky.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
915         a := &asset{bytes: bytes, info: info}
916         return a, nil
917 }
918
919 var _runtimeSyntaxCppYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x51\x6f\xdb\x36\x10\x7e\xf7\xaf\x50\xd5\x6c\x26\x93\xda\x49\xdb\xa1\x5b\xb5\x6e\xc6\x90\xad\xc3\x80\x6e\xd9\xc3\x06\x04\x13\x1d\x81\xa2\x4e\xd6\x21\x34\x29\x90\xa7\xc4\x59\xaf\xff\x7d\xa0\xec\x74\x46\xd2\xa5\xc5\xaa\x07\x49\xe4\xf1\xee\xfb\x78\xdf\xdd\xb5\x68\x81\x6e\x7a\x28\x32\x73\x74\x34\x99\x34\x40\x60\xa8\x98\x64\x59\x96\x25\x93\xd3\x6b\x28\xb2\x5c\x28\x35\x37\xc2\x70\xdf\xf3\x66\x23\x0f\x58\xa9\x79\x27\xba\xfd\x25\xe2\x62\xfc\x8a\x06\x5a\x79\x20\xf3\xc9\x24\x0c\x16\x62\x31\x19\x43\xcd\x32\x6c\xc0\x11\xb6\x08\xa1\xc8\x72\xa5\xea\xf2\x87\xd9\x5f\xd5\xb2\x3c\x99\xbd\x1c\x7f\x8e\x94\xaa\xf3\x6c\x77\x76\xcb\x27\x9d\x12\x7a\x20\xcf\xad\xf5\x9a\xb8\xf1\x43\x6d\x81\x6b\xef\x2d\x9b\x4e\x07\x46\x47\x1c\x3b\x1f\x88\xad\x77\x2b\x8e\xf8\x37\xf8\x96\xc1\x0d\x6b\xbe\xf2\xd8\x70\x24\x4d\x68\xd8\x78\x17\x69\xfb\x86\x4d\x1f\x38\x52\x18\x0c\xf1\xe0\xd0\x3b\x4e\x50\x0d\xb4\x0c\x1b\x82\xe0\x58\x0c\x4e\x2e\x22\xae\x1c\x34\x8c\xce\xa2\x03\x99\x88\xdd\xe7\x25\xe2\x22\xe1\x49\x16\x62\xa8\x16\x72\x81\x8e\xc4\x37\xfc\xf4\x05\x3f\x7f\xc6\x2f\xbe\xe2\x9e\x82\x94\xb2\xa2\x3d\xe7\xc4\x06\xd6\xe0\x68\x17\xc1\x58\x1d\x23\xa7\xfc\xc6\x5e\x1b\x60\x82\x75\x6f\x35\x01\xf7\x43\x6d\xd1\x70\x1f\x7c\x92\x02\x1a\xee\x03\x5e\x25\x43\x82\x4f\xe7\x99\x3a\x8c\xdc\x06\x04\xd7\xf0\x15\x06\x1a\xb4\xe5\x21\xa2\x5b\xf1\x7a\x20\x9d\x92\x74\xe5\xad\x26\xb4\xc0\x01\x56\x18\x09\x02\xc3\xa6\xb7\x68\x90\xe4\x03\x94\x5a\x1f\x18\x5b\xbe\xee\x92\x67\xe3\x19\x6c\x04\x36\x3a\x02\x37\xd0\xea\xc1\x12\xc7\x6b\x24\xd3\x3d\x14\x83\xc2\x0d\x53\x17\xfc\x35\x1b\x4d\xa6\x63\xdf\x43\xd0\xe4\x03\x3b\xb8\xe6\x06\x2c\x10\x3c\xe4\xbe\xf2\xe4\x93\x56\x84\x6e\x00\xae\x03\xe8\x4b\x0e\x40\x43\x70\xfb\x5e\x7d\x80\x3e\x78\x53\x64\xf9\x45\x59\x16\x63\xfe\x8a\xe5\xf2\xf0\xf1\xfe\x22\x15\x22\x3a\xe0\x3e\xe8\xd5\x5a\x33\x3a\x63\x87\x06\x92\xc2\x8c\xad\x5b\xc8\x51\x75\xd7\x60\xcb\x60\x05\xb6\x1c\x41\x8e\x97\xd7\xc1\xa5\x4c\x42\x08\x3e\xc8\x5b\xc0\xb1\x7a\xf4\xc8\x52\x4c\x45\x79\x31\x55\x4a\xa9\x25\x8b\xf4\x29\x55\x3e\xd5\x75\xeb\x02\x5d\x8d\xbb\x52\x4e\x79\xb4\x0b\x51\x9e\xcc\x9e\x2f\x17\xe5\xc9\xec\xeb\xe5\xdb\xa7\x4f\x9e\xbd\x7b\x6f\xda\x6c\x0b\xff\xb5\x9e\xb5\x5b\xcb\x34\x75\x4c\x36\x3e\x8f\xb3\x9f\x4f\x4f\xb3\x7a\x40\x4b\xe8\xe2\x07\xf2\x24\xaa\x4a\x13\x05\xac\x07\x82\xaa\xda\xbf\xb3\x52\x42\x29\x51\x5e\xc8\xf4\x2b\x95\x92\x5c\x55\x42\xdb\x6d\x3d\xeb\xb8\xe6\x5d\x54\xee\xb0\x69\xc0\xed\x4a\x9c\x7b\x6d\x2e\xa1\xe1\x00\x91\x02\x1a\xe2\x08\x86\x6e\x9b\xc3\xb7\x7c\x0d\xfa\x52\x56\xd5\x3e\xc3\xb3\x9d\xaa\xd9\xa9\xb7\x3e\xdc\x72\xbc\x59\xd7\xde\xce\x6f\x15\x4f\x4c\xcb\x79\xf1\xed\x93\xa3\x43\xfe\xee\x91\x52\x5f\x2c\xf9\x15\x7f\xcf\xc7\x3c\xe3\x2f\xe5\xae\xd7\x53\xac\xdf\x75\x00\x47\x1d\x10\x1a\x6d\x3f\x14\xb0\x0e\x89\x1f\xc5\x22\xcb\x4b\x21\xdf\xbe\x5b\xb2\x52\x25\x2b\xb5\xcc\x27\x77\xe4\x99\xbb\x61\x5d\x8f\x13\x46\xa4\x11\x73\x32\x7b\x39\x0e\x16\x56\xaa\x3e\xd9\x4f\x79\xda\xbc\xa7\xed\x3c\x4d\x96\x9d\xab\xa0\x30\x00\xb7\xda\xc6\xb1\x5a\xf9\xb7\x3f\xdf\xbc\x91\xf7\xe1\x52\xbe\xdc\xaa\xd8\x5d\x25\x4b\x2a\x85\xb1\x92\xf3\xfc\xfd\x1e\xb8\x26\x05\x5d\xbc\x7a\x94\x84\x97\xfb\xa6\xdd\x84\xcc\xf6\x9e\xfd\xe0\x3d\x18\xd4\xf6\xb4\xd3\xdb\x91\xa9\xd4\xfc\xd3\x19\x4c\xff\x93\xc0\xf4\x23\xf8\xff\xf6\xd6\x7c\x7e\x94\xff\x3f\x72\xeb\xb1\x52\xef\x91\x3a\x3e\xbe\xcb\xea\xe0\x23\x64\xc8\x37\x3e\x91\xff\xe3\xec\xc7\x33\x3e\x3f\x3f\xe7\xd7\xbf\x9c\xff\xfa\x93\x2c\x16\x9f\x00\xa6\xd4\xe1\x5d\x38\xa5\x0e\x8f\x3f\x03\xf1\x9f\x00\x00\x00\xff\xff\xc4\x10\xf1\x19\x2c\x07\x00\x00")
920
921 func runtimeSyntaxCppYamlBytes() ([]byte, error) {
922         return bindataRead(
923                 _runtimeSyntaxCppYaml,
924                 "runtime/syntax/cpp.yaml",
925         )
926 }
927
928 func runtimeSyntaxCppYaml() (*asset, error) {
929         bytes, err := runtimeSyntaxCppYamlBytes()
930         if err != nil {
931                 return nil, err
932         }
933
934         info := bindataFileInfo{name: "runtime/syntax/cpp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
935         a := &asset{bytes: bytes, info: info}
936         return a, nil
937 }
938
939 var _runtimeSyntaxCrystalYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x6d\x4f\xe3\x46\x10\xfe\xdc\xfc\x8a\xa9\x01\x11\xe7\x94\xd0\xaf\x8d\x90\x02\xbd\xcb\x9d\x90\xae\x20\x5d\x51\x85\x2e\x9b\x97\xb5\x3d\x4e\x46\x59\xef\x9a\x7d\xb9\x24\x30\xfc\xf7\x6a\x93\x70\x05\x43\x5f\x84\x74\x91\xb2\xb6\x67\x66\x9f\x67\xe6\x99\xd9\x2d\x49\xa1\xdf\xd4\xd8\x87\xdc\x6e\x9c\x97\xaa\xd5\x2a\xd0\x63\xee\xfb\x2d\x00\x80\xe8\xd6\xb2\xc2\x3e\x24\x42\xf4\x72\x7b\xc8\x9f\xb0\x8a\x46\xce\x8d\x2e\x69\xde\xb3\x81\xbf\xc8\x25\x6e\x4d\xef\x65\xbd\x7d\xfe\x29\xe7\x56\x6a\x1f\xdf\x93\x56\xcb\x06\x85\x6e\x87\x76\x00\xe7\x2e\x27\xca\xd0\x53\x2e\x15\x28\x72\x1e\x4c\x09\x16\x1d\xda\x6f\x58\xc0\xca\xd8\xc2\x6d\x23\xbb\xe0\xbc\xf4\x58\xa1\xf6\x5b\xea\xac\xfd\xdb\xf0\xd3\xc5\x25\x0f\x2f\x3f\xb0\xcc\x9c\xb7\x32\xf7\x2c\x15\x49\xc7\x52\x17\x9c\xe1\x9c\x34\x67\x16\xe5\x92\x73\xe9\x90\x73\x25\x9d\xe3\x02\xcb\xf8\x27\x8d\x85\x10\x03\x2e\x0c\xa3\x72\x18\x17\x2a\x19\x75\xc1\xa8\x5d\xb0\xc8\xa8\x43\xc5\xa5\x8c\xbe\xd2\x58\x2e\x83\x66\x2a\x99\x34\x93\xce\x55\x28\x90\x15\x65\xac\x8c\xa9\xb9\x92\xb9\x35\x5c\x99\x22\x28\x64\x8d\x6b\xcf\x9a\x14\x6b\xe3\xd9\x94\x6c\x2c\xd7\x86\xb4\x47\x6b\x4a\xae\x2d\x7d\x93\x1e\xb9\xb6\x26\xca\x89\x05\x5b\x49\x0e\xd9\x62\x61\xd8\xe2\x6d\x20\x1b\x3f\x5c\x1e\xe2\xc3\xdb\x4d\x5c\x83\xd5\xec\x50\x95\xec\xe8\x0e\x4d\xc9\xae\x96\x2b\xcd\xce\xdb\x90\x7b\x76\xa1\x46\xcb\x7e\x81\x9a\xbd\x0d\xc8\xb1\x6d\x1c\x74\x2c\x32\x68\x32\x3a\xae\x9a\x3c\x49\x45\x77\x58\x70\xd0\x0a\x9d\xe3\xa0\x3d\x29\x5e\xc5\x5d\xab\x45\xec\xce\x86\x50\x15\xa9\x10\x59\xb2\x55\x3a\x76\xe5\xbd\xd1\xce\x4b\xed\x1f\xb5\xcf\xf7\xdf\x7d\x48\xda\x42\x1c\xf2\x19\x9f\x9d\xa5\x03\x21\xb2\xd1\x79\xf7\xeb\xf8\xdd\xe8\x97\xee\xaf\xe7\xdd\xaf\x53\xd9\xbd\x1b\x77\x92\xc6\x9e\x9e\x0e\x55\x86\x76\xd7\xb5\x18\x39\x7e\xf7\x9c\x6b\x37\x66\x90\xb8\x4d\x95\x19\xe5\x9a\xfb\xfb\x00\x49\x7b\x04\x3f\x8d\x79\x92\xf6\x1f\x99\x1a\x18\x7f\x98\x0a\x21\x68\xba\x0d\x08\x7e\x41\x7a\xee\x60\x85\xb0\x92\xda\x83\x37\x71\x72\x74\x01\x26\xf8\x97\xd5\xc4\x41\x9a\x4e\x3f\x5e\x7c\x1e\x4e\xa7\x3c\x9d\x7e\xbe\xb8\x1c\x4e\xa7\xcf\xb5\xf8\x82\xf3\xa0\xa4\x05\x5c\xd7\x16\x9d\x23\xa3\x5f\x51\xe5\xa4\x3d\x9a\x9c\x8c\xb9\x2d\x84\x10\x27\x69\xda\x39\x19\x91\xa9\xd6\xe3\x0e\x1f\x59\x21\xee\xdb\xa3\xc9\xc3\xde\xf9\x90\xa6\x1d\x21\x1e\xf6\xee\xa4\xf5\x77\x09\x0b\x54\x0a\x72\x53\x55\x31\x59\x5c\xd7\x52\x47\x2e\x20\x07\xa4\x61\x96\xc9\x7c\xe9\x29\x5f\xba\x19\x18\x0b\x8a\x96\x08\x47\xeb\x7b\xbf\x20\xf7\xd0\x03\xb8\x5e\xa0\x43\x90\x16\xbf\xc3\x25\x85\x09\x99\xc2\xee\x6d\x30\x9e\xdc\x22\x81\xb6\x37\x10\x62\x10\xd4\x68\x15\xb9\x2a\xed\x35\x1b\xe5\xbc\x25\x3d\xef\x43\x32\x1b\x4d\x66\xe3\xce\x8c\x8f\xd6\x42\xdc\xc7\xdc\x63\xca\xfb\x5c\x5f\xc6\xef\x39\x21\xea\x6c\xa3\x18\xb3\xe4\xbb\x09\x75\xf1\xdc\xb0\x3b\xfc\x30\x1a\xff\x6f\xb4\x6d\x12\x4d\xc4\x6d\x3e\x6f\xc7\x14\x49\x13\xb0\x3d\x38\xfd\x39\xf6\x27\x7d\xea\x7a\x72\x53\x3d\xfe\x9e\x82\xd7\x98\x93\x54\xf9\x42\xee\x86\x5b\x88\x5e\xd2\x88\xdd\x87\xf4\x21\x39\x78\x93\x92\xc7\xff\x98\xe6\xf1\xbf\x96\x5f\x6d\xef\xc9\x17\x70\x07\x4d\xb8\xc3\xff\xa8\xd5\x9b\xc2\x44\xd6\xeb\xab\x0f\x57\x7c\x73\x73\xc3\x1f\x2f\x6e\x7e\x1f\xa6\xfd\x41\xd2\xe0\xea\x65\x96\xe6\x8b\xd7\x28\x7f\x08\xe7\xfe\xdc\xbd\x60\x3b\x3d\xed\x0e\x8e\x07\xc3\xab\xeb\xe3\x41\x93\x76\x32\xbc\xba\x7e\x55\xb3\xbf\x02\x00\x00\xff\xff\x3c\x9e\x94\x57\xf1\x06\x00\x00")
940
941 func runtimeSyntaxCrystalYamlBytes() ([]byte, error) {
942         return bindataRead(
943                 _runtimeSyntaxCrystalYaml,
944                 "runtime/syntax/crystal.yaml",
945         )
946 }
947
948 func runtimeSyntaxCrystalYaml() (*asset, error) {
949         bytes, err := runtimeSyntaxCrystalYamlBytes()
950         if err != nil {
951                 return nil, err
952         }
953
954         info := bindataFileInfo{name: "runtime/syntax/crystal.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
955         a := &asset{bytes: bytes, info: info}
956         return a, nil
957 }
958
959 var _runtimeSyntaxCsharpYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x6d\x6f\x23\x35\x10\xfe\x9e\x5f\xe1\x5b\x5e\x9a\x17\xa5\x2d\x12\x5f\x58\x1d\x94\xea\xa0\x52\xa5\x83\x03\x89\x0f\x15\xf1\xaa\x9a\xb5\x67\xb3\xbe\x7a\xed\x3d\x7b\x9c\x74\x8f\x81\xdf\x8e\xbc\x49\xb8\xb4\xd5\x41\x25\xbe\x5c\xa4\xd8\x23\x7b\xe7\xe5\x99\xe7\x19\x37\xc6\x22\x0d\x3d\x96\x42\xc5\x16\x42\x3f\x99\x68\x24\x54\x54\x4e\x84\x10\x22\xdf\x3a\xe8\xb0\x14\x85\x94\xa7\x2a\x16\x93\x49\x48\x16\xe3\xee\xf6\x33\xf1\xca\x42\x8c\xa3\xbd\x14\x46\xa3\x23\xd3\x18\x0c\xa7\x2a\x1f\x97\xa2\x18\x77\xb1\x58\x5d\x2e\x7f\x87\xe5\xfb\xf3\xe5\x37\xd5\x42\xcc\xa7\xd3\x72\x76\x7c\x76\x5a\x2d\x66\x17\xc5\x64\x8c\x92\x63\x5e\x3a\xe7\x09\xc8\x78\xf7\x34\xf0\x06\x42\x29\x8a\xef\xf7\xce\xd5\x62\xef\x76\xfc\x4d\x29\x8a\xfd\xf5\x6d\xf5\x21\xc9\x6d\x35\x5f\xad\xca\xd8\x83\xc2\xb2\xaa\xe6\xab\xe9\xac\x2a\xf6\xae\x3b\xf4\x85\x94\xf5\xb4\xf6\xde\x72\x3d\x10\x72\x1c\x57\xd5\x42\x60\x8d\xca\x74\x60\x59\xfb\x54\x5b\xe4\xc6\x7a\x20\xbe\x76\xf4\x0b\x05\x36\x8e\x38\xe5\xc5\x7a\xb7\xe6\x34\xae\xbe\x7e\x8b\x8a\x38\xb6\x3e\x10\xa7\xdd\x16\x29\x18\xb7\xe6\x1a\x22\x32\xb5\x26\xf2\x06\x02\x6f\xbc\xd1\x33\x29\xeb\x43\x21\x91\x80\xb0\x43\x47\xfb\x6a\xc0\x1a\x88\x0c\x91\x55\x76\x53\x40\xaa\x65\xd5\xa2\xba\x43\xcd\x1a\x1b\x48\x96\x58\x7b\xd6\x83\x83\xce\x28\x46\x1b\x91\x1b\xe3\xc0\xda\x81\x1b\x73\x8f\x9a\x1b\x1f\xf2\x1f\x41\xb5\xbc\xf6\xe4\xd9\x34\x6c\x22\x5b\xaf\xee\xd8\xe1\x96\x5d\xb2\x96\x03\x52\x0a\x8e\xe3\xd6\xe4\x04\xd4\x06\xbf\x65\x0a\x03\x27\x77\x48\xb6\x6d\x8d\xc5\x7f\xad\xb4\x8e\x14\x40\x11\x43\x1c\x9c\xe2\x91\x76\x56\xde\x45\x62\x8d\x16\xd7\x40\xc8\xe8\x52\xc7\xb8\x41\x47\x8c\xf7\xbd\x35\xca\x64\x83\x30\x38\x5e\x23\xb1\xe9\xf6\x67\xc6\xe5\xae\x62\x70\x60\x77\x46\x03\x0a\x39\x8b\x70\x64\x8f\x7d\x8f\x01\xc8\x07\xf6\x89\xd8\x6f\x30\x04\xa3\x91\x7b\x08\xd0\xc5\xbc\x91\x01\xcb\x7d\x30\x9b\x9c\xb4\x0f\x3e\x8b\x19\x35\xf7\xa9\xb6\x46\x71\x40\xd0\xde\xd9\x81\x03\x36\x1c\x11\x2c\x6a\x8e\x48\x1c\xcd\x7b\xf4\x0d\x47\x02\x75\x07\xd6\x7a\x95\x4d\x32\x79\x0b\x49\x11\x67\x91\xf8\x86\x93\x8b\xd0\x20\xa7\x98\xd9\xdc\x80\x4d\xc8\x1b\x13\x28\x81\xe5\x8d\xb7\x40\xc6\x22\x0f\x06\xed\x11\xaf\x59\xd2\xaf\xaf\x7f\xfe\x75\x99\xd3\x8a\x3b\x1c\xb6\x3e\xe8\x28\xa6\xde\x61\x14\xd4\x02\x09\x05\x59\xf1\xa2\x46\x91\x22\x6a\xe1\x13\x45\xa3\x51\xf8\x46\xc0\xe8\x29\xde\x25\x0c\x83\x58\x0a\xeb\x29\x0a\x4f\x2d\x86\x98\x9d\x66\x1f\x61\xa3\x09\xbe\xe3\x6d\x8b\x01\x39\xa2\xcd\x5a\x5c\x07\x9f\x7a\x36\xae\xf1\xec\x83\xc6\x50\x0f\xfc\xd6\x1b\xc7\x16\xc7\x7e\x7b\xc7\xf8\x2e\x81\x8d\x5c\x0f\x0c\x51\xa1\xd3\x19\x9f\xc6\x83\xf9\x80\xfb\x1e\x95\x01\x7b\x98\x98\x80\x70\x97\xa9\x26\xe3\xd2\x03\x8d\x8c\xf4\x83\xa3\xd3\x3c\x54\xfb\xaf\x29\x24\xe4\x06\x6c\x7c\xa8\xa6\xa1\xab\xbd\x3d\x3d\x10\x9b\x07\x58\xca\xe5\xe2\x6c\xfe\xed\xcb\xef\x2e\xca\x17\x7f\x7d\xf1\x25\x57\x4f\xa2\xba\xd4\xd5\xe3\xb0\xe7\xb8\xab\xfc\x8c\xdc\x56\x0b\x3e\xbf\x5f\x5d\x2e\xaf\x60\xd9\x8c\x23\xbf\xe0\xf3\x7a\x75\xbe\xfc\xea\xb6\x5a\xcc\x56\x57\xaf\xab\x8b\x31\xe9\xe3\x48\xbb\xd9\x2c\xf7\x64\x89\xdc\xce\x30\xb6\xb2\x28\xfe\x39\x43\xa7\x4b\x51\x4c\x2f\x5e\xbe\x90\x52\xca\xd9\xf1\xd5\xd1\x7b\x78\xf8\x1d\x07\xdf\x75\xeb\x55\x0b\xbb\x5a\xa5\x9c\xae\x6a\x72\x4d\xa8\xf8\x84\xa5\x94\x05\x8f\x01\x8b\xe7\xfb\xa7\x0f\x08\xab\x3f\xbe\xfe\xf3\xf9\x78\x4e\x3e\x0a\xe7\xe4\x53\x44\xd3\x8d\x8a\x7e\x82\xe2\xec\xec\x31\x8c\xcf\xff\xa3\x7a\xf2\xda\x67\xb4\xbf\xbd\xf9\xe1\x0d\xdf\xdc\xdc\xf0\xd5\xf5\xcd\x4f\x3f\xce\xca\x8b\x67\x24\x93\x72\xfe\x38\x9d\x94\xf3\xb3\xff\x91\xf1\xef\x00\x00\x00\xff\xff\xc9\xe3\x27\x71\x70\x07\x00\x00")
960
961 func runtimeSyntaxCsharpYamlBytes() ([]byte, error) {
962         return bindataRead(
963                 _runtimeSyntaxCsharpYaml,
964                 "runtime/syntax/csharp.yaml",
965         )
966 }
967
968 func runtimeSyntaxCsharpYaml() (*asset, error) {
969         bytes, err := runtimeSyntaxCsharpYamlBytes()
970         if err != nil {
971                 return nil, err
972         }
973
974         info := bindataFileInfo{name: "runtime/syntax/csharp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
975         a := &asset{bytes: bytes, info: info}
976         return a, nil
977 }
978
979 var _runtimeSyntaxCssYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\x4f\x8f\xe3\x36\xf2\xbd\xf7\xa7\x70\xfc\x0b\x7e\xe9\x0e\x96\xc9\xdd\x09\x36\x01\x26\xbb\x40\x0e\x8b\x1c\xb2\x58\x0c\x10\xcd\x02\x65\xa9\x64\x71\x4c\x91\x0a\x49\xb5\xdb\x33\xcc\x7e\xf6\x45\x55\x91\x12\xe5\x76\x23\x97\xf5\x41\x7a\xef\x91\xe2\x9f\x22\x8b\x55\x92\x7b\x6d\x30\x5e\x27\x3c\xec\xda\x10\x1e\x1e\x3a\x8c\xd8\xc6\xc3\xc3\x6e\xb7\xdb\x51\x91\x85\x11\x0f\xbb\x7d\xd3\x7c\xf3\xd8\x86\x90\x42\x1b\xc2\xd3\x97\xfb\x87\x07\x3f\x1b\x0c\x52\xed\xff\x76\xef\x0c\x84\x80\x61\x07\xb6\xdb\xfd\xfc\x53\x60\x55\xed\x42\x84\x88\x23\xda\x78\xd8\xed\x1f\x7f\xd0\x4f\xdf\xec\x73\x81\x75\x7e\x04\x23\x0f\xd3\x2f\x44\xf0\x91\x3b\xf9\xbc\x5f\x44\xb4\x1d\x4b\x7f\xac\x92\xf4\xb9\xfb\xed\x43\xee\xb6\x0d\x61\xd7\xba\x71\x04\xdb\x95\x3e\x65\x26\xfb\x47\x30\xfa\x64\x55\xeb\x6c\x44\x1b\x93\x30\x1d\x71\x0c\x82\x69\x54\xea\x08\x01\x8d\xb6\x98\x8b\x03\x9a\x3e\x81\x31\x09\xac\x1e\x21\x6a\x67\x57\xa4\x3a\x34\x70\xad\xb9\xf6\xd8\xde\xd6\x99\xfd\xed\x63\xbd\x36\x46\x8d\xae\xc3\x4a\xd3\x11\xa5\x9e\x6a\xdd\x4c\x83\x5b\x4a\xc8\xd6\x15\x9d\x0c\x5c\x15\x1b\xb1\x12\xa3\x1e\xb5\x3d\xa9\x7e\xb6\xb9\xfb\x69\x42\xf0\x60\x5b\x4c\xf0\x49\x8f\x73\x1c\xd2\x11\xda\x73\x0f\x2d\xaa\x67\x1d\xf4\x51\x1b\x1d\xaf\xac\x9d\xbc\x9b\x6d\x57\x41\x05\x31\x42\x3b\x90\x31\x6a\xf5\x68\xd0\x76\x32\xea\x4a\x6d\x8d\x9e\x36\xdc\x19\xe7\x6b\x41\x8f\x70\xda\x3c\xe1\xbc\x3e\x69\x5b\x2b\x93\x0b\x9a\x47\x5d\x69\x1e\x27\x84\x4d\xff\x41\x7f\xa2\x76\x64\x71\x54\x18\x74\x1f\xd3\xd1\xb9\xf3\x08\xfe\xac\x0c\x1c\xd1\x54\x14\x9f\x6b\x2a\xd6\x3a\x3a\xdf\xa1\xcf\x37\x75\x74\x31\xba\x71\xcb\xca\xe8\x37\x9a\xc1\x3e\x2a\x0f\x9d\x9e\xc3\x4d\x89\xd7\xa7\xe1\x8d\xa2\x10\xaf\x06\x6f\xb4\x8b\xee\x68\x19\x8a\x36\xdb\x0e\xfc\xb5\xf0\xd6\x19\x03\x53\xc0\x8a\xaf\x23\xc9\x36\xac\x88\x72\x73\x0c\x18\xb7\x5a\xb1\x59\xad\x05\xa3\xdb\x9b\x47\x83\x9b\xfd\xad\xb6\x19\x1b\xcd\xb8\xc6\xdb\xc1\xb0\xb2\x99\x1f\x2b\x9b\x16\xb6\x36\x61\x3b\x6d\xc8\xb6\x45\x91\x36\x4d\x8a\xb4\x69\x33\x4c\xd0\x6a\x7b\x5a\x68\x5d\x3d\xba\xa9\x82\xdb\xd6\x49\xb8\xb3\x86\x24\xdf\x5b\x40\xd2\x6f\xdb\xde\x0e\xa4\x90\xbc\x7f\x5e\x54\x87\xad\xcb\xbe\x7b\xf4\x08\x67\x16\xc3\x00\x9d\xbb\x08\xd4\x9f\x64\xe0\x2f\x2a\x58\x98\x04\xcc\xd3\xe4\x31\x84\xc4\x4f\x28\xe8\x23\x6d\x4d\xc6\x47\xec\x9d\xc7\x4c\xb4\x0d\xba\xc3\xd4\xc2\xc4\xed\x67\xe2\x31\xca\x55\xad\xa7\x92\x70\x99\xba\xe0\x30\xc0\x84\xa9\x1d\x40\xdb\x90\x5a\x83\xe0\x13\xbb\x2b\x5d\xd4\x04\x71\x10\x44\xe7\x67\xca\xcf\xd1\x55\x69\x1b\xd1\x4f\xce\x2c\x87\x55\x44\x1f\xa8\x6c\x1e\xcb\xe9\x94\x09\x1d\x64\x05\x9f\x60\x2a\xb0\xb4\x58\xb0\x5a\x5a\x5f\x14\x31\x71\xad\x88\x59\x45\x59\x7a\x0b\x13\xd8\x82\x4b\x05\x39\xbc\xe9\xae\xed\x4c\x6d\xcc\x34\x5e\xa5\x6d\xeb\x39\xae\x2c\x8a\x47\x72\x91\xc2\x18\x53\xfd\x19\xb3\xb9\x09\x65\x63\xb7\xb3\x0f\xce\xa7\xf5\xfc\xee\x74\xa0\x83\x36\x75\x6e\xd4\x16\xea\xb0\x80\x06\x9f\xc5\xe2\x38\x4e\xf1\xaa\x5a\x34\x26\x24\xb1\x52\xea\x0d\xbe\xf0\x85\xea\xeb\x20\x70\x6d\x95\x69\x6f\xdc\x45\xd0\xc9\x17\x14\x06\xaf\xed\x59\xf0\xc5\xc3\x94\x7a\xe3\x20\xca\x55\x75\xd8\x73\xd3\x84\x5d\xdf\xd3\x44\x84\x78\x2a\x40\x3a\xe4\x7b\xe3\x5c\x39\x7c\x05\x3b\x72\x97\x78\x4d\xb9\x37\x77\x51\xbd\x77\xa3\x20\x6d\xa3\x4b\xbd\xb3\x91\x2f\xaa\x87\x51\x9b\x6b\xc6\x08\x71\xf6\x48\xd6\x8a\xda\x9e\x82\xa8\x67\xf4\x96\xb6\x30\x13\x03\xf6\x34\xf3\x19\xf4\x8c\xde\xd3\x86\x64\x99\xcf\xe7\x05\x29\xe8\x3e\xce\x21\x77\x10\xa2\xc7\xd8\x0e\x85\xd0\xca\x0b\xbc\xda\x38\x20\xdb\x89\xe8\x33\x78\x0d\x65\x50\x99\x28\x20\xbb\x5a\x88\xb8\xad\xa4\x5a\x98\x6e\x14\x84\x10\x15\x04\x0d\x76\xab\x1b\x7d\xe2\x39\xdd\x54\xb7\xf3\x88\x5e\xb7\x5b\x71\x09\x45\xac\x5e\x90\x4f\xae\xde\xb9\x68\x5d\x44\x55\x36\xc5\x22\x4c\xce\xe8\xf6\x9a\x4e\xe6\x3a\x0d\x14\xd8\xd0\x46\x71\x9a\x67\xf4\x51\xb7\x60\xd2\xc9\xeb\x8e\x2f\x0a\x3c\x42\x46\x73\x74\xaa\x6c\xf4\x55\xe1\x95\x5a\xa9\x77\x97\x5c\x2a\x55\x6b\xac\xd0\x76\x1b\x4e\xce\x57\x73\xce\x9d\x44\x59\x8a\x7c\x69\xde\xbb\xcb\xda\x00\x91\xba\x4a\xfd\x68\xc4\x71\x32\x14\x3a\x37\x8c\x67\x12\x6e\xb4\xcd\x74\x16\x95\xe7\x30\x80\x3d\x51\x72\x32\x51\x72\x32\x8b\xeb\x0c\x62\xd9\xe1\x3a\x0d\x68\xf9\xf9\x01\x3c\xb4\xe4\x42\xab\x66\xf4\xa8\x23\x97\x84\x57\xaa\x81\x10\x5f\x8b\xda\xe2\xeb\xaa\x9f\x9c\xc5\x2c\x86\x94\xa3\xe7\xba\x54\xa9\xc4\x4e\xdb\xa1\xa7\x3d\x5e\x78\x70\x66\x96\x0a\x56\x47\x0d\x46\x19\x8c\x34\xbe\x2d\x55\x9c\x25\xde\x8a\xec\xc2\x3a\xe4\x23\x34\x91\x27\xe8\xfe\xba\x24\x9e\x85\x4b\xea\x59\x18\x67\x9a\x1c\x7b\x73\x2b\x25\xe2\x19\xb2\x15\x59\x50\xfc\x9b\xf3\x1f\x09\x34\x0c\x79\x8b\x31\xca\x56\x95\x04\x89\x22\x8d\xd1\xa1\x38\xdc\x0a\x73\x3a\x51\x09\xcb\xae\xaf\x34\x4a\x99\xd3\x08\x9e\x72\x35\xb9\x95\x94\x29\x33\x1e\x69\xc6\x12\xe1\x33\xa1\x60\x4c\x69\x17\xfa\x7c\xe3\xcd\x96\xe1\xd9\xba\xf6\xec\xe6\xb8\x3c\xbe\x11\x97\x76\x48\x1d\xf5\xf2\xd4\x04\x64\x10\x5b\x68\xc0\x13\x1f\xf4\x85\xd2\x19\x54\x30\xef\xde\x11\xfc\xef\x33\x62\x75\xf2\x16\xc5\x38\x19\x1d\x93\x30\x21\x76\x2b\x63\x3b\x8d\x10\xce\x7c\x51\x39\x5f\xac\xb0\x64\xbf\xb5\x90\xd3\xb0\x5a\xca\x59\x58\x2d\x49\x12\xb6\x51\x24\x07\xab\x25\x09\x6f\xac\x70\x94\x16\xe4\x46\x5e\x9c\x5c\x55\x56\x8e\xe1\x3a\x94\x9c\x50\x33\x5e\x56\x92\x59\x3d\x14\x3e\x9e\x19\xe5\x95\x7d\x29\xdb\x85\xa0\x78\x0e\xa1\x3c\x0c\x6d\x97\x62\x6d\x17\xf1\xa5\x7e\x0b\x18\x9d\xf4\xc4\xb7\x12\x98\x32\xe3\xec\x22\x63\xef\xb2\xa7\x59\x78\x56\x9d\xbb\x08\xe0\xf5\x27\x20\x6b\x4e\x68\x9e\x92\x3b\x7e\xc4\x36\xaa\x5e\xc7\x02\x97\x19\x49\x07\x39\x74\x67\x92\xa3\x77\x66\xb4\xcd\x32\x94\x6d\x50\x62\xa0\x2c\xa4\xf3\xd3\x00\x36\x24\x37\x47\x0e\xe4\xf9\x9e\xbd\xaa\xb0\x3c\x8f\x42\x65\x53\x14\x26\x76\xa0\xb8\xc7\x87\x75\x01\xa5\x56\xa1\xec\xfe\x0b\x7b\x59\xe1\x35\x4d\xd0\x75\xe4\xd3\xf9\x5e\x7c\xaa\x50\xb6\x4a\x21\x62\x99\xc2\xc8\xad\x26\x5a\x7e\xba\xa8\x3a\x6d\xac\x84\x6c\x90\x4a\xc9\x09\xe4\x04\x73\xc8\xd7\xe5\x29\xc2\xe5\x01\xf4\x61\x22\x57\x79\xde\xe0\xb2\xb7\x26\x4d\xe1\x9b\xaf\xca\x83\xa5\x41\xd0\x5b\x68\x37\xf3\x89\x49\xa9\xa2\x57\x60\xdb\xc1\xf9\x85\x9c\x0c\x66\xdc\xe9\x10\xf9\x4d\x54\x68\x69\xb2\xac\x2b\xa5\xc1\x4b\xdc\x94\x17\xb7\xdf\x67\x47\xf1\xde\xe3\x89\x13\x50\x0f\xe2\xee\x1e\x79\x13\x7b\x0c\x8c\xcb\x5e\x60\x98\xe7\xe1\x75\x3b\x58\x4a\xab\xc5\x76\xcb\xd6\x2b\x40\x4d\x4e\x53\x4b\xf3\xf1\x9a\x4f\x6e\x86\x23\xfa\x13\x0a\x5c\xc6\xe5\x67\xcb\x39\x4f\x68\xbd\x33\x46\x1d\x71\x80\x67\xed\x7c\xe1\x74\xbe\xe6\x26\x6a\x25\x9f\x98\xaf\x25\x75\x34\xae\x3d\xbf\x59\xc0\x9b\xf7\xcd\x42\xd9\xce\xf7\x8a\x65\xfb\xdc\x29\xd1\x96\x37\xf9\x9b\x25\x6f\x75\x98\x4b\xdf\xec\x91\x77\xe8\x1d\x5d\x0c\x7e\xa7\x80\xf6\x6d\x2d\x17\x0f\xb8\xa3\xdd\xb1\xd1\xa6\xe4\xd5\x98\xb7\xa5\xaf\xc7\x7c\xe3\x65\xf7\x8a\xee\xd8\x69\x5b\xf4\x66\xa7\x6f\x5a\x6a\xe3\xcc\xf7\x0a\x5e\xdb\xaa\x76\xf2\x5a\xe7\xb3\x9a\xdf\xe3\xf2\x8b\x7a\x1c\x3c\x86\xc1\x99\xae\xa8\xe2\xde\x42\xca\xe6\x63\x42\xa1\x89\x8b\xc8\x67\xc2\x44\xe9\x02\x5f\x15\x84\x0c\x06\x04\x3a\x17\x85\x70\x3a\x0c\x26\xb3\x3a\x57\xa3\x28\xc9\x7e\x1f\x31\x51\x26\x1f\x02\xdd\x68\xb4\x74\x50\x86\xe8\xdd\x19\xf3\x4d\x2d\x9f\xd1\x8a\xd0\x01\xbd\x08\xf3\xab\x40\xad\x78\x0f\xd7\x5a\x68\x9d\xb7\x34\x94\x55\xc9\xe7\x70\x56\xc8\xd2\x2d\x4c\x35\xfd\xe8\x68\xaa\xc2\x47\x1d\xd1\x73\xb6\x57\x94\x72\xf4\x67\x2a\x07\x77\x84\xa3\x41\x65\xe0\xea\xe6\x48\x44\x82\x62\xc4\x97\x98\x3d\x79\x85\x0a\x8c\xa9\x29\xe7\x9b\xcc\x5b\x37\x1e\x69\xdd\xe7\x49\x96\x91\xc5\xf5\x13\xc0\x2d\xcf\xe1\xe5\x56\xe5\x4d\x77\x2b\x86\xb3\x9e\x5e\x8b\x1c\x5b\x58\xc5\x71\x1a\xf8\xb5\x72\xc3\xea\x1e\x16\x6d\x39\xc6\xb6\x72\xd5\x98\xb6\x1d\xad\x13\xe3\x9c\x82\x0a\xa9\x93\x63\x11\x4a\xbc\x63\x96\x3f\x6c\x08\x9e\xa0\xc5\xf5\xdb\x55\xa5\x45\xaf\xc7\x95\x93\xbf\x33\x89\x1e\x6c\xe8\x9d\xcf\x65\x33\x25\xdd\xec\x45\xdb\xf1\x72\x00\x25\x5f\xa8\xea\x17\xa4\x8e\xee\xa5\x62\x39\x9c\xac\x42\x9e\x22\xf1\xdc\xe2\x02\xf3\xf7\xda\x5a\x28\x1f\x67\x2b\x6d\xf2\x6e\x42\x1f\x37\xf5\x6e\xbf\xaf\xce\x56\xb7\xae\x43\x75\xd4\x9d\x4e\x73\xe0\x9c\xd4\x60\x1b\x53\x79\xf1\xcb\x1b\xaa\xfa\xd6\xfa\xec\x74\x8b\xea\x08\x86\x63\xa1\xb0\xa5\x7b\xa1\xf9\x45\x5c\x88\xc4\x5c\xc1\x12\x73\x0b\x8e\x05\x66\x6f\x14\xf2\x4c\x6f\x60\x54\xc2\xb7\xcb\xa0\x23\xca\x5a\xa4\x8b\xee\xe8\x3d\x4c\x7c\xe0\xa2\x8d\xa1\x77\x2a\x6a\xf0\xe2\x7c\x97\xdf\x24\x18\x96\xa5\x62\xc2\x6b\x40\x97\x1c\x66\x19\xe6\x30\xcb\x98\xb7\x04\xa3\x7c\x08\x31\x8e\x83\x77\xf3\x69\x48\x17\xaf\xf9\x9d\x85\x53\xc5\x4f\xbc\xdb\x5e\x9e\x0e\xe5\x5b\x7f\x87\x3d\xcc\x26\xbe\xfe\xd8\x7f\xb8\xfd\xd4\xff\xdb\x77\xff\x6e\x9a\xcf\x1f\xde\xfa\xdc\xaf\x76\x94\xab\x68\x30\x87\xdd\xfe\x0b\x3d\x4e\xce\x47\xb0\xb1\x74\xa3\x69\x8b\xeb\x5e\xa3\xa7\xa6\x41\xf2\x9b\x43\xef\xda\x39\xa4\xc3\x40\xfb\x3a\x1d\x8c\xb6\xe7\x74\xa0\x85\x8a\xd8\x15\x2a\x53\x3e\xe4\xe9\x7e\xb9\x7f\xd5\xd7\x63\xd3\x7c\x4e\x4d\xf3\x47\x6a\x9a\xc7\xd4\x34\x4f\xa9\x69\xbe\x4b\x87\xd4\x34\x1f\xd2\x7f\xd2\xf7\xe9\xaf\xe9\x2f\x4f\xfb\xfc\x7f\xc4\xaf\xef\x7e\xfd\x75\xf7\x2f\xf0\xa0\x8f\x06\xef\xfd\x0b\xf2\xa3\x8c\x3b\xfd\x38\xea\x17\x6d\xd3\x8f\xf8\x12\xd1\x76\xcb\xe3\x7c\xd6\x96\xe7\x5a\x67\x29\x9b\x8a\xdf\xc8\x11\x7c\xe7\xdf\x92\xfd\xad\x05\x1f\x7f\xf8\xfe\x8b\xa6\x69\x9a\xa7\xba\xa8\xfa\xa3\xa6\xfc\xea\xc6\x65\x9e\xef\x06\xf0\xfc\x6f\x4b\xd3\x2c\xff\xd2\xfc\xe9\x00\xbe\x7a\xb3\xff\xaf\xfe\x07\xdd\xaf\x2b\xd0\xec\xd3\x57\xc5\x46\xef\xdc\x48\xb6\x0c\xbb\xff\xdf\xfd\xf3\x97\x9f\x7e\x59\x8d\xc5\xf2\xbd\xbf\x94\xbe\x6d\x9a\xaf\x5f\xff\xab\xf4\x75\xd3\x7c\xfb\x27\x83\x8c\xae\x73\x34\x29\xea\x27\xbd\x7f\xff\x3e\xfd\xfd\xe7\xf7\xff\xf8\xdb\xd3\xe1\x87\xfd\xa6\xe2\xc3\x7f\x03\x00\x00\xff\xff\xff\xe2\x4f\x00\x41\x1b\x00\x00")
980
981 func runtimeSyntaxCssYamlBytes() ([]byte, error) {
982         return bindataRead(
983                 _runtimeSyntaxCssYaml,
984                 "runtime/syntax/css.yaml",
985         )
986 }
987
988 func runtimeSyntaxCssYaml() (*asset, error) {
989         bytes, err := runtimeSyntaxCssYamlBytes()
990         if err != nil {
991                 return nil, err
992         }
993
994         info := bindataFileInfo{name: "runtime/syntax/css.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
995         a := &asset{bytes: bytes, info: info}
996         return a, nil
997 }
998
999 var _runtimeSyntaxCythonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x54\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\xdc\xb4\xd0\x5d\xa0\xcb\x3d\x14\x7a\x68\x77\xa5\x8a\xa2\x56\x82\xc3\x4a\x75\x0f\x8e\x3d\xe9\x5a\x75\x6c\x6b\x3c\xa1\x1b\x31\xfc\x3b\x72\xb2\x45\xdb\x2d\x15\x48\x08\x92\x83\xe5\x99\xd1\x7b\x6f\xde\x4c\xd2\x58\x07\xd4\x47\xa8\x84\xee\x69\x15\x7c\x51\x18\x20\xd0\x54\x15\x42\x08\x91\xb3\x5e\xb5\x50\x89\x52\xca\x59\xec\xd7\x07\x9c\xcf\xb5\x19\xcf\xde\x1e\x94\x45\x81\x9d\x83\x34\xd6\xef\x8b\xab\x01\x45\x7c\x84\xfe\x3e\xa0\x11\xa7\xc1\x05\x1c\x52\x47\x22\x91\x22\x68\xc1\xd3\x80\x56\x4f\x94\x37\xac\x12\xab\x94\x00\x89\xb5\x53\x29\xb1\x81\x86\xcf\xe6\x0b\x36\xe0\x18\x9c\x6d\x78\x7e\x71\xbe\x60\x70\x09\x78\x7e\xf1\x79\xce\xb0\xd6\x10\x89\x61\x0d\x9a\x1b\xeb\x95\x73\x3d\x37\x01\xb9\xc1\xd0\xf2\xad\x0b\xb5\x72\x6c\x1b\x3e\x5f\xb0\x6d\x63\x40\x62\xeb\xd9\x26\x76\xaa\xad\x8d\xe2\x56\x45\xf6\x81\x38\x20\xc7\xcc\x16\xd1\x7a\x62\x54\x36\x01\x13\xf6\x7c\xbf\xb2\x0e\xf8\xde\xd2\x8a\x7b\x0b\xce\x4c\xa5\xac\xcb\x07\xf5\x11\xb4\x55\x6e\xa3\x5d\x07\x4f\xd6\x77\xc0\x35\x82\xba\x63\x04\xea\xd0\x8f\xe5\x43\x7d\xb6\xe2\xf4\x79\x2b\xac\x01\x4f\xb6\xb1\x80\xb3\x56\x69\x0c\x0f\xa8\xb9\x7d\xbd\x51\xae\xe3\x70\x8b\x71\x74\x46\xe7\x29\xe5\x08\xac\x09\xd0\xb3\xf5\xda\x75\x06\x38\x8f\x27\x45\xa5\x81\x23\x86\x08\x48\x3d\x27\xc2\x4e\xd3\xb6\xf8\x71\xc2\x03\x47\x9d\x5b\xd6\x2b\x85\x6c\x42\x57\x3b\xe0\x7c\x8f\x5d\xed\xac\xe6\xaf\xc1\x1a\xee\x7c\xb2\xb7\x1e\xcc\x4e\x37\x97\x11\x50\x51\xc0\xc7\x23\xed\xdb\x3a\x64\x4f\xae\x67\xd5\xbb\x37\xaf\x5f\xf1\xfb\x3d\x29\x5f\xdc\xf0\x31\x7f\xe0\xb7\x7c\xc4\x2f\xb7\x00\xae\x14\x82\xa7\x15\x90\xd5\xca\xfd\x02\x65\x56\xa3\xd2\x77\x40\x29\xc3\x4d\xa6\xdf\xbe\xdf\xb0\x94\xd7\x2c\xe5\xcd\x06\xe4\x48\xe8\xe0\x13\x29\x4f\xb3\x44\x68\xfd\x6d\xb5\xc1\x16\x79\xb5\x70\x58\xab\xb2\xfc\x19\x03\x6f\x2a\x51\x4e\x4e\x8e\xf7\xa4\x94\x72\xba\x9d\xda\xda\xd8\x87\x67\x1b\x7c\x9c\xf4\xe9\x4a\xe1\xe0\x99\x94\xb3\x3f\x57\x70\xf8\xac\x80\xc3\xff\xc2\x2f\x87\x77\x57\xc4\x6e\xf4\x5f\x1a\x70\xf8\xc4\x82\x47\xa1\xbf\xa1\x6e\x87\xbf\xc7\x13\xca\xfd\x5d\xc2\x83\xdf\xd0\x51\x30\xf9\x93\x9b\x7c\xb9\x3c\xbb\xe4\xe5\x72\xc9\x8b\xf3\xe5\xa7\xf9\xb4\x3a\x29\x8b\xe2\x47\x00\x00\x00\xff\xff\x76\xe3\xbc\x3c\x11\x05\x00\x00")
1000
1001 func runtimeSyntaxCythonYamlBytes() ([]byte, error) {
1002         return bindataRead(
1003                 _runtimeSyntaxCythonYaml,
1004                 "runtime/syntax/cython.yaml",
1005         )
1006 }
1007
1008 func runtimeSyntaxCythonYaml() (*asset, error) {
1009         bytes, err := runtimeSyntaxCythonYamlBytes()
1010         if err != nil {
1011                 return nil, err
1012         }
1013
1014         info := bindataFileInfo{name: "runtime/syntax/cython.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1015         a := &asset{bytes: bytes, info: info}
1016         return a, nil
1017 }
1018
1019 var _runtimeSyntaxDYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x96\x6d\x53\xdb\xba\x12\xc7\xdf\xf3\x29\xdc\xf4\xe1\xc6\x30\x01\xfa\xea\x4e\xb9\x5c\x32\x6d\x81\x5b\xe6\x52\xe0\xb4\xf4\x3c\x8c\x65\x5c\xc5\x5a\x27\x1a\x64\xc9\x47\x5a\x25\xa4\xdd\xd3\xcf\x7e\x46\x76\x42\x03\x49\x4a\xe8\x69\xc9\x4c\xac\xa7\xcd\x7f\x7f\xd6\xae\x56\x29\xa4\x02\x1c\x57\xb0\x13\x89\xb5\x35\x01\x08\x39\xee\xac\x45\x51\x14\x85\x05\xcd\x4b\xd8\x89\x5a\x8c\x6d\xb6\x45\x5b\x92\x88\xbb\xf1\x93\xd6\xda\x9a\xf5\x0a\x5c\x63\xf5\x38\x3a\xad\xc0\x72\x34\xd6\x45\x5c\x8b\xa8\xf2\x3a\x47\xcf\x51\x1a\x5d\xaf\x77\x22\x87\x1c\xa1\x04\x8d\x3b\x51\xab\xcd\xd8\x3a\x6d\xd1\x53\x62\x6c\x83\x3a\xb4\xb7\x47\xbb\xbb\xb4\xb7\xb7\x47\xcf\x88\xb1\x8b\x36\x63\x17\x71\x97\x18\x23\xfa\x12\x77\xff\xdb\x5a\x20\xc0\xd8\x66\x80\x61\x6c\x33\xee\xd2\x23\x0a\x72\xcf\xe8\x0b\x31\xd6\x26\xc6\x62\x62\x2c\x21\xc6\x52\x62\x8c\x31\xda\x9a\x78\x79\x4a\xbb\xb4\x47\x8c\x75\x69\x87\xfe\xd3\x9a\x52\xe7\xc8\x55\x24\x35\x42\x1f\x6c\xa4\x24\x82\xe5\xca\x45\xdc\x42\x24\xa0\xb2\x90\x73\x04\x31\x01\x00\x6b\x8d\x0d\xf4\xdb\xc9\x76\xe7\xdf\x59\xba\x1e\xb7\x8f\x13\xff\x21\xed\x52\x78\x1e\x77\xe3\xee\x54\x75\x1f\x72\x59\x2e\xd0\x9d\x08\xe5\x46\x3b\xe4\x1a\x37\xb5\x2f\x7b\x50\x4b\x26\xdb\x9d\x17\x29\x25\xcf\x3b\x2f\xd2\xd0\xfd\x96\xf8\x2b\xa9\xb9\x1d\xdf\xa5\xdd\x70\xf6\x5e\xa5\xc9\xf6\xf3\x55\x50\x0b\x65\x38\xde\x0d\x5a\x73\x4e\x08\x43\x04\x66\xc7\x71\x3b\x81\x83\x34\xd9\xe8\xa4\xdd\x9b\xf3\x71\x37\x29\x0e\x8f\xd3\xae\xec\xb6\x56\x12\x5e\xaa\xb3\x82\xcc\xc5\x66\xfa\x13\xb9\x1a\x73\x4a\x8a\xc3\x34\x9e\xee\xe0\x1b\xb8\xe2\xe2\xde\x01\xdf\x4e\xae\x7e\x4f\x6b\x1c\xde\x29\x5e\x76\x0e\xd3\xaf\xdd\x2c\x5d\xa7\x1b\xa3\x19\xab\x78\x69\x20\x67\x31\x56\x0c\xe6\xf7\x32\x84\x73\x77\xff\x5f\x75\x93\xea\x6c\x51\x14\xee\x8e\x41\xcd\x39\x8d\xea\xfd\x9c\xae\xe4\xf3\x71\xf4\x7a\xc0\x2d\xcf\xf1\x1b\x91\x73\x68\xa5\xee\x37\xc5\x2e\x7c\x1c\x72\x1b\x0e\xd9\xbf\x5a\xd7\x53\xa0\x45\x88\x6c\x77\xf7\x51\xa8\x3b\xf1\xcc\xca\x4c\xa1\x9c\x7e\x66\xa5\x2b\xc8\x25\x57\x81\xa1\x2e\x6d\x8c\x6d\x4e\xb9\xfe\x0f\xe3\x91\xb1\xc2\x4d\x86\xbc\x03\x0b\x8b\x61\xaf\xcd\x7b\x0e\xc3\x1b\x10\x57\x92\xbb\xf0\xec\x6b\xe2\xae\x24\xee\x1c\x58\x24\xee\xd1\x50\xcf\x88\x31\xf5\x2c\xf0\x4b\xca\xb9\x83\xf0\x40\xca\x39\xe6\x03\xca\x15\x77\x8e\x6a\xa4\xf0\x44\xa9\x3d\x90\x80\x9e\xef\x93\x80\x82\x7b\x85\x24\x40\x41\x9f\x23\x90\x30\x04\xca\x01\x81\xf6\x25\xc1\x55\x65\x2c\x12\x5c\x21\x58\x1d\x33\xd6\x9b\xa2\x17\x1d\xb5\x84\xb5\xe0\xe1\xd7\x85\xd4\x5c\x35\x4f\x35\xa6\xc2\xd8\xf0\x05\x9e\x0f\xa6\x6d\x66\x61\x08\x36\x58\x86\xbb\x44\x1a\x4d\x7d\x83\x86\x64\x41\xb2\x2c\x3d\xf2\x9e\x02\x92\x65\xed\x5d\x6a\x92\xda\xf8\xd0\x41\xb0\x05\xcf\x81\xa4\x1e\x72\x2b\xb9\x46\x92\x8e\x14\xff\x34\x9e\x65\x2b\x3b\x76\x09\x5b\xc9\x73\x6b\xa8\x94\x57\x52\x53\x69\x84\x57\x40\x1a\x46\xa4\x0d\x0e\xac\x19\x91\xf6\x4a\x51\x70\x64\x86\x60\xad\x14\x40\x15\xcf\x2f\x79\x1f\xa8\xb2\xbc\x5f\x72\xaa\xac\x1c\x86\x3d\xaa\xac\x09\x57\x28\x08\xaa\x7c\x4f\xc9\x9c\x2a\x6f\x81\x2c\x14\x64\x01\xfd\xcd\x9d\x72\x9d\xd1\x12\x1a\x97\x9b\x0a\xc8\x0d\xb8\x05\x41\x61\x51\xe6\xe4\xd0\xfa\x1c\xc9\xf9\x0a\x2c\xb9\x91\x0c\xd1\x73\x63\x9d\x0f\xac\xd1\xf2\x13\x08\x42\x28\x2b\x15\x18\x70\x20\x1d\x35\xdc\x68\x3d\x10\xda\x31\x85\x2b\x5e\x8a\xba\x31\x05\x79\x1d\xb6\xd5\x6b\x89\x08\x0e\x29\x6c\x77\x98\x18\x0d\xa4\x02\x1a\x49\x1c\xcc\x62\x66\xd9\x12\xca\x2c\x3b\x3c\x3a\x3e\xc8\x32\xca\xb2\xb7\xa7\xfb\x1f\x26\xdd\xe3\xa3\x93\xa6\x73\xf8\xe1\xe4\xf5\xf9\xd1\xe9\x49\x3d\x38\x7b\x77\x70\x7e\xfe\xc7\xcd\xb9\xfe\xe4\x05\xb3\x0c\x2d\x97\xe8\x28\xcb\x86\x90\xa3\xb1\x94\x65\x15\xb7\xbc\x04\x04\xeb\x66\x51\xf6\xaf\xaf\xe6\xe8\x72\xf6\x84\x7c\xbd\xa3\x03\x57\x48\xd8\x90\xae\xd7\xc6\xf5\x6b\x0b\x28\x68\x68\x14\x47\xa9\x60\x56\xf3\xcc\xca\x52\xa2\x1c\x42\x14\xac\xa6\x7a\xcd\x5f\xa2\x5a\xae\x67\x8c\xa2\xde\x18\x81\x72\x61\x7c\xc8\xbe\x1c\x34\x52\x5e\x17\x5b\xca\x07\xdc\x52\x6e\x81\x2b\x12\x75\x7f\x62\xd3\xac\xca\xc9\x48\x4e\x86\x21\x2d\x6b\x5b\x65\x74\x9f\xea\x9e\x1b\x84\x4c\xf6\xb5\x03\x5f\x2b\xfb\x60\xe6\x6b\x0b\xdf\xac\x0e\x8d\x14\x34\x0a\xf2\xb3\xe4\xff\x53\xa6\x17\x0e\x51\x24\xa0\x90\x1a\x44\xe4\xc6\x65\xcf\xa8\x05\xaf\xd0\x14\x31\x1a\x4d\x5a\x31\x69\x9d\xfc\x04\x19\x52\x85\x56\xc8\xa2\xc8\x70\x56\xfc\x7d\x53\x9c\x22\x34\x97\xa0\x17\xfc\xc9\x68\x12\x60\xff\xe5\x79\x13\xec\x83\xd3\xc3\xba\x3d\x3f\x7a\x7b\x70\xdd\x79\x7f\xfe\xf2\xed\x59\x3d\xfa\xf5\xe0\x64\xff\xf4\xdd\xa4\xfb\xee\x7d\x9d\x01\x37\xbc\xd5\x40\x37\x8b\xf0\xe3\x68\xbf\xde\xbc\x5f\xbc\x41\x10\x8d\xc5\x92\xea\x1c\xcd\x95\x67\xd6\x5a\x5a\x9f\x67\x97\x9a\x02\x1d\x7d\x47\x85\xfe\x6d\xec\xe4\x68\xdc\xff\x26\xd6\x1c\x95\xbd\x17\xd6\xbd\xa9\x56\x20\xf8\x78\xdb\xff\xc7\x1f\x70\x5b\xbd\x81\xab\xfb\xed\xc3\xd5\xcf\xdd\x87\x50\x28\x54\x38\xd5\x77\xa4\xcd\x1c\xd7\x9f\xac\xc5\x58\xfb\x36\xda\x83\x05\xa7\x76\xff\xf9\xb6\xfb\x7a\xf6\xaf\x07\xf3\x9f\x2c\xf4\x9f\x3e\x90\xff\xdd\x05\xde\xf7\xfe\xf9\x79\x5d\xcd\x79\x72\xd1\xfe\x9c\xec\xb2\x56\x9a\x5c\xb0\x56\xba\xfe\xe4\x36\xcb\x45\x3d\xbf\xf1\x60\xc9\xd0\xbe\x06\x8a\xe7\x72\xf2\x47\x9c\x92\xd7\xa6\x0c\xd7\xf9\xd7\xea\x5e\x36\xb7\xfb\x1c\xcb\xd6\xd6\x6d\xff\x4f\xe6\x62\x92\xa4\xb7\x64\xe6\x55\x18\x5b\x9f\x3f\x5b\xeb\x5b\xdf\x27\xb5\x31\x2f\xb5\xb1\x50\x6a\xed\xef\x00\x00\x00\xff\xff\xb0\x01\x2a\x82\xe3\x10\x00\x00")
1020
1021 func runtimeSyntaxDYamlBytes() ([]byte, error) {
1022         return bindataRead(
1023                 _runtimeSyntaxDYaml,
1024                 "runtime/syntax/d.yaml",
1025         )
1026 }
1027
1028 func runtimeSyntaxDYaml() (*asset, error) {
1029         bytes, err := runtimeSyntaxDYamlBytes()
1030         if err != nil {
1031                 return nil, err
1032         }
1033
1034         info := bindataFileInfo{name: "runtime/syntax/d.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1035         a := &asset{bytes: bytes, info: info}
1036         return a, nil
1037 }
1038
1039 var _runtimeSyntaxDartYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x51\x6f\xd3\x30\x10\xc7\xdf\xfb\x29\xb2\x68\xb0\x24\x55\x9a\xf2\x84\x16\x0d\xa2\x09\xd8\xd3\xa4\x21\x01\x2f\xd8\xde\xe4\x24\x97\xd5\xc2\x71\x2a\xfb\xb2\xae\xe8\xc4\x67\x47\x4e\xb3\xad\x74\x1d\xaa\x20\x0f\x67\xfb\xee\xfc\xff\x9d\xed\x5c\xa3\x34\xe0\x7a\x09\x79\x50\x4b\x8b\x93\x49\x0d\x08\x15\xe6\x93\x20\x08\x02\x1f\x33\xb2\x85\x3c\x08\x39\x9f\xf9\xf8\x71\x38\x99\xd8\x5e\x83\xdb\x24\xa4\x41\xd5\x19\x87\xd2\xe0\xcc\xf4\x6d\x09\x76\xc8\x2c\x59\x3a\x15\x45\xc4\xde\xa4\xa7\x82\xcd\xd3\x53\x91\xd0\x9c\xcd\xd3\xb7\x7e\xbc\xf7\x0e\x99\x36\xe7\xe9\x85\x98\xc6\x11\xeb\xbf\x09\xa6\x2f\x45\x41\xde\xfa\x55\x11\x17\x9c\x97\xe1\x01\xf2\x5e\x79\xca\xf9\x6c\x44\x6c\x86\x87\xb5\xd7\xfe\x04\x9f\x97\x82\x4d\x53\x51\x8c\xae\x82\x35\x17\x1e\x76\xb0\xfa\x73\x89\x1d\x05\x55\x83\x41\xd5\xa8\x61\x33\x3b\x4f\xbf\xcb\xf4\xe7\x8d\x18\x27\xf3\xf4\xf4\x46\x24\x8c\xe5\x6e\x29\x2b\xc8\x85\x48\x58\x24\x1e\x76\x3a\x94\x08\x2d\x18\xdc\x50\xa3\xd2\x82\xfc\x41\x95\x74\x40\x95\xc4\x6a\x41\x55\x67\x50\x99\x1e\xa8\x86\x46\xf6\x1a\x09\xb4\x03\x6a\x94\x91\x5a\xaf\xe3\xad\x3b\xda\x55\x6a\x3a\x4b\x4d\x6f\x2a\x54\x9d\xa1\x5b\x40\x52\x0d\x29\x43\xd2\x91\x72\x64\x60\x45\x16\xb0\xb7\x86\x1c\x20\xb9\x95\xf2\xac\x41\x95\xe4\x4a\x2a\x24\xe9\xd6\xa6\x22\x6f\xfe\x06\x19\x37\xe2\x42\x39\xc2\x85\xed\x56\x84\x76\x4d\x77\xd2\xd2\x5d\xa7\x6a\x5a\x2d\x94\x06\x5a\x29\x5c\x90\x6a\x97\x9d\x45\xd2\xaa\xb4\xd2\xae\x69\x29\x2d\xd2\x70\xf1\x04\xf7\x3e\x12\xef\x79\xee\x11\x82\xb6\x07\x6a\xa4\x3f\xb7\xe9\xb5\xde\xce\xdc\xfc\xb2\x43\xd6\xa5\x72\x48\x5f\xd0\x2a\x73\xfb\x42\x86\x32\x48\xa6\x6f\xa9\xee\xfa\x52\x03\x95\x5d\xa7\x5f\x3a\x1b\x4b\xa7\x59\xf2\xee\xec\xfd\xd1\xaf\x57\x45\xfe\x9a\xc4\x9e\xca\x32\x76\x9d\x88\x88\x5d\x67\x82\x22\xce\x39\xcf\xe2\x38\x61\xd7\x7e\x26\x32\x76\xab\x5a\x91\xec\x3d\x0e\xe7\x43\x0f\x0c\xa6\xd8\x58\xf2\xde\x3f\x3a\x62\xf0\xb0\xb2\x31\x16\x4f\x78\xc8\x79\x31\xc8\x86\x93\x47\xc1\x76\xa8\x73\x58\xfa\xcf\xa1\xb4\x43\x4d\x59\xf8\xe8\x03\x53\xe7\x41\x78\xfc\xe4\xd8\x6a\xd8\x87\x2f\x0d\xb0\xab\xbb\x3c\x08\xbf\x5e\x7d\xbc\xca\x8b\x03\x00\x9c\x27\xbb\x08\xce\x93\xec\x1f\x29\x63\xdf\xb9\xe1\xd5\x9e\xd3\x78\xb8\xcb\x8a\x8a\xb3\x23\x7f\x17\xf1\x76\x68\x2f\xf2\x49\x7c\x09\x95\x92\xfa\xc3\x42\xda\xf1\x01\x66\x87\x57\x70\xf2\x62\x01\x27\xff\xc7\xff\x1d\x00\x00\xff\xff\x78\xca\x36\x8d\x70\x05\x00\x00")
1040
1041 func runtimeSyntaxDartYamlBytes() ([]byte, error) {
1042         return bindataRead(
1043                 _runtimeSyntaxDartYaml,
1044                 "runtime/syntax/dart.yaml",
1045         )
1046 }
1047
1048 func runtimeSyntaxDartYaml() (*asset, error) {
1049         bytes, err := runtimeSyntaxDartYamlBytes()
1050         if err != nil {
1051                 return nil, err
1052         }
1053
1054         info := bindataFileInfo{name: "runtime/syntax/dart.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1055         a := &asset{bytes: bytes, info: info}
1056         return a, nil
1057 }
1058
1059 var _runtimeSyntaxDockerfileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\x6f\x8b\xda\x40\x10\x87\xdf\xe7\x53\x6c\xa3\x78\xa6\x70\xf6\x7d\x28\x48\x4c\xf6\xce\x60\xcc\x4a\x12\xaf\x39\x1c\x0f\xb6\xc9\xb4\x17\xd4\x24\xec\xee\x51\x0e\xe6\xc3\x97\xd5\xf3\x94\xfe\x81\x42\xf3\x6e\x26\x33\xbf\xe7\xd9\xf9\xd6\xec\xd1\xbc\xf6\xe8\xb3\xba\xab\x76\xa8\x6c\xed\x38\x35\x1a\xac\x8c\xef\x30\xc6\x98\xed\xb4\xf2\x80\x3e\x73\xc7\xd1\xfb\xcc\xe6\xe9\xd3\xf6\xe3\x90\x00\x26\x97\xbd\xa1\xe7\x3a\x8e\x7a\xd9\xa3\x3e\x6d\x0e\x06\x6c\x81\xaf\x3f\x3a\x55\xeb\x63\x7d\xcb\x76\xa7\xd2\x46\x4d\x1b\xef\x69\x7c\x97\x89\x25\x2d\x83\x38\x2d\x82\x38\xe5\x19\x65\xeb\x94\xc2\x65\x44\x49\x30\xe3\x09\xf1\x72\x25\x72\x4e\x3c\x7d\xa0\x20\x8a\x28\x14\xab\x47\xe2\x69\x91\x3d\xae\x44\x9c\x16\xf4\x20\x92\xf5\x92\xd3\x3a\xe7\x19\x7d\x11\xd9\x22\x8a\x33\x12\xe9\x6c\x1d\x27\x11\x05\xd9\x3d\xcd\x79\x90\x14\xf3\x70\xce\xc3\x05\xe5\x85\x58\xe5\xf1\x7d\x1a\x24\x94\xcf\x79\x92\x78\x9b\x8d\xaf\x7b\x59\xa1\xbf\xdd\xba\xce\xd1\xee\xe8\x3b\x53\xb2\xda\xa1\xd1\x6c\xc4\x7a\xa9\xb0\x35\xcf\xa8\x9b\xb3\xbd\x36\xd2\xe0\x01\x5b\x63\xfd\x01\xc6\x04\xe0\x11\xc0\x86\x00\xb6\xde\x75\x4a\xd4\xbd\x7c\xdd\x23\x93\x87\x1e\x95\x96\x6d\x7d\xde\xef\xb1\x6a\xe4\xde\x67\xee\x68\x74\x3d\x1e\x76\x07\x9b\x7a\xc6\x54\xa7\xd2\x7f\x1b\x60\x96\xab\x2c\x73\xe0\xbe\xb7\xb0\xb5\x47\x1c\x5e\x1a\x57\x67\x3f\x7f\xb7\xcc\x74\x75\x67\x5d\x0b\x11\x09\x2a\xcb\x92\xee\xe2\x72\xc9\x3d\x7f\xfa\x46\xb7\xac\x56\x1b\xd9\x9a\x89\x36\xaa\x69\xbf\xff\xce\x04\xf7\x57\xe8\x78\xfa\xf9\x03\x00\x80\x77\xfd\xeb\x8f\xf8\x4b\xf8\xe9\xe1\xe1\xb3\x54\x36\x12\x00\x26\xff\x6e\x70\xf3\x57\x81\x9b\xff\xe3\xff\x0c\x00\x00\xff\xff\x9f\xe0\x5f\x76\xfb\x02\x00\x00")
1060
1061 func runtimeSyntaxDockerfileYamlBytes() ([]byte, error) {
1062         return bindataRead(
1063                 _runtimeSyntaxDockerfileYaml,
1064                 "runtime/syntax/dockerfile.yaml",
1065         )
1066 }
1067
1068 func runtimeSyntaxDockerfileYaml() (*asset, error) {
1069         bytes, err := runtimeSyntaxDockerfileYamlBytes()
1070         if err != nil {
1071                 return nil, err
1072         }
1073
1074         info := bindataFileInfo{name: "runtime/syntax/dockerfile.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1075         a := &asset{bytes: bytes, info: info}
1076         return a, nil
1077 }
1078
1079 var _runtimeSyntaxDotYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6b\xdc\x30\x10\xbd\xfb\x57\xb8\x26\x07\x2b\xb0\xc9\xdd\xb4\xf5\xa1\x1f\x50\x68\x49\x29\x2d\xec\x41\x10\xc6\xd6\xc4\x1e\x22\x4b\x66\x34\xdb\x65\xcb\xfc\xf8\x22\x2b\x4d\x37\xe9\xa1\x85\xea\x24\x69\xe6\xcd\x7b\xf3\x66\xee\xc8\xa3\x9c\x56\xec\x6a\x17\xa5\xaa\x1c\x0a\x8e\xd2\x55\x75\x5d\xd7\x39\x14\x60\xc1\xae\x6e\xac\xbd\x6a\x5d\x14\x9d\xbe\x9b\x8b\xa6\xaa\xf8\xe0\x31\x95\xa4\x5d\x5d\xd0\x75\x4e\x1a\x5a\x47\x13\xc3\x3a\x2b\xba\x09\xb5\x5c\x43\x74\xa8\xe9\x30\x6c\x2f\x63\xed\xd0\x3c\x00\x93\x80\xe0\x82\x41\xba\x82\x05\xe6\x78\x6c\x67\x04\xa7\x89\x7e\xa0\x0a\x90\x37\xda\x0e\x93\xde\x91\xf7\x7a\x17\x83\x98\x7e\x8c\x3e\xb2\x8e\x18\x04\x59\xc7\x18\x92\x30\x50\x10\x75\x38\x46\x06\xc1\xcf\xea\x88\xd5\x51\x92\xc8\x42\x31\x6c\xb0\x36\xb7\xb1\x15\x35\x9a\xeb\xb7\xa3\xa7\x55\x3d\x0c\xe8\xf3\x07\x4d\xb3\x94\x57\x0b\x61\xf2\xb8\xc1\x21\x8c\x58\xc0\x85\xf2\x77\x09\xd3\xab\x87\x13\x72\x9b\x4c\xaf\x0b\xf0\x44\x41\x97\xd1\xd3\x42\xa2\x0b\x05\x8f\xa1\x24\xe7\xc6\x13\xae\x1a\x52\x89\x45\x76\xc8\x14\x26\x8d\x4c\x18\x04\x36\x79\x2b\x4c\xd8\x3a\x62\xd3\xeb\x8a\x4c\xeb\x8c\x4c\x98\x74\x8d\x2c\xb7\x9b\xa4\xdb\x47\x31\x0c\xe1\x3e\xa7\x6a\xc2\xd5\xf4\xca\xb9\x80\x32\x4e\x07\x0f\xac\x1c\xb3\x9b\x9a\x60\xc1\x62\x61\x71\x2f\xcd\xb0\x62\x9b\x27\x69\x7a\x4d\xe4\x30\x15\x6f\xd3\x3d\x1e\x35\xc9\xc9\x17\x9b\x9f\x18\xf2\xed\xcb\x47\x3d\x16\x53\x8e\xe4\xe4\xe9\xcc\x4e\xcb\x10\x7d\x57\xd7\xcd\x2b\xdd\xbd\xd6\xdd\xae\xa9\x1e\x22\xdb\x2c\x20\xc8\x55\x92\xdc\x64\xd9\x8e\x7c\x92\x00\x6f\x23\x6e\x9a\xc7\x3f\x0c\xae\xab\x9b\xb6\x7f\xf9\xc2\x5a\x6b\xcd\x79\xe8\x6c\xb7\x7e\x9d\xf3\xe2\x2b\x8e\x04\xfe\xcd\x0c\xbc\x6d\x8d\xb5\x57\x67\x0a\x96\x6d\x9b\xfe\x60\xbe\xbe\x7e\xce\x7c\xf1\x17\x3e\x89\x2e\x66\x81\x5f\x6f\xde\xde\xe8\x7e\xbf\xd7\xf7\x1f\xf6\x9f\xde\x99\xae\xff\x07\x32\x6b\x2f\x9f\xd3\x59\x7b\x79\xfd\x1f\x8c\x3f\x03\x00\x00\xff\xff\xda\xd1\x1e\x44\xa4\x03\x00\x00")
1080
1081 func runtimeSyntaxDotYamlBytes() ([]byte, error) {
1082         return bindataRead(
1083                 _runtimeSyntaxDotYaml,
1084                 "runtime/syntax/dot.yaml",
1085         )
1086 }
1087
1088 func runtimeSyntaxDotYaml() (*asset, error) {
1089         bytes, err := runtimeSyntaxDotYamlBytes()
1090         if err != nil {
1091                 return nil, err
1092         }
1093
1094         info := bindataFileInfo{name: "runtime/syntax/dot.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1095         a := &asset{bytes: bytes, info: info}
1096         return a, nil
1097 }
1098
1099 var _runtimeSyntaxErbYaml = []byte("\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")
1100
1101 func runtimeSyntaxErbYamlBytes() ([]byte, error) {
1102         return bindataRead(
1103                 _runtimeSyntaxErbYaml,
1104                 "runtime/syntax/erb.yaml",
1105         )
1106 }
1107
1108 func runtimeSyntaxErbYaml() (*asset, error) {
1109         bytes, err := runtimeSyntaxErbYamlBytes()
1110         if err != nil {
1111                 return nil, err
1112         }
1113
1114         info := bindataFileInfo{name: "runtime/syntax/erb.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1115         a := &asset{bytes: bytes, info: info}
1116         return a, nil
1117 }
1118
1119 var _runtimeSyntaxFishYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5b\x73\x9b\x35\x13\xbe\xcf\xaf\x78\xe3\x64\xbe\xda\xed\xe7\xd0\x96\xb6\x03\xa1\x10\x98\x42\x67\xb8\x80\xde\x70\x91\x21\x4a\x83\x2c\xed\x6b\xa9\xd6\xa9\xd2\xca\x76\xe8\xd3\xff\xce\x48\x76\x42\x4f\x14\x32\xd1\xc1\xda\x57\xcf\xee\x3e\xbb\xda\x1d\xad\x23\xbe\x4e\x74\x3a\x8c\xb6\x98\x83\x03\x4d\x4c\x8a\x4f\x0f\x86\x61\x18\x9a\x2c\x48\x4f\xa7\xc3\x44\x88\x93\x26\x3f\x9e\x74\x81\x21\xa9\x29\x9f\x0e\x93\x97\x47\x87\x27\x77\xbf\x98\x52\x58\x0f\xf7\x66\x67\xed\x8b\xe9\x80\xe3\xd9\xe4\xe0\x20\x57\x47\x65\x07\x33\x0c\x47\xc3\xaf\xd5\x2f\x28\x97\xfe\x7b\x3e\xa8\x18\x0a\xcb\xc0\x1d\x78\x71\x71\x7f\xfe\xf5\xe5\x3d\x21\x16\x93\x83\xdb\xef\x9f\xc5\xa0\x2d\xdb\x18\xa4\x2b\x83\x0c\xba\x5d\xe1\x1c\xdd\x30\xba\xb8\xd9\xa3\x14\x96\x4c\x9e\x6e\x60\xa6\x32\x68\x2c\x68\x69\x03\x16\x99\xe4\x0a\x4a\x16\x42\xbb\x67\x43\x25\x90\x2b\x04\x0a\x1a\x63\xcc\x18\x6b\x50\x0d\x1d\x76\x84\x0d\x08\x91\x11\x33\x32\x71\xcd\x01\x85\x1c\x29\x46\x31\x76\x64\x94\x8d\x65\x65\xb0\x31\xd6\xd1\xac\xdb\xb8\x57\x9e\x48\x59\xe9\x4e\x87\xc9\x54\x88\x37\x10\xe2\x2d\x84\x98\x42\x88\x19\x84\xf8\x06\x42\x5c\x42\x88\x0b\xfc\x01\x21\x84\x80\x10\xc7\x78\x8a\xef\xf0\x12\x87\xf8\x16\xff\x83\x10\x98\xbd\xe3\xed\x73\x5b\xcc\xa0\xa2\xf7\x32\xe8\x1b\x8e\x76\x41\xe9\x8e\x2d\x96\x58\xd8\xe6\x9c\x8b\x6a\xb5\x73\x2e\x45\x1b\x18\x8b\x6a\x1d\xdb\x00\xa5\xa1\x62\x0d\x8c\x3d\xc6\xcd\xea\x6c\x68\x0c\xf8\xe4\x88\x09\xda\x66\xd3\xa6\x02\x52\x26\x82\xbc\x65\xd0\x5a\x3a\xd0\x96\x14\x68\x6b\x19\xe3\x12\x2d\x88\x7d\xba\x52\x31\x8c\x76\x77\x70\x65\x35\x05\xde\x6d\x93\x5c\x52\xde\x6f\x73\xf4\x69\x7f\x9c\xed\xd2\xf0\x7b\x27\x35\x69\xc9\x74\xb5\xd7\x6f\x63\x28\xfd\x5c\x77\xf6\x69\xb7\x14\xb9\xa6\xdb\x68\x14\x18\x72\x09\xc6\x16\x8e\xf9\x1a\xaf\xe2\xa2\xc0\x4b\x36\xf0\xd6\x93\x5e\x20\xd0\x96\x35\x62\xa2\x80\x14\x93\x46\xca\xb4\xd6\x48\xa5\x2e\x90\x6a\x03\x4e\x1b\x8d\x2c\x83\x8e\x1e\x99\xa4\x46\x21\x6e\xe3\x4a\x45\x17\x33\x4a\xac\x59\x11\x5a\xda\xd4\x82\xc2\xd9\x86\x25\x38\xcb\x84\xc6\x35\xaa\xb3\x8d\x91\xea\x65\x59\x61\x2d\x33\xe9\xd9\x87\x39\xe9\x7d\x0c\x83\xb3\xa1\x6e\x3f\x13\xad\xe9\x12\x76\x39\x3b\x93\x9b\x15\x16\xb2\x18\x68\xd9\x09\x0d\x1a\x42\x6c\xde\xdc\xff\xff\xa3\xb7\xcb\x4c\x09\x2b\xeb\x5c\x9f\xa4\x73\xb7\x12\x47\xa5\xb9\xbc\x22\xa4\x2e\x2f\xa4\x51\x0c\x58\xe6\x8f\x6c\xc9\x54\xd9\xba\xf2\xb9\xb4\x91\x85\x9e\x3c\x6a\x46\xf4\x57\x0c\x25\x19\xca\xa8\x18\xa0\xcc\x32\x27\x28\xe3\xa3\x86\x32\x71\xd3\x4e\x72\x8c\x0c\xb5\x2a\xd5\xf7\xec\x81\x4a\x50\x25\x39\xcb\x50\x95\xd1\x22\x09\xad\xa1\xc7\x96\x41\x6d\x74\x4e\x4b\xdb\x75\x70\x5d\x41\x61\x0d\xda\xa6\x96\x7f\xb4\x4d\x19\xa3\x54\xdc\xde\x9a\x6c\x2f\x6f\xf4\x8c\x31\x3a\x8d\x56\x3b\x60\x62\x61\xab\xd1\xfe\x5b\x25\x70\x0e\xaf\xa2\x0d\x70\x36\xac\xe0\x02\x5c\x5c\x76\x50\x57\xe0\xf5\xe3\x66\x92\x5f\x35\xb5\x7e\x35\xda\x31\xc2\xaf\x42\xd4\xf0\x2b\x26\x9f\xe0\xd7\x08\x56\x11\x82\x43\x88\xa6\x26\x84\x94\xa3\x42\xa8\xbe\xa9\x8c\x1a\x49\x16\x26\x24\xc9\x46\x99\x15\x92\x0d\xab\x6b\xa4\x8c\x94\x6d\xe0\x66\x72\xdf\x8c\x48\xbc\xdd\xe5\x0f\x49\xdd\xed\xc8\x24\x5d\xbb\x85\xec\x91\x7d\x53\x9f\x6b\x68\xec\x15\x7a\x8d\x69\x31\xf2\x01\x8a\x91\x0f\x1f\x3e\xea\xcb\xe3\x27\x6d\xf9\xf2\xab\xfe\xeb\xf1\x83\x87\xb3\x66\x75\x31\xb9\x07\xb0\x8e\x28\x8e\x28\xa1\xc4\xcc\xd8\xb1\xda\xd2\x10\x85\xf5\xa2\x09\x99\xaf\xd1\x2f\x5c\x07\x05\x96\x6d\x58\x07\x26\x02\x53\x61\xb0\xf5\xd4\xa7\x58\x19\x1c\xab\x32\xe0\x0c\xce\x95\xda\x14\x54\x0b\x0e\x77\xec\x06\x54\x3b\x77\x35\xec\x63\x51\x83\x7d\x8d\x1a\xba\x4f\xb5\x50\x2e\x58\x37\x67\x36\x0a\x1b\x13\xdb\x90\xde\xe2\x9a\xca\x47\x19\x76\x5b\x81\x87\xd1\xc9\x65\xf9\x44\xd5\x9d\xcf\x2f\xe4\xfc\xcf\xf9\xe5\xbd\xc9\x27\x4b\xf2\xd0\xc5\x4d\xba\x17\xf7\x2a\x62\x47\xdb\x7b\xc7\xf4\xcc\xce\x84\x38\x16\xe2\xcd\x59\xeb\x00\x3f\xcc\x7f\xbf\x3a\xfc\xfe\xe8\xf8\xee\xd9\xbc\x35\x83\xb7\x67\xb7\xb7\x6e\xba\xc5\xc9\xee\xc9\xde\x34\x95\xa1\x69\xcb\x5d\xd3\x64\x72\x7b\x46\x41\x77\xec\xa7\x87\xad\xf0\xce\xde\x15\xbd\xd7\x92\x76\x7f\xef\x82\xef\x0a\xfa\x33\x23\x73\x37\x5e\x88\x93\xff\x6e\xc1\x9d\x7f\x34\xe0\xce\x87\xfa\x87\x8b\xcb\xbf\x61\x7d\xe7\xea\x23\xb8\xa3\x0f\xe1\x8e\xff\xc5\x0b\x8e\x3a\x36\xad\xbf\xbd\xf8\xf1\x05\xce\xcf\xcf\xf1\xfc\xe7\xf3\x5f\x7e\x9a\x9d\x36\x12\xff\x0a\x00\x00\xff\xff\x85\x19\x5e\xc1\xe2\x07\x00\x00")
1120
1121 func runtimeSyntaxFishYamlBytes() ([]byte, error) {
1122         return bindataRead(
1123                 _runtimeSyntaxFishYaml,
1124                 "runtime/syntax/fish.yaml",
1125         )
1126 }
1127
1128 func runtimeSyntaxFishYaml() (*asset, error) {
1129         bytes, err := runtimeSyntaxFishYamlBytes()
1130         if err != nil {
1131                 return nil, err
1132         }
1133
1134         info := bindataFileInfo{name: "runtime/syntax/fish.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1135         a := &asset{bytes: bytes, info: info}
1136         return a, nil
1137 }
1138
1139 var _runtimeSyntaxFortranYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x96\x4b\x8f\x23\xb5\x13\xc0\xef\xf3\x29\x7a\xb3\xfb\xff\xef\x64\x61\x1b\x2e\x1c\x08\xa0\x11\x5a\x58\x89\x03\x1a\x84\x38\x8c\x94\x0e\x91\x63\x57\x77\x8a\x71\x97\x3d\x76\x79\x26\x81\xe2\xbb\xa3\x72\x67\x1e\xcb\xee\x26\x7b\x20\x52\x5c\xfd\xb0\x7f\xae\x72\xbd\xba\x47\x0f\xbc\x8f\xb0\x68\xfa\x90\x38\x19\x3a\x3b\x73\xc0\x60\x79\x71\xd6\x34\x4d\xa3\xaf\xc9\x8c\xb0\x68\x66\x5d\xd7\x9e\x2f\xdf\xf6\x2b\xd1\xe1\xeb\x2f\x27\xf1\x55\x15\xcb\xcb\xb0\x5a\xfe\x9a\x56\xf3\x17\xb3\xb3\xb3\x54\x3c\xe4\x69\xf5\xeb\x66\x42\x37\xb3\xf3\x0b\x9c\x77\xdd\xe6\xdc\x58\xc6\x40\x62\xdc\xad\x21\x0b\x62\xbc\xd7\x7f\xb0\x86\xcd\xc6\xc3\xfd\x35\x38\x31\xb4\x17\x13\x43\xe6\x14\xe2\x16\x74\xed\xec\x63\xc8\x18\x81\x9c\x98\x8c\x59\x4c\xce\x38\xd0\x41\x8c\x40\xac\x97\xc1\x62\x45\xda\xad\x49\xc6\x32\x24\xb1\x61\x1c\x03\x1d\x83\xda\x30\x46\x0f\x3b\x71\x86\x8d\x38\xe8\x4d\xf1\x2c\x0e\x3c\x8e\xe2\x70\x04\xca\x6a\x85\x0b\x65\xe3\xa1\x89\x09\x2c\xea\x83\x63\x40\xf0\xa0\xfa\x18\x2f\x10\x33\xfa\x40\x02\x3b\x86\x44\xc6\x8b\x9e\xb1\xf4\x23\x4b\x1f\xd2\x58\x07\xc3\xb2\x2d\xc3\x51\xab\x71\x8c\x1e\x2d\xb2\x20\x59\x5f\x1c\x08\x92\x83\x9d\x20\xdd\x14\x4c\x7a\xc7\x30\x40\xaa\x92\xb8\x8a\xd4\x1b\x7b\x1c\x49\x9c\x90\x32\x5a\xc1\x90\xd9\xb0\x5c\x23\x39\xf1\x61\x40\x6b\xbc\x8c\xc1\x15\x0f\x42\x81\x40\xa8\x78\x2f\x81\xfc\x7e\xde\x75\x47\x80\x21\x42\x32\x1c\x92\x84\xa8\x5e\x37\x5e\xa2\xb1\xd7\x12\x4d\x32\x23\xa8\x1f\x62\xa8\x8a\x49\x0c\x19\x6b\x5c\xc4\x84\xb7\x86\x8f\x6a\x19\x53\x18\x92\x19\x25\x96\x8d\x47\x2b\x09\x8c\x97\x04\xb6\x0e\x25\x65\xbc\x05\xc9\xe0\xc1\x32\xb8\x35\x12\xaf\xd5\x88\x63\xbc\x87\xc9\x4a\xaa\xb3\x25\x97\x4d\x0a\x85\x91\x40\xf4\x1c\x4a\x9e\xd6\x1f\x00\x36\x50\x66\x43\xfc\x4e\x0c\x6e\xb2\x18\x8d\x2f\x31\xee\x8f\x92\xd9\x1f\x64\x7a\x88\x68\xd9\x20\xaf\x33\xfe\x09\x62\x35\xe8\x75\x6e\xa5\x36\x47\xa8\xd6\x87\x0c\x62\x03\xb1\x41\xca\x62\x43\x21\x16\x1b\xcb\x9a\x71\x04\xb1\x79\x8b\x3d\x6b\x84\xc2\xda\x90\xab\x0f\x4f\x22\x1d\x3c\x28\xe4\x70\x40\xce\xe2\x02\xaf\x63\x0a\xae\x58\x16\x08\x49\x20\x4c\xdc\xbe\xd0\x94\xab\x68\x3e\x49\x59\x34\xe4\x04\x37\xd6\x27\xc1\x8d\x82\x71\x93\x81\x05\xeb\xa9\xa0\x92\x31\x78\xa0\x81\xb7\x82\x7a\x93\xb7\x3d\x4f\xa3\x3d\xc9\xf6\x9b\x50\x34\x14\x81\xf4\xbf\xe6\x84\xa3\x8c\x86\xc7\xe2\x65\x34\x3b\xd8\xc5\x40\x1a\xe5\xa3\xd9\xf9\x60\x55\xdc\x6a\xc0\x42\x1a\x4e\x1f\xc8\x88\xf4\xb8\x1e\xa9\xae\x47\xaa\xeb\x6f\xab\x19\x5a\xfd\x3c\x66\x16\x02\x93\x40\x65\xf1\x1e\xfb\xfd\x49\x72\x88\x40\x12\x8d\x93\x98\x20\x2b\x3e\x26\xac\xe3\x74\xd6\xb1\x24\x90\x9b\x12\x18\x24\x19\x87\xbb\x93\xbc\x64\xc8\x85\x71\x4d\x65\xdc\x40\x92\xc3\x5d\x06\x70\x7a\x3d\x80\x66\x82\xab\xc3\x5d\x42\x85\x42\xf4\xf7\x09\x7f\x14\x0b\x79\x6b\xa2\xce\xbf\xab\xb1\x6f\x34\x81\xac\x21\xc9\x70\x53\x40\x8b\xf4\xf4\xbe\x16\xd6\x1a\xc0\x39\x1a\x8b\x34\x9c\x24\xe7\x58\x55\xca\x65\x94\xbc\xcf\x0c\xe3\xda\xfa\x60\xaf\x85\x4d\x1a\x80\x45\x9b\x4d\xee\x21\x4d\x17\x51\x43\x5d\x1d\x7b\x12\x5b\xa6\x60\x28\x54\x8b\xc9\x2d\x24\xec\xf7\x32\xd9\xcc\x48\x7b\xd1\x04\x97\x92\x41\xf6\xf0\x6e\xe2\x6a\x2e\xd7\x22\xbc\x78\x84\xb5\x86\x5c\x2b\xd6\x64\x10\x17\x04\x7c\x86\x3a\x5c\x60\x3f\xc9\xbb\x2d\x24\x10\xed\x2f\x40\xee\x42\xa7\x90\xbb\xc0\xfe\x69\x41\xf9\x10\x56\x67\x4d\x85\x45\x5a\xb8\xb9\x6d\xb5\xaa\x6b\xda\x63\x2f\x7e\x00\xf1\x03\x8b\xf7\x20\xde\xb3\xb4\x54\x27\xb4\x14\xb8\x3d\x85\x6d\x43\x6a\xd5\xb1\x60\xf8\x50\xe4\x9a\xaa\x3a\x6f\x81\x64\x52\xf5\x6e\x8b\x1e\xde\x35\x3b\x82\x45\xe3\x17\x4f\x9b\x1b\x31\x52\x01\xb1\x7b\xeb\x41\x60\x87\x2c\x43\xb8\xe0\x20\x09\xb2\x36\xba\x04\x5c\x12\x3d\xa1\x34\xcd\xf3\xcb\x43\x31\x6f\xde\x04\x1f\xd2\x3d\x7b\x3f\x6e\x82\x6f\xef\x0b\xfd\xa2\x99\x2d\xdb\xc5\x37\x9f\x7f\xf6\x4a\xbe\x7b\xd6\x75\xff\x5b\xc9\x17\xf2\x5a\xfe\xff\x08\xf9\xc5\x24\x20\xde\x02\x6b\x4b\xf9\x10\x69\x93\x8c\xbd\x06\xb5\x79\x79\x3e\xff\xeb\xef\x95\x74\xdd\x52\xba\x6e\xf5\x88\x68\xbe\x77\x4e\x5b\x6e\x4c\xc1\x42\xce\x21\x35\xda\xcd\x0d\xb9\xdc\x1e\x50\x87\x97\x8b\x66\xf6\xfb\x72\xb9\xd0\x68\x85\xc5\x6a\xf5\xea\xf9\xd3\x9b\x73\x07\xbd\xd6\xf7\xfb\xee\x79\x5e\x48\xb0\xa7\x8b\xb9\x83\x5e\x7d\x5c\xfd\x7f\x8e\xbd\x64\x98\xab\xd7\xee\x4c\x22\xa4\x41\x20\xa5\x90\xe6\xef\xf5\x82\x36\x6b\xeb\x1c\x16\x07\x25\x1b\xf5\x5e\x52\x2b\xba\xd9\xec\xe1\x19\x90\xab\x4e\xf8\xf6\x99\x76\xcd\xf9\xd3\x57\x4f\xbe\x99\xee\x7f\x4f\xe1\x93\x07\xdf\x6c\x4d\xaa\xdf\x61\x5d\xd7\x7e\xba\x06\x2f\x3f\xaa\xc0\xcb\xff\x66\xff\xb1\x06\xe9\x7b\xfb\x3e\xfb\xf7\xbe\x2f\x4e\x6c\xc7\xc1\x05\x55\xef\xb7\xcb\x1f\x2e\xe5\xea\xea\x4a\xde\xfe\x74\xf5\xf3\x8f\xf3\xc5\xc5\xec\xec\xec\x9f\x00\x00\x00\xff\xff\x3d\x9a\xb5\xa4\xa6\x0a\x00\x00")
1140
1141 func runtimeSyntaxFortranYamlBytes() ([]byte, error) {
1142         return bindataRead(
1143                 _runtimeSyntaxFortranYaml,
1144                 "runtime/syntax/fortran.yaml",
1145         )
1146 }
1147
1148 func runtimeSyntaxFortranYaml() (*asset, error) {
1149         bytes, err := runtimeSyntaxFortranYamlBytes()
1150         if err != nil {
1151                 return nil, err
1152         }
1153
1154         info := bindataFileInfo{name: "runtime/syntax/fortran.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1155         a := &asset{bytes: bytes, info: info}
1156         return a, nil
1157 }
1158
1159 var _runtimeSyntaxGdscriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\x6d\x6f\xdb\x46\x0c\xfe\xee\x5f\xa1\xba\xdd\x9c\xa4\x73\x56\xa8\x03\xb6\x79\xdd\xda\x2c\x69\xb0\x02\xeb\x1a\x2c\xee\x10\xcc\x32\x52\x5a\x47\xd9\xb7\x9c\x78\x2a\x8f\x8a\x93\x86\xfe\xef\xc3\x49\x8e\x63\xbb\x0d\xba\x01\xfb\xb0\x04\xa6\x78\xc7\xb7\x87\xe4\x23\x15\xd6\xa1\x5c\x57\x38\x48\xa6\x26\xe4\x6c\x2b\xe9\x74\x0c\x0a\xe6\x32\xe8\x24\x49\x92\x44\x3b\x41\x89\x83\xa4\x9b\x65\xfb\x53\xf3\xa8\xdb\xe9\x70\xed\x30\xb4\xe6\x87\xc9\xa4\xb6\x4e\xfa\x96\x12\x3f\xf9\x0b\x73\x09\xcd\x75\x3f\xc9\x3d\x05\x01\x92\x26\x6e\xb2\x43\xb5\x73\x1a\xd0\x15\x2a\x5c\xa3\x16\xe0\x02\xee\x66\xd9\xa4\xdb\xb8\x6f\xe4\x01\x11\xb6\x93\x5a\x30\xac\x6c\xb9\x77\x9e\x57\x29\xdb\x8c\xf7\x44\x17\x35\xe5\x62\x3d\xdd\xe2\xb0\x06\x49\x6c\x61\x91\x97\x48\x60\x12\x14\x72\x1f\x14\x82\x25\x05\x81\x56\xa4\x9a\xa3\x75\x9a\x3b\x28\x2b\xcd\x3d\x5d\x22\x8b\x46\xb7\xdc\x87\x99\x9a\x49\xea\x2c\x21\xb0\x1a\xcc\x6d\x09\x2e\xa8\xc1\x69\xca\x60\x14\x21\xa0\xe2\x55\xa5\x85\xf3\x20\x51\x7a\xd6\xa2\xf4\x46\x8b\xca\x87\xf8\x9c\x41\x98\xa9\x25\x51\x1b\x2c\x15\x6a\x03\x01\xa9\x43\xae\xb4\xcd\x99\x9a\x89\x3a\x0f\x46\x9d\x9f\x6a\x09\x57\x5a\x5a\xd2\x68\xc0\x20\xe7\x95\x4f\xb5\xf2\x73\xad\x18\x1b\x9f\x8a\x63\xa6\x46\x22\x73\xab\x30\xcc\x5b\x25\xb4\x0f\x51\x06\x93\x1a\x9c\x2a\x03\x99\x73\x06\x9a\x62\xab\x06\x44\xd3\x68\xbe\xb4\x1f\xda\x3b\xdb\xc8\x42\x97\x5e\xbe\x26\xa3\x8d\x5b\x1c\x4f\x68\x60\x86\xf7\x2c\x1a\x84\xe3\x2f\xbd\x04\xd6\x38\xb4\x48\x1a\x5f\xe8\x25\x70\x1a\x4d\x73\x84\x0b\xc6\x62\x73\x2b\xa1\xc2\xdc\x82\x4b\x4a\x94\x99\x37\x49\xe4\xd1\xbd\x7b\x39\x20\x5b\x42\xdc\xdc\x89\x83\x6b\x64\x5d\x9d\x87\x8c\xb8\xbc\xfb\xb9\x16\xf1\xa4\x87\x9e\x84\xbd\xd3\x5f\x86\xc3\x93\x43\x67\x91\xa4\x51\x7f\xc7\xf7\x35\x06\xd1\x57\x54\xd5\x4b\xf9\xf2\x32\x1a\x5f\x83\xa5\x5f\xbd\xaf\xf4\x37\x6f\xb0\x11\xe9\x91\x9e\xe6\x48\x18\x73\xeb\x69\x05\x62\xc1\xe9\xa9\x20\x94\x27\x88\xac\x27\x90\x5f\xa0\x6c\xa9\x6f\x8f\x4e\x74\x68\x4b\x64\x1d\xce\x11\x69\xb3\xd3\x38\x8d\xdb\xd6\xda\xd7\xa9\x69\xea\x0f\xcc\xc5\x73\xaa\xed\xf3\xe9\x66\x8c\xc1\xc2\x92\xbd\x97\xac\x91\xc9\xc9\x08\xfa\x1f\x0e\xfa\x7f\x9e\x3f\xe9\x7f\x3f\x7e\xdc\x4d\x56\xb1\x17\x78\x3d\xf7\x6c\x6e\x03\x83\x80\x60\x89\xab\xd7\x0d\xc8\x28\x44\x8a\x87\x48\xe3\x09\x23\x5c\xb4\xb2\xf2\x91\x3e\xb9\x83\x10\x99\x4d\x21\x72\x9c\xc4\x52\x8d\x8a\xce\x16\x8a\xae\x65\xb3\x67\x51\xbc\x12\x24\x13\xb4\x88\x84\xae\x29\x57\x5b\xa8\x25\x2d\xa1\x52\xf2\xa2\x9e\x18\xc1\x5c\xab\x67\xad\x62\x3a\x46\xa9\x99\x34\xd8\x29\x81\x8b\xbc\xd0\xf9\xcc\x3a\xd4\x6b\x8b\xce\x34\x9d\x27\x9d\xb5\xde\x73\xcf\x20\x9e\x57\x1d\xb4\x54\x19\x24\xdd\x17\xfb\x7b\xa3\x9d\x71\xf7\xce\xd7\x57\xb8\xe9\xba\xd6\xec\x68\x7f\xf0\xc3\x57\x8f\xf7\xf4\xc7\x07\x59\xf6\xc5\x8b\xb1\x3e\xd3\x9f\xf4\x6b\xed\xeb\x97\x6b\xf1\x15\x30\x92\xcc\x30\xe0\x27\x33\xec\xec\xde\x2c\xc6\x9a\x65\x23\xcd\xb2\xf5\xb2\x54\x97\x13\xe4\x4f\x7f\xcf\x46\xcd\x3e\x56\xdb\xbc\x33\xef\xb7\x51\xcb\x35\xb4\x6e\xfa\xe4\x2a\x2a\xd0\x2f\x0e\xfa\xc7\xe3\xbd\x38\x0a\xed\xed\xf7\x96\xa5\xd6\x62\x83\xb0\xa5\xe9\x60\x89\x20\x89\x30\xb9\x29\xd8\xed\xae\xee\x90\xcc\x20\xe9\xee\x3c\x7f\xf6\x20\xcb\xb2\x6c\x77\xdd\xb4\xf6\x59\xbe\xfd\x5b\x4f\xde\x0e\xf8\x70\x06\x2d\xba\x2c\x8b\xf0\xbe\x1d\xdf\x3c\x5d\xe8\xd5\xe8\xa0\x7f\x0c\xfd\x22\xc2\xbd\x49\x17\x5a\xaf\x9f\xbf\x59\xe8\xdb\xf5\xf3\x77\x8b\xdd\x7f\x0e\xbd\x77\x2f\xf2\xde\xff\x1b\xf8\xbb\x6d\xe0\xef\xb6\xf1\x26\xa3\xf1\x5d\xb6\xb2\x61\xd3\x47\x59\x1e\x6e\x67\x79\xf4\x99\xae\xc5\x1b\x1f\xa7\x34\x7c\x73\xf4\x46\xcf\xce\xce\xf4\xf8\xd5\xd9\xeb\x97\xbb\x83\xe7\xdd\xcf\xd6\xca\x9a\xff\xed\x82\xdb\xb7\xff\x75\xd5\x5e\xef\xa3\x15\x6f\x5c\xfd\xeb\x7a\x7f\x07\x00\x00\xff\xff\x2f\x0a\x6b\x45\x91\x08\x00\x00")
1160
1161 func runtimeSyntaxGdscriptYamlBytes() ([]byte, error) {
1162         return bindataRead(
1163                 _runtimeSyntaxGdscriptYaml,
1164                 "runtime/syntax/gdscript.yaml",
1165         )
1166 }
1167
1168 func runtimeSyntaxGdscriptYaml() (*asset, error) {
1169         bytes, err := runtimeSyntaxGdscriptYamlBytes()
1170         if err != nil {
1171                 return nil, err
1172         }
1173
1174         info := bindataFileInfo{name: "runtime/syntax/gdscript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1175         a := &asset{bytes: bytes, info: info}
1176         return a, nil
1177 }
1178
1179 var _runtimeSyntaxGentooEbuildYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x73\xdb\x36\x16\x7d\xf7\xaf\x60\x14\xcf\x86\x4c\x56\x9a\xbc\xc6\x9b\x5d\x8d\x56\xa2\x63\x4d\x14\x4b\x23\xc9\x89\xdb\x20\x71\x41\xe0\x52\x44\x0d\x02\x2c\x00\x5a\x76\x72\xf2\xdf\x3b\xd0\x87\xeb\xb4\x56\xdb\x87\x6a\x46\x12\xf1\x41\x9c\x73\xcf\x3d\xf7\xa2\x54\x9a\xc2\x5d\x43\x27\x09\x15\xad\xd2\xf2\xe8\x48\x52\x20\x11\x4e\x8e\x92\x24\x49\xe2\xaa\xe1\x35\x9d\x24\x1d\xc6\x7a\x94\x6e\xb6\x40\x68\xee\x7d\x76\xdc\x39\x3a\x72\xad\x26\xbf\xdd\xfa\x34\x19\x68\x9d\x84\x8a\x12\x1f\xb8\x91\xdc\xc9\xa4\xb1\x2e\xf0\x15\x25\x65\x6b\x44\x50\xd6\xf8\xcd\xc6\x6e\xa2\x24\x99\xa0\x4a\x45\xee\x24\xe9\x7c\xf6\x4e\x5c\xa5\xad\x69\xb8\xb8\x86\xb0\x75\xa3\x34\x41\x19\x1f\xb8\xd6\x08\xe4\x43\x86\xcf\xcd\xf5\xea\x2a\x15\xd6\x94\x6a\x05\x63\x4b\x0a\xa2\x82\xa7\xd0\x36\x48\x1b\x47\x68\xac\x0f\x59\x1a\xdf\x81\xab\xb3\xac\xb3\x81\x89\x8c\xce\xd4\xaa\xd2\x6a\x55\x85\xa4\xe0\xbe\x4a\x1c\x69\x1e\x48\x26\xfe\xce\x04\x7e\xbb\x23\xe3\x03\x0f\x54\x93\x09\x9b\x18\x8b\x54\x70\x4f\x90\x16\xd2\x1a\x02\x69\x55\x82\xb4\x27\x90\xe7\x02\x74\xab\x02\x4a\x85\xd2\x3a\xec\x83\x82\x2a\xa1\x0c\xb4\x15\x5c\xc3\x11\x97\x70\x14\x5a\x67\xe0\x49\x93\x08\xf0\x95\x2a\x03\x42\x45\x06\x41\xd5\x84\xd6\x04\xa5\xb1\xae\x62\x98\xc2\x9a\xa0\x4c\x4b\x28\x1c\xf1\xeb\x8c\xb1\xa2\xf3\x08\xab\x94\xb1\xaf\x60\xec\x1b\x18\x4b\xc1\x58\x06\xc6\xfe\x03\xc6\x3e\x81\xb1\x8f\xf8\x09\x8c\x31\x06\xc6\x8e\xf1\x1a\xff\xc3\x13\xfc\x17\xff\x02\x63\xc8\x1e\x3b\xa9\x9b\x12\x24\x4a\x38\xac\xd0\x62\x8d\x5b\x4c\x0e\x81\x76\x53\xfa\x05\x86\xb0\x0a\xd0\x01\x2b\x82\x26\x78\x18\x7c\xf9\xed\x85\xef\x15\xbe\xe1\x4e\xf1\x42\x93\x4f\x7a\xbd\x5e\x62\xcb\x52\x09\xc5\xf5\xbd\x07\xac\x21\x9f\x28\x93\x38\x92\xff\x4e\xb8\xd6\x89\x0d\x15\xb9\xcd\x54\xe1\x36\x07\x38\x92\x3b\x1e\x8d\xa3\xc6\x59\xb1\x49\xc8\x31\x63\x5f\xfb\x1f\x79\xf7\xcb\xa0\xfb\xe3\xd5\xcb\xee\xab\x4f\x2f\x18\xfb\xd6\xbf\x67\xdc\x50\x44\xd9\xa5\x6e\x30\x1f\x9e\xe1\x6c\xfa\x2e\x9f\x0d\xde\xe4\x18\xe5\x8b\xe1\x7c\x3c\x5b\x8e\xa7\xe7\x18\x5f\x2c\x72\x2c\xe6\xc3\xab\x8b\xf9\x18\x93\xf1\x30\x3f\x8f\xe3\xc9\x74\x89\xb7\xf9\x0f\x1f\xa6\xf3\xd1\x02\xa7\xe3\x49\xbe\x18\x8d\xe7\xf8\x30\x9d\xbf\x8d\xff\xe9\x0c\xf3\xac\x3f\xca\x67\xf9\xf9\x08\xb3\xf9\xf4\xfd\x78\x94\x63\x34\x5e\x2c\xe3\xe2\x3c\x5f\x2c\xe7\xe3\xe1\x12\x17\x8b\x7c\x3e\x19\x9c\x8f\xbe\xd3\xf1\x3b\x56\x0b\x8c\xb0\xc4\xec\x3d\x66\xa7\x98\x61\x76\x8e\x41\xdc\x0b\xc6\x8a\x61\x7a\x79\x99\xf5\x4f\x27\x83\x37\x8b\xdd\xcc\x64\xf4\x70\x34\x4c\xcf\xa6\x8b\x25\x96\x83\xf9\x9b\x7c\x89\xff\x5f\x8c\x27\xa3\x43\xea\xef\x65\x16\xb6\xae\xb9\x91\x8f\x56\x1a\x63\x45\xeb\x29\xbd\x4a\xd7\x2a\x54\x20\x13\xb3\x95\x65\x7d\xc6\x8a\xe4\xe3\x93\xad\xc2\x2f\xbb\xaf\xae\x5e\x24\xdd\x4f\xcf\xa1\x4c\x45\x4e\x85\xde\xf3\xc7\xcc\xc1\x58\x41\x69\x41\x2b\x65\x40\x46\x46\x1b\x97\xf7\x25\x5b\xf3\x6b\xc2\x9a\x3b\x03\x65\x4a\x6b\xfa\x20\xe7\xac\x83\xb6\x2b\x34\x3c\x16\xae\xa1\x75\xba\x72\xb6\x6d\xd0\x7a\x72\xd9\x21\x03\x32\x56\x48\x45\x3b\x25\x0e\xf0\x8e\x4b\x3b\xa2\xbb\x51\xc5\xfd\xee\x29\xad\xb8\x47\x11\xfb\xc7\xd5\x0d\x39\xaf\xac\xd9\x9f\xb5\x69\x35\x87\x51\x53\x69\x23\xc7\x4d\x43\x81\xef\x17\xca\x40\x5a\x01\xad\x8a\x94\xb1\x9e\xb7\x60\xac\xc7\x33\xd4\x7c\x1b\x21\xe8\x36\xf6\x2b\x15\xb6\x3a\x48\x90\xb9\x91\x68\x78\x8d\x9a\x4c\x0b\x25\xac\xf9\xb3\x10\x6d\xda\xdc\x85\xca\xc6\x76\x21\x21\x95\x43\xc5\x9d\x84\xbf\xab\x51\x85\x5a\xe3\x67\xee\x50\xdb\xbd\x61\xae\x89\x1a\xa9\xdc\x81\xe3\x62\xd9\x70\xad\x53\x69\x85\xdf\x52\x8b\x1c\x7d\x70\xaa\xc9\x10\x17\xd3\xcd\xa4\x56\x45\xfc\x32\xd6\x4b\xbd\xc5\x2e\x92\xed\xae\xc3\x8a\x88\x98\xdf\x18\x6a\xa6\x4c\xb0\x3b\x3a\x65\x6a\xd7\x86\x9c\x47\x43\xae\xf6\x7b\x92\xe9\x56\x10\x1f\xa3\xc9\x6c\x13\xfc\x01\xcb\x46\xab\x5a\x73\xef\xd8\xa4\xf5\x24\x63\x3b\xd8\xde\x43\x7b\x07\x6f\xef\xa6\xc8\x22\x1a\x6b\x0f\x21\x78\x80\x90\x10\x55\x6d\xe3\xaf\x5d\x1b\x88\x06\x24\x2a\x1b\xe5\x07\xdd\xc6\x7a\xc0\xca\x51\x03\x4d\x01\xda\xa0\xbe\x8e\xe2\xd6\x37\x70\xf5\x46\x6a\x4f\x01\x81\x3b\x04\xdb\x8a\x0a\xad\xf1\x14\xb6\x69\xda\xe1\x0a\x1b\xfd\x6c\x42\x2f\x2a\x63\x56\x27\xbb\x00\x92\xa8\x8d\xdb\xe8\xd2\xe9\xdc\xcf\x91\x91\xb1\x4f\xf7\x5f\x3f\x89\xcd\x38\x7b\xb8\xf4\xe0\x86\xdc\x7f\x1e\x1e\xbe\xed\x14\xc3\x8a\x6f\x0b\x94\xb1\xde\xdf\x67\xf0\xec\x20\x81\x67\xff\x0c\x7e\xbd\xb1\xc0\x1f\x70\x9f\xfe\x1e\xf7\xf8\x2f\xe0\x82\x95\x36\xd2\x5b\x4e\x47\x53\x5c\x5e\x5e\xe2\x74\x7c\xf9\x2e\xcf\x4e\xfa\x9d\xa3\xa3\x5f\x03\x00\x00\xff\xff\x39\xb1\x45\xee\x80\x08\x00\x00")
1180
1181 func runtimeSyntaxGentooEbuildYamlBytes() ([]byte, error) {
1182         return bindataRead(
1183                 _runtimeSyntaxGentooEbuildYaml,
1184                 "runtime/syntax/gentoo-ebuild.yaml",
1185         )
1186 }
1187
1188 func runtimeSyntaxGentooEbuildYaml() (*asset, error) {
1189         bytes, err := runtimeSyntaxGentooEbuildYamlBytes()
1190         if err != nil {
1191                 return nil, err
1192         }
1193
1194         info := bindataFileInfo{name: "runtime/syntax/gentoo-ebuild.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1195         a := &asset{bytes: bytes, info: info}
1196         return a, nil
1197 }
1198
1199 var _runtimeSyntaxGentooEtcPortageYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x8b\xdb\x30\x10\xc5\xef\xfe\x14\xc2\x9b\x43\xfe\x20\x77\xa1\x21\x74\x45\x92\x65\xd9\x6b\x7b\xec\xa5\xb6\x5b\xc6\xf2\xc4\x11\x91\x25\xa1\x91\xdb\xa6\x0c\xfb\xd9\x8b\x9b\xcd\x1f\x96\xa5\x86\xc1\xcc\xa0\xdf\x7b\x8f\x61\x76\xc6\x62\x3a\x06\x54\x02\x93\x96\xc1\xc7\x04\x1d\x66\x59\x8b\x09\x75\x52\x99\x10\x42\x8c\x4f\x1c\xf4\xa8\x44\x5e\x55\xc5\xf4\x80\xc7\x5f\x3e\xb6\xc4\x3d\xd0\x81\x07\x77\xfa\x11\xce\x26\x79\x96\xc5\xc1\x22\x9d\xb0\x3b\xf1\x95\x50\xec\x2c\x74\xaf\x03\x29\xb4\x77\x94\xc0\xa5\xa2\xf1\xde\x16\x3b\xb0\x34\x8a\x96\xa5\xa2\x00\x1a\x55\x5d\x2f\xaa\x6a\xf1\x58\x82\xfc\xf3\x24\xbf\xdd\xcb\x87\x1f\xb2\x5e\xe4\xef\xb2\x29\x0e\x6f\x51\xf9\x1e\x77\x27\x3e\x9b\x03\xda\xa3\xf8\x89\x91\x8c\x77\xc2\x0d\x7d\x83\xf1\x92\x88\x02\x6a\x03\x56\x89\x5c\x96\xa5\x6a\x4d\x67\x92\xaa\xeb\x62\x3e\xbd\x51\xe6\xc9\xec\x2c\xf6\xa4\x35\x86\x84\xad\x80\xa8\xf7\x78\x51\x31\x2d\xba\x64\x76\x06\x63\xa1\x2d\x10\x8d\xc9\x5e\x64\xfd\x58\x55\xcd\x14\x6c\xd8\x03\x43\xdf\xae\x96\x0c\xb1\xe7\x7d\x08\xc0\x06\x56\x4b\xee\x4d\x20\x0e\x41\x8f\xb5\x5a\x32\x7d\x7c\xb8\x67\xda\x33\x05\x88\x9a\x7f\x7f\x5a\x8d\x25\x77\x0d\xb5\xb3\xaa\x6a\xf2\xff\x58\x5d\xa3\xbe\xba\xce\xcf\x79\x9f\x21\x61\xe7\xa3\xb9\x46\xa5\x04\x09\x7b\x74\x49\x89\xfc\xfb\x0d\x39\x2f\xe6\x1f\xce\xd4\x17\xa0\x83\x71\x9d\x88\xd8\x0d\x16\x92\xbf\x59\xd7\xb1\x6f\xbc\x7d\x8b\x4e\x37\xfc\xc2\x6b\x5e\x6f\x78\xb3\xe6\x2d\x6f\x37\xbc\xd9\x5e\x56\xf6\xec\xfb\xd1\xee\xe6\x06\xfe\xf5\xa7\x76\xfc\x28\x41\x1c\xd3\xdc\xe5\x97\x11\xba\x56\x89\x7c\x72\x1d\x9c\xce\x4a\x94\x75\xf6\x37\x00\x00\xff\xff\x3f\x79\x8b\x6b\xb0\x02\x00\x00")
1200
1201 func runtimeSyntaxGentooEtcPortageYamlBytes() ([]byte, error) {
1202         return bindataRead(
1203                 _runtimeSyntaxGentooEtcPortageYaml,
1204                 "runtime/syntax/gentoo-etc-portage.yaml",
1205         )
1206 }
1207
1208 func runtimeSyntaxGentooEtcPortageYaml() (*asset, error) {
1209         bytes, err := runtimeSyntaxGentooEtcPortageYamlBytes()
1210         if err != nil {
1211                 return nil, err
1212         }
1213
1214         info := bindataFileInfo{name: "runtime/syntax/gentoo-etc-portage.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1215         a := &asset{bytes: bytes, info: info}
1216         return a, nil
1217 }
1218
1219 var _runtimeSyntaxGitCommitYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\x4d\x6b\xe3\x30\x10\x86\xcf\xeb\x5f\x31\xd8\x81\xec\x26\x24\x7b\x57\x0f\xa5\xa4\x6d\xc8\x21\x04\xda\xf4\x50\xfc\x51\x14\x69\x62\x8b\xc8\x52\x90\x14\x42\xa8\xfb\xdf\x8b\x3f\x94\x86\x96\xd6\xd4\x27\x7b\x78\xe6\x99\xd1\x6b\x6d\x85\x44\x77\xda\x23\x81\x5c\xb8\x09\xd3\x65\x29\x5c\x10\x70\x74\xc8\x1c\x09\x00\x00\x6a\x42\xd1\x12\x09\x84\xb3\xd5\x72\xb9\x58\xbf\xdc\xdd\x2e\xd6\xcb\xc7\x79\xb5\xbe\x99\xfb\xf7\x30\x08\xcc\x41\xa2\x6d\x5b\x22\x98\x35\x22\x28\xd1\x5a\x9a\x63\x53\x9c\x80\xc8\x95\x36\xb5\x67\x3a\x0a\x2f\x38\x54\xce\x76\x04\x6b\x3f\x5b\x4b\xfd\x58\x47\x8d\x23\x10\x46\xe1\xb9\x84\x8a\x13\x08\x07\x1f\x85\x76\x30\xc4\x69\xe7\xbc\x17\x12\x81\x15\x54\xe5\xe8\xbd\x3b\x3c\x1d\xb5\xa9\xfb\xa2\x38\x26\x76\x4f\x19\x92\x34\xfd\xcb\x51\xa2\x43\x5e\x95\x9a\x8b\xad\x40\x5e\x29\x3c\x36\xe7\xad\x4c\x73\x64\xfe\x8f\x5c\xe0\x7e\xeb\xef\x74\x9d\x8d\xfc\x4c\xf9\x59\x3d\x98\xdf\xa4\x07\xeb\xf6\x24\x3e\xcf\x27\xe5\x0c\x65\x3b\xe4\xe7\xdf\xe6\x23\x40\x63\xb4\x21\x10\x66\xd1\x9f\x38\xfb\x7f\x3d\x22\x57\xaf\x6f\x49\x92\x24\xe9\x38\x49\xa6\x9f\x2a\x83\xaf\x43\xb3\xcb\xa9\xb3\x36\xdc\xe9\x28\x26\x69\x0f\xfa\xac\x0f\x06\x36\x86\x2a\x56\x00\x55\x1c\x86\x71\x36\x4c\xc7\xbf\x6d\xea\xe1\x57\xca\xd3\x71\x06\xbd\xf6\x33\xed\x43\x7b\x40\xa6\xa5\x36\x50\x50\x5b\x80\x3d\x95\x1b\x2d\x7d\x6a\x76\x8f\x4c\x50\xd9\xde\xc0\xf7\x00\x00\x00\xff\xff\x1d\x12\xa3\xa7\x2c\x03\x00\x00")
1220
1221 func runtimeSyntaxGitCommitYamlBytes() ([]byte, error) {
1222         return bindataRead(
1223                 _runtimeSyntaxGitCommitYaml,
1224                 "runtime/syntax/git-commit.yaml",
1225         )
1226 }
1227
1228 func runtimeSyntaxGitCommitYaml() (*asset, error) {
1229         bytes, err := runtimeSyntaxGitCommitYamlBytes()
1230         if err != nil {
1231                 return nil, err
1232         }
1233
1234         info := bindataFileInfo{name: "runtime/syntax/git-commit.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1235         a := &asset{bytes: bytes, info: info}
1236         return a, nil
1237 }
1238
1239 var _runtimeSyntaxGitConfigYaml = []byte("\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\xbd\xcc\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\xec\x05\x86\x2d\x26\xf1\x51\x0c\x20\xd1\x47\x23\xfb\x9d\xf3\xe4\x97\xc4\x2d\xd1\x27\x3e\xa5\x2f\x7e\x7c\x6f\xfb\x68\x00\x7b\x6b\x4d\xba\xf9\x81\x8d\x73\xda\xf6\x57\xa7\xaf\xf8\xb7\xe9\x97\x45\x64\x3b\x4d\xe4\xaa\x7f\x44\xc2\x86\x88\xa8\xcb\xb6\x27\x74\xad\x26\xcc\xf5\x8b\xd4\xae\xd5\xf5\x19\x5a\x57\x8e\xcf\xc9\xe5\x25\xf1\x7b\xa9\x78\xc3\x17\xe2\x58\x4e\xac\x4e\x70\x2c\x05\xeb\xd4\x4f\x00\x00\x00\xff\xff\xb1\xbf\x96\x64\x47\x01\x00\x00")
1240
1241 func runtimeSyntaxGitConfigYamlBytes() ([]byte, error) {
1242         return bindataRead(
1243                 _runtimeSyntaxGitConfigYaml,
1244                 "runtime/syntax/git-config.yaml",
1245         )
1246 }
1247
1248 func runtimeSyntaxGitConfigYaml() (*asset, error) {
1249         bytes, err := runtimeSyntaxGitConfigYamlBytes()
1250         if err != nil {
1251                 return nil, err
1252         }
1253
1254         info := bindataFileInfo{name: "runtime/syntax/git-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1255         a := &asset{bytes: bytes, info: info}
1256         return a, nil
1257 }
1258
1259 var _runtimeSyntaxGitRebaseTodoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x8f\xd2\x21\xa1\x32\x64\x28\x94\x7a\x6d\x97\xae\x5d\x43\x02\x8a\x75\x6e\x44\x6d\xcb\x95\x2e\xd4\xa1\xea\xbb\x97\x48\x89\x03\x41\x83\xb5\xdd\xe9\xfb\x3f\x09\xee\x1a\xd3\x12\x9f\x06\xaa\xf0\x69\xb8\x74\xb4\x57\x9e\x4a\xb6\xda\x16\x85\x26\xa6\x9a\xab\x02\x00\xce\x58\xaf\x3a\xaa\x20\xee\x38\x51\x14\xee\xd8\x92\x4f\xdc\x02\xaf\xb6\xeb\xa8\x67\x1f\xcb\x12\x75\x2a\xd3\xed\xf9\x78\x56\x8e\x2b\x88\x85\x98\x5a\xd4\xeb\x0a\xe2\xe1\xd6\x48\x42\x6c\xb6\x17\xe7\x47\x7c\x2e\xba\x54\xaf\xaf\x6a\xcf\x8a\x29\xca\x21\x76\x4b\x0a\xa4\x0d\xaf\xb0\x59\x97\x2f\xaa\x6c\xb6\xbf\xcf\xf2\x69\xfd\x27\x72\xec\x02\x58\x92\x44\xe4\xb3\xc0\xb2\x09\x8d\x19\x8f\xc3\x6c\x5b\x23\x91\x02\x79\xdd\x10\x06\x53\x7f\xcd\xb6\x0d\x12\x91\xcf\xcb\x5c\x70\xf4\x63\x9d\x9e\xad\x73\x12\x97\x44\x5e\xe8\x83\xff\x3e\x2a\x7f\x98\x2d\xf4\x12\x97\x44\x5e\x38\x06\x1a\xa9\x5e\x61\xb3\xc3\xf6\x71\xae\x74\x94\x88\x29\x31\xcd\xbc\xb6\xad\x75\x38\x28\x7f\x80\x3f\x75\x7b\xdb\x4e\x83\x1f\xa8\x36\xaa\xbd\x2d\x51\xda\x3a\xc3\x78\x7f\xbb\x32\x46\x53\xcf\xa6\x31\xe4\x2a\x88\xfb\x2f\xfc\x07\x00\x00\xff\xff\x3b\xd5\xb6\x74\xf5\x02\x00\x00")
1260
1261 func runtimeSyntaxGitRebaseTodoYamlBytes() ([]byte, error) {
1262         return bindataRead(
1263                 _runtimeSyntaxGitRebaseTodoYaml,
1264                 "runtime/syntax/git-rebase-todo.yaml",
1265         )
1266 }
1267
1268 func runtimeSyntaxGitRebaseTodoYaml() (*asset, error) {
1269         bytes, err := runtimeSyntaxGitRebaseTodoYamlBytes()
1270         if err != nil {
1271                 return nil, err
1272         }
1273
1274         info := bindataFileInfo{name: "runtime/syntax/git-rebase-todo.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1275         a := &asset{bytes: bytes, info: info}
1276         return a, nil
1277 }
1278
1279 var _runtimeSyntaxGlslYaml = []byte("\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")
1280
1281 func runtimeSyntaxGlslYamlBytes() ([]byte, error) {
1282         return bindataRead(
1283                 _runtimeSyntaxGlslYaml,
1284                 "runtime/syntax/glsl.yaml",
1285         )
1286 }
1287
1288 func runtimeSyntaxGlslYaml() (*asset, error) {
1289         bytes, err := runtimeSyntaxGlslYamlBytes()
1290         if err != nil {
1291                 return nil, err
1292         }
1293
1294         info := bindataFileInfo{name: "runtime/syntax/glsl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1295         a := &asset{bytes: bytes, info: info}
1296         return a, nil
1297 }
1298
1299 var _runtimeSyntaxGoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x94\x4f\x4f\xdb\x4c\x10\xc6\xef\xf9\x14\x8b\x81\x37\x76\xc0\x0e\xff\xc4\x4b\x2d\x68\x44\x69\x91\x38\xb4\x5c\xa8\x14\x35\x9b\x8a\xb5\x33\x0e\xab\xd8\xbb\xd6\x7a\x0c\xa4\x4c\xfa\xd9\xab\xb5\x0d\x98\xa0\x02\xed\xb1\x39\xc5\xbb\x8f\x9f\x67\xe6\x37\x93\x24\x32\x05\x9c\xe7\x10\xb2\xa9\xee\x74\x26\x80\x10\x63\xd8\x61\x8c\x31\x7b\xa3\x44\x06\x21\x73\x38\x0f\xa6\x7a\xcd\xe9\x74\x4c\x99\x42\x51\x5f\xaf\xb2\x13\xad\x26\x12\xa5\x56\x22\x2d\x98\x50\x13\x16\x6b\x85\x46\xa7\x2c\x49\xf5\x4d\xa5\xf1\x59\x91\x43\x2c\x45\x5a\x79\x44\x6e\x64\x40\xcc\x28\x16\x05\x90\xd5\x4a\x55\x02\x4d\x20\x11\x65\x8a\x34\xd5\x34\xd5\xa8\xc9\x08\x35\x05\x32\x80\xa5\x51\x1e\xe7\x91\x73\xef\x84\x02\x21\x03\x85\x8d\x17\xa4\x05\x50\xa2\x0d\xc9\x84\x8a\x1b\x89\xf1\x55\x5b\x9d\x1b\xc8\x8d\x8e\x1b\x6d\x2e\xe2\x99\x98\x02\xc9\x2c\xd7\x06\x6d\x76\x81\x74\x2d\x0c\xd9\xce\xa9\x40\x53\xc6\x48\x49\xa9\x62\x5b\xc5\x04\x12\x30\x24\x35\x8a\x27\xf1\xf3\x2c\xd2\x69\xa0\x73\x30\x02\xb5\x09\x99\x33\xf2\x37\xfa\xbd\xa3\xc3\xf7\x2b\x3f\xd7\xff\xa3\xef\x63\x0a\x8f\x9c\x4e\x25\xb6\x6c\x2e\xe6\x39\x14\xcf\x18\x8c\x84\xff\xe3\xd8\xff\xb6\xe5\xbf\x1b\xf7\x38\x77\x9f\x7a\x87\xcc\x71\x37\x89\xf3\xc0\xbb\x3f\xaf\xe7\x52\x75\x50\x0e\xa4\x42\xf7\x80\xb6\xf7\x69\x77\x87\xf6\xf7\xbc\x01\x25\xa9\x16\xe8\xd6\x4f\x14\xeb\x2c\x4f\xe1\xd6\xdd\xdf\xa3\xed\x9d\x03\xaf\x5d\x79\xdb\x45\x2a\xcc\xd1\x50\x34\x47\x20\x53\xaa\xaa\x77\xa9\xa6\x24\x15\x82\x49\x44\x0c\x14\x69\x9d\x52\x26\x72\x8a\xaf\x84\x22\x30\x46\x9b\x47\x33\xc6\x56\x57\xcf\xba\x59\x10\x04\x4c\x69\x64\x45\x69\x60\x93\x45\x25\x32\x61\x40\x75\x91\xd5\x24\x0b\x26\xaa\xd0\x41\xab\x80\x60\x06\xf3\x1b\x6d\x26\x4d\x21\xb5\xb0\x5d\x65\x35\x13\xa1\x30\xb0\x05\x34\x2a\x34\x25\x50\x22\xec\xa0\x95\x4c\x6b\xf5\x03\xe1\x0f\x46\xc4\x33\xc0\xe2\xe9\x7c\xa2\xe6\xd4\xc2\xe4\xfc\x8e\x38\x5f\x78\xce\x4b\x12\x97\x38\xf7\x5e\x96\x8c\x88\xf3\xb1\xd7\x8a\xfe\x52\x66\x11\x98\x7a\xe7\x6b\x80\xc5\x72\x17\xaa\x92\x34\x7d\x8c\xec\xc0\x37\x68\xeb\xd6\x7e\x11\x7e\x72\xec\x9f\x8e\x7b\xb6\x1d\xea\x06\xdd\xc6\xb7\xf5\x6e\x6d\x19\x36\x71\xcc\x6e\xbe\xa9\xb6\xde\x71\x1e\xce\x40\x59\x94\xee\xe0\x70\x85\x73\xce\xbd\xf6\x55\xeb\x37\x7a\xff\x69\x9b\xd7\xcb\x78\x72\x25\x6c\x75\xeb\x81\xf3\x36\xa1\x4d\x19\x89\x28\x51\x06\xaf\xbb\x9c\xf3\xea\x60\xfc\x07\x2f\x5b\x08\xff\x8f\xef\x76\x17\x74\x3b\x3a\xf6\x4f\x85\x9f\x58\x28\x77\x3b\x0b\x2a\xdb\xcf\x7b\x0b\xfa\xda\x7e\x3e\x58\x78\x6f\x07\xd4\xfd\x2d\x9f\xee\x2b\x78\xaa\x3d\x0f\x99\x13\x04\x1b\x6f\xec\xe9\xdf\x22\x77\xb9\x4c\xee\x72\x19\x18\x1b\x8d\x1f\xdd\xb2\xea\x7f\xf8\x99\x4b\xbf\xbf\x6c\xb3\xf6\x0a\x77\xd4\x13\x6d\xe7\x74\x71\xfe\xf1\x9c\x86\xc3\x21\x9d\x9e\x0d\x3f\x7f\xf2\xc2\x81\xf3\x7a\x18\xe7\xbd\xe5\x38\xce\x7b\xfd\xbf\x4f\xfc\x15\x00\x00\xff\xff\x21\xf3\xb1\x45\x0b\x07\x00\x00")
1300
1301 func runtimeSyntaxGoYamlBytes() ([]byte, error) {
1302         return bindataRead(
1303                 _runtimeSyntaxGoYaml,
1304                 "runtime/syntax/go.yaml",
1305         )
1306 }
1307
1308 func runtimeSyntaxGoYaml() (*asset, error) {
1309         bytes, err := runtimeSyntaxGoYamlBytes()
1310         if err != nil {
1311                 return nil, err
1312         }
1313
1314         info := bindataFileInfo{name: "runtime/syntax/go.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1315         a := &asset{bytes: bytes, info: info}
1316         return a, nil
1317 }
1318
1319 var _runtimeSyntaxGoloYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x6f\x73\x1c\xb7\xcd\x7f\xef\x4f\xa1\xe8\xc9\x53\xdb\xc9\x48\xcd\xdb\x6a\x92\x66\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\xca\x92\x55\x4d\xb6\x33\xd5\x8c\x48\x90\x4b\xfc\x21\x08\xfc\x80\xeb\x7c\x40\x19\x12\x9e\x1d\xad\x29\xd0\xa3\x47\x0e\x05\x5b\x39\x7b\x74\x74\x74\x74\x64\xdf\x22\xf4\x78\x76\x74\xbc\x5a\x9d\xda\xf7\x2f\x8f\x1f\x3d\xe2\x12\x30\x8f\x07\x4e\x8e\x46\xd6\xe3\xd5\xaa\x79\xd2\x95\xd8\x8a\xa7\xa8\x5d\x89\xfa\x74\xb5\x6a\x8e\xef\x9f\xc9\xc2\xa5\x15\x7d\x3e\x44\xe8\x7d\x7b\xd5\xfc\x82\xad\x68\x89\xc6\x75\xee\x20\x09\xf2\x02\x1a\xf6\xed\xb4\x9a\x4e\xbe\x06\xf6\xd0\x04\xd4\xab\x26\x23\xef\x8c\x7c\x40\x43\xf0\x59\x34\xa3\x28\x30\xc3\xa0\x3b\x6c\x85\x58\xa5\xa4\x80\xda\x43\x7a\x80\xeb\x6a\xab\x17\xcc\xc4\x7a\xd1\x27\x19\xf4\x05\x45\xd4\x57\xd4\xa3\x5e\xa5\x7a\xa5\x97\x98\x4b\x90\xc3\x74\x4a\xdb\x89\xea\xc0\x87\x89\xc6\x2a\x60\x5a\x54\x39\x23\x37\x84\xcf\x97\xd4\x8d\x76\x1c\x0c\xf1\x0e\xa3\xf8\xce\x23\x9f\xb6\x01\x72\x3e\x18\x05\x65\xdd\x63\x14\x4d\xbe\xbf\x63\xf7\x03\xc7\x7d\x14\xe4\x0e\x5a\xcc\xea\xfb\x14\xd0\x78\xb3\xe2\xb5\x60\x74\x59\x69\x87\xcc\xde\x61\xd6\x1e\xb6\xc8\x1a\x71\x7f\x19\xb3\x40\x6c\x71\x8e\xec\x3c\x3a\xc6\xe7\xea\x1a\x9f\x7f\x62\xcc\x66\x9b\xcf\xd5\x4d\x5e\x90\xc1\x1c\xdd\x05\x10\xc1\x88\x4e\x85\x7e\xb0\xa7\xb0\x8d\x1f\x21\xe9\x07\x88\x4e\x89\x2f\x42\xc6\x3f\xa3\xe8\x07\x7b\x14\x3a\xb8\x15\x52\x0a\x83\xa2\x97\x0d\xf2\x0c\x63\x78\xe4\xa2\xf1\x69\x84\x07\x1f\xd7\xca\xe0\xb3\xcd\xb1\x84\xe0\xbb\x41\x5b\x90\x76\xe3\xe3\x7a\x86\xbc\xc4\xd4\xfb\x8c\x16\x35\x8b\x22\x85\x51\xed\x59\xd1\x1d\x16\x10\x82\x42\x1c\x66\xbd\x80\x17\x0f\xc1\xff\x8a\xfa\x89\xfc\xd9\xcb\xc6\xc7\xe5\x86\x11\x9c\x66\x01\x16\xed\x26\x2d\x21\x34\xd0\x6e\x97\xa4\x14\x5f\xa1\x28\xc5\x85\xc5\x53\x6b\x8f\x12\x14\xe3\xc7\x82\x65\xce\xeb\x24\xf6\x51\x42\xd4\x3a\x57\x4f\xa0\x9a\xba\x10\xeb\xf4\x13\xe4\xbc\x27\x76\x9a\xb1\x2d\x8c\x2f\x6f\x6f\x31\x7e\x2c\x9e\xf1\x05\xc9\x8b\x12\xc2\xb4\xb4\xe8\x58\x0e\x09\xdd\x79\x4d\x22\x86\xb8\x36\x89\x3b\xe4\x8c\xee\x65\x5d\xf5\x90\x2e\xa2\xf0\xa0\x90\x2f\xa7\xc0\x9b\x02\x4a\x21\x2f\x0e\x60\x00\xe1\xe6\xab\xfa\xfc\x2c\x50\xae\x37\xf7\x01\x97\xb4\xc4\x6b\x51\xc1\x6b\x59\xd2\xc2\x87\x71\xf7\xe2\xda\x67\xc9\xda\x16\x66\x8c\xf2\xdc\xb3\xe6\x80\x98\xb4\x14\xef\xd4\xe7\xd1\x9e\x9a\xda\x66\xdf\x55\xa7\xed\x06\xf8\x35\x84\x62\x2e\x97\x91\x08\x14\xd7\x23\xe5\xa8\x34\x01\x47\xba\x0b\x04\x87\x03\x8c\x3d\xed\xf0\x4f\xc3\x65\x74\x78\xad\x0d\x5d\xcf\xf0\x71\xf0\x5b\x0c\xc3\xab\x92\x12\xb1\xa0\x39\xce\x40\xa6\xa1\xe0\xb4\x44\x87\x9c\x5b\x62\xd4\x26\xf8\xb8\x9d\x3c\xf5\x7e\xe7\x1d\x92\xb6\x14\x5b\x84\x80\x4e\xbb\xf5\xfb\x26\x40\xbb\x35\x82\xc7\xf5\x9a\x11\xa3\x11\x03\x86\x40\xfb\xf1\x88\x59\xbb\x7e\xdf\xc3\x1a\xa3\x80\x91\xed\x00\xf5\xd0\x7e\xe3\x05\xb5\x99\xc4\x34\xa3\x98\x66\x12\xd3\xdc\x88\x69\x0e\x62\x9a\x4f\x62\x9a\x83\x98\x66\x12\xd3\x16\xce\xc4\xef\x13\x65\x5f\x13\xe9\xb0\xce\xb0\xc3\x7b\x9b\x8c\x59\x88\xef\xef\x97\x34\x51\x8e\xf6\x37\xbb\x1d\xf1\x1e\xd8\x4d\x4b\x8b\xf1\xba\x46\x86\x8c\xef\x9d\xcf\x29\xc0\x70\x58\x05\x1f\xe7\x84\x78\x05\xd0\x0a\x28\x2d\xc5\xac\x01\x7e\x1d\x57\x1d\x53\x7f\x69\x85\x62\x8d\xf1\x00\x41\x8c\x09\x41\x0e\x90\x34\x47\x36\xe4\x1f\x6e\xc4\x51\x70\xa1\x8e\xac\x02\x5b\xac\xc3\xcf\x1b\x8b\x4e\xc7\x94\xea\x30\x2e\x73\x69\x8c\x63\x0e\x2a\xf4\x16\x32\x33\x0e\xf6\xe4\x4a\x98\x63\xf0\x5f\x5e\x5d\xbd\x98\x71\x2c\x0b\xfb\xb8\x36\x30\x4c\xc0\x19\x55\xc8\x18\x55\xe8\xb3\xf2\x9b\x1c\x08\x2e\x98\xfa\x99\x72\x6f\x95\x0e\x75\xd8\xf9\x88\xba\x46\xf9\x2b\x0e\x36\x8d\x19\x96\x98\x12\xb2\x78\xcc\x37\x28\x37\x43\xb0\xf8\x1e\xb3\x96\xb4\x24\xb5\x70\x5a\xd2\x0c\x9e\x8e\xb8\x07\x51\xa1\xcb\x78\x18\x71\x8d\x56\x5b\x9e\xd7\xdc\x57\xa1\x85\x25\xbe\x95\x23\x9a\x55\x0d\x36\x86\xd3\x62\x38\x3c\x15\x3d\x46\x57\x5a\x54\x84\x76\xa3\x2d\x95\x28\x8a\x15\xa5\xe6\xb9\xca\xf0\xff\x15\xf4\x68\x78\xa5\x0e\x0f\x1d\x10\xa4\x84\xd1\x29\xb8\xfa\x7f\xd9\x9d\x37\xb5\x9c\x26\x0b\xde\xe8\xd4\xc7\x8c\x2c\x1a\x20\x5b\x7b\xd4\x93\xf3\x5d\xed\x7f\x5e\x7b\xdc\x6b\xe7\xa3\x33\xb0\xb4\xb0\xef\x21\xe9\x2f\xe4\xe3\x84\x39\x37\x28\xad\xc4\x0e\x79\x1c\x2b\x5c\x19\xe4\x9d\x8b\xfa\xd8\x86\xe2\x50\xf1\x7a\x9c\xc7\x0f\xea\x30\xa0\xa0\x6e\x20\x5b\x82\x09\xf8\x98\xed\x35\xaf\x6a\xc1\x56\xa1\x0a\xbc\x73\x72\x69\xbc\xd0\x92\x34\x97\xb6\xb5\xfb\x38\xed\x4b\xd0\x88\x6b\x4b\x19\x65\x1b\x9c\xdf\x29\xdb\xd0\x93\x53\xb6\x21\xd1\x5e\xd9\x86\x2c\xac\x41\x74\x2d\x8a\x1f\xb5\x06\x96\x06\x1c\x9b\x07\x6b\x19\x3e\x44\x12\xbd\x26\x56\xdc\x61\x54\x72\xee\x93\xb5\xd3\x6b\x7d\xf0\xd9\xfe\xa3\xf5\x18\x9d\xb5\x78\xc6\x78\xd9\xd5\xf2\xd6\x59\x6f\x18\x9d\xdd\xcc\x0b\xf6\x56\xf1\xeb\xbc\x46\x31\x67\xfa\x2a\x2e\x8b\x2e\xc0\x6e\xbd\xe4\x82\x5a\xf9\xac\x1c\x0d\x5a\xe2\x34\x03\x0f\x9a\x93\xd5\x56\x64\xdd\x01\x03\xaf\xb3\xe6\x3d\xa4\xf3\x89\x78\x56\x4f\x56\x8a\x6a\xef\x69\xa4\xfa\xb8\xa3\x6d\xed\x08\x34\xf9\x84\xda\x52\x9f\x28\xa3\x7a\x52\x88\x6e\xb9\xc1\xa8\x25\x8a\xb7\x3a\xdc\x16\x36\x63\xdc\x9c\xb4\xa1\xbf\xa5\x84\xfc\x0c\x32\x2a\x7e\x2c\x10\xf2\xd8\x67\x64\x53\x74\xa7\xd1\xcc\x02\x52\xfb\xc2\x09\x9a\x3a\xc5\xfa\xbe\xa6\x79\x6f\x43\x6b\x42\x7a\xeb\x9d\x94\xac\x1d\xdb\xfb\x7c\x07\x91\x72\xc2\xd6\x43\x38\xf0\xef\xed\x26\x0d\x23\x6c\xeb\x3b\xf8\x58\x8b\xab\x14\x8e\xb7\x79\x6a\x63\x3c\xd9\xca\x87\xd6\xcc\xa2\x18\x42\x18\x54\x36\x4c\xfb\xff\x7c\xcb\x09\xc7\x4a\xb2\x8c\xde\xf8\xac\x01\xc5\xfc\xad\x81\x5a\x08\x77\xec\x1a\xfa\x86\xc2\x69\xc3\xd0\x6e\x51\xcc\x33\x6f\x9f\x3c\xfd\xc7\x3f\xdf\xe9\x6a\xf5\x56\x57\xab\x77\xc7\x0f\x78\xa0\x23\xd6\x7d\x05\xf4\x8e\xb8\x66\xb8\xbf\x63\x7b\x8d\x07\xb8\x39\x0e\x35\x37\xd5\x67\xb5\x40\x24\xd6\x1a\x68\x53\x7c\xdd\xf1\xf5\xc4\x79\xda\x10\x85\x9b\xdb\x97\xda\xf6\xdd\xf5\xe9\x27\x1d\x07\xd0\xb0\x90\xb3\xa6\xc2\xa0\xd5\xdd\x7d\xc0\xf1\x9a\x06\xae\x56\xeb\xec\x9a\xab\xd5\xc9\xd7\xbf\xff\xea\xbb\x6f\xff\xf8\xc5\xbf\xfe\xff\x77\xfa\xf7\x77\x7a\xf6\xdd\xe7\x82\x4f\x63\xe9\x1b\x73\xe7\x41\xc1\xdb\x6f\x4e\xfe\xf0\xee\x6b\xfd\xe6\xda\x08\x38\xe9\xce\x4f\x16\xef\xbe\x32\x3d\xfa\xf8\xf4\xf1\xfd\x0b\x8c\x75\x64\xfc\xc5\x67\x7f\x35\xb8\xec\x46\xc7\xc7\x37\x7b\x18\xdd\xd9\xd1\xf1\x93\xef\xbf\xfd\x62\xb5\x5a\xad\x9e\xde\xfe\x74\xeb\xf7\xe2\xf4\x77\x5b\xf8\x18\x50\xcf\x36\x30\x3e\xf7\x6a\x75\x3a\xdf\x82\xc7\x0f\x1a\xf0\xf8\x7f\xa3\xbf\xaf\xa1\x72\x4f\xef\xff\x7d\xae\xf7\xcb\xdf\x50\x27\xe4\xc8\xcc\x5b\x5e\x3d\xbf\xd2\x37\x6f\xde\xe8\xe2\xf2\xcd\x8f\x17\x4f\xcf\xbe\xff\x6d\x5d\x27\x27\x27\x27\x9f\xab\xbb\xbb\xf7\x5f\x6b\xfc\x77\x00\x00\x00\xff\xff\x32\x93\x8f\xc3\xf4\x0f\x00\x00")
1320
1321 func runtimeSyntaxGoloYamlBytes() ([]byte, error) {
1322         return bindataRead(
1323                 _runtimeSyntaxGoloYaml,
1324                 "runtime/syntax/golo.yaml",
1325         )
1326 }
1327
1328 func runtimeSyntaxGoloYaml() (*asset, error) {
1329         bytes, err := runtimeSyntaxGoloYamlBytes()
1330         if err != nil {
1331                 return nil, err
1332         }
1333
1334         info := bindataFileInfo{name: "runtime/syntax/golo.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1335         a := &asset{bytes: bytes, info: info}
1336         return a, nil
1337 }
1338
1339 var _runtimeSyntaxGroffYaml = []byte("\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")
1340
1341 func runtimeSyntaxGroffYamlBytes() ([]byte, error) {
1342         return bindataRead(
1343                 _runtimeSyntaxGroffYaml,
1344                 "runtime/syntax/groff.yaml",
1345         )
1346 }
1347
1348 func runtimeSyntaxGroffYaml() (*asset, error) {
1349         bytes, err := runtimeSyntaxGroffYamlBytes()
1350         if err != nil {
1351                 return nil, err
1352         }
1353
1354         info := bindataFileInfo{name: "runtime/syntax/groff.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1355         a := &asset{bytes: bytes, info: info}
1356         return a, nil
1357 }
1358
1359 var _runtimeSyntaxHamlYaml = []byte("\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")
1360
1361 func runtimeSyntaxHamlYamlBytes() ([]byte, error) {
1362         return bindataRead(
1363                 _runtimeSyntaxHamlYaml,
1364                 "runtime/syntax/haml.yaml",
1365         )
1366 }
1367
1368 func runtimeSyntaxHamlYaml() (*asset, error) {
1369         bytes, err := runtimeSyntaxHamlYamlBytes()
1370         if err != nil {
1371                 return nil, err
1372         }
1373
1374         info := bindataFileInfo{name: "runtime/syntax/haml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1375         a := &asset{bytes: bytes, info: info}
1376         return a, nil
1377 }
1378
1379 var _runtimeSyntaxHaskellYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x7f\x6f\xdb\xb6\x13\xc6\xff\xf7\xab\x50\xf5\x25\x8a\x18\xf8\xda\xfb\xdf\x8b\xd3\x61\x6d\x3c\x74\x6b\x9b\x2d\x35\x86\x00\xb9\x68\xa0\xc5\x93\x45\x8c\x22\x5d\x92\x5a\x16\xf4\xe9\x5e\xfb\x40\x4a\x76\xb5\x64\xbf\x80\x05\x01\x89\xbb\xa3\xee\x79\xf4\xe1\xc9\x8d\x36\x1c\x1f\x0e\xbc\x2a\x5a\x19\x7e\x66\x63\x66\x33\xc5\x91\xeb\xb8\x9a\x15\x45\x51\xa4\xb2\x95\x1d\xaf\x8a\x92\x68\xd9\x06\x51\xce\x66\xbe\x37\x1c\x86\xf2\xff\x8a\xef\xf8\xe1\xde\x79\x15\x72\xb8\x28\x42\x94\x91\x3b\xb6\x71\x55\x94\xb7\xc5\xdd\x99\x0c\xa8\x65\x60\xb8\x06\xb5\x91\x21\x40\xc9\x28\xa1\xb8\x91\xbd\x89\x50\xec\xf5\x2f\xda\xee\xa1\x1c\x1a\xe7\xa5\x31\x69\x63\xbd\xb7\x68\xb5\x4a\x05\xdd\x20\xb6\x6c\xc1\x26\x30\x74\x77\x70\x3e\x42\xdb\x46\xff\x3a\xac\x66\xd8\x3c\xb4\x0d\x51\xda\x9a\x61\x38\x1d\x40\xa7\x1c\x3a\xa7\x7a\xc3\xb0\x7c\x9f\x5e\x10\x1f\x7a\x69\x74\xa3\x59\x21\x87\xf7\x2d\x7b\x9e\xdf\x16\x77\xe5\x9f\x58\x3f\xab\xb2\xcf\xea\xe8\xa6\x1a\xa5\xab\x41\xbb\x1a\xc5\xab\x51\xbd\x3a\xc9\x57\xa3\x68\x75\x54\xad\xd2\xfa\x57\x32\x03\x21\x91\x11\x09\xb8\x46\x0c\x90\x44\xa6\x24\x8e\x98\xc4\x89\x93\x80\x72\x62\x24\x25\x8e\xa8\xc4\xc8\x4a\x40\x37\x22\xd3\x12\x19\x97\x18\x79\x89\x81\xd1\xb8\x99\x71\xf7\xe2\xc4\x4c\x24\x68\x29\x14\x09\x9b\x18\xb9\x89\x23\x38\xf1\x99\x9c\xc0\x90\xc8\xec\xc4\xbc\x9c\xe5\x77\x4a\x63\xf0\xa3\xf4\xda\xf5\xa1\x08\x0f\xdd\xce\x99\xd3\x34\xe4\x28\xf1\x24\x02\xbe\xc2\x33\xac\xf0\x13\x7e\xc3\x1a\x44\x44\xf8\x12\x44\x67\x44\x73\xfc\x1f\x44\xb7\x20\xba\x03\xd1\x47\x10\x7d\x9a\xb6\xbe\x3a\xb0\x97\xd1\xf9\x3f\x36\x5d\xba\x31\x9d\xba\xaf\xd7\xf8\x62\x8d\xe7\xcf\x41\x94\xfe\x71\x8e\x0b\x9c\xaf\x71\xb1\xfe\x17\x16\x0f\x5c\x6b\x99\x3d\x2e\x2e\x70\xbe\x98\x97\x8f\xbd\x13\x2d\x41\x24\x26\x9d\x5e\xc9\x28\x8b\xda\xd9\x10\x7d\x5f\x4f\x9c\xe5\x94\xb4\x71\xb9\x73\xe3\x93\xbb\xb3\xad\xef\x19\x1b\x69\x02\xcf\x89\x76\xe5\xa3\x93\x49\xf6\x9d\x8b\x6d\x1a\xf5\x6f\xfb\x10\xf1\x86\x9b\x88\x6b\xbd\x6f\x23\xde\x6c\x71\xf9\x03\xbe\xd9\xce\x9f\x28\xa7\x19\xe1\xa3\xa8\x56\x6c\x63\xba\x1d\xbf\xcc\x85\x71\xac\xae\x59\x2a\xbc\x6f\xdd\x3d\x2e\x6d\xdf\xe1\xf2\x03\xae\xbc\x42\x7a\x1e\x5f\xbb\xde\x2a\x56\xd8\x3e\x1c\x58\xee\x0c\xe3\x5d\xdf\xe1\x9a\xa5\xc1\xc6\xcb\x3a\x6a\x67\xa5\xc1\x6b\x1b\x79\xef\xa5\xc9\x85\x94\xc7\xc6\x38\x19\x93\xd1\x9c\x49\x01\xde\x3a\x2b\xd5\xb0\x7e\x6f\xfa\x80\x4d\x6f\x13\x8f\xa9\xe3\xf7\xd1\x6b\xbb\x7f\x42\x28\xe4\xf4\x6a\x3c\x56\xa4\xaf\xc2\x27\x1a\x54\x96\xa7\x1c\x5b\x95\xf8\xbc\x38\x7f\x96\xa6\x65\x3e\x2d\x4d\x7e\x82\x8e\x7f\xd3\xe6\xc3\x9d\xbe\x6c\xa5\xcf\xb7\x40\xb4\x9c\x38\x7a\xe9\xba\xf4\xf9\x7d\xb6\x94\xc3\xa7\x56\x16\x8b\xc7\x56\xc4\x3f\x18\x88\x4e\xb9\xe4\x78\x7b\xf5\xea\x0a\x37\x37\x37\xd8\xbc\xbe\x79\x7b\x39\x5f\xbd\x18\xd5\xff\x46\x8c\xe8\xe3\x13\xb9\x05\xd1\xa7\xff\xac\x38\x19\x8f\x4e\xd7\x3e\x9d\x4e\xb7\xdf\x68\xcb\xaa\x9c\xfd\x1e\x00\x00\xff\xff\x00\x97\x1d\x68\xfe\x05\x00\x00")
1380
1381 func runtimeSyntaxHaskellYamlBytes() ([]byte, error) {
1382         return bindataRead(
1383                 _runtimeSyntaxHaskellYaml,
1384                 "runtime/syntax/haskell.yaml",
1385         )
1386 }
1387
1388 func runtimeSyntaxHaskellYaml() (*asset, error) {
1389         bytes, err := runtimeSyntaxHaskellYamlBytes()
1390         if err != nil {
1391                 return nil, err
1392         }
1393
1394         info := bindataFileInfo{name: "runtime/syntax/haskell.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1395         a := &asset{bytes: bytes, info: info}
1396         return a, nil
1397 }
1398
1399 var _runtimeSyntaxHtmlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xdd\x8e\xd3\x30\x10\x85\xef\xfd\x14\xc6\x42\x88\x5d\x69\xcb\xbd\x1b\xe8\x83\x24\x41\x72\xed\x49\x62\x98\xd8\x91\x67\x52\x54\x34\x0f\x8f\xac\xf4\x4f\x2a\x88\x9d\xcb\x7c\x93\x73\xce\x1c\x0f\x11\x81\xcf\x0b\x58\x3d\xf1\x8c\x4a\x05\x60\xf0\x6c\x95\xd6\x5a\x57\x96\xdc\x0c\x56\x9b\xae\xdb\x4d\x3c\xb7\xd8\x1f\x3e\x1a\xa5\xca\x8a\x40\xdb\xce\x9b\x8e\x01\x12\xc7\x21\x42\xb1\xda\x34\xbb\xd7\xc3\x37\x73\x21\xb4\x80\x8f\x0e\xad\x36\x9f\xda\xef\xfb\xb6\xb5\xb4\x38\x0f\xb6\xef\xfb\xd7\xfd\x6d\x87\x1d\xc3\x0c\x89\xad\x36\x9f\x1d\xb2\x1c\x47\x9f\x31\x17\x99\x20\x8e\x13\xcb\x54\x60\x10\x74\x47\x40\xc1\x9c\xc6\x00\xe4\xa5\x66\x92\x9c\x3c\x46\xff\x53\x72\x1a\xb2\x5f\x49\x72\xc2\xec\x82\xe4\x34\xe7\x95\x20\x9f\xa0\x08\xc5\xdf\x20\xb4\xb8\x24\x54\xbc\x10\x9f\x11\x84\x5d\x19\x81\xa5\x9e\x2c\x27\x87\x2b\xc8\xaf\x18\x78\x7a\xf9\x6a\xd4\x25\x91\xcf\x89\xd8\x25\xde\x11\x97\x98\xc6\xed\xcc\x3a\xc4\xae\xd4\x98\x9d\x31\xb7\x6f\x90\x42\x0d\x7e\x68\x3e\x74\x5d\xd7\xbd\x3c\xa2\xad\x24\xdd\xf6\x57\xe1\x00\x83\x5b\x91\x9f\x05\x1b\xf2\x25\x2e\x7c\xaf\xee\xae\xdc\x7c\xf9\x1b\x7b\xe8\xff\x3a\x6f\x3a\x26\x8f\x6b\xa8\x8f\xf5\xc3\x9d\xdc\xf6\x9b\x79\x87\x77\xad\xe5\x1f\xd6\xcf\xe8\x3f\xce\x9e\xc8\x28\xf5\x27\x00\x00\xff\xff\x4a\x87\x8c\xbc\x54\x02\x00\x00")
1400
1401 func runtimeSyntaxHtmlYamlBytes() ([]byte, error) {
1402         return bindataRead(
1403                 _runtimeSyntaxHtmlYaml,
1404                 "runtime/syntax/html.yaml",
1405         )
1406 }
1407
1408 func runtimeSyntaxHtmlYaml() (*asset, error) {
1409         bytes, err := runtimeSyntaxHtmlYamlBytes()
1410         if err != nil {
1411                 return nil, err
1412         }
1413
1414         info := bindataFileInfo{name: "runtime/syntax/html.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1415         a := &asset{bytes: bytes, info: info}
1416         return a, nil
1417 }
1418
1419 var _runtimeSyntaxHtml4Yaml = []byte("\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\x7e\x51\x2e\xb1\x1d\x29\x43\xb1\x29\xca\xab\x07\xaf\x7e\x7e\x79\xf3\xfb\xdb\xd7\xc5\xf7\x37\x3f\xbe\x29\xde\xfe\xfa\xed\x9b\x1f\x5e\x16\x9b\x72\x55\xd7\xbf\x3d\x79\x59\xd7\xaf\x6e\x5e\x9d\x23\x4f\xab\x47\x8f\xeb\xfa\xf5\x4f\xd8\x31\x4f\x4d\x5d\x1f\x8f\xc7\xea\xf8\xa4\x0a\x71\xa8\x6f\x7e\xa9\x17\xfc\x3a\x71\xb4\x9a\x2b\xc3\x66\x53\x5e\x97\x17\x17\x71\x76\x94\x9a\x05\x70\x55\x50\x8c\x61\x41\x5c\xdf\x3e\xd8\x56\x97\xed\x75\xf9\x21\x90\x4e\x63\x17\x5c\xc5\x6a\x68\x8a\x52\xb4\x56\x5e\xad\xeb\x6d\x2b\x94\xe8\xba\x08\x1d\x83\x3f\x8d\x30\x26\x52\x4a\x98\x26\x47\x8c\x48\x0a\x91\xad\x76\x84\x64\x0d\x61\x36\x36\xc8\x16\x9d\x50\x89\x44\x1f\x3c\xcb\x16\x46\x58\x04\x09\x3b\xc0\x05\xbd\x7f\x37\x07\x26\x44\xd9\x42\x2b\xe1\x0f\x2a\x61\x62\x1b\xbc\x84\x26\xcf\x14\xa1\x2d\x13\x74\x10\x86\xe0\xe0\x86\x18\xe6\x49\xc2\x08\xc5\x4a\x38\x9b\x96\xfb\x40\x0e\xc4\xca\xba\x84\xde\xc3\x2a\x17\x06\xd8\x08\x07\x96\xa0\x51\x74\x64\x64\x8b\xde\x92\x33\x89\x18\xbd\x1d\x84\x56\x0b\x08\xe6\x48\x12\xb9\x2c\xf4\x21\x8e\x10\x56\xb6\x7d\x54\x23\x61\xd9\x73\xf6\x6e\xfd\x78\xf5\x6c\x8b\x5d\x84\x85\x1d\x07\x58\x2f\xa6\x99\x91\x24\xf6\x9d\xc1\x9e\x4e\x03\x79\x38\xd5\x91\x83\xa3\x81\xbc\x81\xb3\xc2\xef\x65\x8b\x51\x09\xeb\x31\x21\xee\x25\x46\xf2\xb3\xb0\x4c\x63\x3e\x27\x16\x0a\x14\x25\xbc\x3a\xc0\x07\x71\xc6\x42\xd2\xd1\x4e\x2c\x11\x84\xc3\xc4\x62\x79\x29\x96\x4e\xcc\x3c\xcd\x2c\x31\x09\x15\xd5\x08\xab\x79\x8e\x84\xfc\x0b\x43\x6e\xbd\x6c\xf1\x0e\x51\x4c\x60\xcc\xdd\x49\x22\x09\x8e\x76\x4f\xb2\x45\x52\xe3\x84\x44\x42\x2f\x8f\x75\xa4\x59\x22\x8d\xca\x39\xa4\x30\x47\x4d\x48\x93\xf2\x48\x1c\x83\x1f\x90\x66\xd1\x61\xc2\x38\xaa\x78\x92\x60\x7a\xcf\x2a\xb3\xc9\x76\x24\x70\x54\x7a\x8f\x59\x38\xd9\xe2\xa0\x22\x0e\xd6\x50\xc0\xb1\x8b\x52\x14\xd5\x25\xae\xe5\xbd\x9a\xa9\xe8\x3d\x93\x37\x64\x3e\x11\x4f\x17\xcc\x09\xc6\x1e\x90\x85\x89\xac\x76\x41\x99\xfe\x3e\x84\xcc\x37\x5b\x76\x04\x56\x5d\xde\x3f\x24\x63\x27\x48\x65\x12\xe3\x92\x25\x17\xd4\x7f\x63\x4e\x91\xa6\x18\xf4\x27\x38\xe7\x7e\x22\xf1\xc9\xd1\x67\x1f\xa4\x89\xb4\x55\xae\x29\xca\x2f\xd7\xb7\xcf\xd7\xeb\x26\x4d\x4a\x53\xb3\xdd\x6e\x2f\x9f\x7f\xfa\x90\xa6\x28\xd7\xcd\x8b\xed\xdd\xa1\x35\xe4\xd9\xf6\x76\x99\x50\xa1\x1c\xa3\x1b\x74\x70\x21\x62\x47\x76\xd8\x31\x76\x91\x7a\x58\x73\xa7\x89\xe0\x07\x43\x49\x23\x4f\x3b\x82\x17\xda\x59\xbd\x47\x1f\xf4\x9c\xe0\x82\x32\x18\xc3\x9c\x28\x1c\xb2\x1e\x92\xfd\xe3\x8e\x92\xa8\xcf\x85\x83\x55\x1c\x88\x91\xad\x04\x07\xe5\x66\xc2\xd1\x1a\xde\xc9\x17\x77\x05\xe9\xe0\x13\x2b\xcf\x55\x9e\x70\x9f\xe7\x74\x53\xae\x6f\x37\xe5\xf6\x72\x53\x7e\x96\xe3\xe7\xb1\x3b\x57\xde\x5a\xf9\xff\xf5\xa3\xd5\xd7\xdf\xac\xbe\xdb\xfe\xf9\xec\xab\x67\x7f\xdd\xe5\x1a\xea\xd5\xec\xf8\x6c\x0d\x79\x25\x56\x91\x9b\xa2\xfc\xd0\xbb\xbc\xc8\x67\x4a\xaf\x3e\x1e\x9c\xdd\xa4\x58\x6f\x2f\xee\x33\x8e\x2b\x5c\xff\x47\xb5\xd5\x1c\x73\x83\x45\xcf\x93\xc8\x3a\xce\x06\xb6\xfc\x19\x2c\x43\xef\x62\x18\x49\x36\x75\xbd\xbe\x2d\xfe\xb7\x7d\xf8\xf1\x8e\x71\x24\xcf\x8b\x43\xae\x56\xd5\xc3\x76\xb5\xba\x47\x08\xff\xb8\x67\xf5\x30\xd3\xfe\x77\x00\x00\x00\xff\xff\xc9\x22\x4f\x7c\x90\x05\x00\x00")
1420
1421 func runtimeSyntaxHtml4YamlBytes() ([]byte, error) {
1422         return bindataRead(
1423                 _runtimeSyntaxHtml4Yaml,
1424                 "runtime/syntax/html4.yaml",
1425         )
1426 }
1427
1428 func runtimeSyntaxHtml4Yaml() (*asset, error) {
1429         bytes, err := runtimeSyntaxHtml4YamlBytes()
1430         if err != nil {
1431                 return nil, err
1432         }
1433
1434         info := bindataFileInfo{name: "runtime/syntax/html4.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1435         a := &asset{bytes: bytes, info: info}
1436         return a, nil
1437 }
1438
1439 var _runtimeSyntaxHtml5Yaml = []byte("\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\xa8\x44\xb6\xdb\x11\xe2\xe3\x15\x1e\x78\x41\x69\x2a\x39\xf6\x4d\x62\xc6\x1f\x59\xfb\x7a\x76\x07\x0e\xff\x1d\x25\x9d\x61\x55\xb5\x6b\x29\x56\xec\x7b\xe4\xfb\x75\xce\x1d\xac\x23\x3e\xcd\xd4\x54\x13\x7b\xf7\xfd\x66\x63\x88\x49\x73\x53\x6d\xaa\xaa\xaa\x16\x6b\x50\x9e\x9a\xaa\x7e\x78\xd8\x4d\xec\x5b\xd7\xed\xbf\xaa\x57\xdb\x44\xca\x50\x6a\xaa\xfa\xee\xcd\xcf\xbf\xfd\xf4\xc7\x9f\xbf\xff\xf2\xf4\xc4\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\xbc\x2f\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\x2f\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\xbf\x47\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\x1f\x59\x2d\xfd\x62\xeb\x09\x9c\x94\x3e\xa0\xa0\x38\x1c\x55\xc2\xd1\x1a\x8a\xf8\xd0\x27\x29\xaa\xdd\x95\x7c\x95\x07\x3b\xfa\xc8\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\xdb\xb6\x6d\xf2\xac\x34\x35\x5d\xd7\x5d\xbd\x7d\x9e\x48\x53\xd5\x6d\xf3\xae\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\xe8\x0e\x31\x08\xed\xac\x3e\x60\x88\xba\x64\xb8\xa8\x0c\x7c\x2c\x99\xe2\x71\xe1\x40\xb6\x7f\x5f\xfa\x91\xf4\x53\xe0\x60\x95\x46\x62\x2c\xa2\xc6\x51\xb9\x42\xf8\x60\x0d\x4f\xf2\xdd\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\xc3\x8f\xdb\x5f\xbb\x7f\x6e\xbf\xb9\xfd\xf7\x82\x35\x34\xa8\xe2\xf8\x49\xee\xcb\xca\xac\x12\x37\x55\x7d\xae\xdd\xb2\x28\x2c\x2d\xbd\xfb\x74\xf1\x34\x21\xaa\xb6\xdb\xbc\x36\x0c\xee\x70\xff\x99\x68\x77\x25\x2d\x05\x16\x03\xcf\x22\xcb\x3d\x26\x3e\xff\x8c\x96\xa1\xa7\x14\x3d\xc9\xe6\xe6\xa6\x7d\xac\xbe\xe8\xae\x3f\xbd\xe1\x3d\x05\x5e\x67\xd5\x76\xbb\xbb\xde\x6f\xb7\xaf\x10\xe1\xff\x39\xb6\xbb\x5e\xda\xfe\x5f\x00\x00\x00\xff\xff\xfd\x58\xde\x3f\x1a\x05\x00\x00")
1440
1441 func runtimeSyntaxHtml5YamlBytes() ([]byte, error) {
1442         return bindataRead(
1443                 _runtimeSyntaxHtml5Yaml,
1444                 "runtime/syntax/html5.yaml",
1445         )
1446 }
1447
1448 func runtimeSyntaxHtml5Yaml() (*asset, error) {
1449         bytes, err := runtimeSyntaxHtml5YamlBytes()
1450         if err != nil {
1451                 return nil, err
1452         }
1453
1454         info := bindataFileInfo{name: "runtime/syntax/html5.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1455         a := &asset{bytes: bytes, info: info}
1456         return a, nil
1457 }
1458
1459 var _runtimeSyntaxIniYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xd1\x6a\xe3\x30\x10\x45\xdf\xfd\x15\x42\x6b\x88\xed\x10\xed\xbb\x96\xb0\xec\x6f\xac\x46\x06\xc5\x1e\x27\x43\x65\x59\x48\x93\x96\xb6\xfa\xf8\xe2\x24\x6d\x43\xdb\xb7\xcb\x9d\xc3\xdc\x33\x91\x47\x7e\x8e\xa8\x05\x05\xaa\xaa\x11\x19\x07\xd6\xa2\x12\x42\x88\xf5\x16\xdc\x8c\x5a\x48\x00\xd5\x50\xa0\x32\x62\x7e\xe0\x25\x16\x3f\xf9\xb2\x3c\x62\x4a\x34\x62\x5b\x97\x66\xa6\x19\x5d\x8c\x19\x40\x79\xca\x5c\x22\x85\x69\x49\x43\xc9\xc8\xe7\x08\xa0\x86\xe9\xd8\xd6\xe5\x09\x71\x38\x39\xfe\xad\xb6\x6b\xb5\x84\xa9\x96\x97\xa1\x13\xba\x11\x93\x16\xb2\x07\x30\xe6\xdf\xee\xbf\xdb\xbd\xd8\x2d\x80\xad\x65\x55\xa5\xb3\xc7\xac\x2f\xdc\x4e\x0c\x4b\xc8\xec\x02\xab\xc3\xb2\x78\xc5\xe9\x7c\x95\x3b\xac\x09\xe0\x20\x7f\xc4\x26\xe7\xf3\x8d\xbb\xc4\x3b\x90\x46\x0c\x4c\x13\x5d\xd7\x8d\xd1\x39\xba\x01\xb5\xb5\x9d\xe9\xf7\xb6\xdb\xbf\x73\x39\xe2\x40\xce\x7f\x85\x00\x8c\xea\xae\x9e\x37\x8e\x1d\xe3\x8c\x81\xb5\x90\x66\xff\xc7\x7e\x0a\xcd\xb7\xb6\xe9\xcb\xdd\x87\xf6\x57\x63\xfa\x57\xab\xba\xf6\x6f\xfd\x4d\x3e\x73\xa2\x70\x5c\xc5\x65\x03\x00\xa0\x8a\xe9\x41\xda\xb6\x03\x59\x36\x1f\xcd\xc6\xb6\xdd\x46\x56\x6f\x01\x00\x00\xff\xff\x6d\x34\x27\x87\xc9\x01\x00\x00")
1460
1461 func runtimeSyntaxIniYamlBytes() ([]byte, error) {
1462         return bindataRead(
1463                 _runtimeSyntaxIniYaml,
1464                 "runtime/syntax/ini.yaml",
1465         )
1466 }
1467
1468 func runtimeSyntaxIniYaml() (*asset, error) {
1469         bytes, err := runtimeSyntaxIniYamlBytes()
1470         if err != nil {
1471                 return nil, err
1472         }
1473
1474         info := bindataFileInfo{name: "runtime/syntax/ini.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1475         a := &asset{bytes: bytes, info: info}
1476         return a, nil
1477 }
1478
1479 var _runtimeSyntaxInputrcYaml = []byte("\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")
1480
1481 func runtimeSyntaxInputrcYamlBytes() ([]byte, error) {
1482         return bindataRead(
1483                 _runtimeSyntaxInputrcYaml,
1484                 "runtime/syntax/inputrc.yaml",
1485         )
1486 }
1487
1488 func runtimeSyntaxInputrcYaml() (*asset, error) {
1489         bytes, err := runtimeSyntaxInputrcYamlBytes()
1490         if err != nil {
1491                 return nil, err
1492         }
1493
1494         info := bindataFileInfo{name: "runtime/syntax/inputrc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1495         a := &asset{bytes: bytes, info: info}
1496         return a, nil
1497 }
1498
1499 var _runtimeSyntaxJavaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcf\x6e\xdb\x30\x0c\xc6\xef\x79\x0a\xcd\x28\xd0\x7f\x68\xb2\xeb\x82\x01\x3b\xec\x31\xaa\x1e\x68\x99\x8a\xb5\x2a\x94\x40\x51\xc9\x32\xf0\xe1\x07\xd9\xcb\x60\x78\x1d\x3a\x4c\x17\x19\x26\xf9\x7d\x3f\x52\xf4\x21\xa2\x5c\x32\xee\xcd\x37\x38\xc1\x66\x33\xa0\xa0\x93\xfd\xc6\x18\x63\x5a\x8c\xe0\x88\x7b\xd3\x59\xbb\x6d\xf1\x9b\x6e\xb3\xe1\x1a\xb1\xcc\x09\x4f\x66\x2e\xed\xac\xed\xef\xfa\x94\x22\x02\x69\x7f\x11\x54\x37\x02\xeb\x90\x6a\x1f\x51\x7d\x4c\x20\x1a\x48\x34\x26\x3a\x28\xe1\x59\xcb\x98\x58\x54\xc6\x50\x54\x18\xa8\x04\x24\xd1\x53\x0a\xc3\xbd\xb5\x7d\xf7\x4b\xbb\x08\x08\x1e\x91\xe4\x6a\xc0\x08\xaf\xea\xa0\xa0\x3a\x10\x37\xaa\x4b\x24\x81\x2a\xea\x80\x1e\x6a\x14\x1d\x92\x62\x2c\xa8\x3e\x10\xc4\x78\x51\x9f\x58\x83\x57\x46\xa9\x4c\x5a\xce\xa1\x55\xc9\xc8\xe9\xac\xc2\x17\x3d\x8f\x21\xe2\xd2\x71\xd1\x0d\xf4\x45\x18\x9c\xa8\x8b\x50\x8a\xe2\x77\x41\x1a\xca\xac\xac\xe1\x98\xe3\x44\x56\xda\x67\x6b\x25\x50\x11\x20\x87\xc9\xb7\x46\x91\x3d\x38\x54\x02\x09\x27\xd4\x0c\xee\x15\x0e\xa8\x99\xc3\x09\xa4\xdd\xa9\xcd\x18\x07\xcd\xb5\x8f\xc1\x69\x6b\x74\xba\x38\x38\xf1\x59\x4b\xcd\xc8\x5a\x2e\xe4\x46\x4e\x14\x7e\xe0\x30\x43\x17\x3d\xa5\x08\xb2\x82\x76\x69\xf2\xbe\x4e\x49\xb8\xa2\x7a\x68\x63\xa0\x1a\xe3\x5b\x99\x5b\xaa\xc7\x1e\x79\x2e\x78\xfe\xf8\xf4\xe9\xe5\x71\xca\x5a\xa7\x35\x20\x3a\xcc\x4f\xdd\x4e\x11\xe0\xc9\xa6\xeb\x7e\xff\x43\x1a\xf6\xa6\xbb\xfb\xf2\xf9\x83\xb5\xd6\xde\x2f\x43\x8b\x45\xb9\x9e\xa5\x78\x46\x17\x20\x7e\x1d\x61\x06\xb1\x76\xfb\xef\x04\xb7\x7f\x05\xb8\x7d\xc7\x3f\x33\x66\x4e\x6e\x6f\xba\xed\xf6\xb1\xfb\x3f\xb8\xe3\xb4\x94\x7f\x40\xed\x76\x6b\xaa\x9b\x35\x8c\x79\x7e\x79\x5f\xc6\xda\x87\xb5\x90\xb5\x0f\xbb\x37\xb5\x7e\x06\x00\x00\xff\xff\xf7\xe4\xd8\x0f\xbf\x03\x00\x00")
1500
1501 func runtimeSyntaxJavaYamlBytes() ([]byte, error) {
1502         return bindataRead(
1503                 _runtimeSyntaxJavaYaml,
1504                 "runtime/syntax/java.yaml",
1505         )
1506 }
1507
1508 func runtimeSyntaxJavaYaml() (*asset, error) {
1509         bytes, err := runtimeSyntaxJavaYamlBytes()
1510         if err != nil {
1511                 return nil, err
1512         }
1513
1514         info := bindataFileInfo{name: "runtime/syntax/java.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1515         a := &asset{bytes: bytes, info: info}
1516         return a, nil
1517 }
1518
1519 var _runtimeSyntaxJavascriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6f\xdb\x3a\x0c\xc7\xef\xf9\x2b\x5c\xa3\xef\xd5\x71\xe0\x38\xef\xf4\x50\xa3\x9b\xd1\x6d\xe9\x69\xeb\x86\x0d\xbb\x4c\x52\x0b\xc5\xa6\x12\x75\x8a\x1c\x48\x74\xd3\x0c\xc4\xfe\xf6\x41\x76\x32\xa4\xe9\x8f\xf5\x30\x1f\x64\x8b\xa2\x3e\x5f\x92\x26\x95\x36\x80\x9b\x15\x14\xd1\x8d\xbc\x95\xbe\x72\x7a\x85\x83\x41\x0d\x08\x15\x16\x83\x28\x8a\xa2\xe0\x61\xe5\x12\x8a\x28\xe6\x7c\x7c\xe3\x8f\xe3\xc1\xc0\xb5\x06\x7c\x7f\x9c\x45\x55\x63\x3d\x4a\x8b\x63\xdb\x2e\x67\xe0\x3a\xbf\x19\xcb\x46\xa2\x4c\xd8\x7f\xd9\xa9\x60\x93\xec\x54\xa4\x34\x61\x93\xec\xff\xf0\xbe\x0b\x06\x99\xa9\xf3\xec\x42\x8c\x86\x09\x6b\xbf\x0a\x66\xde\x8b\x92\xc2\x1a\x76\xe5\xb0\xe4\x7c\x16\xbf\x00\x1f\xc8\x23\xce\xc7\x5b\x89\xfe\xb5\xdb\x07\xf6\x14\x3e\xad\x04\x1b\x65\xa2\xdc\x9a\x4a\xa6\x2e\x82\xd8\x8b\xe9\x0f\x11\x07\x04\x5d\x83\x45\xad\x74\x77\x99\x9d\x67\xdf\x64\xf6\xe3\x5a\x6c\x3f\x26\xd9\xe9\xb5\x48\x19\x2b\xfc\x4a\x56\x50\x08\x91\xb2\x44\xec\x6e\x7a\x94\x08\x4b\xb0\xd8\xab\x26\x33\x07\xf2\x3b\x55\xd2\x03\x55\x12\xab\x05\x55\x8d\x45\x6d\x5b\xa0\x1a\x94\x6c\x0d\x52\x0d\x06\x10\xa8\x6e\x08\x8c\x07\x52\xda\x4a\x63\x36\xc3\xbd\x6a\x1d\x32\x55\xe3\x48\xb5\xb6\x42\xdd\x58\x9a\x03\x92\x56\xa4\x2d\xe9\x2e\xeb\x0a\x1a\x45\x16\xd6\xe4\x00\x5b\x67\xc9\x03\x92\x5f\x6b\xac\x16\xcf\x21\x7b\x0f\xc2\x85\xf6\x84\x0b\xd7\xac\x09\xdd\x86\x42\x13\x35\x8a\x6e\xa5\xa3\xdb\x46\xd7\xb4\x5e\x68\x03\xb4\xd6\x78\x8f\xb5\x2b\xf7\x16\x65\x5b\x63\xa8\xb5\x35\x28\x6d\xa1\xa6\x4b\x79\xf9\x8c\x33\xba\x16\x48\x49\xe3\x61\xdf\xa9\x6f\xde\xce\xe1\xdc\x39\xb9\xa1\x37\x4d\x63\x40\x5a\x7a\x27\x11\x68\x6a\xdb\x25\x38\x89\x8d\xa3\xa9\x73\x8d\xa3\x8b\x5d\x2d\x3e\xc8\xfb\x91\xed\x71\x2e\xbb\x56\xa0\x8f\xb3\x1b\xa8\x90\x3e\xc3\x7c\x7a\xb7\xa2\x2f\xe8\xb4\x9d\x3f\x55\x17\x96\x8d\xf2\xf4\xd5\xd9\xeb\xa3\x9f\xff\x94\xc5\xbf\x24\x1e\x49\x21\x67\x57\xa9\x48\xd8\x55\x2e\x28\xe1\x9c\xf3\x7c\x38\x4c\xd9\x55\xf8\x12\x39\x9b\xeb\xa5\x48\x1f\xcd\x9b\xf3\x6e\x6e\xba\xa5\xec\x57\x0a\xd6\x7b\x53\xd4\x59\xd8\x4c\x59\x87\x27\x3c\xe6\xbc\xec\xb0\xf1\xe0\xb0\xc9\x7d\x97\x44\x3f\xb8\xe1\xf1\x28\x5d\x27\x13\xc7\xbf\x6d\x60\xeb\x22\x8a\x93\xf2\xec\x28\x40\x86\xfb\x47\x7b\x63\xbf\x7b\xf6\xe1\x2b\xa8\xb4\x34\x6f\x17\xd2\x6d\x23\x1f\xbf\x3c\x82\x93\x27\x03\x38\xf9\x3b\xfa\xcb\xee\x4f\x3d\xd0\xcd\xf3\x43\xe1\xe3\x43\xbd\x88\x89\x3f\x63\x38\x4f\x0f\x41\x9c\xa7\xf9\xa3\xac\x5f\x01\x00\x00\xff\xff\x0a\xab\x84\x32\x74\x05\x00\x00")
1520
1521 func runtimeSyntaxJavascriptYamlBytes() ([]byte, error) {
1522         return bindataRead(
1523                 _runtimeSyntaxJavascriptYaml,
1524                 "runtime/syntax/javascript.yaml",
1525         )
1526 }
1527
1528 func runtimeSyntaxJavascriptYaml() (*asset, error) {
1529         bytes, err := runtimeSyntaxJavascriptYamlBytes()
1530         if err != nil {
1531                 return nil, err
1532         }
1533
1534         info := bindataFileInfo{name: "runtime/syntax/javascript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1535         a := &asset{bytes: bytes, info: info}
1536         return a, nil
1537 }
1538
1539 var _runtimeSyntaxJsonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x6b\xe3\x30\x10\xbd\xfb\x57\x68\x87\x80\xbf\x90\x37\x0b\x0b\x4b\xc4\x82\x59\x96\xcd\x69\x0f\xbd\xf4\xa4\x51\x40\x76\xc6\x4d\x8a\xa3\x18\x4b\x86\x96\xb8\xff\xbd\xc8\x76\x8a\x4b\x12\xc8\xa1\x3a\x78\x3c\xef\xcd\xbc\x37\x1e\xab\xda\xd7\xe4\x5e\x1b\x12\xec\xd9\x1e\x4d\x10\x6c\xc9\x51\xe9\x44\xc0\x18\x63\x9e\x33\xfa\x40\x82\x01\x62\xe6\xf9\x05\x0c\xc4\x8e\xf4\x96\x5a\xc1\x60\x83\x78\x5a\x40\x10\xb4\x5d\x4d\x76\x6c\xe2\xac\x3c\x1a\xeb\xb4\x71\x99\xe9\x0e\xc5\x50\x86\x58\x48\x9e\xaa\x3c\x92\x3f\xf8\x4a\xc9\x25\x5f\xa9\xa4\x5f\xca\x25\xff\xe5\xe3\x8b\x07\x34\xaf\xfe\xf0\xb5\x4a\xe3\x48\x76\x8f\x4a\xd6\xff\x55\xde\xfb\xa7\xcf\xf2\x38\x47\x2c\xe0\x0e\x79\xaf\x9c\x22\x66\x93\xc5\x18\xce\xb9\xd7\xfe\x47\x0f\x8d\x92\x29\x57\xf9\x04\xe5\xb2\x5a\x7b\xb3\xbb\xd5\x2f\x25\x6e\x28\x8c\xad\x91\xe9\xea\x3a\xbe\x32\xfe\x44\xbb\xb6\xa3\xbe\xd2\xb5\xa5\x6b\x45\x99\x75\xed\xde\x3c\x09\x36\xe0\xfe\x58\xa7\xdb\xa1\x17\xe0\x03\x23\xb3\x15\x0c\xa2\xfc\xf7\x37\x44\xc4\x78\x4e\xcd\x7e\xcc\xf9\xcc\xd5\x1b\x2a\xf7\xba\xfe\xbb\xd3\xe3\x87\x22\x66\xb7\x26\xb8\x18\x20\xbc\xe9\x1f\x7e\x81\xbd\x75\xda\xd1\x81\xa6\x35\x21\x44\x9e\x45\xe8\xe5\x06\x41\xc5\x89\x7f\x97\x52\xd8\x46\x97\x24\x94\x4a\x04\x02\x63\x08\x61\x84\x18\xf6\x72\x13\xaa\x38\x09\x3f\xf1\x57\xb7\x8f\xd8\xcd\xae\xde\xe9\xe7\x5b\xef\x31\x59\x54\xa6\x75\x21\xc2\x77\x9f\x29\x08\xde\x03\x00\x00\xff\xff\xdc\x01\xa9\x09\x23\x03\x00\x00")
1540
1541 func runtimeSyntaxJsonYamlBytes() ([]byte, error) {
1542         return bindataRead(
1543                 _runtimeSyntaxJsonYaml,
1544                 "runtime/syntax/json.yaml",
1545         )
1546 }
1547
1548 func runtimeSyntaxJsonYaml() (*asset, error) {
1549         bytes, err := runtimeSyntaxJsonYamlBytes()
1550         if err != nil {
1551                 return nil, err
1552         }
1553
1554         info := bindataFileInfo{name: "runtime/syntax/json.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1555         a := &asset{bytes: bytes, info: info}
1556         return a, nil
1557 }
1558
1559 var _runtimeSyntaxKeymapYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xd1\x6a\x33\x21\x10\x85\xef\x7d\x0a\x23\x81\x24\xfc\x64\xf9\x6f\xbb\xb4\xe4\xa2\x2f\x51\x88\x29\xcc\xea\xa4\x59\xd6\x51\xd1\x49\x61\xc1\x87\x2f\xbb\xd2\xb2\x24\x04\x7a\xd1\xb9\x19\x71\x3c\xe7\x3b\xce\xb9\x77\xc8\x63\xc4\x56\x0e\x38\x12\x44\x21\x2c\x32\x1a\x6e\x85\x94\x52\x4e\x53\x0f\x84\xad\x54\x5a\x37\xdb\xa1\x0c\x38\xee\x0e\x04\x71\x5d\xde\x28\xd8\xe9\xa0\x84\x48\x57\x87\xb9\x0a\xf6\x32\x33\x30\x12\x7a\x9e\x35\xdd\x16\xac\x2d\xc6\x21\xa4\x62\x02\xc5\x90\x71\xf2\x30\xc1\xce\x9d\x20\xe6\xa9\xe7\x91\x4a\x42\x0a\x9f\x58\x32\xa7\xde\x7f\xec\xb4\xee\xd4\x03\x47\x13\x3c\xa7\xe0\x0a\x38\x2e\xf9\xd2\x9f\x79\xf9\xd8\x04\x9f\x19\x3c\x37\xfe\x4a\x1d\xa6\x2a\x39\xfe\xdf\x3f\x9d\xfe\x2d\x2d\x23\x9a\x1e\x5c\x2b\xd5\xcb\x9d\xb0\x06\xa8\xdf\x99\x2a\x33\xa4\x19\xad\xd4\xcf\x1d\x7a\xdb\x4a\xb5\x3d\x3c\xaf\xb4\xd6\x7a\xb7\x1c\x2d\x96\xf1\x5d\x4b\xf3\x0a\x7e\xbd\x40\x8d\xa6\x75\xf3\xeb\x00\x9b\x87\xfc\xcd\x9f\xe0\x69\xde\xf1\x1d\xf6\x7d\x75\xcb\x5d\xdf\xe2\xe4\xf1\x24\xc4\x57\x00\x00\x00\xff\xff\xd0\xb0\x5a\x04\x4a\x02\x00\x00")
1560
1561 func runtimeSyntaxKeymapYamlBytes() ([]byte, error) {
1562         return bindataRead(
1563                 _runtimeSyntaxKeymapYaml,
1564                 "runtime/syntax/keymap.yaml",
1565         )
1566 }
1567
1568 func runtimeSyntaxKeymapYaml() (*asset, error) {
1569         bytes, err := runtimeSyntaxKeymapYamlBytes()
1570         if err != nil {
1571                 return nil, err
1572         }
1573
1574         info := bindataFileInfo{name: "runtime/syntax/keymap.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1575         a := &asset{bytes: bytes, info: info}
1576         return a, nil
1577 }
1578
1579 var _runtimeSyntaxKickstartYaml = []byte("\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")
1580
1581 func runtimeSyntaxKickstartYamlBytes() ([]byte, error) {
1582         return bindataRead(
1583                 _runtimeSyntaxKickstartYaml,
1584                 "runtime/syntax/kickstart.yaml",
1585         )
1586 }
1587
1588 func runtimeSyntaxKickstartYaml() (*asset, error) {
1589         bytes, err := runtimeSyntaxKickstartYamlBytes()
1590         if err != nil {
1591                 return nil, err
1592         }
1593
1594         info := bindataFileInfo{name: "runtime/syntax/kickstart.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1595         a := &asset{bytes: bytes, info: info}
1596         return a, nil
1597 }
1598
1599 var _runtimeSyntaxLedgerYaml = []byte("\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\x9f\x3e\xc6\xae\xd9\xfb\x58\xa3\x71\x76\x38\x38\x8a\xb5\xb3\x74\x97\x67\x99\x3f\x74\x18\xe4\x19\x16\x10\x46\xb4\xad\xe9\x24\xe4\x5b\x56\xdd\x8b\x27\xfd\xf9\xf8\xc5\xd6\x51\xf0\x29\x3c\xdc\x86\x58\x6d\x4e\x9a\xc3\xaa\xc8\x7f\x70\x3b\xb8\x40\xc6\x51\xe2\xff\xc6\x2f\x54\x20\x43\xd8\xe3\x84\x9d\x66\xba\xb6\x41\x47\xed\xae\x45\xbf\x7a\x37\x3e\xb5\x9b\x5f\xdb\xf3\xb8\x4a\x86\xd1\x58\x94\x5a\x2f\xd9\x62\x9e\x78\xa9\x14\x2b\xab\x17\xf1\x6a\xc4\x07\xe8\x25\x93\xd7\x37\x2f\x94\xe2\xe5\xbf\x8c\x6f\x4a\x89\x99\x74\x8a\xb7\xde\x70\xec\xeb\x21\x1d\xb5\x2a\x16\xfa\x7a\xab\xfe\xb2\xf3\xcc\x5d\x3c\xa7\x05\xbf\x03\x00\x00\xff\xff\x8d\x83\x88\xfd\xe5\x01\x00\x00")
1600
1601 func runtimeSyntaxLedgerYamlBytes() ([]byte, error) {
1602         return bindataRead(
1603                 _runtimeSyntaxLedgerYaml,
1604                 "runtime/syntax/ledger.yaml",
1605         )
1606 }
1607
1608 func runtimeSyntaxLedgerYaml() (*asset, error) {
1609         bytes, err := runtimeSyntaxLedgerYamlBytes()
1610         if err != nil {
1611                 return nil, err
1612         }
1613
1614         info := bindataFileInfo{name: "runtime/syntax/ledger.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1615         a := &asset{bytes: bytes, info: info}
1616         return a, nil
1617 }
1618
1619 var _runtimeSyntaxLfeYaml = []byte("\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")
1620
1621 func runtimeSyntaxLfeYamlBytes() ([]byte, error) {
1622         return bindataRead(
1623                 _runtimeSyntaxLfeYaml,
1624                 "runtime/syntax/lfe.yaml",
1625         )
1626 }
1627
1628 func runtimeSyntaxLfeYaml() (*asset, error) {
1629         bytes, err := runtimeSyntaxLfeYamlBytes()
1630         if err != nil {
1631                 return nil, err
1632         }
1633
1634         info := bindataFileInfo{name: "runtime/syntax/lfe.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1635         a := &asset{bytes: bytes, info: info}
1636         return a, nil
1637 }
1638
1639 var _runtimeSyntaxLilypondYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x57\x71\x4f\x1c\x3b\x0e\xff\x9f\x4f\xb1\x5d\xb5\x3a\xf6\xee\x40\x6a\xaf\xaa\x2a\x54\x1d\x62\xa1\xa5\x4f\x2d\x14\x15\xd4\x3f\x1e\xb3\x8d\x3c\x19\xcf\x4c\xd4\x4c\x32\x75\x12\x60\x69\xfa\xdd\x9f\x92\xec\xb2\x99\xd9\x7d\x7a\x2b\x19\xe2\x9f\x33\xb1\x63\x3b\x76\x52\x0b\x89\x76\xd9\xe3\xd1\x44\x0a\xb9\xec\xb5\xaa\xf6\xf6\x2a\xb4\xc8\xed\xd1\xde\x64\x32\x99\x04\xb9\x82\x0e\x8f\x26\xd3\xa2\x38\x94\xcb\xe7\xbe\x28\x0e\xc5\xea\xbf\x94\xcb\xe7\xd3\xbd\x3d\x72\x12\x4d\x9a\x7e\x30\xe1\x5a\x19\x0b\xca\x1e\x2a\xd7\x95\x48\xf1\xbb\xea\x3f\xd3\x95\x54\x54\xa8\xac\xa8\xc5\x4a\x50\xee\x1b\x0b\x75\xed\x4d\x0f\x5c\xa8\xc6\x1b\xd1\x28\xb0\x8e\xd0\x93\x76\x56\x28\xf4\x4a\x5b\x34\xbe\x05\x55\x49\x24\xcf\x35\x11\x72\x8b\x95\x2f\x11\x3a\xe3\x81\x7a\x6c\x1a\xa1\x8d\xff\xa6\xa5\x05\x86\xaa\x21\xb8\x43\xf2\xdf\xb4\xe0\xe8\xbf\x21\x59\xc1\x41\x32\x90\xa2\x51\x99\x14\x02\xac\x80\x49\xd1\x44\x75\xdb\xa2\xd5\x02\x2b\xee\x3a\x5a\x79\x73\x8f\xf0\x63\x33\xf5\xc6\xf5\x12\x6d\xc6\x93\x90\x92\x99\x1e\x94\x42\xca\x60\xd1\x09\xd5\x30\x4b\xa0\x8c\x04\xab\x23\x82\xec\x69\xab\xac\x47\xaa\x35\x75\xb8\x25\xc8\x96\x18\xce\xca\x45\xf8\x60\x77\xe8\x0c\x68\xc6\x75\xbd\xce\x17\x80\x92\x59\x81\xac\xd6\x52\xea\xfb\x6c\x1e\x94\x2c\xc6\x83\x99\x65\x57\x6a\x39\x94\x84\x48\xb0\x16\xa1\x32\x03\x3c\x39\xea\x06\xca\xe4\xa3\xeb\xa5\xb1\xd8\x85\x65\xc8\xb2\x0a\xa5\xe8\x84\xcd\x2d\xbb\x0e\xd2\x8c\x03\xf5\x08\x2c\xa5\xca\xdf\xc1\xa3\xe0\x5d\xef\xb4\x30\xa1\x9b\x3d\x26\x9e\x6b\x29\x91\xdb\xe0\xff\xe1\xcc\x73\xd2\xae\xf7\x2b\x93\x57\xde\x2b\x29\x84\xb7\xd6\x54\x8a\x2a\x9b\xde\x83\x62\x25\x10\x33\xd6\x95\x3b\xe0\x21\xb2\x4e\xc8\x01\xcc\x87\xfa\xa5\xa3\xdc\xd0\xc0\x66\x42\x30\x2d\x23\xec\x11\xb2\x00\x5e\x63\x0f\x04\x71\x1b\x52\x28\x64\x4d\xb0\x3e\x13\x73\x12\xbd\x65\x94\xc7\x72\x85\x8d\x79\xae\xa5\xeb\x72\x67\x72\x4d\xe8\xbf\xb6\x4b\xdb\x76\x82\x6f\x89\xd7\x82\xe4\xa8\xaf\x68\xb2\x15\x23\x17\x1c\x2c\x8c\xd0\xf9\x37\xc9\x78\x9b\x67\xe9\x0a\x03\xfe\x43\xe9\x7b\x89\x55\x93\xc9\xae\x42\xaa\xd7\xa4\x3b\xa6\x50\x34\x6d\xa9\x33\x77\x5c\x09\xcb\x5b\xac\x98\x8d\x47\x6b\x08\x33\xf3\xd3\x05\x67\x65\x28\xa8\x90\xe6\x15\xc8\xcc\xbf\x39\xba\x73\xea\x28\xbd\xa2\x28\xed\xf7\xaa\x25\x30\xc1\xe9\x66\x10\xa3\x2b\xb4\xe4\x38\x17\x29\xf3\xd7\xdc\xea\x13\x24\x8e\xca\x6e\x45\xf0\x2a\x1c\x07\xae\xbb\x32\x84\x2f\x47\x51\xd9\x16\x8d\x30\x39\xd8\x23\x6d\x45\xe2\x8b\xb3\xbd\xb3\xac\x27\xdd\x23\xd9\x65\x26\xb0\x16\xee\x60\xbb\x04\x7c\x51\x98\x4c\xba\x74\x52\x26\x53\x2f\xc3\x09\x36\xe3\x7c\x8c\xe8\xc6\x5f\x91\x0d\x15\x7f\x34\x63\x74\xf2\x9f\xb0\x94\x91\x03\xfc\x12\x3a\x2c\x8a\x38\xfc\x88\x50\xf9\x4b\xbc\x67\xb5\x50\x0d\xd2\x40\xf1\x85\x93\x56\xb0\x0e\xc1\x84\x0c\xa0\x41\x72\x5d\x88\x4a\x30\xae\x95\x25\x2d\x59\xed\x14\xb7\x21\xc7\x36\x56\x5e\xa0\x25\xad\x74\x87\xac\x03\xca\x6a\xf2\x05\x2a\xe3\x08\xe4\x8e\xca\xbe\x16\x25\x5f\xac\xb9\xe4\xa3\x8b\xc1\x22\x9f\x97\x24\xb8\x49\xff\x32\x9d\x89\xdf\xcc\x5a\x6b\x28\x09\xf8\x8f\xbc\x11\x7c\x0e\x09\x4e\x23\xc7\x7c\x06\x61\x0c\x3e\xb2\x3b\x51\x52\x1e\xa7\x4f\x02\xef\x40\xed\xb0\x37\x09\x92\xb5\x69\x9c\x6c\xfd\x84\xcb\xcc\xa8\xc0\x6d\x3e\x41\xec\x43\x3e\xdf\x21\xb3\xba\x41\xdb\xe6\x8a\xfe\x50\xc6\x92\xeb\x42\x76\x9a\xfb\x78\x80\x76\x89\x86\x91\xff\xb8\xec\x5b\xcc\xb2\xf0\x9c\x74\xc9\xfa\x9f\x39\x80\x8d\x26\x01\xea\x26\xb4\xb7\x58\x63\x84\x5e\x19\xbd\x5b\x96\x36\x71\x4e\xa0\xaa\xa7\x21\xdf\x91\x96\x09\x1e\xb1\xa1\xeb\x8f\x31\x70\x56\x8f\x05\x52\x97\x20\xfd\xb9\x14\xc6\x80\xaa\xb2\x6a\xfc\x81\xd0\x96\x1a\xa8\x1a\x42\xf3\x00\x19\xff\x21\xd5\xfe\x18\xb8\xd4\x0d\x36\xb3\xb4\xb6\xb1\x03\x66\x48\xf0\xa4\x78\xcc\xa1\xed\x24\xdf\x40\xe3\x13\xfd\x41\x34\x8e\xb0\x62\x25\x18\xc3\x7a\x6d\x84\x1d\x94\xd1\x81\x78\x8c\xce\xc1\x18\xff\xfe\xc1\xa2\xaa\xf2\x10\xbf\xef\x85\xc1\x2e\xbb\x06\x9d\x2d\x15\x74\x21\x97\x57\x83\x2c\x71\xd6\xc8\x78\xee\xb8\x1e\x9e\x91\xeb\x62\xef\x37\x3b\xb0\x7c\x3d\x72\x5d\x8a\x7b\x18\xa5\xd0\x9e\x69\x57\xca\x38\x69\x67\x51\x3c\xd3\xd6\x0c\xb8\x2d\x1f\x9d\xe1\x9d\x72\x52\xfa\x33\xac\xc1\x49\x1b\x1b\xee\xf0\x58\x9d\x3a\x63\xb5\xc9\x79\x64\x5c\x62\x3d\x40\x92\x5d\xa7\xab\x72\x62\xc3\x79\xcd\x2c\x3f\xd5\x8a\x3b\x0a\x95\x98\xb5\x20\xa8\x17\x99\x01\xa7\xdb\xfd\xed\x54\x3a\x13\xae\x34\x5b\x15\xf7\x74\xa8\xb6\xd5\x14\x1a\x17\x76\x5a\xea\x31\x3c\x3c\x65\x11\x0b\x45\xd3\x84\xa1\xa0\xe4\xbc\x39\x21\xd8\x36\xb6\x9f\x41\x40\xe6\x31\x31\x47\x51\x9a\xa3\xaa\x72\x0e\xba\x6c\x83\xf3\xc1\xe1\x88\xdc\x8e\xbe\x3d\x07\xda\xba\x88\xcd\xf3\x0b\xce\xc9\x83\x30\xe3\xab\xc7\xc9\xf6\xe1\x3b\xd9\xba\x02\x9d\x70\x1e\xef\xfd\x79\x07\x8e\x17\x8f\x59\x51\x94\xeb\x97\x81\xb1\x60\x31\x94\xa0\xa3\xc9\xf4\xf6\x80\x7d\x5f\x1c\x17\x45\x51\xdc\x1e\x9c\x1c\xfc\x09\x07\x8f\x6c\xf1\xf4\x84\xe8\x09\x7b\xd2\x7c\xf5\x7e\xd8\xdf\x6f\x84\x11\xc6\x37\x81\xd0\x60\xfc\xeb\x1b\x5f\x47\xb4\x0e\x14\xd1\x3a\x90\xc7\x88\x62\xa0\x88\x62\x20\x5f\x45\xb4\x0a\x14\xd1\x2a\x90\xe7\x11\xe5\x81\x22\xca\x03\xf9\x32\xa2\x65\xa0\x88\x96\x81\x3c\x44\x14\x02\x45\x14\x02\xcd\x6e\xff\xfb\xaf\xc5\xbf\x6f\x8f\x9f\x2d\x8e\x67\xde\x78\xf2\x5f\xfd\xcf\xd9\xfe\xcb\x57\x6f\xfd\x9b\xd7\xfe\x7f\xaf\xfc\xcb\x37\xfe\xad\x7f\xed\x5f\xf9\x97\x3e\x6c\xb5\x24\xbc\xc3\x38\x92\x5a\x35\x10\x47\x1d\x3c\x88\x0e\x66\xc7\xfb\xb7\xdf\x8b\xf8\xbb\x5f\x78\xe6\x8b\xa2\x9c\x3d\xb9\xad\x47\x2e\x40\x06\xa7\xed\xcf\x7e\xfd\x7e\xf7\xff\x85\x2f\x8a\x5b\x5f\x14\x8b\xe9\xf8\x41\x66\x6c\xa8\x43\xe9\x9d\x16\x7e\xf1\x8e\x1e\xdc\x38\x9d\x3e\x61\xa8\xaa\xa3\xc9\x74\xff\xf8\xdd\xb3\xa0\x6d\x96\x8b\xb2\x57\xde\xfa\x97\x2f\x9e\xec\x38\x6d\x21\xbd\xec\x8a\xe2\x70\x63\x40\x17\xe3\xba\xa5\xf8\x45\x51\xfc\x1a\xab\x7e\x51\x14\xbf\xc7\x3a\x27\xb7\x8b\x7f\x5c\x6a\xbc\xce\xf3\x5d\x8b\xec\xfd\x15\x00\x00\xff\xff\xaa\xb7\x96\x8b\xee\x0e\x00\x00")
1640
1641 func runtimeSyntaxLilypondYamlBytes() ([]byte, error) {
1642         return bindataRead(
1643                 _runtimeSyntaxLilypondYaml,
1644                 "runtime/syntax/lilypond.yaml",
1645         )
1646 }
1647
1648 func runtimeSyntaxLilypondYaml() (*asset, error) {
1649         bytes, err := runtimeSyntaxLilypondYamlBytes()
1650         if err != nil {
1651                 return nil, err
1652         }
1653
1654         info := bindataFileInfo{name: "runtime/syntax/lilypond.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1655         a := &asset{bytes: bytes, info: info}
1656         return a, nil
1657 }
1658
1659 var _runtimeSyntaxLispYaml = []byte("\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")
1660
1661 func runtimeSyntaxLispYamlBytes() ([]byte, error) {
1662         return bindataRead(
1663                 _runtimeSyntaxLispYaml,
1664                 "runtime/syntax/lisp.yaml",
1665         )
1666 }
1667
1668 func runtimeSyntaxLispYaml() (*asset, error) {
1669         bytes, err := runtimeSyntaxLispYamlBytes()
1670         if err != nil {
1671                 return nil, err
1672         }
1673
1674         info := bindataFileInfo{name: "runtime/syntax/lisp.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1675         a := &asset{bytes: bytes, info: info}
1676         return a, nil
1677 }
1678
1679 var _runtimeSyntaxLuaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\xdf\x6f\x1c\x35\x10\x7e\xcf\x5f\x71\x0d\x8d\x9a\x6b\x75\xa1\x94\x07\x20\x6a\x8a\x50\x55\x10\x0f\x14\x01\x52\x5f\xce\x47\xe5\xdd\x9d\xdd\x33\xf5\xda\x9b\xf1\x38\x77\x81\x0f\xfe\x76\x34\xde\xbd\xe4\x92\xf6\x10\x48\x15\x27\x9d\x7f\x8c\xed\xf9\xe6\x97\x3f\x6f\xeb\x3c\xc9\xf5\x40\xe7\x33\x9f\xed\xd1\x51\x43\x42\xb5\x9c\x1f\xcd\x66\xb3\x99\x2e\x05\xdb\xd3\xf9\xec\xd8\x98\x33\x9f\xed\xc3\xe3\xa3\x23\xce\x9e\xd2\xb8\xbe\x98\x25\xb1\x42\x3d\x05\x29\x5b\xaa\xd3\x26\x82\x42\x83\xcd\xda\x79\x02\xd3\x40\x56\x90\x83\x38\x0f\xd7\x82\x7c\x22\xd7\x42\xd6\x14\xca\x18\x6d\x64\xb8\x80\x36\x87\x5a\x5c\x0c\xf0\xb1\xb6\x1e\x4c\x92\x39\xcc\x8d\xa9\x8e\x0f\xa0\x84\x28\xb0\xa1\x41\xe4\x7f\xda\xd5\x50\x95\x3b\x24\x61\x17\x3a\xf4\x56\xd6\x10\x5b\x79\x82\x8b\xa8\x23\xc7\x2c\x2e\x10\x62\x42\x96\xf6\x4b\x54\x4e\x3e\x7f\xa6\xda\x8c\x39\x3b\xa4\xf0\xed\xab\xd7\x6f\xf0\xf6\x3b\xbc\x7d\xf3\xea\xe7\x5f\xbe\xff\xf1\x35\x6c\x4a\xc4\x82\x3a\x7a\x4f\xb5\x74\x96\x2b\xdb\x11\x9a\xa8\x71\x03\x31\x47\x46\x47\xd2\x52\xb8\xd2\xbe\x27\xb1\x93\x05\x83\x75\x9c\xe0\xa3\x6d\x4a\x53\xf6\xf7\xb1\xc9\x9e\x10\x68\x2b\x18\xd7\x87\xda\x7a\x8f\x81\x5d\x10\xb0\xdd\xd0\x65\xd6\xe8\xd8\x4d\x47\x65\xee\x29\x68\x97\x74\x46\x97\xd9\x31\x21\x91\x1a\x82\x34\x81\xa6\x7d\x50\x89\x21\xf7\x15\x31\x24\x4e\x31\xd1\xac\x23\x87\xc1\xd6\xef\xb0\x2d\x60\x73\x63\xd2\x63\x63\x4e\x77\x11\x70\x0d\x05\x71\xad\x23\x3e\x9f\x1d\xbb\x68\xcc\x99\xc6\xa1\xf6\x51\x93\xe7\x73\x5a\xc3\x85\x21\x0b\xbc\x0b\x94\x10\x07\x0a\x88\x59\x54\x32\x94\x09\x93\x6d\x20\xfd\x50\x1c\x2c\x70\x1b\x76\x42\xfb\x59\xbb\x03\xa1\x59\x9a\x40\x6c\x95\x60\xeb\x98\x60\x93\x0b\xb0\x62\xc3\xb3\xd2\xa2\x26\xe7\x51\xc7\xb4\xd6\x06\x0d\x75\xa0\xed\x80\xd6\xc7\xc8\x68\xfb\xd8\xa0\x65\x15\xac\x73\x47\xf0\x8d\x0e\x7d\xec\x3e\x7b\xaa\x2d\x7a\xbb\xd5\xbf\x0b\x42\x1d\x31\x7a\x17\xf4\x7f\x33\x8d\x4d\x8b\xc1\x61\x88\x1b\xb0\x6d\xc0\x36\x34\xb1\x9f\xba\x44\xd4\x20\xb9\xb0\x46\xba\x64\x81\x5a\x22\x71\x77\x72\x8c\xa4\x97\x83\x8e\xc5\x74\x1b\xbb\xfa\x1d\x1a\x2b\x84\xc6\xb5\xad\xb8\x9e\x40\x5b\xaa\xb3\x68\xef\x44\x0b\x45\x53\xc7\xd4\xc7\x2b\xbd\x42\x7a\xff\x34\x91\xe5\x6e\x10\xca\x01\xe9\x07\x15\x1f\x44\xd3\x8c\xda\x8e\x76\x90\x31\xb4\xae\x43\x3d\xe8\x15\xd0\x72\xa3\xb1\xea\xbc\xab\x50\x64\x03\x53\x29\xc5\x44\xa4\x05\x97\xc8\x72\xbd\x26\x4e\xd3\x48\xf7\x1c\x84\x1a\x4b\x69\x42\xaa\xae\x85\x50\xaf\x2d\xa3\xc9\xfd\x80\xd6\x85\x46\xef\x78\x6f\x05\x5d\x6f\xa5\x5e\xa3\x4b\xb9\x82\x16\xae\x8f\x1b\x8d\x78\x11\x96\x02\xd4\x26\xb9\xdf\x0b\x6b\x80\xe9\x8a\x38\x11\x74\xf7\x54\xa0\x79\x18\x88\x0f\x9a\x51\x4a\xfc\xd6\xdf\xda\x0a\x5c\x28\x97\xb3\xb7\xdb\x80\x12\xcb\xa2\x66\x8a\x6b\x8a\x2c\x93\xe6\x83\x3a\x95\x17\x76\x2a\xd5\x27\x6d\x06\x2b\x42\x1c\x50\xc7\x86\x52\x69\x07\x2d\x82\xe2\x52\x6c\xdb\x44\x87\x4b\xe0\x86\x73\x76\x3a\x99\xb4\x0a\x5c\xba\x76\xe4\x9b\x72\x45\x99\x52\xee\x09\x9c\x43\xd0\xfb\xa9\xfc\x93\x13\x36\x6c\x07\x94\x4d\x07\x75\x17\xaa\x9b\xf4\x8e\xb4\xb7\xc7\x3b\xeb\x18\xdf\x69\xef\x42\x1b\xb5\x1f\x59\xf6\x0e\x21\x75\x24\x4c\x9d\x4b\xc2\xd7\x3a\xce\xc3\x95\xf5\xb9\x88\x73\x22\x1e\x27\x7b\xa4\x52\x34\xee\x6a\xf2\x2e\xcb\xa4\xdb\xd3\x69\xff\xb4\xb0\xad\xa9\x1a\x13\x59\x24\xae\xd9\x8d\x7e\x8b\x2e\x1c\xf4\xac\xf0\xf2\x8e\x12\x38\xad\x5d\x2b\xa8\x94\xfb\x2b\x7d\x04\xaa\xc8\xa8\x84\x92\xa0\xda\x46\x06\x6d\x15\x46\xe9\x70\xf0\xb6\x26\x78\x8e\x4a\xe1\xf0\xe3\x39\x9e\xa6\xa3\x9a\x83\x90\xc6\x9c\xdf\x67\xb9\x91\xdf\x0a\x9b\x25\xa2\xe2\xfb\x55\x95\xdb\xf7\xd9\xac\x8e\x21\x89\xbd\x79\x31\x5a\xab\xcf\x5c\x70\x1e\xc2\x99\x0e\x3d\x56\xa7\xe3\xcb\xd9\x8e\x6f\xe6\xc8\xe4\x2e\xd4\x3e\x37\x34\xc7\xc9\x25\x4e\x1e\xe0\xe4\x27\x9c\x30\x4e\xb6\x1f\xc2\x3a\x1b\x79\x7d\x82\x5c\x3e\x5d\x7c\xb5\x7a\x72\x07\xea\xba\xaf\xa2\x1f\x71\x4e\x61\xcc\x1c\xc6\x2c\x61\xcc\x0a\xc6\xfc\x01\x63\xfe\x84\x31\x8f\x8d\x79\xac\x1d\x3e\xc5\x09\x8c\x79\x82\x05\x8c\xf9\x15\x2f\xf0\xe2\x02\xcf\xf1\xfc\x02\x7f\x5d\xe0\x02\x25\x0f\x67\xf3\xe3\xa3\xfb\x16\x8c\x2c\x30\x7e\x14\xe8\x2f\x89\xe5\x12\x83\xe3\xe3\x1b\x19\x85\x46\x6d\xf8\xfa\xf9\x03\x63\x8c\x99\xef\x2f\xed\x7d\x52\xec\x7e\xfb\xca\x07\xaa\x9d\xf5\x2f\xd7\x76\xf4\xb1\xbc\xd0\xff\xd6\x82\x47\x07\x0d\x78\xf4\xbf\xe0\x1b\xb3\x34\x66\x79\xdf\x08\x63\x56\xc6\xac\x3e\x86\x01\xd3\xda\x24\x5f\x3e\x5d\x7c\xb1\xba\x6d\xa0\xb2\xad\x56\x84\x5d\xb4\xdf\x2c\xbe\x5d\xed\x0d\xcb\xda\xd2\x56\xd4\x06\x4e\x2b\x9c\xea\xb4\x2e\xc2\x97\x8b\xd2\xfd\xb0\xeb\x46\xd9\x7c\xdf\xe9\xbe\x54\xee\x7b\xce\x7e\x72\xdf\xcf\x87\xf7\x5d\x9c\x2d\x57\xf7\xb5\xcc\x3e\x10\xb3\x85\x31\x8b\x8f\xa9\xeb\xbf\x64\xa1\xa8\xfd\x3b\x00\x00\xff\xff\xc4\xea\x95\x41\x15\x0b\x00\x00")
1680
1681 func runtimeSyntaxLuaYamlBytes() ([]byte, error) {
1682         return bindataRead(
1683                 _runtimeSyntaxLuaYaml,
1684                 "runtime/syntax/lua.yaml",
1685         )
1686 }
1687
1688 func runtimeSyntaxLuaYaml() (*asset, error) {
1689         bytes, err := runtimeSyntaxLuaYamlBytes()
1690         if err != nil {
1691                 return nil, err
1692         }
1693
1694         info := bindataFileInfo{name: "runtime/syntax/lua.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1695         a := &asset{bytes: bytes, info: info}
1696         return a, nil
1697 }
1698
1699 var _runtimeSyntaxMailYaml = []byte("\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")
1700
1701 func runtimeSyntaxMailYamlBytes() ([]byte, error) {
1702         return bindataRead(
1703                 _runtimeSyntaxMailYaml,
1704                 "runtime/syntax/mail.yaml",
1705         )
1706 }
1707
1708 func runtimeSyntaxMailYaml() (*asset, error) {
1709         bytes, err := runtimeSyntaxMailYamlBytes()
1710         if err != nil {
1711                 return nil, err
1712         }
1713
1714         info := bindataFileInfo{name: "runtime/syntax/mail.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1715         a := &asset{bytes: bytes, info: info}
1716         return a, nil
1717 }
1718
1719 var _runtimeSyntaxMakefileYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xcd\x6e\xdb\x30\x0c\x3e\xcf\x4f\xe1\xba\x6e\x6b\xd7\x6b\x76\x37\x9a\x79\xc0\x86\xdd\xf6\x04\xa6\x03\x28\x16\xd5\x68\x55\x24\x8f\x52\xd2\x0e\x63\xdf\x7d\x90\x92\xf5\x27\x6b\x87\x1c\x26\x18\x36\x45\x89\x1f\x3f\x7e\xa4\x95\x36\x18\x7e\x4e\xd8\xe6\x6b\x71\x8b\x71\x97\x65\x12\x03\x8e\xa1\xcd\xf2\x3c\xcf\xa3\xc7\x8a\x35\xb6\x79\x51\xf5\xdf\xd6\xc3\xfe\x12\x03\xcc\xd6\xa2\xbb\xad\xcb\x22\x5d\x5b\xa1\x90\x48\x6d\x5e\x2c\x4e\x4f\x66\x97\x1f\x2a\xb4\xdb\xbc\xa9\xbb\x7e\x79\x33\x74\x11\xb8\xca\xb9\xac\x8b\x2c\xa3\x8d\x41\xbf\x43\xbe\xca\x27\xc2\x89\xdc\xd8\xe6\x05\xc0\x75\xa5\x15\xfe\x60\xad\x24\x2a\xd6\xca\x26\xdb\xc6\x0d\x1a\x8f\x8c\x56\x6a\x55\x03\x7c\x2c\xf6\xb1\x3e\x88\x80\x6b\xb4\x21\xe6\xac\xf0\x7e\x72\x14\x58\xdb\xd1\x6c\x24\xb2\xdb\x22\x91\x96\xf8\x3c\xc0\x4d\x48\x22\xb8\xc4\xb1\x5f\xb4\xf3\x77\x43\xd3\xbe\x72\x56\xf5\xf3\xf7\x67\x03\x03\x34\x73\x06\xe8\xe6\xdc\xce\xf9\xfc\x9c\x01\xe2\x53\xbf\x96\x1d\xa0\x04\xa8\x2a\xb1\xf4\x93\x08\x2b\x16\x52\x4e\x84\x4a\xdf\x47\xcb\x6f\x54\xb2\xac\xe4\xa5\xf0\x49\x48\x1e\x85\x31\x2c\x35\xd5\x7d\xdf\xfa\x49\x8c\xd8\x0e\xc3\x3f\x70\x91\xc8\x11\xe3\x56\x18\x56\xda\x04\xa4\xfd\xe7\xca\x6d\x02\x2b\x6d\xa5\x0f\xa4\xed\x0d\x2b\x4d\x3e\xdc\x39\x92\x47\xe2\x2a\x23\xb6\x8e\x58\x39\x42\x31\xae\x58\x2b\xd6\x56\x39\xfe\xee\xb4\x65\x23\x76\x50\x6c\x5d\x90\x9a\xd8\x1d\x4b\xd6\x91\xbe\xd1\x96\x27\x11\xfc\x66\xe9\x03\x13\x0a\x93\x54\xf1\x2b\x34\x86\x7d\x6c\x52\xe4\x3b\xf1\x4e\x99\x23\x61\xb7\xc2\x6c\x90\xef\x04\xd9\x58\xe9\x9d\x36\x72\x14\x24\x39\x51\x8c\x2f\xa3\x7d\x48\x86\x7f\x0d\x50\x4b\xb4\x41\x2b\xbd\x9b\xcf\xd9\x53\xdb\x5f\x1c\xf4\x55\x5d\x3e\x86\x8c\xce\xfa\x20\x6c\x98\xed\xc4\xdd\x0d\x6c\x5c\x3e\x08\x4a\xc4\x8a\xe2\xd1\x87\x56\x1e\x78\x9e\x4d\xf9\x9f\xf5\x1c\x73\xc2\x51\x0b\xf3\x79\x25\x28\x95\x08\x30\x3b\x3a\xef\xc5\x61\xda\xaa\xbb\x3e\x89\x10\xf5\xc5\x7f\x48\xff\x42\x10\x80\xb2\xa9\x00\x7e\xf5\x8b\x87\x7c\x68\x00\x1e\x18\xa0\xea\x17\x75\xda\xd4\xf5\x5b\x31\xfd\xa7\xc5\xf5\x65\x77\xc6\x4d\xfc\x89\x62\xf7\xf6\x8e\xe6\x6a\xe8\xbf\x7c\x1d\x00\xde\x8c\x04\x28\x39\xd1\xe9\x9e\xe4\x58\xa7\x41\xf8\x4b\x86\xd3\x43\x19\xca\xc3\xea\xf3\x7e\xc8\xb2\xdf\x01\x00\x00\xff\xff\x8a\x9e\xb3\x56\xdd\x04\x00\x00")
1720
1721 func runtimeSyntaxMakefileYamlBytes() ([]byte, error) {
1722         return bindataRead(
1723                 _runtimeSyntaxMakefileYaml,
1724                 "runtime/syntax/makefile.yaml",
1725         )
1726 }
1727
1728 func runtimeSyntaxMakefileYaml() (*asset, error) {
1729         bytes, err := runtimeSyntaxMakefileYamlBytes()
1730         if err != nil {
1731                 return nil, err
1732         }
1733
1734         info := bindataFileInfo{name: "runtime/syntax/makefile.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1735         a := &asset{bytes: bytes, info: info}
1736         return a, nil
1737 }
1738
1739 var _runtimeSyntaxManYaml = []byte("\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")
1740
1741 func runtimeSyntaxManYamlBytes() ([]byte, error) {
1742         return bindataRead(
1743                 _runtimeSyntaxManYaml,
1744                 "runtime/syntax/man.yaml",
1745         )
1746 }
1747
1748 func runtimeSyntaxManYaml() (*asset, error) {
1749         bytes, err := runtimeSyntaxManYamlBytes()
1750         if err != nil {
1751                 return nil, err
1752         }
1753
1754         info := bindataFileInfo{name: "runtime/syntax/man.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1755         a := &asset{bytes: bytes, info: info}
1756         return a, nil
1757 }
1758
1759 var _runtimeSyntaxMarkdownYaml = []byte("\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")
1760
1761 func runtimeSyntaxMarkdownYamlBytes() ([]byte, error) {
1762         return bindataRead(
1763                 _runtimeSyntaxMarkdownYaml,
1764                 "runtime/syntax/markdown.yaml",
1765         )
1766 }
1767
1768 func runtimeSyntaxMarkdownYaml() (*asset, error) {
1769         bytes, err := runtimeSyntaxMarkdownYamlBytes()
1770         if err != nil {
1771                 return nil, err
1772         }
1773
1774         info := bindataFileInfo{name: "runtime/syntax/markdown.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1775         a := &asset{bytes: bytes, info: info}
1776         return a, nil
1777 }
1778
1779 var _runtimeSyntaxMicroYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\xcd\xed\xc1\x46\x20\x23\xd7\x19\x2b\x82\x60\x40\x5f\xa2\xca\x41\x91\x99\x44\x98\x2c\x05\x14\x85\x25\x00\x1f\x7e\x90\xe4\xb6\x5e\x87\x60\x3a\x85\xe4\xc7\x9f\xf9\x49\x9f\xac\x03\xba\x5f\x61\x14\xb3\x35\x18\x9a\x66\x02\x02\x43\x63\x23\x84\x10\xb9\xe8\xf5\x0c\xa3\x68\x95\x1a\xba\x42\xf4\xcf\x6d\xd3\x60\x72\x10\x2b\x23\x45\x24\x4d\x30\x83\xa7\x82\x1d\xbb\x78\xf7\xa4\x6f\x6c\x82\x0b\xd8\x49\x67\xfd\xaf\x7e\xd7\x2b\x75\x6c\x1f\xf1\xa4\x91\x5e\x18\xfc\xf4\xb2\xc6\xec\x04\x9e\xec\xc9\x02\x2e\xdc\x04\x27\x9d\x1c\xb1\x09\x73\xee\xe6\x78\x9f\x8f\xc1\xf1\x27\xc7\x26\xf8\x48\xda\x53\x37\x44\x42\xeb\xcf\xdd\x60\x2e\x1a\xfb\x1d\x0f\x3e\xcd\x47\xc8\xbf\x3e\x86\xf3\x15\xe1\x8a\xc1\x70\x76\xcf\xf1\x0a\xc6\x6a\xc7\xc9\x4f\x80\xce\x7a\x98\x18\x10\x03\x32\x85\x29\x94\xa6\x14\x73\x9a\xad\xcf\xe3\x64\xd6\xe5\xce\x24\xc4\x1c\xf5\xbb\x5c\x93\x75\x08\x9f\x13\x11\xa0\xac\xfd\x4b\xf0\x5b\xa3\xb7\xfe\xcc\x26\x61\x0c\x28\x8b\x54\x59\x90\x34\xc1\xa5\xd9\xaf\x8d\xbf\xbb\x58\xfe\xf4\xe2\x9e\x2f\xbc\xe7\xed\xad\xdf\xbc\x6d\xe5\xf7\xc3\xa6\xc4\xfd\xe6\x7f\x6d\xdb\x5b\xc6\x85\x96\x27\xb1\x97\xaf\x87\xbf\xf9\xb2\xc6\x7a\xc5\xfc\xca\x1d\x46\xd1\x3e\xb5\x1f\x29\xf0\xd3\x28\xda\xe7\xcf\x44\x3d\xbc\x78\x3b\x7c\x1d\x5a\x17\xfe\xaf\x98\x6a\xbf\xaa\x75\xbb\x1f\xdf\x94\x52\xaa\x5f\x97\x56\x1f\xd4\xfb\x5b\x8b\xd7\xeb\xfc\xbc\xe8\x6a\x4b\xa9\xe1\xb1\xeb\xa7\xe2\x78\x2f\x5f\xb3\xeb\xc3\xa6\x82\xcd\x9f\x00\x00\x00\xff\xff\x70\xb9\x31\x33\xe8\x02\x00\x00")
1780
1781 func runtimeSyntaxMicroYamlBytes() ([]byte, error) {
1782         return bindataRead(
1783                 _runtimeSyntaxMicroYaml,
1784                 "runtime/syntax/micro.yaml",
1785         )
1786 }
1787
1788 func runtimeSyntaxMicroYaml() (*asset, error) {
1789         bytes, err := runtimeSyntaxMicroYamlBytes()
1790         if err != nil {
1791                 return nil, err
1792         }
1793
1794         info := bindataFileInfo{name: "runtime/syntax/micro.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1795         a := &asset{bytes: bytes, info: info}
1796         return a, nil
1797 }
1798
1799 var _runtimeSyntaxMpdconfYaml = []byte("\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")
1800
1801 func runtimeSyntaxMpdconfYamlBytes() ([]byte, error) {
1802         return bindataRead(
1803                 _runtimeSyntaxMpdconfYaml,
1804                 "runtime/syntax/mpdconf.yaml",
1805         )
1806 }
1807
1808 func runtimeSyntaxMpdconfYaml() (*asset, error) {
1809         bytes, err := runtimeSyntaxMpdconfYamlBytes()
1810         if err != nil {
1811                 return nil, err
1812         }
1813
1814         info := bindataFileInfo{name: "runtime/syntax/mpdconf.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1815         a := &asset{bytes: bytes, info: info}
1816         return a, nil
1817 }
1818
1819 var _runtimeSyntaxNanorcYaml = []byte("\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")
1820
1821 func runtimeSyntaxNanorcYamlBytes() ([]byte, error) {
1822         return bindataRead(
1823                 _runtimeSyntaxNanorcYaml,
1824                 "runtime/syntax/nanorc.yaml",
1825         )
1826 }
1827
1828 func runtimeSyntaxNanorcYaml() (*asset, error) {
1829         bytes, err := runtimeSyntaxNanorcYamlBytes()
1830         if err != nil {
1831                 return nil, err
1832         }
1833
1834         info := bindataFileInfo{name: "runtime/syntax/nanorc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1835         a := &asset{bytes: bytes, info: info}
1836         return a, nil
1837 }
1838
1839 var _runtimeSyntaxNginxYaml = []byte("\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")
1840
1841 func runtimeSyntaxNginxYamlBytes() ([]byte, error) {
1842         return bindataRead(
1843                 _runtimeSyntaxNginxYaml,
1844                 "runtime/syntax/nginx.yaml",
1845         )
1846 }
1847
1848 func runtimeSyntaxNginxYaml() (*asset, error) {
1849         bytes, err := runtimeSyntaxNginxYamlBytes()
1850         if err != nil {
1851                 return nil, err
1852         }
1853
1854         info := bindataFileInfo{name: "runtime/syntax/nginx.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1855         a := &asset{bytes: bytes, info: info}
1856         return a, nil
1857 }
1858
1859 var _runtimeSyntaxNimYaml = []byte("\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\xe3\x79\x78\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\x31\x07\x16\x97\x93\xa9\x10\x0b\xa7\xed\xfd\xe9\xce\x4e\xc8\x06\xe3\xb2\xc4\x0f\x26\x7d\xc0\x3e\x78\xb9\x9c\x4c\x2b\x21\xde\x09\x41\xb5\x10\xcd\x0c\x92\xb7\x64\x74\xa2\xb8\xb6\xa4\x15\xba\x44\x12\x8c\x21\x73\x05\x26\x23\x45\xad\x10\xdb\x16\x65\x22\xe7\xef\x18\x3d\x04\xb0\xb4\x42\x87\x41\xcb\xc1\xb0\x5e\x65\x83\xc4\x0f\x24\x83\x89\xae\x20\x90\xf4\x2e\x26\x0a\x18\xb3\x49\xc4\xb7\x93\xc5\xd4\x79\x45\x3a\x61\x80\xe4\xcb\x8e\x2b\x0c\x09\x03\x59\x90\xc1\x53\x42\xdb\x1b\x48\x48\xad\x46\xa3\x08\x5d\xb6\x83\xd6\xfa\xc0\x27\x1a\x68\xd0\x90\xbb\xac\xe0\xe0\xed\x93\x83\xdf\xeb\x7d\x02\xa3\x21\x92\xf3\x65\x9d\x0b\xd1\x54\x42\xbc\xe7\xf4\xa6\x63\xe2\x31\x41\x42\x8b\x2e\x15\x6c\x9a\x19\x28\x15\x08\x9c\x22\x88\x04\xd1\x12\x43\xa0\x25\x35\xda\x29\x6a\x8c\x97\x97\xd4\x04\x84\x4b\x92\x10\x91\x45\xe2\x47\x4a\xec\xd3\x98\x8e\xf4\x2e\x69\x97\xf1\xce\xdb\x15\xb6\x2c\x75\x94\x10\x14\xaf\x49\x3b\x99\x48\xe9\x2b\x52\x9e\xd0\xe8\x96\xd0\x44\x24\x74\x43\x4a\x84\x37\xe5\x40\xbc\xe9\x7d\x48\xd4\x6a\x07\xc6\xac\x39\x47\x6a\x83\xb7\xd4\x66\x27\x37\xe8\x92\x6e\x49\xdb\xb2\x4f\x3b\xd2\x4e\x9a\xac\x90\xb4\x4b\x18\x5a\x90\x48\x3a\x92\x8e\xce\xa7\x5b\x4c\x19\xfd\x01\xcd\x11\x6d\xab\x6f\xb4\xe3\x02\x91\xd3\x86\x78\xaf\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\xab\xfa\x2b\x0c\x41\x2b\x2c\xef\x1f\x78\x67\x7b\x6d\xf0\xa5\xb6\x48\xce\xff\x3a\xa4\x00\x72\x2d\x8d\x96\x03\xda\x14\x3b\x30\xc6\x5f\x53\x9f\x03\x32\x0d\x7e\xf1\xe7\x09\xe4\xe5\x59\x00\x8b\x84\x21\x70\x29\x20\x81\xa1\x6b\x08\x8e\x93\xea\xb4\x4b\x64\xb4\xc3\x22\x20\x9c\x4b\x70\xa7\x4e\x95\xbb\x72\x42\xf5\xa3\x4f\x9e\xb2\x0b\xde\x18\xd2\xd6\xa2\xd2\x8c\x8f\xec\x50\x5e\x46\x6a\x7c\x76\x2a\x3e\x1d\x0c\x7e\x6e\x6b\xfc\xf5\x68\x3a\x6d\x46\x0d\x62\xc4\xc0\x00\x7b\x17\x37\xf7\xc6\x72\x71\x24\xdf\x27\x6d\xf5\xdb\x12\xa4\x1e\x52\xc2\xe0\x62\xe9\x55\xa6\x21\xf5\x39\x76\xd4\xfb\x9e\x56\xc6\x37\x60\xa8\x0f\xb0\xb2\xc0\x04\xc3\xa0\x19\x59\x30\xd4\xe8\x14\xf5\x5b\xa4\x2b\x6f\x20\x71\x61\x9c\x7f\x86\xd2\x50\x87\xa0\x30\x30\xb5\xbc\xed\x0d\x26\x3c\x2f\xc0\x6e\x50\xe4\x7c\x2f\xa9\x87\x18\x9f\x16\xf9\x13\xa1\xd5\x69\xe4\xa4\xdc\xac\x7d\x3f\x6a\xbe\x79\x23\x49\x7a\x85\x2b\x74\xe5\x78\xed\x98\x65\xe7\xc9\x32\x81\x93\xc2\x96\x31\x8c\x29\x8c\xda\x15\x04\x08\xab\x38\xf6\x82\x24\xbc\xe1\xd4\xa8\x59\x4b\xdf\xaf\xa9\x59\x33\x09\xb3\x1b\xb2\x96\x97\xa8\x28\xbb\x02\x2a\x2a\x52\x6b\x67\x74\x43\x52\xf1\x35\xa9\x0b\x08\x8a\x56\x32\x42\x8b\xa3\xc5\x5c\x58\x65\xee\x49\xee\xeb\x78\x97\x17\xff\xa0\xdf\xda\x36\xde\x2c\x7c\x3f\x34\x10\x8f\xc8\x6f\x85\xd8\x17\xe2\x40\x88\xbd\x2f\xbe\xf9\xee\x7b\x21\xee\xff\xf5\xd9\xa7\x42\xd0\x27\x42\x9c\x08\xf1\x4a\x88\xc5\x52\x08\x21\xea\xfd\xed\x11\x3d\x4a\x0d\xa6\xf0\xf7\x9d\x10\x0b\x12\x62\x21\xc4\x7b\x12\xa2\xda\x5a\x35\x09\x31\xdb\x5a\x73\xfa\x9a\x3e\xa7\x3f\x3e\xdc\x02\x0b\x21\x16\x9b\xc8\x30\xf2\x4b\x5f\x30\x05\x25\x0b\xed\xd2\x63\x16\x87\xc7\x2c\x1f\x1e\xb1\x3c\x7e\x44\x99\x63\xb9\x04\xf3\x10\xcd\x43\x38\x0f\xf1\xd6\x78\x48\x83\x7c\x78\x34\xac\xc7\x8f\xa8\xf1\xde\x90\xec\x20\x0c\xb3\x29\xa6\xc0\x7c\x97\xe3\x0a\x21\xc0\x9a\x7c\x8f\x6e\xd0\x22\xfe\xb9\xad\xd9\xd0\xf9\xe3\x18\x89\x3c\xf4\xbd\x56\x04\x39\x79\x92\xb1\xe3\x91\x15\xc0\xad\xb0\x8c\x9d\x97\x94\x1d\xa7\xa2\xca\xa4\x50\x18\xe5\xdd\x12\x8c\x49\xee\x56\xfa\x79\x3d\x7b\x4c\x87\xc7\xf4\xf0\x88\x8e\x1f\xcd\x4f\x84\x68\x68\xb7\xca\xbf\x7d\xc8\xdb\x9e\xd5\xb3\xe2\xa0\xc3\xa3\xc7\x1b\xa7\x7a\x56\xdf\x39\xb7\x4c\x0c\x70\x69\xe1\xb2\x6d\x30\x0c\x38\x56\x0f\x0e\xbe\xaa\xf7\xff\x6f\xd7\x83\xea\xe6\xa2\xe6\xad\x4f\x0e\xce\xe0\xa0\x2d\xea\xeb\x51\xff\x88\x8f\xbd\x7c\xca\x9f\x7c\x59\xc4\xeb\x8f\xf9\xa2\xf9\xa1\xae\x1e\x1c\xf2\xff\x47\x6c\x2f\xaf\xa9\x67\xcc\xa7\x93\xf9\x60\xec\xcf\x4f\x2a\x3c\xad\x2b\x26\x6e\x79\x6d\x3d\xfa\x3f\x74\xd6\x50\x5d\x3e\x6b\x3a\x63\x2a\x2f\xa8\x7a\x25\xa6\xf5\x7c\x4f\x4c\x69\x77\xeb\xd9\xad\xe7\x7b\xbb\xb7\xdf\xda\x91\xa0\x55\xb5\x8c\x3d\x48\x5c\xd6\xf5\xde\xbd\xc5\xde\xfd\x7f\xef\x28\x26\xff\xc5\x04\x61\x60\xf4\x3d\x21\xaa\xe9\xd6\x8f\x4e\x15\x6f\x2d\xc4\xbd\x5b\xef\xf0\x7b\x65\x52\xd5\x3b\x1b\x56\x78\xe5\x97\x93\xe9\xec\xe5\x8b\x67\x2f\xe8\xec\xf9\xc5\xcf\xa7\x74\x71\x71\x31\x5f\x9e\x4c\x77\xfe\x0e\x00\x00\xff\xff\x35\x7c\xeb\x87\x0d\x09\x00\x00")
1860
1861 func runtimeSyntaxNimYamlBytes() ([]byte, error) {
1862         return bindataRead(
1863                 _runtimeSyntaxNimYaml,
1864                 "runtime/syntax/nim.yaml",
1865         )
1866 }
1867
1868 func runtimeSyntaxNimYaml() (*asset, error) {
1869         bytes, err := runtimeSyntaxNimYamlBytes()
1870         if err != nil {
1871                 return nil, err
1872         }
1873
1874         info := bindataFileInfo{name: "runtime/syntax/nim.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1875         a := &asset{bytes: bytes, info: info}
1876         return a, nil
1877 }
1878
1879 var _runtimeSyntaxObjcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x55\x6d\x6f\xdb\x36\x10\xfe\x9e\x5f\xe1\xaa\xd9\x2a\xba\xb3\xd3\xbd\xa0\x58\xbd\x2c\x4e\xda\x25\x43\x81\x34\x19\x96\x16\xc8\x2a\xba\x02\x45\x9e\x6c\x2e\x14\xa9\x91\xc7\xa4\xc9\xae\xff\x7d\xa0\x6c\xa7\x76\xde\x56\x60\xc0\xf4\xc1\x12\x4f\xcf\xdd\x3d\xba\x7b\xee\x5c\x6b\x03\x78\xd9\xc2\xa8\xe7\xaa\x3f\x41\xa2\x3e\x87\x81\xdc\xd8\x50\x80\x20\x71\xb4\xd1\xeb\xf5\x7a\x09\x62\x45\x03\xa3\x5e\xc6\xf9\x30\x6f\xa8\x69\x68\xc6\x36\xb3\x8d\x0d\x1f\x0d\x84\x39\x68\xd0\x9b\x47\xc9\x38\xaf\xf2\xda\x38\x81\xa4\x5c\xac\x0c\xd0\xab\x5f\x0f\xba\xa3\x56\x54\x39\x67\xe8\xe5\xf1\xf1\x21\xbd\x74\xce\x80\xb0\x24\x67\xc2\x93\xb6\x48\x61\xe6\x3c\x92\x71\x76\x4a\x41\x5f\x81\xab\x09\x6c\x6c\xe8\xdc\x69\x45\x01\x05\x6a\x49\xd2\xd9\x80\x14\xd0\x47\x89\x14\xad\x76\x96\x52\x4e\x05\x35\xc1\x47\x04\x6f\x29\x8f\x96\x8d\x83\x9e\x5a\x50\xa4\xad\xd1\x16\xe8\x95\x11\x21\xd0\xc9\xfe\x21\xbd\x7e\xf3\x1b\x1d\x9d\xe4\xef\xd8\xf8\xb5\x45\x98\x82\x67\x9c\x57\xd9\x6d\xf2\x79\x18\x27\x06\x8c\xf2\x3c\x96\x63\x36\xd6\x16\xf3\x1f\xe9\xdb\xe7\xf4\xfd\x77\xf4\xfc\x07\x6a\xd1\x33\xc6\x4a\xbc\xd3\xb9\xd8\x1b\xbc\x9f\xcc\x7f\x8a\x91\x30\x36\x36\xa3\xc9\xa4\x7f\x2f\x54\x0c\xae\x9e\x0d\x5e\x94\x93\xfe\x3d\xe1\x94\x0e\xad\x40\x39\x2b\x0b\x31\xb8\xda\x1b\xbc\x5f\x03\x2f\xd0\xa9\x38\xd0\x80\xc5\x51\x2f\xcb\xcb\x52\x20\x7a\x5d\x45\x84\xb2\x2c\x8a\x51\x68\x85\x84\x39\x85\x9c\xf3\xbc\xf8\xc0\xd2\x23\xe3\x9c\x51\x59\xe6\xc2\xcc\x4b\x25\x42\x43\x55\xd4\x06\xb5\xa5\x99\x56\x0a\xec\xb2\x7a\xad\x90\x67\xa0\xc8\x43\x40\xaf\x25\x52\x48\x0a\x59\xd4\xdd\xd5\x74\x01\xe2\x8c\x95\x25\x95\x65\xb4\x31\x80\xa2\xf2\xc8\x59\x1b\x8d\xa1\xf2\x28\x1a\x23\x52\xfb\xcb\xb2\x32\x4e\x9e\xa5\xfb\x3c\xc5\xb0\xcf\xb2\x3b\xb8\xa7\xd2\xcb\xae\x59\x49\x6b\x1d\x71\x42\x68\x5a\x23\x10\xa8\x8d\x95\xd1\x92\x5a\xef\x92\x2c\x41\x51\xeb\xf5\x79\x7a\x91\x88\x24\x3c\xe1\x4c\x07\xaa\xbd\x06\xab\xe8\x5c\x7b\x8c\xc2\x50\x0c\xda\x4e\xa9\x89\xd8\x11\x39\x77\x46\xa0\x36\x40\x1e\xa6\x3a\x20\x78\x82\x8f\xad\xd1\x52\xe3\xaa\x10\x6e\x52\xaa\x9d\x27\x5d\xd3\xc5\x2c\x79\x2a\x47\x60\x02\x90\x14\x01\x48\x41\x2d\xa2\x41\x0a\x17\x1a\xe5\xec\xa1\x18\xe8\x2f\x09\x67\xde\x5d\x90\x4c\xdd\x24\xd7\x82\x17\xe8\x3c\x59\xb8\x20\x05\x06\x10\x1e\x72\x9f\x3a\x74\x49\xfc\xa8\x6d\x04\xaa\x3c\x88\x33\xf2\x80\xd1\xdb\x87\xbc\xac\xb3\x02\x5d\xa3\x25\x2d\x6e\x1e\x84\x72\xd6\x5c\x76\x0f\x17\x5e\x23\xa4\x59\x4a\x03\x97\xda\x48\x22\xa4\xc1\xb9\x2f\xe2\x6e\x0e\x56\x3a\x05\x94\xea\xab\x2d\x82\xaf\x53\x83\x74\xd3\x9a\x0e\x22\x3a\x59\xcc\xfb\x17\xc0\x80\x4c\x9f\x97\xda\xe5\xa4\x33\x14\x2e\xad\x9c\x79\x67\xf5\x15\x28\x4a\xd5\x98\xd7\xa1\xd6\x56\x18\x73\x99\x70\x2d\x78\xbc\x24\xd7\xa6\x30\xc2\x90\x87\xbf\xa2\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\xab\x72\x7f\xbc\x7a\xc8\x15\xd4\x49\xcc\xda\x4a\x13\x15\x2c\x63\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\x99\xdd\x4a\x5d\x96\xc5\xe7\xe1\x2c\x3f\x4f\x66\x0b\x52\x0b\x73\x93\x5b\xf1\x98\x76\x27\x6b\xfc\x16\x84\x16\xfc\xd8\x1a\x98\x67\xb4\x3d\x19\xf6\x39\xdf\x1a\x17\x3b\xc4\xb3\x35\xcf\xcd\xbb\xb7\x40\x31\x1c\xfd\xf4\xcd\xd3\x3e\xfd\xfc\x88\xf3\xaf\x38\x2f\x38\x9f\x4c\x68\x9b\x76\x68\x8b\x06\xf4\xf5\xe7\xe2\x75\x0b\x55\x58\x1c\xda\xd8\x54\xe0\x93\x6b\x52\xce\x60\xcc\xc6\xc5\xb3\xc1\x8b\xc9\x53\xce\x2b\xe2\xbc\xe2\x7c\x79\x1c\xae\xd9\x9f\x7d\x4c\xc7\xbd\xc1\x41\x67\xb9\x9e\xea\x65\xd8\x14\x6f\x97\xf3\x22\xe7\x9c\xf3\x21\x15\x1f\x12\x0f\xd6\xe7\x7c\x42\xbb\x9c\xff\xbd\x62\xfe\xd4\x99\x3f\x25\x73\xbe\x62\x66\x9d\x99\xdd\x15\x98\xf3\x6a\x7b\x8e\x4c\xc0\x9d\x0e\xb8\xb3\xa2\xdd\x75\x68\x6e\xb5\xa1\xa3\x77\x87\x87\xf4\xc7\xfe\x09\x1d\x1d\xd3\xdb\xdf\xdf\xed\x13\xfa\x08\x74\xb0\x77\x78\xb2\x4f\xb5\x48\x63\x1d\xc0\xd4\xec\xde\x20\x67\xcb\x95\xbe\xbe\xd1\xaf\x8b\x98\x56\xa4\x9d\x8e\x7a\xd9\x93\xe1\x93\xdb\x25\x5e\xbc\xed\xcc\xe9\x0a\x28\x7c\x37\x58\x3c\xcb\xae\x8d\x60\x55\x2a\xda\x78\xfb\x51\xfa\x34\xb6\xfa\x6a\xe5\xaf\x76\x79\xad\x46\x9f\x4b\xed\xd5\x4c\xf8\x8e\x2c\xe7\xc3\x2f\xa7\xf0\x3f\x30\x68\x3a\x69\xde\xca\xbc\xb5\x75\x33\xf3\xe6\xbf\xe4\x43\xa7\x5c\x22\xf8\xf6\xf8\x97\x63\x3a\x3d\x3d\xa5\x83\xd7\xa7\x6f\xf6\xd9\x68\xfc\x05\xc9\x38\xef\xdf\x4c\xc7\x79\x7f\xeb\x3f\x64\xfc\x27\x00\x00\xff\xff\x84\xc8\xab\x6a\x3d\x09\x00\x00")
1880
1881 func runtimeSyntaxObjcYamlBytes() ([]byte, error) {
1882         return bindataRead(
1883                 _runtimeSyntaxObjcYaml,
1884                 "runtime/syntax/objc.yaml",
1885         )
1886 }
1887
1888 func runtimeSyntaxObjcYaml() (*asset, error) {
1889         bytes, err := runtimeSyntaxObjcYamlBytes()
1890         if err != nil {
1891                 return nil, err
1892         }
1893
1894         info := bindataFileInfo{name: "runtime/syntax/objc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1895         a := &asset{bytes: bytes, info: info}
1896         return a, nil
1897 }
1898
1899 var _runtimeSyntaxOcamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x6b\xf3\x30\x0c\xc6\xef\xf9\x14\x22\x79\x0f\x69\x5f\x1c\xb2\xd3\x58\x2e\x61\xdd\x1f\xb6\xcb\x3a\x76\x1a\x58\x66\xb8\x89\x3a\x02\xb1\x53\x62\x15\xda\x6f\x3f\xec\x94\xa4\x85\xad\xa3\x30\x41\x82\x1e\xc9\x3f\xf9\xc1\x68\xdd\xb4\xc4\xfb\x0d\x15\xd0\x55\xda\xb4\x51\x54\x13\x53\xc5\x45\x04\x00\xe0\x9b\x56\x1b\x2a\x20\x46\xcc\x4c\xdb\x94\xff\xe2\x28\xea\xb7\x2d\xb9\xe1\x40\x02\x2f\x5b\xb3\xa2\xde\x0d\x2a\x81\x67\xcb\xf4\x39\xe9\x04\x16\x8d\xd5\xfd\x3e\x48\x01\x55\x67\x1d\x6b\xcb\x99\x0d\x54\x01\xb1\x28\x73\xb9\x5a\x28\x99\x5f\xf9\xef\x43\xcd\xe3\x91\x5c\x56\xac\xdb\xb3\x60\xb7\x54\x32\x17\xd7\xe1\x77\x82\xde\x53\xd5\x98\xb3\x30\x62\x2d\x11\xeb\x13\xea\x89\x76\xba\xfe\x95\xcc\xe5\xee\xdd\xdf\x78\xa3\xc5\xfa\x56\x3c\x1e\xa5\x47\xc3\xe0\x8d\x0e\x43\x2e\xb5\x93\x4d\x69\x2a\xe9\x41\xc9\xff\x42\x7d\xdb\x9d\x95\x7f\xea\x3c\xfb\xa9\x91\xca\xcd\x6b\x70\x71\x31\x39\x3a\x84\xbb\xce\x18\xb2\xec\x46\x73\x41\x0e\x2b\xe4\xc3\xb1\xee\x39\x2c\x59\x8a\x78\x78\x44\x1f\x64\xeb\x50\x9d\x23\xce\xa6\xea\xb0\x7f\x20\xd5\x57\x00\x00\x00\xff\xff\x85\xab\x4f\xff\xbc\x02\x00\x00")
1900
1901 func runtimeSyntaxOcamlYamlBytes() ([]byte, error) {
1902         return bindataRead(
1903                 _runtimeSyntaxOcamlYaml,
1904                 "runtime/syntax/ocaml.yaml",
1905         )
1906 }
1907
1908 func runtimeSyntaxOcamlYaml() (*asset, error) {
1909         bytes, err := runtimeSyntaxOcamlYamlBytes()
1910         if err != nil {
1911                 return nil, err
1912         }
1913
1914         info := bindataFileInfo{name: "runtime/syntax/ocaml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1915         a := &asset{bytes: bytes, info: info}
1916         return a, nil
1917 }
1918
1919 var _runtimeSyntaxPascalYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x7f\x8b\x23\x37\x0f\xfe\x3f\x9f\x22\x6f\xde\x85\x4b\x6e\x9b\xbd\x16\x4a\xa1\xa1\x10\x4a\xa1\x5f\x22\x93\x82\xc6\xd6\x64\xd4\xf5\xd8\x83\x24\xe7\x47\x57\xf7\xdd\x8b\x3d\x7b\x7b\xbb\x09\x74\x8f\x0b\x61\x2c\xcb\xb2\xa4\xe7\x91\xe4\x8e\x02\xea\x65\xc4\xcd\x7c\x04\x71\x10\x66\x33\x8f\x8a\x4e\x37\xb3\xf9\x7c\x3e\x2f\xa7\x11\x06\xdc\xcc\x17\x4d\xf3\x30\x82\xdc\x2d\x66\x33\xce\x01\x65\x3a\x5f\xcf\xa7\xbb\x8b\xa6\x69\x97\x5b\xda\x2c\x45\x99\xe2\xc1\x20\x0a\x3d\x8b\x27\xf2\xf8\x2c\x4a\x9f\x58\x9f\x65\xd7\x03\x57\xb3\x2a\x14\xa3\x2a\xb4\x29\x05\x84\x68\xed\x45\x71\xb2\xa7\xa8\x76\x4a\xec\x4d\x06\x08\xa1\xec\x42\x8a\x87\xaa\x71\xc0\x9e\x22\x84\xaa\x29\x27\x14\x15\x0f\xc8\x65\xfd\xe5\x67\x13\x8a\x87\x80\xe6\x32\x33\x46\x77\x31\x9f\x72\x1b\xd0\xf0\xac\x18\x3d\xfa\xd5\xaa\x69\xda\xc5\x33\x0c\x51\x50\x1c\x30\xea\x2b\x2c\x10\xbd\x81\x0c\x06\xcc\x70\xb1\x16\x0f\x14\xad\x65\x84\x47\x73\x20\x68\x2e\x45\xd1\xe9\xcb\xd9\x69\xe2\x22\x2b\xc5\x8c\x56\x11\x4f\x3a\x4f\x47\xf3\xc9\x7c\x3a\x45\x4d\x86\x41\xd0\x30\x7a\x2b\xc4\x5a\x97\xd8\xba\x1c\x9d\x52\x8a\x76\x48\x9a\x8c\x3a\xa3\x61\x0c\x35\x13\xa8\x6a\x2a\xff\x40\x11\x2b\x38\xee\xc0\xa1\x05\x68\x31\xd8\x90\xbc\xc5\xa4\x96\xda\xbf\xd1\xa9\xa5\xce\x52\xb4\x34\x22\x43\x89\x9b\xd8\x46\x70\x8f\xe8\x6d\xe4\xe4\xd0\x67\xc6\x22\x1d\x18\x06\x63\x74\x85\x3e\xc6\x11\x41\x8d\x51\x52\x66\xf7\x52\x24\x54\x93\x3e\x98\xf4\x6c\xda\x63\x34\x4d\x56\x8a\x6c\x39\x92\x5a\x8e\x4a\xc1\xb2\xa0\xd8\xb1\xd4\xad\x2f\x38\x4e\xa4\xbd\x9d\x13\xbf\xcf\xa8\x98\x0b\x20\x62\x9e\x64\x4c\x85\x8a\xb3\xc3\x51\x0d\xcf\x54\x3e\x63\x69\x0f\xeb\x4a\x49\xe9\x9f\x09\x7e\xdd\x84\x8b\x51\xec\x91\x49\xd1\x1b\x45\x52\xfa\x6a\x40\x62\x81\x5a\x06\xbe\x58\xc4\x53\xa5\x20\x6b\x41\x3a\x22\xeb\xc5\x18\x48\xd0\x04\x43\x67\xda\x33\x82\x2f\x59\x2b\x5f\xde\x4f\xb5\x95\x14\xb2\xa2\x41\x2b\xca\xe0\xd4\x20\x10\x88\x81\x08\x0e\x6d\x40\x36\xe7\xd1\x05\x73\xe3\x58\x57\x8f\x1d\xe4\xf0\x05\x45\x6d\x32\x2e\xad\xd9\x25\x3e\x01\x7b\x3b\x60\x44\x26\x67\x14\x3d\x9e\x2d\x24\x07\xc1\xca\x64\x59\x4c\xa2\xe0\x1e\x3b\x2e\x9b\x14\x7c\x37\x3a\x07\x21\x58\x3a\x22\x33\x79\xb4\x69\x2e\x6d\x64\x3a\x82\xd6\x22\x96\xf9\x2c\x85\xcd\x6d\x20\x37\x2d\xd2\x63\x29\x28\x94\xcf\x81\x44\x91\x8d\x91\xa2\x72\xf2\xd9\xa1\x09\x74\x58\xbd\x4a\xea\xb4\x0b\x09\xd4\x64\x44\x57\x79\x44\x13\xf5\xf5\xf0\x48\xac\x19\x82\x9d\x0a\xd3\x6f\x18\xaa\x5d\x0e\x6f\x08\xea\xa0\xf4\xb2\x72\x46\x8b\x14\xde\xf2\x39\xb9\x9e\x9e\x88\xf2\x13\x05\x2e\x77\x41\x86\xc5\x8b\x12\xa3\xdf\xcc\x17\x18\xfd\x57\xd5\xf4\xb2\xcc\x77\xfb\xab\xb0\x0f\x31\x0f\x2d\x72\x8d\x7e\xb7\xfb\x71\xfd\xeb\xef\xeb\x3f\x61\xdd\xed\xef\xaf\xf3\x7b\x6d\xd8\xee\xee\xd7\xfb\x6d\xb1\xde\xdf\x2f\x77\x0f\x5f\xc4\xd5\xb6\xa4\x8f\xaf\x0e\x57\xdb\x1b\x37\xd3\x2c\xdc\x02\xf8\x7f\xbd\xf1\xf4\xd3\x0f\x9f\xaf\x71\xdc\xdd\xa0\x78\xd9\x5f\xfb\x9e\xd8\xf9\xa3\x87\x29\xcf\xa6\x79\xf8\xe6\xf8\x1f\xae\xc3\x2e\xb7\xbf\xfd\xaf\xb8\x58\x7d\xb8\x8e\xff\x1d\xe1\x47\xc6\xf2\x58\xdc\x86\x7d\x6a\x9a\xbb\xeb\xc8\x9f\xff\xab\x6c\x43\x9d\xa6\x1b\x3f\x9f\x3e\xbd\x4f\xdb\xfb\x5e\x9a\x66\xd9\x34\x1f\xaf\x3d\x35\xcd\xc7\xa6\x59\x7d\x87\xbb\xe5\xd3\x6a\xb9\xdd\xec\xfe\xba\xdb\xaf\xbe\x09\xe3\xec\xdf\x00\x00\x00\xff\xff\x56\xae\xb6\xb0\x33\x07\x00\x00")
1920
1921 func runtimeSyntaxPascalYamlBytes() ([]byte, error) {
1922         return bindataRead(
1923                 _runtimeSyntaxPascalYaml,
1924                 "runtime/syntax/pascal.yaml",
1925         )
1926 }
1927
1928 func runtimeSyntaxPascalYaml() (*asset, error) {
1929         bytes, err := runtimeSyntaxPascalYamlBytes()
1930         if err != nil {
1931                 return nil, err
1932         }
1933
1934         info := bindataFileInfo{name: "runtime/syntax/pascal.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1935         a := &asset{bytes: bytes, info: info}
1936         return a, nil
1937 }
1938
1939 var _runtimeSyntaxPatchYaml = []byte("\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")
1940
1941 func runtimeSyntaxPatchYamlBytes() ([]byte, error) {
1942         return bindataRead(
1943                 _runtimeSyntaxPatchYaml,
1944                 "runtime/syntax/patch.yaml",
1945         )
1946 }
1947
1948 func runtimeSyntaxPatchYaml() (*asset, error) {
1949         bytes, err := runtimeSyntaxPatchYamlBytes()
1950         if err != nil {
1951                 return nil, err
1952         }
1953
1954         info := bindataFileInfo{name: "runtime/syntax/patch.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1955         a := &asset{bytes: bytes, info: info}
1956         return a, nil
1957 }
1958
1959 var _runtimeSyntaxPegYaml = []byte("\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")
1960
1961 func runtimeSyntaxPegYamlBytes() ([]byte, error) {
1962         return bindataRead(
1963                 _runtimeSyntaxPegYaml,
1964                 "runtime/syntax/peg.yaml",
1965         )
1966 }
1967
1968 func runtimeSyntaxPegYaml() (*asset, error) {
1969         bytes, err := runtimeSyntaxPegYamlBytes()
1970         if err != nil {
1971                 return nil, err
1972         }
1973
1974         info := bindataFileInfo{name: "runtime/syntax/peg.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1975         a := &asset{bytes: bytes, info: info}
1976         return a, nil
1977 }
1978
1979 var _runtimeSyntaxPerlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x6d\x8f\x1b\x35\x10\xfe\x7e\xbf\x62\x49\x8b\x6a\x1f\xba\x14\xf1\x8d\x50\x14\xf8\x05\x20\xc1\x27\x6e\x53\xe4\xd8\xb3\x1b\x13\xbf\xc5\x33\x9b\xdc\x4a\xcf\x8f\x47\xde\xe4\x52\xd4\x56\x44\xca\x6a\xe5\x19\xcf\xf3\xe6\xf5\xe0\x03\xc9\x5c\x68\xd3\x15\xaa\xe1\xe1\xc1\x91\x90\x95\x4d\xf7\xd0\x75\x5d\xd7\x8a\xc9\x44\xda\x74\xab\xbe\x5f\x97\xe7\x10\x77\x6f\x57\x4b\xe5\x40\xc6\x51\xdd\x74\xab\x8f\x6f\xbe\x59\x3f\xbe\x57\x94\xce\xdd\x77\x7a\xdb\x66\xa8\x0e\x6f\xf5\xea\xe1\xa1\x4e\x81\x78\xb3\x74\x3f\x75\x57\x88\x55\xdf\xef\x95\xb1\x96\x8a\xc0\x04\x53\x23\x8c\x98\xf4\x03\xf6\x3e\x29\x87\x98\x1d\x69\x58\x65\x42\xa0\x8a\x83\x72\xbe\xb6\x35\xe4\x82\x7c\x49\xa8\x39\x8b\x46\xc8\x4c\xad\xa2\xb7\xc8\x29\x91\x15\x64\x46\x9d\x8b\x68\x38\xb5\x8f\xca\xb6\x06\xe4\x42\x49\x83\x06\x9f\xc8\x81\x02\x09\xc1\x13\x32\xa6\x58\x34\x48\x19\x7b\x40\x1e\x70\x36\x01\x2f\x8a\x2c\x3c\x0b\xc3\x0b\x8a\xd6\x18\x94\x4d\x12\xd0\x94\x67\x84\x6c\x8f\xc8\xf5\xa8\x75\xdf\xef\xd1\xd8\x8f\x24\xca\x22\xe4\xd1\x27\x14\xa2\xda\xec\x41\x19\x6b\x41\x29\xde\xa1\x54\x9f\xab\x97\x19\xe5\x92\x4c\x84\x3a\x64\x16\x24\x12\x94\x9a\x25\x83\xa9\x9e\xf5\x7e\xbe\x6e\xba\x4c\xde\x61\xac\xa3\x77\x9f\xfa\xf4\x7e\x36\xce\xd5\x6b\xfb\x7e\x4e\x53\xdc\x53\x5d\xb6\xed\xe7\x92\xab\x68\xa8\xe7\x91\x77\x24\xa0\xe4\xb4\x2a\x17\x8c\x15\x5f\x03\xa1\x24\x18\x49\x38\xdb\xa3\x5a\xe0\x72\xb3\x68\x8c\xe2\x23\x61\x6c\x6d\x63\xa5\x82\x03\xbd\xc0\x27\xb7\x3c\x05\x3e\x5b\x09\xf8\x27\xfb\x74\xd7\x7b\xa4\x99\x71\xf4\x21\x20\x18\x16\x04\x4a\xa3\x1c\x10\x7c\x3a\x22\x78\x16\x4a\xcd\x23\x13\x54\x9b\xab\xb7\xcd\x18\x04\x16\x23\x88\x88\xc7\x25\x41\x1e\x55\x9b\x3a\x92\x80\x93\x43\xb5\x67\x8d\x44\x2f\x82\xdc\xc2\x2b\x94\x5e\xe3\xac\x0e\xc5\xd8\x23\x8a\x2f\x84\x92\x4b\x33\x33\xc9\xb0\x45\x99\xf8\x80\x13\x4e\x27\x9c\x5e\x50\x4d\x1b\x42\xca\xb8\xe5\x80\x34\x26\x7a\x0b\x7b\x86\xcb\x58\x84\x9e\x26\x5f\x09\x4c\x02\x99\x6a\xc2\x99\x2a\x13\x2e\x3e\xb9\x06\x83\x7a\x55\x5b\x63\xdb\xcc\x60\xdb\xce\x21\x98\xe8\x78\xa5\x71\x17\xce\xa4\x42\x3b\x5e\xb1\x91\x8f\x8d\x7d\xcc\x05\xc9\x41\x96\xb4\xe5\x9e\xf4\xe2\xf1\xe2\x2e\x1f\xfc\x20\xe0\x43\xbc\x0b\xae\x64\x1c\x2e\xd5\x0b\xb5\xea\x24\xae\x1d\x64\xf6\x09\x1c\x88\x0a\xda\x4e\x12\x55\xcc\x62\x00\xe7\x2a\xe0\x12\xbc\xb2\x84\x36\xee\xaa\x1f\x7c\x6a\xeb\x8b\xee\xc5\x59\x96\xc9\xcd\xe0\x69\xcf\x52\xc1\x73\x5c\xc2\xe0\x99\x95\x35\x21\x5c\x21\x85\xe2\x2b\xac\x50\x08\x37\x87\x97\xec\xa5\xaa\xb9\xbd\xd7\x29\x59\x23\x84\x29\x1a\x3e\xde\x55\x4f\x49\x39\x1a\xae\xf9\x2e\x61\x2c\x9a\x34\xa6\x65\xef\xd9\x84\x89\x18\x67\xb2\xb8\x18\x2f\xaa\x78\xa7\xb7\xb8\x98\x24\xa6\x56\x33\xe3\x62\x6a\xba\xe1\xf6\xfd\x7e\x75\xfb\xf6\x1b\x69\x8a\x94\xe4\x76\x01\xd8\x9c\xc4\xa7\x89\x40\x81\x97\x87\x1f\x5a\x78\x43\xae\xed\x4f\xed\xe3\xf4\x03\xa6\x14\x88\x19\x53\x12\x1f\x70\x39\xf8\x40\xa0\x13\x12\x21\x08\xc6\x76\x10\x31\x12\x6c\x2c\x78\x41\x5c\xdc\xc0\xc4\xb4\x70\x36\xad\x60\x12\x3c\x9b\xff\xd2\xf0\x8e\x92\xf8\xc1\x53\xbd\x5e\x4a\xed\xc7\x62\x6a\xa3\xf5\xfc\xf6\x97\x6f\x77\xab\xfb\x32\x25\xb7\xe9\x56\x4a\x6d\xbd\xee\xf0\xfc\xf1\xfb\xa7\x1f\x7f\x7d\xfa\xeb\xef\x1d\x9e\xf4\xa7\x9e\xeb\xf5\xd6\x3d\xef\x1e\x6e\xf3\x6d\x4e\x2c\x26\xc9\x9a\xa5\xfa\x34\x36\xb1\xab\xf5\x63\xbf\xc2\xe9\xd4\xf7\x58\x3f\xf6\x3d\x5e\xa9\x38\x1a\xcc\x14\x16\x60\x8e\xbb\xf7\xeb\xc7\xf7\xaf\x95\x52\xa9\xd4\x6c\xbf\x64\xa8\x3e\x36\x79\xdd\xcf\x5d\xa2\x8b\xfe\x9c\xe9\x4f\xff\x4b\x2b\xde\xbc\x7f\xb3\x7e\xfc\xd2\x8b\x75\x34\xb6\xe6\x2f\xf1\x3e\x7c\xe8\xde\xfd\xf1\xe7\x6f\xbf\xbf\xfb\x1c\xab\x2d\x7e\x15\xee\xdf\x00\x00\x00\xff\xff\x61\x50\x4b\x0e\x4a\x06\x00\x00")
1980
1981 func runtimeSyntaxPerlYamlBytes() ([]byte, error) {
1982         return bindataRead(
1983                 _runtimeSyntaxPerlYaml,
1984                 "runtime/syntax/perl.yaml",
1985         )
1986 }
1987
1988 func runtimeSyntaxPerlYaml() (*asset, error) {
1989         bytes, err := runtimeSyntaxPerlYamlBytes()
1990         if err != nil {
1991                 return nil, err
1992         }
1993
1994         info := bindataFileInfo{name: "runtime/syntax/perl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
1995         a := &asset{bytes: bytes, info: info}
1996         return a, nil
1997 }
1998
1999 var _runtimeSyntaxPerl6Yaml = []byte("\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\x2b\x86\x2a\x55\x3d\x1f\x55\xea\xd1\x79\x92\x2d\xd3\x7d\x97\xa9\xf8\xf7\xbb\x9d\x25\x21\x23\xf7\xdd\xae\xeb\xba\xae\x66\xa3\x0e\x74\xdf\xed\x87\xe1\x90\xdf\xbf\xd9\xef\x76\x65\xf1\xc4\xf7\x2d\xfd\xb6\xbb\x96\xee\x87\xe1\xa8\xb4\x31\x94\x05\xda\xeb\x12\xa0\x45\xc7\x6f\x70\x74\x51\x59\x84\x64\xa9\x87\x51\xda\x7b\x2a\x98\x95\x75\xa5\xc6\x90\x32\xd2\x1a\x51\x52\x92\x1e\x3e\x31\xd5\x4c\xff\x80\x14\x23\x19\x41\x62\x94\x2d\x4b\x0f\xab\x8e\x41\x99\x7a\x01\x29\x53\xec\x41\xa3\x8b\x64\x41\x9e\x84\xe0\x08\x09\x4b\xc8\x3d\x48\x69\x33\x23\x8d\xb8\x68\x8f\x27\x45\x06\x8e\x85\xe1\x04\xb9\xef\x31\x2a\x13\xc5\xa3\x0a\x4a\xf0\xc9\x9c\x90\xca\xa9\xc7\x44\xa2\x0c\x7c\x9a\x5c\x44\x26\x2a\x55\x2d\xf2\x54\x32\x72\x76\x16\xb9\xb8\x54\x9c\x6c\xc8\x6b\xd4\x01\x6a\x4e\x2c\x88\x24\xc8\x25\x49\x02\x53\xb9\xf4\xc7\xed\x5a\xb4\x2e\xce\x62\x2a\x93\xb3\x5f\xee\xf5\xc7\x4d\x5b\x5b\xae\xd7\x8f\x5b\x5c\xc2\x91\x4a\x2b\x3b\x6e\x39\x15\xe9\xa1\x3e\x4d\xfc\x48\x02\x8a\xb6\x57\x79\xc5\x54\xf0\x6f\x20\x14\xa5\x72\xe5\x64\x4e\xaa\xc1\xa5\x6a\xcd\x14\xc4\x05\xc2\x54\xaf\x4d\x85\x32\x66\x7a\x82\x8b\xb6\x9d\x02\x97\x8c\x78\xfc\x95\x5c\xc4\x89\x36\xc6\xc9\x79\x0f\xaf\x59\xe0\x29\x4e\x32\xc3\xbb\x78\x82\x77\x2c\x14\xab\x27\xda\xab\xda\xaf\x7f\xa8\x86\xc0\xb3\x68\x41\x40\x38\xb5\x89\xf1\xa4\x6a\xb7\x89\x04\x1c\x2d\x8a\xb9\xf4\x88\xf4\x24\x48\x75\x58\x99\xe2\xf3\xf8\x8a\x45\xd6\xe6\x84\xec\x32\x21\xa7\x5c\x4d\x8c\x32\x3e\x20\x2f\x3c\xe3\x8c\xf3\x19\xe7\x27\x14\x5d\x9b\x90\xd2\xb6\x2d\x44\x65\xd2\x3f\xc0\x5c\x60\x13\x9a\xc0\xf3\xe2\x0a\x81\x49\x20\x4b\x89\xb8\x50\x61\xc2\xea\xa2\xad\x30\x28\x57\x95\x25\xd4\x62\x06\x9b\xba\x77\x60\xa2\x53\x3b\x5a\x94\x94\xaf\x8b\x14\x2a\xed\x50\x79\x87\x94\x11\x2d\xa4\xcd\x57\x3e\xcf\xb6\xb9\xda\xfc\xe4\xd9\x8d\x02\x9e\xc3\x67\xa9\x85\xb4\xc5\x5a\x9c\x50\xcd\x2e\x62\xeb\xca\xb2\x8b\x60\x4f\x94\x51\x2b\x49\x54\xd6\x4d\x3a\xa7\x22\xe0\xec\x9d\x32\x84\xda\xee\xaa\x1c\x7c\xae\xf1\xa6\xb8\x79\xca\xb2\xd8\x0d\xbc\x1c\x59\x0a\x78\x0b\x6d\x0c\xbc\xb1\x32\xda\xfb\x2b\xa4\x50\x78\x86\x15\xf2\xfe\xe6\x6d\x9b\xb6\x14\x6c\x90\xb2\x44\xa3\x85\xb0\x04\xcd\x27\x2c\x51\x59\x1a\xaf\xf3\x6c\xe6\x37\x25\x3d\x96\x56\x71\xd1\x7e\x21\xc6\x85\x0c\x56\xed\x44\x65\x67\xfb\x07\xac\x3a\x8a\x2e\x45\x6f\x58\x75\x89\x37\xb4\x61\x38\xee\x6f\x6f\xbb\x52\xa5\x40\x51\x6e\x0f\xdc\xa4\x28\x2e\x2e\x04\xf2\xdc\x0e\x37\xd6\x61\x8d\xa9\xd4\x7f\xaa\x8f\xcf\x8d\x58\xa2\x27\x66\x2c\x51\x9c\xc7\x3a\x3b\x4f\xa0\x33\x22\xc1\x0b\xa6\xba\x78\x98\x08\x26\x64\x3c\x21\x34\x0f\xb0\x30\x35\xce\xba\x26\x74\x84\x63\xfd\x0f\x1a\x99\x8c\xd3\xfe\x46\x62\xd6\x0c\xc7\x30\x5e\x33\xa3\xa4\xda\xce\x5d\x28\x62\x9d\x29\xe2\x87\xdf\x7f\xfe\xf8\x23\xc2\xe2\xc5\xa1\x50\x5d\x1b\x46\x20\x99\x93\xad\x40\xcf\xbf\xfc\x52\x32\x58\x37\xf0\xaf\x81\x9c\xa5\x28\x6e\x74\x54\xae\x5f\xb7\xfa\xc7\xa2\x4b\xd5\xff\xe9\xcd\xf7\xff\x7f\xdc\x7f\x0e\x53\xb4\xf7\xdd\x5e\x75\x18\x86\x61\xf8\x03\x6f\xfb\x2f\xa9\xeb\xe7\xb1\xfb\xf4\xb8\xbb\xb5\x35\x29\xb2\xe8\x28\x07\x96\xe2\xe2\x54\x75\xec\x0f\x77\xc3\x1e\xe7\xf3\x30\xe0\x70\x37\x0c\x78\x66\x60\x69\xd4\x8b\x6f\x78\x1c\x1e\xdf\x1d\xee\xde\x3d\x67\x72\xa1\x5c\x92\x79\x4d\x4c\xfd\x59\xed\xeb\xbe\xeb\x22\xad\xfd\x4b\x82\xdf\xfe\x27\xad\x70\x9b\xed\xff\x0e\x77\xaf\x2d\x38\x04\x6d\x4a\x7a\x8d\xf7\xe1\xc3\x4f\xbf\xfc\xf6\xeb\xc7\x97\x48\x2f\x82\x5f\xa1\xfd\x1d\x00\x00\xff\xff\x24\xe2\x25\xa6\x61\x06\x00\x00")
2000
2001 func runtimeSyntaxPerl6YamlBytes() ([]byte, error) {
2002         return bindataRead(
2003                 _runtimeSyntaxPerl6Yaml,
2004                 "runtime/syntax/perl6.yaml",
2005         )
2006 }
2007
2008 func runtimeSyntaxPerl6Yaml() (*asset, error) {
2009         bytes, err := runtimeSyntaxPerl6YamlBytes()
2010         if err != nil {
2011                 return nil, err
2012         }
2013
2014         info := bindataFileInfo{name: "runtime/syntax/perl6.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2015         a := &asset{bytes: bytes, info: info}
2016         return a, nil
2017 }
2018
2019 var _runtimeSyntaxPhpYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\xef\x73\xe3\xb6\x11\xfd\x5c\xff\x15\xb2\x92\xb9\x03\xec\x93\x9c\xfe\xba\x99\xe8\x22\x73\x6e\xd2\xcb\xa7\x9b\xb6\xd3\x26\x1f\x1a\x82\xbe\x01\xc1\xa5\x88\x11\x08\xf0\x80\xa5\x7c\x4a\x5e\xfa\xb7\x77\x40\xc9\x3e\x5d\x65\xb7\x1a\x0e\x6d\x2c\x16\xdc\xdd\xb7\x6f\x1f\xd9\x5a\x47\xbc\x1f\x68\x35\x1b\xba\xe1\xe2\xa2\x21\x26\xc3\xab\xd9\xc5\x6c\x36\x9b\xe5\x3d\xaf\x7b\x5a\xcd\xe6\x4a\x2d\x87\x6e\x28\xff\xf0\xc7\x3f\xfd\x39\xfd\xbb\x2a\xbe\x9e\x5f\x5c\xc4\xd1\x51\x5a\x4d\x8e\x8b\x59\xda\xf7\x75\x70\xcb\x30\x50\xd4\x1c\xe2\x6a\x36\xff\x0e\xb7\xf3\xe3\x26\xc5\x78\x30\x95\x77\x97\xd5\xf2\xaa\x78\xdc\x38\x9e\x62\xbd\x59\xcd\xe6\xa2\xb0\xf2\xbb\xf2\xa6\x2a\x84\x16\x75\x1d\x61\x62\xf0\xfb\x1e\x4d\x13\x29\x25\x0c\x83\x23\x46\x24\x8d\xc8\xd6\x38\x42\xb2\x0d\x61\x6c\x6c\x90\x05\x6a\xa1\x13\x89\x36\x78\x96\x05\x1a\x61\x11\x24\xec\x06\x2e\x98\xed\xc7\x31\x30\x21\xca\x02\x46\x0b\xbf\xd3\x09\x03\xdb\xe0\x25\x0c\x79\xa6\x08\x63\x99\x60\x82\x68\x08\x0e\x6e\x13\xc3\x38\x48\x34\x42\xb3\x16\xce\xa6\xe9\x79\x20\x07\x62\x6d\x5d\x42\xeb\x61\xb5\x0b\x1b\xd8\x08\x07\x96\xa0\x5e\xd4\xd4\xc8\x02\xad\x25\xd7\x24\x62\xb4\x76\x23\x8c\x9e\x82\x60\x8c\x24\x91\xd3\x42\x1b\x62\x0f\x61\x65\xd1\x46\xdd\x13\xa6\x7b\xf6\xee\xca\xdf\x2f\x5e\x57\xe8\x22\x2c\x6c\xbf\x81\xf5\x62\x18\x19\x49\x62\x5b\x37\xd8\xd2\x7e\x43\x1e\x4e\xd7\xe4\xe0\x68\x43\xbe\x81\xb3\xc2\x6f\x65\x81\x5e\x0b\xeb\x31\x20\x6e\x25\x7a\xf2\xa3\xb0\x4c\x7d\xb6\x13\x0b\x0d\x8a\x12\x5e\xef\xe0\x83\x38\xc4\x42\x32\xd1\x0e\x2c\x11\x84\xc3\xc0\x62\xaa\x14\x13\x12\x23\x0f\x23\x4b\x0c\x42\x47\xdd\xc3\x1a\x1e\x23\x21\x5f\x61\x93\xa1\x97\x05\x3e\x22\x8a\x01\x8c\xb1\xde\x4b\x24\xc1\xd1\x6e\x49\x16\x48\xba\x1f\x90\x48\x98\xa9\x58\x47\x86\x25\x52\xaf\x9d\x43\x0a\x63\x34\x84\x34\x68\x8f\xc4\x31\xf8\x0d\xd2\x28\x6a\x0c\xe8\x7b\x1d\xf7\x12\x4c\x9f\x58\xe7\x6e\xb2\xed\x09\x1c\xb5\xd9\x62\x14\x4e\x16\xd8\xe9\x88\x9d\x6d\x28\xe0\xbe\x8e\x52\xcc\x96\x57\xb8\x95\x4f\x72\x66\x49\x9f\x98\x7c\x43\xcd\x17\xe4\xa9\x43\xb3\x47\x63\x77\xe8\xb8\x77\xe8\x48\x37\x82\x72\xfb\xdb\x10\x72\xbf\xd9\xb2\x23\xb0\xae\xf3\xfd\xe8\x8c\x4e\x90\xce\x4d\x8c\x93\x97\x7c\x22\xea\x10\x69\x88\xc1\x7c\x11\xe9\x80\x28\x12\xef\x1d\x3d\x95\xe8\x40\xc6\x6a\xb7\x9a\xcd\x5f\x94\x77\x6f\xca\x72\x95\x06\x6d\x68\x55\x55\xd5\xd5\x9b\x2f\x8b\x59\xcd\xe6\xe5\x6a\x5d\x3d\x18\x6d\x43\x9e\x6d\x6b\x29\xcf\x8c\xd0\x8e\x51\x6f\x4c\x70\x21\xa2\x23\xbb\xe9\x18\x5d\xa4\xf6\x81\x14\xc1\x6f\x1a\x4a\x06\x79\x4e\x11\xbc\x71\xd6\x6c\x11\x7c\x1b\xcc\x98\x10\xbc\x0b\xba\x41\xf0\x7d\x18\x13\x85\x1d\x45\x24\xfb\xcb\x43\x5f\xa2\x39\xe4\x0e\xd6\x71\x43\x8c\x2c\x03\xd8\x69\x37\x12\xee\x6d\xc3\x9d\x5c\x3f\x64\x64\x82\x4f\xac\x3d\x2f\x13\x47\xeb\xf3\xb0\xaa\x79\x79\xa7\xe6\xd5\x95\x9a\x9f\xf9\xf8\xb1\xaf\x0f\xa9\x17\x56\x7e\x55\x7e\xb3\xf8\xf6\xed\xe2\x87\xea\xd7\xd7\xaf\x5e\xff\xf6\xcc\xf3\x96\x63\xcc\x18\x88\x96\x07\x91\xe9\xd6\xf1\xf1\x9f\x8d\x65\x98\x2e\x86\x9e\xe4\xea\xe6\xa6\xbc\x9b\xfd\xae\xba\xfe\xfc\x8c\xbe\x27\xcf\x59\x56\x2e\x17\x8b\xe5\x75\xb1\x58\x3c\x42\xdf\x50\xab\x47\x37\xed\x29\x55\x88\xa1\x1b\xb0\x96\x6a\x3e\x23\xdf\xac\xd5\x5c\xa9\xcf\x4d\xfa\x8c\xf5\xd2\x38\x9d\x52\x4e\xa3\xd4\x8b\x5f\xde\x2e\x7e\xfe\x66\xf1\xed\x87\x45\x75\x2d\x95\x12\x4f\xb0\x20\xd2\xc7\xd1\x46\x82\xf5\xc6\x8d\x4d\x9e\x97\x69\xfd\x21\x78\xf3\x68\x9c\x16\xf2\xe1\xf0\x41\x65\xe7\x4a\xd5\x22\x73\x7c\x0a\x87\x03\x85\x13\xda\xd1\x1f\xa6\x88\x4c\x17\x60\x74\x22\x1c\x8b\x00\x7d\xb2\x8c\x74\x6f\xd9\x74\x8f\xee\x3a\xe5\x6d\xeb\x09\x4d\x40\x43\xc6\xe9\x29\x95\x3c\x48\x96\x61\xb3\xb2\xb5\xda\x10\xca\x77\xa0\xea\x93\xa1\x83\x1c\xe9\x18\xf5\x3e\xef\xe2\x80\x3b\xea\x10\x1c\x2c\x53\x9c\xc6\x61\x17\x6c\x23\x95\xaa\xff\x07\x36\x47\x68\x94\x52\xaa\xba\x5e\xad\x9e\x66\x6c\xf9\x76\xf1\x73\x75\x02\xe2\x84\x61\x7a\xde\xf7\xe8\x53\xbe\x81\x52\x09\x4a\x49\xbc\xaa\x4e\x41\x5b\x6e\x69\x7f\x1f\xe2\x34\xe6\x1b\x17\x6a\xed\x30\x8c\xb5\xb3\x06\x43\xb4\x3b\xcd\x84\x21\x86\xfc\xda\xa2\x06\x89\x35\x5b\x83\x89\x60\x8f\xc8\x67\x23\x1d\xc9\x22\x6c\x3f\xb8\x69\x91\xa0\xeb\x94\x95\x27\x03\x96\xe9\x68\x28\xb4\xb0\x2d\xc8\x25\x12\xb6\x95\x05\xc8\x37\xb6\x9d\x46\x6b\x9a\x5d\x8c\x89\x32\xf4\x9e\xee\xc1\x5d\x0c\xf7\x30\x3a\x77\x85\xe3\x1e\xf7\x9d\x75\x39\x91\x8c\xae\x20\xdf\xc8\x42\xb4\x21\x92\x36\x9d\x2c\x9e\x06\x75\x35\x9b\x7b\xba\x57\x2a\x9d\x10\xee\x00\xac\x3c\x97\x10\x51\x47\xd2\xdb\x5c\x17\x5b\x3f\x12\x36\x81\x03\x22\xf1\x18\xbd\x3c\x9b\xaa\xdc\xd6\x7c\x86\xe3\x48\x68\xb5\x4b\x04\x3f\x3a\x87\x1f\xff\xf1\xd3\x3b\xfc\xf0\xf6\xfd\x3f\xdf\xe1\xaf\x3f\xbd\x7f\x7f\x76\x30\x37\x38\xb7\x60\x7d\x6c\x84\xc0\x0d\xae\xb1\x80\x52\x57\x50\xaa\xac\x9e\x1f\xf5\x3c\xe5\xcf\xe8\x97\x52\x5f\x73\x67\x13\x06\x1d\x29\x33\x8f\x5c\x8b\xa3\x6d\x71\x2b\xe7\xcf\x7e\x3f\x88\xf5\x2d\xd6\xeb\x35\x2e\xd7\x6b\x4c\x7f\xf0\xe2\x05\x94\xca\x17\x56\x2b\xac\xb1\xb8\x85\x52\x97\xf2\x09\xb6\xee\xf4\x43\xe4\x53\x64\x17\x1f\x4e\x91\x3d\x8b\x57\xe6\x7a\x33\xf9\x72\xcd\x4a\x3d\x56\x8d\x25\x5e\xe1\xcd\x79\xed\x27\x52\x28\x72\xdb\x96\x98\x14\x51\x5e\xa9\x39\x5e\x3e\x5a\x5e\x56\xf2\xea\xe5\xf9\xd9\x43\x5f\xbf\xef\xa6\x44\xb3\x6f\xa9\xeb\xd6\x47\xde\xbd\x54\x4a\x4d\x86\xea\xbf\x32\xad\xf3\x2b\x92\x38\x1d\x0a\x2b\xa1\x54\x05\xa5\x7e\x85\x52\xbf\xa1\x14\xb2\x92\xe7\xba\x28\xee\x70\xf2\xd6\x91\x37\x37\xcb\xab\xff\xeb\xf4\xd5\xb9\xcf\xb4\xcc\xbf\xc4\x3a\xe6\x23\x37\x4a\x1d\x9d\xf2\x8f\x7c\x33\xd5\x70\x75\xf3\xd9\x76\xf8\x34\x9c\x95\xd5\xc5\x99\x70\x9e\x08\x72\x71\x2e\xab\xa7\xd2\x7c\x72\xe6\xf2\x2f\x7f\xfb\xfe\xc7\x7f\xfd\xfd\xdd\xf2\x3a\x6f\xff\x27\x00\x00\xff\xff\xe6\x11\xe5\x11\xb3\x0a\x00\x00")
2020
2021 func runtimeSyntaxPhpYamlBytes() ([]byte, error) {
2022         return bindataRead(
2023                 _runtimeSyntaxPhpYaml,
2024                 "runtime/syntax/php.yaml",
2025         )
2026 }
2027
2028 func runtimeSyntaxPhpYaml() (*asset, error) {
2029         bytes, err := runtimeSyntaxPhpYamlBytes()
2030         if err != nil {
2031                 return nil, err
2032         }
2033
2034         info := bindataFileInfo{name: "runtime/syntax/php.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2035         a := &asset{bytes: bytes, info: info}
2036         return a, nil
2037 }
2038
2039 var _runtimeSyntaxPkgConfigYaml = []byte("\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")
2040
2041 func runtimeSyntaxPkgConfigYamlBytes() ([]byte, error) {
2042         return bindataRead(
2043                 _runtimeSyntaxPkgConfigYaml,
2044                 "runtime/syntax/pkg-config.yaml",
2045         )
2046 }
2047
2048 func runtimeSyntaxPkgConfigYaml() (*asset, error) {
2049         bytes, err := runtimeSyntaxPkgConfigYamlBytes()
2050         if err != nil {
2051                 return nil, err
2052         }
2053
2054         info := bindataFileInfo{name: "runtime/syntax/pkg-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2055         a := &asset{bytes: bytes, info: info}
2056         return a, nil
2057 }
2058
2059 var _runtimeSyntaxPoYaml = []byte("\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")
2060
2061 func runtimeSyntaxPoYamlBytes() ([]byte, error) {
2062         return bindataRead(
2063                 _runtimeSyntaxPoYaml,
2064                 "runtime/syntax/po.yaml",
2065         )
2066 }
2067
2068 func runtimeSyntaxPoYaml() (*asset, error) {
2069         bytes, err := runtimeSyntaxPoYamlBytes()
2070         if err != nil {
2071                 return nil, err
2072         }
2073
2074         info := bindataFileInfo{name: "runtime/syntax/po.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2075         a := &asset{bytes: bytes, info: info}
2076         return a, nil
2077 }
2078
2079 var _runtimeSyntaxPonyYaml = []byte("\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")
2080
2081 func runtimeSyntaxPonyYamlBytes() ([]byte, error) {
2082         return bindataRead(
2083                 _runtimeSyntaxPonyYaml,
2084                 "runtime/syntax/pony.yaml",
2085         )
2086 }
2087
2088 func runtimeSyntaxPonyYaml() (*asset, error) {
2089         bytes, err := runtimeSyntaxPonyYamlBytes()
2090         if err != nil {
2091                 return nil, err
2092         }
2093
2094         info := bindataFileInfo{name: "runtime/syntax/pony.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2095         a := &asset{bytes: bytes, info: info}
2096         return a, nil
2097 }
2098
2099 var _runtimeSyntaxPovYaml = []byte("\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")
2100
2101 func runtimeSyntaxPovYamlBytes() ([]byte, error) {
2102         return bindataRead(
2103                 _runtimeSyntaxPovYaml,
2104                 "runtime/syntax/pov.yaml",
2105         )
2106 }
2107
2108 func runtimeSyntaxPovYaml() (*asset, error) {
2109         bytes, err := runtimeSyntaxPovYamlBytes()
2110         if err != nil {
2111                 return nil, err
2112         }
2113
2114         info := bindataFileInfo{name: "runtime/syntax/pov.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2115         a := &asset{bytes: bytes, info: info}
2116         return a, nil
2117 }
2118
2119 var _runtimeSyntaxPrivoxyActionYaml = []byte("\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")
2120
2121 func runtimeSyntaxPrivoxyActionYamlBytes() ([]byte, error) {
2122         return bindataRead(
2123                 _runtimeSyntaxPrivoxyActionYaml,
2124                 "runtime/syntax/privoxy-action.yaml",
2125         )
2126 }
2127
2128 func runtimeSyntaxPrivoxyActionYaml() (*asset, error) {
2129         bytes, err := runtimeSyntaxPrivoxyActionYamlBytes()
2130         if err != nil {
2131                 return nil, err
2132         }
2133
2134         info := bindataFileInfo{name: "runtime/syntax/privoxy-action.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2135         a := &asset{bytes: bytes, info: info}
2136         return a, nil
2137 }
2138
2139 var _runtimeSyntaxPrivoxyConfigYaml = []byte("\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")
2140
2141 func runtimeSyntaxPrivoxyConfigYamlBytes() ([]byte, error) {
2142         return bindataRead(
2143                 _runtimeSyntaxPrivoxyConfigYaml,
2144                 "runtime/syntax/privoxy-config.yaml",
2145         )
2146 }
2147
2148 func runtimeSyntaxPrivoxyConfigYaml() (*asset, error) {
2149         bytes, err := runtimeSyntaxPrivoxyConfigYamlBytes()
2150         if err != nil {
2151                 return nil, err
2152         }
2153
2154         info := bindataFileInfo{name: "runtime/syntax/privoxy-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2155         a := &asset{bytes: bytes, info: info}
2156         return a, nil
2157 }
2158
2159 var _runtimeSyntaxPrivoxyFilterYaml = []byte("\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")
2160
2161 func runtimeSyntaxPrivoxyFilterYamlBytes() ([]byte, error) {
2162         return bindataRead(
2163                 _runtimeSyntaxPrivoxyFilterYaml,
2164                 "runtime/syntax/privoxy-filter.yaml",
2165         )
2166 }
2167
2168 func runtimeSyntaxPrivoxyFilterYaml() (*asset, error) {
2169         bytes, err := runtimeSyntaxPrivoxyFilterYamlBytes()
2170         if err != nil {
2171                 return nil, err
2172         }
2173
2174         info := bindataFileInfo{name: "runtime/syntax/privoxy-filter.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2175         a := &asset{bytes: bytes, info: info}
2176         return a, nil
2177 }
2178
2179 var _runtimeSyntaxPuppetYaml = []byte("\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")
2180
2181 func runtimeSyntaxPuppetYamlBytes() ([]byte, error) {
2182         return bindataRead(
2183                 _runtimeSyntaxPuppetYaml,
2184                 "runtime/syntax/puppet.yaml",
2185         )
2186 }
2187
2188 func runtimeSyntaxPuppetYaml() (*asset, error) {
2189         bytes, err := runtimeSyntaxPuppetYamlBytes()
2190         if err != nil {
2191                 return nil, err
2192         }
2193
2194         info := bindataFileInfo{name: "runtime/syntax/puppet.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2195         a := &asset{bytes: bytes, info: info}
2196         return a, nil
2197 }
2198
2199 var _runtimeSyntaxPython2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x73\xe3\x36\x0c\xbd\xfb\x57\x28\x4e\xda\xd8\x49\xed\xed\xb5\xee\xb6\xbb\x9d\xce\xf4\xd8\x53\x4f\xb5\x5c\x0d\x25\x42\x16\xbb\xfc\x1a\x10\xb2\xad\x14\xfd\xef\x1d\x92\x52\xa2\x78\x9b\xe9\x1e\x9a\x8c\x8d\x67\x8a\x00\x1e\x1e\x41\xa8\x55\x1a\x68\xf0\xb0\x2b\xfc\x40\x9d\xb3\x8b\x85\x04\x82\x86\x76\x8b\xa2\x28\x8a\xf8\xd4\x0a\x03\xbb\x62\x59\x96\x5b\x3f\xdc\x2d\xd3\x72\x07\x42\x02\xee\x8a\xe5\x1f\xb7\x37\xdb\x87\x77\x2b\xb0\xa7\xe2\x71\xfd\x21\x47\x58\x15\x7c\xb7\x5e\x2e\x16\xd8\x6b\x08\xbb\x45\x72\xb8\x2d\xea\x5e\x69\xda\x28\x5b\xb8\xfa\x4f\x68\x28\xa4\xe5\x4d\xd1\x38\x1b\x48\x58\x4a\x09\xea\xd5\xaf\xce\x02\x07\xd0\x2d\xff\x86\x3d\xf0\x2f\x42\x07\x58\x97\x65\x9d\xd3\xbe\x8a\x23\x88\x50\xd5\x3d\xc1\x1b\xa1\xaa\xaa\x16\x01\x42\x55\x71\x55\x25\x27\x65\x13\x6e\xb4\x08\x79\x55\x42\xdd\x1f\x33\x52\x0d\x65\xe0\x9a\x64\x63\xdd\x09\x18\x30\x35\x60\x18\x31\x75\x4e\x66\x1c\x45\x49\x20\x92\xad\xaa\x37\x38\xb6\xbd\x6d\x48\x39\x3b\x51\x54\x12\x2c\xa9\x56\x25\xed\x22\x49\x51\x07\x16\xde\xeb\x81\x1b\xa1\xb5\xa8\x35\x70\xd3\x21\x37\xc6\x73\xe3\x8c\x57\x1a\x58\x82\x8e\xa5\xb2\x54\xf1\x73\x32\x4e\x32\x9c\x84\x66\xb8\x40\x93\xbe\x22\x57\x6e\x95\x26\x40\x6e\x1d\x1a\x41\x7c\x04\x4a\x3e\x47\xed\x6a\xa1\x03\x77\x22\xa4\xdf\x9d\x08\x1d\x77\xa0\x3d\x77\x70\x61\x25\x59\x59\xdf\x13\x2b\x4b\x80\x96\x55\x50\x49\xc1\x06\x58\x85\xd0\xd7\x49\x29\xd6\x60\x59\xbb\x26\x86\x31\xe2\xc2\x46\x59\xb6\x70\x21\x76\x0d\xb1\xf3\x60\xd9\xa1\x64\xef\xce\x8c\xc2\x1e\x81\x51\x9c\xab\x1c\x15\x41\xf6\x0d\x30\x82\x76\x42\x32\x82\x47\x46\xd7\x5b\xc9\x61\x64\xd7\x5b\x15\x8b\x3d\x09\x0c\xfc\xa4\x3c\x57\x95\x32\xde\x21\x5d\xcb\x19\x3c\x34\x4a\xe8\x22\xeb\x5f\x44\xe9\xdf\x14\xb4\xaa\x44\x9d\x4f\x48\x48\x99\xad\xcd\x36\x0a\x9c\x81\xf1\xd9\x3a\xc0\x06\x46\x68\xbc\x86\xcb\x88\x6d\x23\x68\x82\x24\x94\x9d\xba\x45\x4f\x36\xb2\x9f\xb0\x22\x30\x57\x3d\x04\x3a\x68\x35\x46\x96\xea\x34\x59\xe3\x32\x91\x56\xbb\x31\xfe\x78\x4c\x13\x7e\x0e\x75\x04\x7a\x89\x10\xcf\x2c\x83\x91\xa0\xb2\x8a\x46\x30\xd9\xd3\x64\x01\xf3\x92\x86\xdc\xec\xda\xd9\xdc\xe1\x3a\x74\xaa\xcd\xcf\x26\x1e\xa6\xcf\x05\x59\xc8\x5b\xac\xb3\x4f\x80\x2e\x61\x37\xd6\xe2\x32\x39\xef\xc2\x68\xcf\xc9\xe2\x24\x2e\x4e\xea\xe2\xa4\x2a\x4e\x15\xe3\xac\x64\x04\x0f\x63\xcd\xb1\x0f\x32\x98\x51\xc2\xe7\x8d\x13\x29\x1c\x33\xe3\x73\x4a\x9c\x6d\x9f\xc3\xbe\xce\xe0\x32\x7a\x84\x99\xa8\x61\x26\x6a\x98\x8b\x1a\xa6\x0d\xa3\x77\x72\x7e\xdd\x75\x71\x28\x4e\x6d\x96\x07\x64\x6a\xb0\x34\x54\x08\x95\x3d\x72\xed\x9c\xe6\xba\x6f\x5b\x40\xae\x07\x02\x81\x28\x86\x84\x02\xa7\xbb\x93\x1b\x96\xc7\xee\xe2\xd8\x21\x0c\xb6\x37\x80\x82\xd2\x95\x05\x4e\xcd\xc0\x2d\xba\x27\xb0\x01\xd2\x55\x64\xad\x02\x71\x3c\x39\x36\xc2\xb3\x01\xe3\x70\x38\x29\x38\x73\x1e\x9d\xec\xd1\x79\x40\x1a\x18\xe1\x04\x18\x20\xdd\x28\x4e\xc5\x71\x20\x41\xaa\x19\x13\x07\x42\x0e\xbd\x07\x64\xea\xbd\x06\x8e\x65\xa4\x5b\xe7\x24\xf0\x25\xdd\xd7\xd7\x35\x4b\x68\x63\x77\xbd\x35\xb1\x24\xb4\xc5\x5e\x6c\x9e\x7e\xda\xfc\x5e\x7d\xbb\xf9\xee\xf0\xf8\xe2\xf9\x09\x86\xb3\x43\x39\xb9\x45\x1a\x60\xe0\x79\x18\x0b\x2b\x59\x04\x16\x21\x00\x12\xd7\x08\xe2\x53\x96\x88\xe3\x1d\x53\xb6\x8f\x73\xae\x8d\xb3\x8e\x41\xab\x96\x41\x07\x60\xb8\x34\xe0\x89\x5b\x65\x85\xd6\x43\x9c\x6d\x51\x28\x33\x4e\x35\x56\x2d\xe7\x79\xc1\x2a\xce\x2e\xd6\xc2\xd4\x52\xb0\x75\xc4\x0e\xd9\xc7\xe0\x1e\xa3\x9e\x28\x54\x88\x73\x88\x7a\xb4\x4c\x38\xf0\xb9\x8b\xd2\x9f\x15\x75\x3c\x28\xd0\xf2\x5a\x84\xc6\xa1\x20\x87\x53\x31\x35\xaa\x63\x47\x47\x04\xb0\xbb\x62\xf9\x71\xfb\xb0\x5f\x1d\x5e\xb6\xc7\xb3\x98\xef\x9e\x97\xbe\xda\x6f\x77\xdf\x7f\xf3\xf8\xc0\x3f\xdc\x94\xe5\x57\x1f\x0f\xfc\x9e\x7f\xe4\x77\xbc\xe1\xaf\xd7\x2f\x01\xbc\x40\xb0\xd4\x41\x80\x7f\x0f\xb1\x5a\xff\xf5\xf7\x81\xcb\x72\xcf\x65\x79\x98\xf9\xd9\x3e\xbd\x9a\xae\xde\x7e\xdb\xbc\x9c\x75\xdf\xa7\x53\x4a\xd5\x5d\x6f\xcb\x3d\xbc\x1b\xa3\x15\x31\x27\xa6\xd3\x5a\x2e\x9f\xd7\xc0\xca\xc8\xe0\xc3\xfb\x9b\xb2\x2c\xcb\xf5\xfc\xd1\xf8\x72\x2f\x66\x7f\xf3\xe0\x79\x62\xff\xdc\x89\x4c\xa4\x2c\xb7\x5f\xce\xe0\xfe\x4d\x02\xf7\xff\x4f\x7e\x93\xa4\xfd\x2c\xef\xed\x75\xde\xbb\xeb\x74\xc5\xfe\xf0\x9f\x51\xca\xf4\x7f\x1d\xea\x7a\xf5\xcb\xe3\xdd\xdf\x7f\xa6\xc7\xab\xa5\x59\xa4\x7f\x02\x00\x00\xff\xff\x47\xa5\x9c\xba\xcb\x09\x00\x00")
2200
2201 func runtimeSyntaxPython2YamlBytes() ([]byte, error) {
2202         return bindataRead(
2203                 _runtimeSyntaxPython2Yaml,
2204                 "runtime/syntax/python2.yaml",
2205         )
2206 }
2207
2208 func runtimeSyntaxPython2Yaml() (*asset, error) {
2209         bytes, err := runtimeSyntaxPython2YamlBytes()
2210         if err != nil {
2211                 return nil, err
2212         }
2213
2214         info := bindataFileInfo{name: "runtime/syntax/python2.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2215         a := &asset{bytes: bytes, info: info}
2216         return a, nil
2217 }
2218
2219 var _runtimeSyntaxPython3Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x73\xdb\x36\x10\xbd\xfb\x57\x30\x4a\x5a\xdb\x49\xa5\x74\x26\xa7\xaa\x69\x93\x4e\x67\x7a\xec\xa9\xa7\x8a\x2a\x07\x24\x97\xe2\x36\xf8\x9a\xc5\x52\x12\xdd\xed\x7f\xef\x00\x20\x65\x5a\xa9\xa7\x39\xd4\x1e\xcf\x3e\xaf\x80\xb7\x0f\x0f\x8b\x55\x87\x1a\xac\x32\xb0\x2d\xfc\xc8\xbd\xb3\xef\x6e\x6e\x5a\x60\x68\x78\x7b\x53\x14\x45\xf1\xf8\xf1\xaa\x2c\x37\x7e\x7c\xf7\x6a\x95\xf2\x3d\xa8\x16\x68\x5b\xac\xfe\x78\xf9\x62\xf3\xfa\xed\x1d\xd8\x63\xf1\xe6\xfe\xc3\xc4\xf1\x6a\x75\x73\x43\x83\x86\x90\x49\x5e\x16\xf5\x80\x9a\xd7\x68\x0b\x57\xff\x09\x0d\x87\x94\x5e\x17\x8d\xb3\x81\x95\xe5\xc4\x5e\xdf\xfd\xea\x2c\x48\x00\xdd\xc9\x6f\x34\x80\xfc\xa2\x74\x80\xfb\xb2\xac\x73\xc9\x27\x3c\x8a\x99\xb0\x1e\x18\x9e\xa1\xaa\xaa\x5a\x05\x08\x55\x25\x55\x95\x36\xa1\x4d\xb8\xd1\x2a\xe4\x6c\x0b\xf5\x70\xc8\x08\x1b\xce\xc0\x35\x29\xc6\x43\x27\x60\xc0\xd4\x40\x61\xc2\xdc\xbb\x36\xe3\xe8\x48\x02\x51\x6c\x55\x3d\xa3\xb1\x1b\x6c\xc3\xe8\xec\x2c\x11\x5b\xb0\x8c\x1d\x26\xdf\xa2\x48\x55\x07\x51\x5a\x8b\xb2\xa3\xa8\xd0\x20\x4a\x8d\x56\x1a\xa5\xb5\xaa\x35\x48\xd3\x93\x34\xce\x78\xd4\x20\x2d\xe8\x78\x64\x69\x31\xfe\x1d\x8d\x6b\x05\x8e\x4a\x0b\x9c\xa1\x91\xce\x91\x51\x2c\x07\xe0\xb4\xe6\xa0\x5d\xad\x74\x90\x5e\x85\xf4\x7f\xaf\x42\x2f\x3d\x68\x2f\x3d\x9c\x05\x5b\x41\xeb\x07\x16\x0c\x98\x2c\x6b\x40\x30\x84\xa1\x4e\xd6\x08\x32\x90\x68\xb0\xa2\x5d\x13\x49\x8c\x3a\x8b\x41\x2b\x16\xce\x2c\xae\x61\x71\x1e\xac\x38\x6a\xc5\xbb\x93\x78\x42\xcb\x42\xe0\x49\xc8\x0d\xb6\x95\x30\x69\x08\x8e\x18\x5a\x09\x83\x91\xa3\xa2\x20\x55\x85\xc6\x3b\xe2\x6b\xb3\x82\x87\x06\x95\x2e\xb2\xbb\x45\x34\xf6\x59\xbb\xaa\x4a\xd5\xd9\x7f\xd5\xb6\x39\xda\x1c\xa3\x65\x19\x18\x9f\xa3\x03\x6a\x60\x82\xc6\x6b\x38\x4f\xd8\x36\x8a\x67\xc8\x0a\xed\xdc\x0b\x7a\x8e\x51\xfd\x8c\x91\xc1\xcc\x38\x68\x9c\x08\x5b\x3c\xce\xd1\xb8\x5c\xbf\xd3\x6e\xa2\x9d\xee\x60\xc6\x17\x86\x03\xf0\x23\x43\xbc\x90\x0c\x26\x5d\x68\x91\x27\x30\xc7\xe3\x1c\x81\x72\x4a\x83\x7d\xda\xad\xda\xd9\xdc\xbf\x3a\xf4\xd8\xe5\xdc\x2c\xc8\x0c\xf9\x40\x16\x0e\x53\x3c\xe7\x05\xd6\xd9\x07\x20\x97\xb0\x9b\x88\x5c\x96\xeb\x5d\x98\xe2\x29\x45\x9a\x5d\xa6\xd9\x66\x9a\xed\xa5\xd9\x03\x5a\x98\x40\xe0\x61\x72\x21\x36\x44\x06\x0b\x6d\x74\x59\x38\xab\xa3\xa9\x32\x5d\x4a\xd2\x62\xf9\x12\x0e\x75\x06\xe7\x69\x47\x58\xd8\x1c\x16\x36\x87\xa5\xcd\x61\x5e\x30\xed\x4e\x9b\x9f\xb6\x1f\x8f\xfe\xd2\x6f\x11\x4f\x9d\x56\x3b\xa7\xa5\x1e\x19\x14\x91\x1a\x13\x0a\x92\xde\x47\xee\x53\x99\x9a\x4a\xe2\x65\x08\xd8\xc1\x00\x29\x06\xe9\x50\xc7\xe7\x93\xda\x41\x3a\x72\x0f\x60\x03\xb0\xc4\x37\xa2\x31\xb0\x18\xe5\xc5\x80\x71\x34\x1e\x11\x4e\x92\x87\xa1\x78\x72\x1e\x88\x47\x21\x65\x0f\x20\x04\x47\xa0\x00\xe9\x2d\x49\x3a\x8d\x04\x56\x8c\xcd\x54\x3b\xc4\xe7\x35\x78\x20\xe1\xc1\x6b\x90\xa8\x5b\x1e\xd0\x3f\x3d\x59\x0b\x5d\xec\xaa\xe7\xc6\x4f\x0b\x5d\xb1\x53\xeb\x87\x9f\xd6\xbf\x57\xdf\xae\xbf\xdb\xbf\x59\x15\x97\xad\x9f\x60\x3c\x39\x6a\xe7\x7d\xb1\x38\x18\xb8\x8c\x56\x65\x5b\x51\x41\x54\x08\x40\x2c\x35\x81\xfa\x94\xbd\x91\xf8\xa6\xd0\x0e\x71\x5a\x75\x71\x62\x09\x68\xec\x04\x74\x00\x81\x73\x03\x9e\xa5\x43\xab\xb4\x1e\xe3\xc4\x8a\xfe\x98\x69\x56\x09\x76\x92\xe7\x83\xa0\x15\x0c\xa2\x95\xa9\x5b\x25\xd6\xd9\x34\x86\xc4\x3a\x16\x47\xe2\x63\x15\x52\x18\xa2\x4b\x3c\x90\x15\xa6\x51\x4e\x7d\x9c\x90\x27\xe4\x5e\x46\x04\xdd\x26\x23\x8a\x85\x13\x8d\x23\xc5\x8e\xe6\x03\xd5\x84\x87\x9e\x0f\x04\x60\xb7\xc5\xea\xe3\xe6\xf5\xee\x6e\xff\x68\x5c\xbc\x8b\xe5\xea\xe5\xf1\xef\x76\x9b\xed\xf7\xdf\xbc\x79\x2d\x3f\xbc\x28\xcb\xaf\x3e\xee\xe5\xbd\xfc\x28\x6f\x65\x2d\x5f\xdf\x3f\x12\x78\x45\x60\xb9\x87\x00\xff\x4e\x71\x77\xff\xd7\xdf\x7b\x29\xcb\x9d\x94\xe5\x7e\xb1\xcf\x0e\xe9\xcb\xe6\xea\xfb\x6c\x93\xd3\xd9\xfb\x5d\xba\xaa\x74\xcf\xd7\xcb\x02\x13\xda\xc3\x76\x62\x2b\x62\x4d\x4a\x37\xb6\x5a\x5d\x72\x60\xdb\xa8\xe0\xc3\xfb\x17\x65\x59\x96\xf7\xcb\x8f\x16\xdf\xd6\xf3\xcf\x92\x3c\x4f\xe9\x9f\x7b\x95\x85\x94\xe5\xe6\xcb\x15\xdc\x3e\x2b\xe0\xf6\xff\xa9\x6f\x92\xb5\x9f\xd5\x7d\x79\x5d\xf7\xd5\x75\xb9\x62\xb7\xff\x4f\x96\x32\xfd\x5e\x53\x5d\x67\xbf\x9c\xef\xf6\xf6\x33\x3f\x9e\xa4\x16\x4c\xff\x04\x00\x00\xff\xff\x38\xff\xc7\x78\x9b\x09\x00\x00")
2220
2221 func runtimeSyntaxPython3YamlBytes() ([]byte, error) {
2222         return bindataRead(
2223                 _runtimeSyntaxPython3Yaml,
2224                 "runtime/syntax/python3.yaml",
2225         )
2226 }
2227
2228 func runtimeSyntaxPython3Yaml() (*asset, error) {
2229         bytes, err := runtimeSyntaxPython3YamlBytes()
2230         if err != nil {
2231                 return nil, err
2232         }
2233
2234         info := bindataFileInfo{name: "runtime/syntax/python3.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2235         a := &asset{bytes: bytes, info: info}
2236         return a, nil
2237 }
2238
2239 var _runtimeSyntaxRYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x4f\xc1\x6e\xab\x40\x0c\xbc\xef\x57\xac\x78\x39\x24\x87\xd7\x0f\xe0\xc6\x21\x95\x2a\x21\x0e\x69\x73\x2a\x15\x32\x64\x68\x56\x5d\x0c\x32\x46\x4d\x25\x7f\x7c\xb5\x50\xa5\xaa\x2f\x1e\x8f\x47\x33\x76\x1f\x22\xf4\x6b\x42\xee\xc5\xb9\x0b\x14\x9d\xe6\xce\x7b\xef\xd3\x82\x69\x40\xee\xb3\xba\x7e\xd8\x8b\x9d\x0e\xbb\xcc\x39\x59\x22\xe6\x4d\xf1\xdf\xcf\x4a\x8a\x01\xac\xab\xa8\xdd\xb7\x02\xfa\x30\xc4\x19\xd6\x8f\x62\xfd\xc2\x9d\x86\x91\x2d\xf4\x16\xd8\x18\x37\x35\xc1\x04\x4a\x4d\x17\x61\xfb\xbc\x86\x88\x43\x5d\xb7\xd9\x8f\x63\x37\xf2\xac\x74\x37\x7c\x39\x9d\x8f\xf6\x58\x94\xcf\x47\xab\xce\x65\x69\x4f\xdc\x5b\x45\x95\x55\x85\x55\x45\x13\x58\xf1\x0e\x69\x12\x16\x50\x5c\x41\x37\x0e\x53\xc4\x6d\xc3\x57\x12\xea\x14\xd2\xfc\xcd\x18\xd6\x9b\xd7\x31\xd5\xac\x24\x29\xf1\x5f\x76\xa7\xc0\x97\xdc\x67\xbb\x5f\x62\xfb\xdb\xbf\xbe\xb9\xef\x00\x00\x00\xff\xff\x7e\x6c\x6f\x34\x32\x01\x00\x00")
2240
2241 func runtimeSyntaxRYamlBytes() ([]byte, error) {
2242         return bindataRead(
2243                 _runtimeSyntaxRYaml,
2244                 "runtime/syntax/r.yaml",
2245         )
2246 }
2247
2248 func runtimeSyntaxRYaml() (*asset, error) {
2249         bytes, err := runtimeSyntaxRYamlBytes()
2250         if err != nil {
2251                 return nil, err
2252         }
2253
2254         info := bindataFileInfo{name: "runtime/syntax/r.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2255         a := &asset{bytes: bytes, info: info}
2256         return a, nil
2257 }
2258
2259 var _runtimeSyntaxRestYaml = []byte("\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")
2260
2261 func runtimeSyntaxRestYamlBytes() ([]byte, error) {
2262         return bindataRead(
2263                 _runtimeSyntaxRestYaml,
2264                 "runtime/syntax/reST.yaml",
2265         )
2266 }
2267
2268 func runtimeSyntaxRestYaml() (*asset, error) {
2269         bytes, err := runtimeSyntaxRestYamlBytes()
2270         if err != nil {
2271                 return nil, err
2272         }
2273
2274         info := bindataFileInfo{name: "runtime/syntax/reST.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2275         a := &asset{bytes: bytes, info: info}
2276         return a, nil
2277 }
2278
2279 var _runtimeSyntaxRpmspecYaml = []byte("\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")
2280
2281 func runtimeSyntaxRpmspecYamlBytes() ([]byte, error) {
2282         return bindataRead(
2283                 _runtimeSyntaxRpmspecYaml,
2284                 "runtime/syntax/rpmspec.yaml",
2285         )
2286 }
2287
2288 func runtimeSyntaxRpmspecYaml() (*asset, error) {
2289         bytes, err := runtimeSyntaxRpmspecYamlBytes()
2290         if err != nil {
2291                 return nil, err
2292         }
2293
2294         info := bindataFileInfo{name: "runtime/syntax/rpmspec.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2295         a := &asset{bytes: bytes, info: info}
2296         return a, nil
2297 }
2298
2299 var _runtimeSyntaxRubyYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x7f\x6f\xa3\x46\x10\xfd\xbb\xfe\x14\x84\x10\x19\x88\x8c\xef\xdf\x43\xd1\x91\x6b\xcf\x77\x8a\x74\x4d\xd4\x2a\x6a\xad\xdb\x1f\x64\x81\xc1\x5e\x05\x16\x67\x77\xa9\xe3\x66\xf2\xdd\xab\x25\xc4\x71\x53\x59\xaa\x65\xaf\xd1\x7b\x6f\x66\xde\x8c\xd8\xa9\x65\x03\x76\xb7\x81\xd4\xd3\x7d\xb1\x9b\x4c\x2a\xb0\x50\xda\xd4\x9b\x78\x9e\xe7\x39\x52\x89\x16\x52\xcf\xa7\x34\xd1\x45\x80\x94\x26\x2b\x68\xcd\x06\xca\x00\xbf\x41\xeb\x04\x58\x76\xaa\x96\xab\x44\xf7\xf8\xbb\xb8\x87\x01\xfa\x45\x6c\x86\xff\x3f\xc4\x4a\x0b\x65\xdd\xb3\x3f\x64\x5c\x83\xa8\x40\xa7\x9e\xcf\x4f\x4f\x92\x78\x1e\x82\xfa\xcb\x3b\x8f\x32\x57\x3b\xf4\x30\x88\xfc\xc9\x44\xf7\x0d\x98\x74\x50\xcf\x3c\x63\x85\x85\x16\x94\x1d\x2c\x14\xe1\xcf\x8b\x6f\x57\xd7\xb8\xb8\xfe\x82\xa2\x91\xc2\xa0\x50\x15\x16\xb0\x92\x0a\x0b\x0d\xe2\x1e\x4b\x61\x00\xcb\x46\x18\x83\x15\xd4\xee\x27\x15\x54\x94\x66\x58\x75\x08\x8d\x01\x77\xc8\x1a\x41\x55\x08\xca\xf4\x1a\xb0\x16\x0e\xae\x3b\x8d\xb2\x46\xa9\xb0\xed\xaa\xbe\x01\x54\xf0\x68\x51\xc9\x06\x55\x67\xb1\xd3\xa8\xa1\xea\x50\x83\x29\x7b\x40\x0d\x56\xef\xdc\xd9\x6b\x85\x06\x9a\x1a\x4d\xbf\x01\x8d\x76\x0d\x0a\xad\xee\x01\x7b\xe5\xca\xf7\xaa\x01\x63\xb0\x57\x56\x36\xb8\x75\xe4\x76\xed\xc6\xb2\x93\xd0\x54\x11\xa5\x85\x3f\xb6\x59\x76\xca\x58\x31\x74\x19\x52\x1a\xe0\x25\x5e\x5e\x46\x19\xa5\x05\xf9\x3c\xfb\xc1\xce\xc9\x87\xd9\xc7\xcf\xb3\x1f\xb9\x98\xfd\xcd\xe2\xf7\x31\x89\xea\xdb\x62\x98\xa9\xd3\x7f\x98\x7d\x64\xe7\x47\x32\xcb\x2c\x0a\x89\xf7\x13\x43\x1e\xa5\xaf\x29\x8f\x89\xdd\xb0\xf3\xfc\xeb\xd5\xf7\x45\x9e\x63\x9e\x7f\xbf\xba\x5e\xe4\xf9\x11\xcb\xf3\x90\xf0\x39\xc3\x90\x52\x4a\xe7\x51\x14\xcf\x89\xec\xda\x47\x16\xe3\x99\xa6\xf4\x29\x24\xfc\x79\x24\x9f\xa3\x28\xa6\xf4\x79\xa4\xff\xd3\x88\xb1\x5a\xaa\x55\xea\xf9\x77\x84\xdf\xb1\xf8\x0e\xcf\x1e\x29\x7d\x72\xe1\x2e\xea\xb8\x9c\xfa\x21\xe1\xd4\x1f\x8b\x50\xdf\x55\xf1\xf1\x8c\xfc\xf6\x27\xcb\x0e\x12\xec\x91\x90\xf0\xc8\x21\xd1\x88\x5c\x10\xfe\x89\xc5\x9f\xf6\x3c\x21\x9c\x39\x9e\xed\x91\x80\xf0\xc0\x21\xc1\x1e\xe1\x84\x73\x87\xf0\x11\x39\x21\xfc\x84\xc5\x27\xaf\x26\xdd\x0d\x91\xa2\x49\x3d\xff\xf4\x7f\xb5\x30\x0d\x09\x9f\x8e\x0d\x4c\xa3\x28\x9e\xe2\x19\x79\xd8\xb2\x7f\xbb\x1f\x80\x43\xf3\x0f\x5b\xf6\xe6\x7d\x60\x0f\xad\x0f\xc0\xa1\xf3\x01\x38\x34\xfe\xb0\x65\xef\x7c\x97\x5d\x3b\xde\xb6\x53\xc2\x9f\x58\x12\x07\x78\x1a\xbc\x23\x93\x42\xcb\xd5\x7a\xd0\xbc\x89\x0e\x55\x63\x73\xad\x28\x75\xf7\x72\x91\xdd\xc7\x58\xa1\x5d\xd0\xc5\xc5\x2c\x9b\x66\x8b\x9b\xdb\x69\xe6\xef\x49\x50\x95\x5b\x0a\x8b\x9b\xdb\x37\xec\x65\x11\x78\x84\x4d\xc6\xcc\xb6\xab\x3a\xf7\x1e\x2f\x97\x4b\xbc\xbd\xf9\x72\x83\x5f\xaf\x96\xbf\x2e\x90\xd2\xec\xe5\x1b\xbd\x5a\xd8\x68\xd8\xe8\xae\x4c\xcc\x1a\x0a\x31\xcc\xd7\xad\x9b\xf3\x6c\x5c\x31\xff\x04\x00\x00\xff\xff\xfa\x5b\x59\x4a\xf4\x04\x00\x00")
2300
2301 func runtimeSyntaxRubyYamlBytes() ([]byte, error) {
2302         return bindataRead(
2303                 _runtimeSyntaxRubyYaml,
2304                 "runtime/syntax/ruby.yaml",
2305         )
2306 }
2307
2308 func runtimeSyntaxRubyYaml() (*asset, error) {
2309         bytes, err := runtimeSyntaxRubyYamlBytes()
2310         if err != nil {
2311                 return nil, err
2312         }
2313
2314         info := bindataFileInfo{name: "runtime/syntax/ruby.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2315         a := &asset{bytes: bytes, info: info}
2316         return a, nil
2317 }
2318
2319 var _runtimeSyntaxRustYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4f\x6b\x1b\x3f\x10\xbd\xfb\x53\x28\xeb\x1c\x92\x18\x7b\x73\xcd\xf2\x83\xf0\x23\x4d\xa1\x87\x36\xd0\xe6\x60\x6a\x99\xa0\xd5\x8e\x62\x51\xfd\x59\x46\x23\x27\x31\xf3\xe1\x8b\xd6\xce\x3f\xbb\x90\x42\x7d\x90\xb5\x9a\xd1\x7b\xf3\x9e\x9e\xb1\x0e\xe8\xa9\x87\x46\x60\x4e\x34\x1a\x75\x40\xa0\xa9\x19\x09\x21\x44\xa9\x05\xe5\xa1\x11\x95\x94\x33\x4c\xc7\xd5\x68\x84\xd9\x41\xda\x96\xc7\xc2\xe4\xa0\xc9\xc6\x20\x3a\x30\x36\xd8\xb2\x1d\x2a\x53\x61\x3b\x08\x64\x8d\x05\x6c\x44\x65\x82\x58\xa8\xe9\xe6\x7c\x7a\x71\xb7\x9c\x54\x43\x47\xb9\xfd\x1d\x12\xe0\x1a\x3a\xf1\x10\xb1\x4b\xbb\x8b\x89\x14\x81\x87\x40\x03\x69\x7b\xa2\xda\x44\xa8\x34\xb1\x72\xf6\x3e\x44\xc3\x2a\x71\x0b\x3a\x7a\xe0\x36\x3e\x72\x8b\xa0\x7e\xb1\x8e\x21\x51\x59\xc9\x86\x0c\xac\x51\x11\x70\x17\x19\x5c\x02\x86\x90\x3d\xc3\x23\x01\x06\x36\xaa\x9c\x18\x1b\x94\x63\x13\xd8\x44\x64\x6b\xd8\xfa\xde\xb1\x0d\xec\x80\xd8\xc5\xd8\xb3\x57\x1a\x23\x7b\x45\x7a\xc5\x3e\x76\xec\xe3\x1a\xd8\x67\xe2\x68\x4c\x02\x8a\x86\xe3\x1a\x10\x6d\x07\xdc\xa3\x5d\x73\x9f\x5b\xee\x33\x02\x23\x18\x46\xa0\x8c\x81\x93\xdd\x40\x34\x5c\xf4\x58\xcd\x09\x5c\xd9\x63\xd6\xc4\x29\xf7\x80\x4c\x98\x81\x09\x95\x25\x2e\xfe\x0f\x4b\x34\x9c\x43\x52\x06\xca\x9f\xdd\x40\xc7\x39\x01\xaf\x2d\x52\x56\x8e\x1f\x56\x80\xc0\x0f\x2b\xeb\x80\x9f\x2c\xb8\xee\x54\xca\xf6\xd5\xce\x61\xe8\x17\x1b\x7b\xd0\x56\xb9\x46\x54\xc5\xf9\xbb\xe5\xe4\xe8\xb5\xf1\xaa\xb8\xa5\x02\x3d\xf7\xea\xdd\x77\x69\xfe\x7f\xfa\x73\x59\x96\x77\x0f\xf5\x2d\xfb\x16\x70\xbf\x7d\x16\x86\xe3\xed\x3b\x2d\xce\xa7\x17\xcb\xc9\xbb\x79\x6e\x8b\xb6\x54\x5f\x87\xec\x53\xfd\x63\x90\x9e\xea\xdb\xa7\x1e\x52\x0d\xa4\x67\x3b\xb4\x6d\xf6\x76\xc4\x6a\xba\x29\xbc\xfb\x44\x89\xd0\x86\xfb\x66\x87\x2c\x4a\x46\x70\xc8\x47\x55\xbd\x9c\x41\xe8\x1a\x51\x9d\x5c\xfe\x77\x24\xa5\x94\xa7\x6f\x4b\x6f\x22\xfb\xfc\x7b\x0b\xbe\x75\xea\x6a\xa5\xb6\x52\xa4\x9c\xfd\xfd\x04\x38\x9e\x1c\x0e\x21\xab\xf1\x64\x9f\x5d\x2c\x96\xaf\xa0\x7e\xc8\xf7\x01\x58\x5d\xef\x23\x1d\x7f\x20\x82\x62\x17\x8b\xea\xdb\x9b\x4f\x37\x3c\x9f\xcf\xf9\xf3\x97\xf9\xd7\xeb\xd3\xe6\xb2\xfa\x98\x4c\xca\xb3\x83\xc1\xe5\x59\xfd\xcf\x8c\xcf\xc9\x3b\x60\x1c\x1f\x49\xb9\x38\xa4\x5c\xfe\xd1\xaa\xdf\x01\x00\x00\xff\xff\x7e\x93\x3c\x48\x97\x04\x00\x00")
2320
2321 func runtimeSyntaxRustYamlBytes() ([]byte, error) {
2322         return bindataRead(
2323                 _runtimeSyntaxRustYaml,
2324                 "runtime/syntax/rust.yaml",
2325         )
2326 }
2327
2328 func runtimeSyntaxRustYaml() (*asset, error) {
2329         bytes, err := runtimeSyntaxRustYamlBytes()
2330         if err != nil {
2331                 return nil, err
2332         }
2333
2334         info := bindataFileInfo{name: "runtime/syntax/rust.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2335         a := &asset{bytes: bytes, info: info}
2336         return a, nil
2337 }
2338
2339 var _runtimeSyntaxScalaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6e\xdc\x3c\x0c\x85\xf7\x3e\x85\x7f\x23\x8b\x24\xc0\x9f\xd9\x0f\x0a\x74\xd1\x63\x54\x5d\xd0\x32\x35\x66\xc3\xa1\x0c\x8a\xf6\xd4\x01\x0f\x5f\xc8\x9e\x16\x93\x29\xd0\xa2\xd5\x46\x86\x49\x3d\x7e\x7a\x4f\x89\x18\x6d\x9d\xf0\xd8\x96\x08\x0c\x4d\x33\xa0\x61\xb4\x63\xd3\xb6\x6d\x5b\x8b\x02\x67\x3c\xb6\x5d\x08\x2f\x5b\xc3\x43\xd7\x34\x3a\x33\x96\xbd\xe3\xff\x76\x3f\xdc\x85\xd0\x3f\xf6\x39\x33\x82\x78\xbf\x1a\x7a\x1c\x41\x7d\xc8\x73\xcf\xe8\x89\x33\x98\x93\x98\x73\x96\x93\x0b\x5e\xbc\x8c\x59\xcd\x6d\xa4\xe2\xa6\x20\x85\x50\xcc\x97\x4c\xc3\x53\x08\x7d\x77\xd5\x2e\x06\x86\x67\x14\xbb\x0e\x38\x83\xc5\xd1\x17\x60\x5f\x40\xbd\x57\x84\x57\x8f\x50\xd0\xe3\x56\x88\x59\x8c\x64\x46\x1f\x30\xc1\xcc\xe6\x43\x76\xe4\x82\x9e\x48\x80\x79\xf5\x94\xd5\x29\xb9\xa2\xcd\x2a\x5e\x2e\x54\x4f\xd9\xa8\xf9\xe2\xa6\xab\x5f\x46\x62\xfc\xdd\xfc\x01\x93\xe7\xfe\x2b\x46\xdb\xc7\x9a\x02\x99\x33\xbc\xad\x4e\xe7\x89\x29\x92\x39\xf4\xc5\x14\x6a\x07\x43\x29\x8e\xdf\x0c\x65\x28\x3b\xc2\xd6\xb5\x09\x96\xfa\x59\x1d\x20\x29\x06\x12\x31\xa7\xea\x0f\x6a\x82\x88\x2e\x60\xb4\xa0\x4f\x10\x5f\xe1\x84\x3e\x29\x2d\x60\x75\xcf\x35\x1b\x1c\x7c\x9a\x7b\xa6\xe8\x95\x6f\xdb\x94\xa2\xa5\xc9\xcb\x3c\xa1\x7a\x59\x25\x8e\x9a\x85\xde\x70\xd8\x6f\x57\x7c\xc9\x0c\x46\x8c\x5e\x10\x18\xdf\x99\x1c\xf3\x86\x60\x2f\x55\x46\x4e\x7b\xae\x75\x15\x03\xdd\x6e\xde\x75\x3f\xff\xa1\x0c\xc7\xb6\x7b\xfc\xf8\xe1\xbf\x10\x42\x78\xba\x2d\xdd\xbc\x8a\x1f\xeb\x56\x7c\xc2\x48\xc0\x9f\x46\xd0\xcd\xcc\x10\x5e\xee\x01\xae\x26\x9b\xce\xe8\x09\x6a\x6e\x32\x33\xbf\x47\x3d\x6f\x69\xfc\x82\x78\x38\xdc\x23\x3e\xdc\x83\xb5\x9f\xbf\xfc\x51\x25\x84\xe7\x7b\x9d\x10\x9e\x0f\xff\x28\xf5\x17\x6a\xcd\xf7\x00\x00\x00\xff\xff\x4a\xf4\xfa\xcc\x87\x03\x00\x00")
2340
2341 func runtimeSyntaxScalaYamlBytes() ([]byte, error) {
2342         return bindataRead(
2343                 _runtimeSyntaxScalaYaml,
2344                 "runtime/syntax/scala.yaml",
2345         )
2346 }
2347
2348 func runtimeSyntaxScalaYaml() (*asset, error) {
2349         bytes, err := runtimeSyntaxScalaYamlBytes()
2350         if err != nil {
2351                 return nil, err
2352         }
2353
2354         info := bindataFileInfo{name: "runtime/syntax/scala.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2355         a := &asset{bytes: bytes, info: info}
2356         return a, nil
2357 }
2358
2359 var _runtimeSyntaxSedYaml = []byte("\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")
2360
2361 func runtimeSyntaxSedYamlBytes() ([]byte, error) {
2362         return bindataRead(
2363                 _runtimeSyntaxSedYaml,
2364                 "runtime/syntax/sed.yaml",
2365         )
2366 }
2367
2368 func runtimeSyntaxSedYaml() (*asset, error) {
2369         bytes, err := runtimeSyntaxSedYamlBytes()
2370         if err != nil {
2371                 return nil, err
2372         }
2373
2374         info := bindataFileInfo{name: "runtime/syntax/sed.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2375         a := &asset{bytes: bytes, info: info}
2376         return a, nil
2377 }
2378
2379 var _runtimeSyntaxShYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xff\x73\x1b\xb5\x13\xfd\x3d\x7f\xc5\xc5\xc9\x7c\x6a\xb7\x1f\x9b\xb6\xb4\x1d\x30\x05\x53\x5a\x60\x3a\x05\xda\x19\x60\x26\x43\x14\x8a\x2c\xed\xf9\xc4\xe9\xcb\x55\xda\x8b\x13\xfa\xfa\xbf\x33\x7b\xb6\xd3\xd4\x94\x02\x99\x9c\xf6\x56\x6b\xbd\x7d\xbb\x7a\xb7\xb5\xf3\xc4\x97\x1d\xcd\xab\xd2\x90\xf7\x07\x07\x96\x98\x0c\xcf\x0f\xaa\xaa\xaa\x24\x18\x75\xa0\x79\x35\x1a\x2b\x35\x2b\xcd\x31\x94\x9a\x2d\x75\x69\x76\x36\x1b\x6c\xcd\x76\xe3\xa5\xf6\x4e\x17\x2a\x78\xc7\xd9\x05\xeb\x3e\x1a\x76\x29\x6e\xc3\x6f\xdd\xdd\x0f\xba\x9c\x24\x29\xde\x71\x5e\xb4\xab\xc1\x76\xed\x2a\xb4\x33\x93\x62\x8d\x5d\x28\x9b\x8d\xff\xe2\xd9\xb7\x5f\xfd\xfc\xf4\xbb\x27\x98\xd1\xb2\x77\xde\x2a\x75\x8c\x47\x2f\x9e\x0d\x7b\x93\xd1\x50\x4c\x43\xda\x52\x9e\x57\xa3\x5f\x8f\x0e\x67\x37\x3f\x1a\x53\x3c\xaf\x6e\x4d\x16\xe3\xa5\x9e\x2c\x4a\x33\xae\x70\x3c\x19\x1d\x1c\xe4\xde\x53\xd9\x54\x7f\x54\xfd\xd0\x87\x25\xe5\x32\x78\xd3\xca\xa4\x58\x58\x47\x9e\xc5\x61\x7b\x5e\x8d\x94\x5a\x9e\xde\x9e\x7e\x7a\x76\x4b\xa9\xe5\x26\x89\x9c\x7a\x9c\xa2\x75\x52\x96\xf6\xa5\xd2\xd1\xca\x41\xce\xc9\x57\xb5\x4f\xeb\x2d\x56\x61\xcd\x14\x28\xf2\x06\x65\x6c\x74\x21\xd8\x04\x9b\x22\x81\xbc\xab\x41\xbe\x10\xa8\x68\x03\xba\x70\x8c\xda\xa1\x4e\x19\xbb\x8e\xc1\xd5\x70\x11\x3e\x19\xed\x91\x49\x5b\x64\xe2\x3e\x47\x14\xf2\x64\x18\xa5\x71\x35\x83\x1b\x8a\x60\x17\x08\x7d\x64\xe7\xb1\x6e\x9c\xa7\xc9\x15\xd9\x69\x55\x3a\x32\x4e\xfb\xcd\xfd\xbe\x86\x52\x6f\xa0\xd4\x18\x4a\x4d\xa0\xd4\x67\x50\xea\x0c\x4a\x9d\xe2\x37\x28\xa5\x14\xa4\xa9\x0f\xf1\x05\x0e\xf1\x39\xfe\x07\xa5\x30\x79\x5b\xf4\x8f\xa2\x9e\xca\xa4\x10\x74\xb4\xbb\x8e\x6d\x84\xb5\x29\xd0\x82\x4c\x93\x40\x17\x5d\xca\x0c\x4f\x8c\x42\x8c\x3e\xe8\xd2\xa2\x8f\x85\x78\xb2\xd7\xc4\x10\x52\xac\xbc\x8b\xfd\xc5\x07\x60\xc7\x2b\xb8\xd5\x64\xa1\xd7\xed\x20\x19\x58\x59\x6a\x17\x2d\x94\x5a\xbf\xbe\xfd\xff\x7b\x6f\x56\x99\x3a\xb4\xce\xfb\x61\xd1\xde\x5f\x45\x3c\x95\x82\xa0\x5b\x11\x96\xc4\x0b\x59\x94\x06\xac\xf3\x3e\x95\x4c\x3d\x3b\x5f\x3e\xc0\x63\xa9\x0b\x3d\xb8\x27\x1c\x86\x0f\x06\x46\x33\x4c\x63\x52\x84\x69\x56\xb9\x83\x69\x42\xb2\x30\x4d\x5a\xcb\x4e\x4e\x89\x61\xda\xd2\x07\x08\x24\x4c\x07\x53\x3a\xef\x18\xa6\x67\x58\xcd\x04\x6b\x61\x6b\x58\x97\xe5\x31\xc9\xa7\x5c\xe4\x6d\x00\xb7\x3d\x28\x9e\x4b\x2b\x75\xb4\x62\x32\x6a\x6d\x58\xe4\xa1\x45\x35\x75\x60\xd4\xc9\x5b\x88\xe4\xd1\xa4\xc2\xce\x42\xfe\x45\xbf\xde\xe3\xf7\x24\xd2\x71\xb1\x85\x17\x09\xad\x06\x50\x5f\x10\xec\x7d\xa1\x14\x5a\x49\x1b\xda\xda\xd5\x09\xa1\x8d\xc9\x22\xb4\x4c\xa1\x43\x38\x47\x74\x86\x10\x3d\x62\x6a\xfa\x0e\xb1\xcb\xc9\x20\xf6\x41\x52\x26\x8b\x4e\x17\x26\x74\x9a\x1b\xd3\xb4\xe8\x5c\x6c\x2f\xd1\x65\x74\xd9\x45\x16\xca\xc3\x4b\x8d\x8e\x2f\xd0\xad\xed\x20\xdc\x81\x47\x26\xed\xe5\x14\x72\x40\x0e\x92\x3e\xf7\x51\xba\x57\xe8\x15\xc6\xa5\xd1\x77\x50\x1a\x7d\xf7\xee\xbd\xc1\xdc\x7f\x20\xe6\xe3\x4f\x06\xef\xfe\x9d\xbb\x13\x61\x5d\x9a\x3c\xdc\x5f\x5f\xa3\x78\xa2\x0e\x45\x74\xb6\xe9\xaa\x7c\x6d\x28\x6c\x97\x12\x64\xbe\xc4\x70\xe0\x32\x1a\xb0\x96\xc7\x79\x30\x11\x98\x0a\x6f\x3e\x17\x59\x52\xcf\xe0\xd4\x9b\x06\x9c\xc1\xb9\x27\x59\xa2\x91\xcb\xe1\x01\x5b\x80\xfa\xa1\x77\x7d\xdc\xde\x45\x1f\xdd\x2b\xf4\x71\xa8\xa9\x2f\x94\x0b\xce\xa5\x98\xb5\xc1\xba\x49\xf2\xe8\xe0\x70\x49\x65\x5f\x60\x57\x03\xa3\xaa\xbd\x5e\x95\xf7\x0c\x89\xe9\xf4\x54\x4f\xff\x98\x9e\xdd\x1a\xbd\x77\x82\x54\x43\x58\xa2\xdb\xb0\xb3\x14\xd9\xd5\x6e\x3b\xa7\x8e\x95\x7a\xbd\x90\x59\xf5\x68\xfa\xcb\xcb\xc3\x2f\x8f\x8e\x6f\x2e\xa6\x32\xb6\xde\x2c\x46\xff\xfd\xc0\xfe\x3c\x2c\x9c\x5d\x5c\xcd\xb7\xf5\x54\x42\x2d\x0f\xb4\x46\xa3\xab\x3d\x8a\x56\xa6\xcc\xe2\xe1\xa1\x8c\x92\xc9\xf5\xd0\xb5\x91\xbb\xfb\xbb\x0e\xbe\x19\x51\x8f\x1b\xbd\x21\xa6\xd4\xec\xdf\x33\xb8\xf1\xb7\x04\x6e\xec\xe7\xaf\x4e\xcf\xde\xc2\x86\xa1\xb1\x7f\x81\x3b\xda\x87\x3b\xfe\x87\x2a\x38\xd9\x24\x59\x7f\x7a\xfe\xe4\x39\x4e\x4e\x4e\xf0\xcd\xd3\x93\xef\xbf\x9e\xcc\xa5\x89\x7f\x06\x00\x00\xff\xff\x22\xbd\x30\x21\x7a\x07\x00\x00")
2380
2381 func runtimeSyntaxShYamlBytes() ([]byte, error) {
2382         return bindataRead(
2383                 _runtimeSyntaxShYaml,
2384                 "runtime/syntax/sh.yaml",
2385         )
2386 }
2387
2388 func runtimeSyntaxShYaml() (*asset, error) {
2389         bytes, err := runtimeSyntaxShYamlBytes()
2390         if err != nil {
2391                 return nil, err
2392         }
2393
2394         info := bindataFileInfo{name: "runtime/syntax/sh.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2395         a := &asset{bytes: bytes, info: info}
2396         return a, nil
2397 }
2398
2399 var _runtimeSyntaxSlsYaml = []byte("\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")
2400
2401 func runtimeSyntaxSlsYamlBytes() ([]byte, error) {
2402         return bindataRead(
2403                 _runtimeSyntaxSlsYaml,
2404                 "runtime/syntax/sls.yaml",
2405         )
2406 }
2407
2408 func runtimeSyntaxSlsYaml() (*asset, error) {
2409         bytes, err := runtimeSyntaxSlsYamlBytes()
2410         if err != nil {
2411                 return nil, err
2412         }
2413
2414         info := bindataFileInfo{name: "runtime/syntax/sls.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2415         a := &asset{bytes: bytes, info: info}
2416         return a, nil
2417 }
2418
2419 var _runtimeSyntaxSolidityYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xc1\x8e\xe3\x36\x0c\xbd\xe7\x2b\xbc\xe9\xb6\x3b\xc9\x22\x33\xd3\x16\x5d\xa0\xc1\xb6\xc1\xa2\x45\xaf\x7b\xe9\xa9\x71\x50\xd0\x12\x1d\x13\x91\x25\x83\xa4\x93\xf1\x82\xe8\xb7\x17\xb2\x93\x4e\x30\xb3\x33\x97\xfa\x60\xd1\xd6\xe3\x7b\x4f\xa2\xa8\x9a\x02\xea\xd0\xe1\xba\x90\x14\xc8\x93\x0e\xb3\x99\x47\x45\xa7\xeb\x59\x51\x14\x45\x9e\x8f\xd0\xe2\xba\x98\x97\xe5\xad\xa4\xf0\x76\x3e\x9b\x71\x1f\x50\xa6\xf9\x55\xd1\x31\x76\x9c\xdc\x08\xa8\x6e\x5c\x8a\xca\xe0\xd4\x02\x55\x0c\x3c\x58\xc7\xb0\x6f\x61\x51\x96\xd5\xfc\x9c\xe0\x52\x14\x85\xa8\xb7\xb1\x6f\x2b\xe4\x29\x71\xbb\xda\x6d\x6e\xb6\xf7\xab\x9f\x77\xef\xed\xfe\x21\x07\xb0\xaa\x3f\xad\xfe\xd8\xbd\xbf\x4e\x25\x8f\x51\xa9\xa6\x31\x6b\x0b\xab\x2f\x9f\x56\x7f\xed\xb6\x7f\x4f\x41\x4e\x5e\x6e\xb7\x6b\xe9\xc0\xe1\x7a\xb7\x5b\x5e\xb2\x44\x41\xb1\xc5\xa8\x67\x8f\x20\x82\x6d\x15\x06\xab\x18\xe1\x60\xd9\x32\xc5\x1e\xcd\x27\xab\x13\x5b\xdd\x47\xa7\x94\xa2\x51\x6d\x18\x04\x2d\xe2\xc9\x18\xb5\xe7\x78\x1e\xc4\x4e\x0d\x05\xbc\x76\x26\x1d\x3a\x82\x70\x56\xc8\x5b\x85\xd1\x9b\x36\x9c\x4e\x23\xac\xf8\xa6\x68\xe1\x80\x85\xf4\x8c\x85\x36\x38\x14\xc0\x58\x1c\x91\x87\xe2\x48\x42\x55\xc0\x33\xd1\x01\x87\x53\x62\x7f\xb1\x1a\x53\x1c\xda\xd4\x8b\x5d\x76\xcd\x28\x7a\x7c\x40\x6f\x1d\x0c\x50\x05\xb4\xae\xaf\x02\x39\xeb\x98\x8e\xa0\x68\xf8\xa0\xc8\x11\x82\x51\x9c\x82\xaf\x6d\xfd\x99\xbd\x0a\xc9\x1d\xb2\xd9\x29\x6a\x40\x1a\x73\x89\x62\x05\x82\xe6\xa9\xae\xc9\xf5\x41\x07\xdb\x83\x04\x6a\x49\x6d\xaa\x98\x29\xb5\x28\x0a\x6d\xb7\x58\x6c\xac\x95\xfd\x48\xe1\x41\x21\x23\x2d\xaf\x1c\xd9\x8e\x10\x7a\xcc\x80\x98\x4e\xa6\x0f\x23\x66\x0f\xd2\x31\x39\xb4\xc4\xb4\xa7\xb8\x58\x6c\x5e\x71\x77\x40\xe7\xe0\xf0\xc3\x4f\x1f\x4c\x1a\xf8\x31\xbf\x72\xcc\xd4\x61\xeb\xbf\xff\x70\x6f\xe8\x18\x5d\x3a\x22\x1b\x78\xdf\x26\x6f\x6d\x1f\xf2\xa0\x0d\x89\x49\xdf\x21\x9b\x60\xa8\x3d\x8a\x72\xef\xd4\xca\xf2\xb6\x82\x00\xd1\xe1\x2b\xa2\xca\x3d\x5a\x0d\x41\x5e\x03\x9d\x90\x4c\xbe\x40\x95\xac\xa6\x18\x71\x30\xd4\x66\x54\x73\x29\x7a\xb1\x96\x62\xaf\x28\xd6\xa4\x9e\xc5\x3c\x0c\x62\x27\xc4\x83\xd8\x80\xc0\x72\xcd\x3b\x75\xde\x54\x69\xef\x19\x45\xac\x4a\x29\x58\x0b\x5d\x47\x71\x6f\xa2\x9c\x87\x23\x70\x2e\xe7\x4d\x59\xfa\xe5\xc2\xfa\xc7\xb0\x1a\x14\xcf\x61\x4d\x0f\xe8\x2f\x88\xab\x8f\x6b\x39\x64\x4e\x7c\xd1\xab\x64\x6a\x54\xa8\x15\xd9\x5c\x2e\xb9\x03\x75\x8d\x79\xac\xa1\x0f\x9a\xd7\x36\x1e\x23\xa3\x18\x28\xe2\x74\xa0\x6a\x70\x68\x01\xd5\xda\x11\x1b\xfb\x10\x2c\xd5\xd6\xf5\x8c\xc6\x18\x92\x03\x1d\x4f\x65\xee\x39\x72\x26\x27\xca\x30\xe5\xc1\xf2\x5a\xc7\x57\xaa\xed\x48\x78\xba\x36\x96\x3a\x64\xd0\xd1\xdb\x76\xf5\xfe\x6e\xf9\xcb\xc7\x5f\xdf\xfc\xf3\xed\x66\xfd\x9d\xed\x1e\x4b\xd0\x8e\x2d\x3c\x7e\xe6\x47\x14\x38\x17\xe4\xee\x6e\xfe\xdf\x3f\x8c\xb9\x71\xde\x3e\xfe\x98\x6e\xaa\x62\xbb\x7b\xc2\x52\x3c\xa7\x29\xcb\xe5\x53\xa2\xb2\x5c\xde\xbd\xcc\xa5\xc9\xa7\x75\x31\xff\xf3\xf3\xef\x9f\xd7\x9b\x67\x97\xdb\x54\xba\xaf\x08\x95\xf3\xa7\x32\x37\x9b\x8f\x6f\xca\xb2\x2c\x17\xd7\x53\x57\x77\xec\xe5\xb9\x66\x9f\xae\x9b\xdf\x1a\x98\xea\x59\x96\xb7\x2f\x39\x78\x66\xe0\xdd\x8b\xfa\xef\xfe\x97\xfc\xec\xdf\x00\x00\x00\xff\xff\x5e\x40\x24\x72\x4c\x06\x00\x00")
2420
2421 func runtimeSyntaxSolidityYamlBytes() ([]byte, error) {
2422         return bindataRead(
2423                 _runtimeSyntaxSolidityYaml,
2424                 "runtime/syntax/solidity.yaml",
2425         )
2426 }
2427
2428 func runtimeSyntaxSolidityYaml() (*asset, error) {
2429         bytes, err := runtimeSyntaxSolidityYamlBytes()
2430         if err != nil {
2431                 return nil, err
2432         }
2433
2434         info := bindataFileInfo{name: "runtime/syntax/solidity.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2435         a := &asset{bytes: bytes, info: info}
2436         return a, nil
2437 }
2438
2439 var _runtimeSyntaxSqlYaml = []byte("\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")
2440
2441 func runtimeSyntaxSqlYamlBytes() ([]byte, error) {
2442         return bindataRead(
2443                 _runtimeSyntaxSqlYaml,
2444                 "runtime/syntax/sql.yaml",
2445         )
2446 }
2447
2448 func runtimeSyntaxSqlYaml() (*asset, error) {
2449         bytes, err := runtimeSyntaxSqlYamlBytes()
2450         if err != nil {
2451                 return nil, err
2452         }
2453
2454         info := bindataFileInfo{name: "runtime/syntax/sql.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2455         a := &asset{bytes: bytes, info: info}
2456         return a, nil
2457 }
2458
2459 var _runtimeSyntaxSwiftYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x53\x5f\x6b\xdb\x48\x10\x7f\xf7\xa7\xd8\xe8\x72\x87\xe5\x5c\xec\xbb\xb6\x84\x56\x4d\x6b\xd2\xa6\x81\x50\x5a\x3f\x24\x05\x43\x37\x0f\x6b\x69\xe4\x6c\xbb\x9a\x15\xb3\xb3\x56\x54\xe6\xc3\x17\x29\xb1\x11\xa9\xa1\x85\x42\x05\x62\xa5\xdd\x99\xdf\x9f\xf9\x49\xa5\x75\xc0\x6d\x0d\x99\x0a\x8d\x2d\x79\x34\x2a\x80\x21\xe7\x6c\xa4\x94\x52\xdd\x21\x9a\x0a\x32\x95\x68\x3d\xed\x0b\x0e\x93\xd1\x88\xa2\x83\x70\x5f\xf1\x97\x5a\xd4\x40\x86\x3d\x85\xfe\xfd\x58\x05\x36\x0c\x15\x20\x67\x2a\x19\x7f\x9e\x66\x2f\xff\x3d\x9a\xc8\xab\x83\xb9\xd6\x7f\xdf\xc8\xa9\xbc\x96\x99\x1c\xcb\x3f\x69\x32\xea\xeb\x3b\x84\xab\x6d\xc7\x1e\x08\x95\x8c\x73\x67\x42\x10\x5b\xd5\x9e\x58\x1c\xb0\x6c\x0c\x49\x60\x8a\x39\x0b\x60\xac\xa4\x8c\x98\x8b\x2d\x05\x5c\x00\x09\x8d\xe5\xfc\x56\x72\x13\x40\x0a\x28\x4d\x74\x2c\xa5\x27\xb1\x28\x16\x19\x08\x8d\x13\xb8\x7b\x78\x88\xe8\x1b\x84\x42\x6a\xb2\x1b\xc3\x20\x75\x5c\x39\x9b\x0b\xdf\x92\x6f\x42\xaa\xb5\x4a\xf6\x2a\xaa\x09\x4a\x7b\x27\xb5\x0f\xdc\xad\xfe\x61\x02\x3d\x2e\x06\xeb\x51\x9c\xf9\xd6\xca\x1a\x58\x42\x7f\xbb\x52\x1a\xeb\xdc\x15\xb0\x14\xb6\xe8\x16\xbf\x01\x22\x5b\x80\x84\x58\x03\x49\xee\x71\x03\x68\x01\x73\x90\x06\xcc\xd7\xce\x9f\xc7\xb5\x54\x91\x0d\x5b\x5c\x0b\x01\x47\x42\x59\x47\x43\xc5\xbd\xb0\xdd\xf8\xde\x43\xdb\x78\x2a\xf6\xce\xbf\x26\x8b\x9c\xee\x71\x91\x8c\x2d\x5a\x1e\xa6\xf0\x31\x56\x2b\xd8\xa5\x98\x7b\x0c\x6c\x90\xa7\xd8\x6f\xf7\x59\xfe\x77\xfc\xe2\xe6\xe8\x51\x70\x58\x18\x2a\xd4\x75\x5b\xc3\xb6\xf3\xfe\x63\x4a\xb4\x56\xe3\xf1\xa7\x74\x7e\x89\x3c\x7e\x2e\xff\x9f\xc8\xd3\x27\x72\xf2\x2c\xdd\x69\xd9\x12\x74\xc8\x4c\x11\xa4\x34\x5d\x7c\x68\xdd\xae\x64\x80\x74\xee\xe3\xca\x81\x5c\x31\x75\xc3\xb8\x70\xde\xb0\xbc\xf1\xde\x81\x41\x39\xb7\x39\x5b\x8f\x86\x5a\x39\x23\x32\xad\x5c\x0e\x2c\x0f\x30\xce\xb0\x5d\xac\xbe\x40\xbe\x73\x3d\x70\x19\x7a\xe0\xec\xc1\x99\xea\x26\x45\x9d\x34\x9d\x24\xbb\x3d\xc0\xa2\x13\x3b\x3f\x3d\xd0\x5a\xeb\x74\x78\x34\xf8\x21\xb6\xd7\x10\xbc\x86\xdc\x1a\xf7\xf6\xd6\x50\x2f\x45\xeb\xe9\x40\x41\xd5\x07\xf2\x03\xf3\x6c\xf6\x98\xf9\xf0\x27\x7c\xec\x0b\xdf\x09\xbc\x5e\x9c\x2f\x64\xb9\x5c\xca\xc5\xe5\xf2\xc3\xbb\x34\x9b\xff\x0a\xd9\x1f\x65\xd3\x7a\xa2\xf5\xe4\x31\xa3\xd6\x93\xd9\x6f\x90\x7e\x0f\x00\x00\xff\xff\x9e\x67\xd3\x6c\xc9\x04\x00\x00")
2460
2461 func runtimeSyntaxSwiftYamlBytes() ([]byte, error) {
2462         return bindataRead(
2463                 _runtimeSyntaxSwiftYaml,
2464                 "runtime/syntax/swift.yaml",
2465         )
2466 }
2467
2468 func runtimeSyntaxSwiftYaml() (*asset, error) {
2469         bytes, err := runtimeSyntaxSwiftYamlBytes()
2470         if err != nil {
2471                 return nil, err
2472         }
2473
2474         info := bindataFileInfo{name: "runtime/syntax/swift.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2475         a := &asset{bytes: bytes, info: info}
2476         return a, nil
2477 }
2478
2479 var _runtimeSyntaxSyntax_checkerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xcd\x6a\xeb\x30\x10\x85\xd7\x9a\xa7\x98\x08\x2e\xc8\x60\xe4\x7d\x20\xbb\xdc\xcb\x5d\x85\xd0\x6e\x0b\x41\xb5\x25\x7b\xa8\x7e\x82\x7e\xa0\x69\xc9\xbb\x17\xc9\x69\xda\xd2\x85\x40\x3a\x3a\x73\xbe\x33\x67\x35\xbe\xa8\x59\xa3\x53\xe4\x01\xc8\x9d\x43\xcc\x28\x80\x71\xe3\x32\x07\xc6\x29\x0c\x14\x4a\x26\x5b\x1f\x29\x47\xf2\x73\xe2\x00\x8c\xcf\x94\x97\xf2\x2c\xc7\xe0\x86\xb7\x8b\x9e\x68\x22\x35\x38\x1a\x63\x18\x46\x37\xdd\x6e\x0b\xcd\x8b\xa5\x79\xc9\x1c\x3a\x00\x53\xfc\xd8\x38\xa2\xc3\x77\x60\x86\xac\x4e\x3d\x9e\x70\xbb\xc3\x15\x21\x1f\xb4\x9a\xf6\x14\x05\x97\xbc\x03\x60\x8b\x9a\xfe\xc6\x58\xff\x8d\xb2\x49\x03\x33\x21\xe2\xa9\x47\x53\xa5\xa8\xfc\xac\xb1\x85\xd4\x34\x46\x06\x6f\xf5\xe4\x7f\x95\x1e\x8b\x31\xf4\x2a\x8c\x3c\x28\xa7\x45\xd7\x23\x97\x17\xe5\x2c\x6f\x64\xc6\xc8\x9f\x4b\xfe\xcd\xfe\x47\x56\xdf\x67\xba\x6a\x3c\xf5\xa8\xd7\x0a\xf7\x5d\xe4\x51\xc5\xa4\xf7\xda\x88\x96\xd2\x6c\x64\x9a\x6d\xb3\x43\x4f\x76\x45\x7c\xb6\xdf\x61\x8e\x45\x37\xc5\xb8\x2c\x8f\x91\x7c\x36\x82\xff\x49\xdb\x27\xcf\x7b\xfc\x41\xfb\x72\x58\x2f\x74\x8c\xab\x38\x06\x9f\xc9\xaf\x19\x57\x68\xe7\x0a\x15\xb9\xb9\x21\x2a\xef\xfb\x24\x3f\x04\xa4\x94\x8a\x4e\x1b\xde\x55\xf3\x15\x3e\x02\x00\x00\xff\xff\xc5\x16\xb7\x9a\xe7\x01\x00\x00")
2480
2481 func runtimeSyntaxSyntax_checkerGoBytes() ([]byte, error) {
2482         return bindataRead(
2483                 _runtimeSyntaxSyntax_checkerGo,
2484                 "runtime/syntax/syntax_checker.go",
2485         )
2486 }
2487
2488 func runtimeSyntaxSyntax_checkerGo() (*asset, error) {
2489         bytes, err := runtimeSyntaxSyntax_checkerGoBytes()
2490         if err != nil {
2491                 return nil, err
2492         }
2493
2494         info := bindataFileInfo{name: "runtime/syntax/syntax_checker.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2495         a := &asset{bytes: bytes, info: info}
2496         return a, nil
2497 }
2498
2499 var _runtimeSyntaxSyntax_converterGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x5f\x6f\xdb\xb6\x16\x7f\x96\x3e\xc5\xb9\xbc\x28\x20\xd5\xaa\x8c\x26\xe9\x8b\xef\x35\x82\x61\x58\xd1\x0e\xe8\x56\xc4\xdb\x53\x64\x34\x8c\x45\xdb\x5c\x25\x4a\x20\xa9\x34\x41\xe6\xef\x3e\x9c\x43\x4a\xf2\xff\xd8\xdd\xb0\x17\x47\x3c\xe4\xf9\xf7\xe3\xf9\x1d\x92\xa9\xf9\xec\x2b\x5f\x08\x28\xb9\x54\x61\x28\xcb\xba\xd2\x16\xa2\x30\x60\xf3\xd2\xb2\x30\x60\xb2\x1a\xca\xaa\xb1\xb2\xc0\x41\x65\xf0\x57\x8b\x85\x78\xac\xf1\xcb\x58\x2d\xd5\xc2\xb0\x30\x0e\x43\xfb\x54\x0b\x98\x48\xb5\x28\xc4\x4d\x53\x08\x30\x56\x37\x33\x0b\xcf\x61\x30\xab\x8a\x4a\x83\x5b\x1b\x06\xa4\xdd\x8e\x56\x5e\xef\x53\x53\x58\x79\x54\xcd\x58\xae\x6d\x37\x12\x2a\x07\x58\x33\x32\x1c\xc2\xcf\x95\x54\x64\xc1\xf2\xaf\xc2\x00\x07\xf3\xa4\x2c\x7f\x04\x8d\xb2\xe8\xdb\x52\xce\x96\x30\xe3\x0a\xee\x05\x94\xe8\xad\x2e\x04\x68\xb1\x68\x0a\xae\x41\x3c\xd6\x5a\x18\x23\x2b\x65\x62\xb4\xc5\x55\x0e\x7f\x54\x52\x19\x90\x16\xa4\xb2\x15\x54\x6a\xdf\x6a\xb8\x7f\x82\x5f\x6f\xa4\x5a\x80\x78\x10\xfa\xc9\x2e\xf1\xd3\x56\x0b\x61\x97\x42\x87\xf3\x46\xcd\xba\xb0\x22\xed\xb3\x93\x6a\x11\xfb\xbf\x98\xa5\xa9\x0b\x69\x61\x34\xf6\x22\x93\x4e\x50\x40\xab\x13\xb8\x63\xc0\xee\xe2\x30\xc0\x58\x44\xbe\xbe\x0a\xcd\x46\xa4\x9b\x00\xfb\x93\xf5\x6b\xc6\xe0\x3e\x10\x68\xdb\x68\xd5\x0e\x57\xa1\x8b\xa7\xe6\xda\x88\xf7\xb2\x10\x91\x15\x8f\x36\x81\xb9\x2c\x84\xe2\x65\x1f\x5a\x84\x12\xdc\x94\xc4\x23\x98\xc0\x52\xf0\x5c\xb4\x5b\x91\x10\xa2\x06\x6e\xa7\x52\x59\xa1\xe7\x7c\x26\x9e\x57\x31\xa6\x52\x48\x25\xcc\x6e\x2a\xce\x0f\xcb\x14\x8b\xc3\x30\x18\x0e\xe1\x86\x2a\x60\x5e\x69\x0a\x06\x71\xf0\x5b\x65\x2c\xb7\xa2\x14\xca\x9a\x30\x70\xa2\xcf\x18\xad\x46\x9b\xae\xe8\xd2\x4f\x8d\xb1\x3f\x56\x65\x8d\x09\xdc\x79\x35\x16\xa5\xaf\xaf\x63\x96\x99\x01\x7e\xc5\x6c\x80\x90\xed\xf5\xd3\x25\xd2\xfb\x71\xa2\xe3\x7e\xbc\x9a\xb3\x7e\x77\x38\x0b\xcb\x55\xce\x75\xbe\x5e\x79\x26\x0c\xf0\xcf\x71\xfb\xae\xd2\x29\x8b\xcc\x0c\xa2\xeb\x51\x16\x45\xe9\xe0\x3a\xbe\xce\x70\x1c\x5f\x77\x8e\x8f\xa2\xe7\xb6\xe5\x9b\xb4\x4b\x20\xb2\x8c\x59\x9a\xa6\x0c\x84\xca\xdd\x97\x8b\x64\x82\x53\x3f\xa9\xfc\xef\x45\xe4\x1d\x50\x5c\x99\x19\x90\x8f\x1e\x1d\x0c\x0e\x8b\xe1\x97\xa6\x4c\xe8\x83\xdc\x70\xb5\x10\xe0\x6a\xe4\x39\x0c\xa8\x5a\xa0\xaf\x95\xdf\xb4\x2c\x27\x35\x9f\x89\x08\x27\xe2\x30\x08\xe4\xdc\xe9\x8e\xc7\xc0\x18\xa9\x04\xb3\x4a\x59\xa9\x1a\x11\x06\xc1\xca\xad\x68\xd5\x3f\x70\xf3\x59\x8b\xb9\x7c\x24\xf5\x04\xd8\x7f\x59\x7c\xb6\x8e\x03\xb2\x55\x74\xa3\x4f\xdc\xce\x96\xbe\xac\xd7\x4a\x32\x7d\x2f\x55\x3e\x69\xee\x4b\x9c\x8e\x6e\xa7\xf7\x4f\xd6\x47\x8e\xa1\x53\xec\x42\x45\x1b\x26\x62\xcc\xe4\xd2\xd9\x0e\x5a\x92\x75\x08\x6c\xae\xbd\x7d\x3b\x25\x3b\x3e\x08\x18\xf7\x7d\x64\xef\xf2\x8b\xa9\xf3\xbb\x02\x51\x18\xd1\xfa\x28\x6d\xfa\x59\x4b\x65\x0b\x15\xb5\x34\x4f\xfa\x8d\x61\x93\x2d\xd6\x81\x34\xa0\x2a\x0b\x0f\xbc\x90\xf9\x08\xd8\xa0\xdd\x89\x0d\x10\x09\xc5\x97\x90\x74\x8c\x69\x91\x1c\x0e\xe1\xc3\x16\xf3\x50\xec\x16\xad\x01\xbc\xce\xc5\xd3\x00\xde\x30\x41\x00\x5f\xf8\xe4\x3d\x67\x77\x81\xdb\x50\x41\x9c\xcf\x07\x6e\x3b\x99\xb3\x80\x0b\x09\x8f\x49\xcf\xd9\x04\xee\x1b\x8b\x07\xcd\xac\x6a\x8a\x1c\xcf\xa7\xae\x91\xd0\xf9\xc7\xb5\x7d\x23\x54\xee\x10\xef\x9b\x49\x4a\x29\x4c\x5c\x52\xe4\xb0\x03\x7b\xb2\xa7\x11\xf9\x29\xd2\x05\xbb\x74\x4c\xa4\x32\xf7\x18\x13\x47\x7b\xeb\xc7\xe1\x7f\xe0\x1a\x36\xcf\x67\x27\xa3\x5e\x32\xb1\xdb\xe2\x79\xc1\x17\x66\x4d\xd6\xd2\xc3\xdb\xa7\x8d\xbb\xf2\xe0\x0f\x87\xf0\x91\xa6\x11\xd5\x2b\x0c\x55\x51\xbc\x0d\xb6\x2b\x53\x8b\x99\x9c\x4b\x91\x83\xa9\x4a\x01\x3c\xcf\xa5\x95\x95\xe2\x85\x77\x61\x2b\x5c\xe7\x91\xc7\xf0\x7a\x7a\x79\x5f\x1d\xb3\x9c\xc2\xee\xfc\x85\x9f\x97\x73\x6f\xf3\x3f\x7d\xff\x09\x82\x2e\xc1\x31\xb0\xe8\x9a\xc1\xc0\x2f\x1a\x00\x8b\x71\xb4\x43\xd3\xd6\xec\xa5\x2f\xb4\xcd\x4a\x5b\xb7\x77\x82\xea\x5a\xa5\xee\x83\xf0\x72\x1f\x84\x97\x09\xa8\x6a\x17\xa9\x6f\x42\x0b\x58\xc8\x07\xa1\x4e\x42\xeb\x94\x38\xf7\x36\xa1\x8d\x58\x90\x24\x97\x58\xd5\xb4\xaf\x5a\xa0\x8c\x43\xad\xab\xfb\x42\x94\x27\x51\xef\xa3\x22\x92\xf5\xdc\x3b\x46\x37\xfc\x75\xa7\xe2\x18\x78\x5d\x0b\x95\xd3\xbd\xca\x24\x6b\xf7\xd4\x67\xca\x3c\xe9\x2a\x77\x85\x86\x7a\x8c\x77\x8f\xcc\xe3\xbc\x73\x5c\xdd\x26\xde\x36\xc7\xb6\x2c\x7e\x1f\xd7\x36\x6f\xc4\x4e\x46\xbe\x3b\xc9\x70\x08\xbf\x1b\x01\x25\xdd\x67\x8d\xdf\xf8\xfb\x27\xc8\xc5\x9c\x37\x05\xf5\x60\x27\x1b\x8d\x81\x95\x78\xb7\xdf\x4f\xcd\x77\xfb\xf6\xf2\x5d\xcf\xca\x5a\x57\x0f\x32\x3f\x44\xca\x33\xd8\x38\x38\x4c\x47\x97\xed\xee\xfc\xa5\x9f\xc7\xcc\x77\x67\xaf\xa6\xf1\x0b\x9c\x39\xdc\x76\x5c\x6e\xb9\xcc\xa9\x6c\x7d\x8e\xdf\x97\xdd\xa1\xe0\x2f\x8e\x06\x7f\x39\x3d\x81\x4e\x57\x48\xa7\x77\xff\x1a\x9d\x86\x43\x77\xcf\xbc\xa5\x94\xa7\x87\xda\x20\x8b\xf0\xd7\xa5\x8d\xb2\xf4\xf5\x35\x49\x30\x51\x5a\x73\x98\x9a\xdd\x53\xb0\x65\x26\x59\x49\x50\xd5\x71\x33\xa4\x50\xdc\xeb\xa6\x7b\xd6\x2c\x84\x12\x9a\x5b\xf7\xb2\xf9\xbe\x17\x4c\xff\x26\xab\x1a\x5b\x37\xf4\x28\x63\x2c\xec\x86\x83\x31\x20\x9c\x93\x1a\xf1\x9c\x47\xac\xf5\x32\x82\x57\x26\x53\x99\x62\xee\x31\x85\xa2\xf8\xa0\x52\x2e\xac\x98\xd9\x11\x64\x0a\x00\xba\xc7\xd7\x08\x32\xf6\xca\x64\x8c\x8c\xb4\x97\xaa\x1b\x51\x17\x78\x1f\xde\x19\xfb\x9c\x58\x96\x31\xfa\xa5\xbf\x6f\xde\xc6\x38\x60\x5e\xc4\x9c\x08\x6f\xe3\x72\xde\xa6\xdf\x9f\x64\x07\xa2\xc3\x98\xdc\xda\xb3\x22\x72\x2a\xa7\x46\x44\xdb\xd7\x07\xc0\x32\x45\xdb\x31\xca\x14\xf3\x6f\x87\x2f\x09\xe8\xfe\xc9\xe0\x36\xeb\xb9\xbf\xff\x24\x50\x7d\xa5\xe9\x34\xea\xfb\x78\xfc\x3f\x94\x12\x49\x8e\x24\xf7\x06\x5e\x99\x8d\xd4\xd0\x5e\xda\x15\xda\xf1\x34\x69\x2d\x9d\x13\x27\xa7\xba\x75\x92\xac\x45\xde\x95\xf9\x19\x81\x6f\x45\x1c\xbf\xa0\x03\xf4\x2f\x12\xae\xed\x59\x9b\x49\xf6\x3d\xe7\x4e\xcd\xf2\xa5\x28\x84\xca\xcf\x8f\x41\xa8\xfc\x9f\x8b\xc0\x95\x18\xdc\x4e\x89\xa9\x3b\x7d\x04\x9c\x7a\xd7\x4e\x4a\x2e\x55\x44\x07\xbb\x3f\x33\x2a\x93\xfe\xa0\x17\x26\x86\xff\xfb\x17\xc6\x7a\x67\x65\x78\xc1\xd2\x0b\x43\x76\x7d\x63\x22\xe3\x39\xb7\x3c\x81\x2f\xb8\xe5\xee\x9f\x68\xe9\x8d\xe0\x39\xf5\x28\x6f\xd0\x1d\x11\x9d\xb1\x68\xa3\x8f\xf5\xff\xab\xf1\x47\x03\xda\x8b\x13\x58\xd3\x8d\xe3\x70\x15\xfe\x15\x00\x00\xff\xff\x51\x4d\x1d\x2e\xc4\x13\x00\x00")
2500
2501 func runtimeSyntaxSyntax_converterGoBytes() ([]byte, error) {
2502         return bindataRead(
2503                 _runtimeSyntaxSyntax_converterGo,
2504                 "runtime/syntax/syntax_converter.go",
2505         )
2506 }
2507
2508 func runtimeSyntaxSyntax_converterGo() (*asset, error) {
2509         bytes, err := runtimeSyntaxSyntax_converterGoBytes()
2510         if err != nil {
2511                 return nil, err
2512         }
2513
2514         info := bindataFileInfo{name: "runtime/syntax/syntax_converter.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2515         a := &asset{bytes: bytes, info: info}
2516         return a, nil
2517 }
2518
2519 var _runtimeSyntaxSystemdYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x58\x4d\x73\xe3\xb8\x11\x3d\xef\xfc\x0a\x95\x33\x87\x99\x4c\xed\x1c\x73\x70\x55\x92\xa2\x48\x4a\xc6\x5a\xfc\x58\x82\xb2\xd7\x19\xcd\xb2\x20\xb2\x25\x21\x86\x00\x2e\x00\xca\xd6\x06\x3f\x3e\x05\xf0\x5b\x3b\x17\xa9\xdf\x43\x93\x00\x89\xee\xd7\x4d\x1c\x28\x03\x7d\xad\xe1\x7e\xa1\xae\x4a\xc3\xb9\xfa\xf0\xa1\x02\x0d\xa5\xbe\x5f\x7c\x58\x2c\x16\x0b\x3b\xce\xc9\x19\xee\x17\x77\xbb\xdd\xd7\x4f\x0a\xe4\x85\x96\x60\x94\x28\x5f\x41\x7f\xfe\x78\xe7\x9c\x4e\x40\x2a\x90\xf7\x8b\xbb\xdf\x77\xbb\x6f\x5b\x4e\xf5\x6e\xf7\xfd\xe3\xdd\x87\x0f\xb2\x61\xa0\xee\x9d\xcb\xcf\x0b\xa5\x89\x86\x33\x70\x6d\xfd\x3e\x79\x65\x09\xb5\x36\xde\x41\x83\x34\x1e\xa3\x44\x19\x8f\x31\xf1\x86\x94\x60\x44\x83\xf1\x98\x12\xc6\x8b\x31\x2a\xfc\x64\x93\x64\xa6\xf0\xb6\x01\xca\x8b\x4d\xb2\x46\xf1\x16\x05\x3d\xc6\x21\xc6\x28\x89\xcd\x92\x94\xaf\x4c\x1c\xcd\x12\x0e\x42\x82\x59\x52\x5e\xa1\xf4\xf2\x8f\x84\xb3\xab\x03\x2a\x17\xee\x3f\x17\x01\xb8\x07\x58\x32\x51\xbe\xa2\x24\x03\x52\x2d\x09\xaf\xde\x68\xa5\x4f\x3d\xf9\x0c\xf4\x78\xd2\x03\x92\x54\xc3\xe8\x53\x2c\x93\x24\x2f\x50\x60\x96\x52\x90\xaa\x24\x4a\x9b\xe5\x76\x5d\x64\x61\x9a\x64\x79\xb1\xcd\x36\x66\xd9\xa8\x98\x9c\xc1\xf8\xa4\x26\x7b\xca\xa8\xa6\xa0\x46\x70\x5d\x8a\x86\x57\x94\x1f\x31\x68\xe3\x3f\x78\x18\x23\x6c\x4a\x5a\x9f\x40\x9a\x92\x11\xa5\x4c\xe1\x47\xc1\x06\xc5\xa1\xf1\x93\x20\x2c\x56\x68\xd3\x5b\xdb\xd8\x6f\x2d\x37\x5a\xf8\x49\x14\x19\x5f\x9c\x6b\x09\x4a\x19\x5f\xf0\x8a\x6a\x2a\xb8\xe7\xa7\xe2\x0d\xe4\x48\x8c\x53\x8f\x5c\x40\x25\x94\x5a\xc8\x6b\x2c\x74\x78\xae\xa7\x43\x2b\xca\x00\xa9\xf0\x1d\xca\x46\x93\x3d\x83\xf9\xc8\x5f\xfd\x1f\x84\xd2\x23\x7a\x04\xc9\x81\xf9\xe2\x7c\x26\xbc\xda\x50\x3e\xb9\x3c\x6e\x18\x1b\x51\x4a\xf4\x29\x7c\xa7\x4a\xab\x1f\x71\x6b\x26\xf6\x73\x1e\xa9\x61\xcd\xb7\x03\x91\x68\xb8\x4e\x05\xe5\xfa\x76\xc4\x6e\xaf\xdb\xbf\xdb\x01\x7c\x3d\xef\x05\xa3\xe5\x86\xf2\xd7\x71\x0c\x43\xd9\xc8\xd9\x7b\x7a\xa2\x52\x37\x84\xd1\x3f\x89\x45\x96\x3f\x30\x5a\xb6\x6b\xd6\x52\xb0\xb5\x14\x4d\x3d\x03\x9e\xd6\x92\xee\x9b\x76\xca\x81\x8d\x44\x45\x0f\xd7\x19\x95\x82\x54\x54\x69\xe0\xda\x94\x2d\xcd\x40\x0e\x37\x6e\xed\x34\x2c\x62\x2f\x0a\x8d\x9f\x6e\xbd\xc3\x81\x72\xb7\xb6\x74\x8b\xcb\x13\x54\x0d\xa3\xfc\x98\xda\x87\xb8\xe5\x24\x15\xf2\x2f\x9e\x19\x28\xd0\x09\x5f\x09\xf9\xea\x06\x4e\x44\xda\xb0\x94\x44\x9d\xfc\xd3\x53\xde\x5a\xf8\x04\x8c\x99\xa2\xf0\xb7\x19\x4e\x32\x53\xc1\xbe\x39\x9a\x00\x0e\xa4\x61\x7a\xba\xb0\x8e\x0a\xa0\x06\x5e\x01\x2f\x6d\x84\x77\xdc\x86\x9e\xa9\xf6\xf0\x0c\xfa\x49\x16\xce\x89\x74\x3b\xc3\x81\x97\x7b\x33\x62\x85\xd1\x7f\xe6\x97\x6c\x12\xff\x71\x7e\xd7\x28\x8c\x2c\x39\xe7\xf0\xfa\xd7\x6d\xb8\x9d\x5f\x1a\x23\xff\x86\x48\x5c\x56\xcd\xa8\x34\x4b\xfc\x19\x93\xe1\xf9\x74\x59\x9e\x66\x28\xb9\xa1\x72\x14\xcd\xef\x83\xd1\x3a\x0d\xe3\x00\xc5\xeb\x39\x9d\x7b\xe3\x4a\xb1\x26\xbc\x22\xb2\x0a\xa5\x14\xf2\x96\x4c\x1a\x5d\x37\xda\x04\xa0\x4a\x49\x6b\x17\x75\xad\x64\x39\x79\xec\xec\x00\xf8\xd5\x0c\xf9\x10\x89\x0a\xcc\x5f\x33\x3a\x10\x65\x63\xf5\xb6\x0d\xdd\xa0\x39\xd7\xbe\xd5\x46\xb0\xdb\x58\x5f\x4d\xc8\x2f\x54\x0a\x6e\x3d\xa6\xb6\x4d\x72\x13\x66\x59\x9c\x18\xb8\x00\xd7\x85\xa6\x67\x10\x8d\x36\x45\xf8\x5b\x68\xac\x2c\x64\xc0\x04\xa9\x9c\x89\x35\x91\x7a\xb4\x52\x2b\x05\x23\x92\xd0\x01\x51\x0f\xc6\xc4\x45\xd4\xd6\xe3\x40\x99\x2d\x01\xab\x24\xce\xdd\x4f\x11\x79\x69\x6b\x6c\x63\xe4\x6c\x21\xdf\x88\xac\x72\xe1\x0b\xae\x04\x83\x91\x78\x8c\xd4\x71\x44\xf8\xaa\x6c\x05\x58\x49\x00\xab\xf4\xe6\x20\xe1\x0f\xb3\x52\xe5\x6b\x4a\x94\x8a\x85\x39\x28\x4d\xf6\xa6\x58\xa3\xc0\xb4\x59\xbb\x6e\x40\xa9\x88\x50\x9e\xa2\xc0\x3c\x10\x5e\x31\x78\xa0\x7b\x90\x9c\x68\x78\x84\x6b\x47\x6d\x68\x85\xdf\xa8\x2e\x4f\x1d\x76\xe2\x3a\x0e\xe3\x46\xd9\x1c\xb0\xc4\x89\xa8\x93\x99\xde\x01\x1d\xb9\x90\x80\xf8\x89\xee\xa9\x86\xca\x3c\x24\x51\xe8\x2a\x44\xf1\x90\xe0\xdc\x25\x36\xf2\x93\xb8\x4d\x71\x14\x18\x54\x31\xf0\x4a\xb7\x5b\xa3\x89\xa1\x34\x28\x28\x36\xe8\xd1\xfa\x14\x51\x12\x84\x9b\xc1\x28\x56\x59\x12\x15\x36\x7b\x96\x1e\x0e\x4d\x3b\x61\xc2\xfb\x22\xda\x63\xcc\x49\xad\x4e\x42\x77\x84\x8d\x51\x94\x86\x06\x71\x52\x96\xa0\x14\xdd\x33\xe8\xc3\xc7\x66\x72\xb7\xe2\x00\x18\xb9\x46\xe4\xdd\xae\xc0\x4a\x8f\x41\xc9\x28\x27\xbe\x2b\x55\x53\x66\x90\x1d\x94\xe6\x09\xb6\xbf\xf9\xc6\xfc\x22\xf6\x79\x1b\x3f\xf6\x2e\xbf\x08\xca\xa7\x32\xf2\x08\x50\x7b\x8c\x5e\xc0\x3c\x86\x2f\x76\xaf\xdb\xbf\x22\x4f\xd6\xeb\x4d\x68\x1e\x29\x63\xe1\x7b\xc9\x9a\x0a\xb6\xca\xf9\x53\xc6\x5c\xb0\x5b\xc3\xd6\xf6\x91\xc6\xf4\xc8\x09\x73\xa6\x25\x53\x29\xec\x93\x81\x32\xc3\xfe\xdd\xee\x46\x2f\x54\xa3\x42\x0d\xd2\x34\x6a\xd2\x44\x8c\x26\x2a\x34\x93\x9f\xb9\xee\x8c\x82\x33\x55\x9a\x89\xc4\x0c\xda\x32\x15\x95\xa9\x9a\xdc\xca\xc8\x44\x3f\x18\xe5\xaf\x45\xdd\xbf\xe7\x0b\x61\x0d\x6c\x5c\x09\x09\x88\x26\x47\x49\xce\xa6\x85\x2b\xb4\x4a\x3a\x33\x02\xa5\xc8\x11\x7e\x6d\xa0\x81\x8e\x8a\x41\xdb\x1b\x75\x08\xc3\x1f\x0d\x70\x4d\x09\x4b\x89\xed\xe9\x7a\xba\x86\x92\x12\xd6\x23\x2d\xc1\xde\x5d\x1c\x7d\xc1\x84\xb4\xc6\x06\x2e\xc0\x9c\x21\xca\x56\x61\x36\xe2\x98\x13\x79\x04\x6d\x58\xf3\xaa\x4c\x11\x79\xfe\x03\x8a\x43\xdb\x2b\x45\xe4\x15\xc6\xf2\x1d\x11\xf9\x6a\x22\xf2\xee\x0b\xce\xc1\x05\xb9\xb2\xd0\x2a\x8f\x8d\x92\x88\xbc\xbb\x9b\xf7\xf9\xde\x63\x97\xee\x3d\xc0\xda\x6a\xd9\x80\xda\xdc\x8f\xc8\x7b\x06\xb6\xa2\x76\x79\x13\xc1\x59\xc8\xab\x7b\x81\x9d\x8d\xc5\x41\x77\x38\xc4\xd8\x5b\x87\xfd\xbf\x5b\xe5\xe4\x5d\x45\xe4\xbd\x83\x6a\xce\xb7\x36\xa6\x7f\x82\x29\x8a\x28\x89\x93\x3c\x89\x91\x5f\xd8\xad\xc3\xb9\x17\xa5\xc6\x75\x23\x2b\x46\x8e\xca\xb8\xc4\x8e\xbd\x46\x8b\xa7\x5c\x99\xd8\xf6\x9d\xb1\xe0\xae\xaf\xa4\xfc\x68\x62\x11\xc3\x5b\x2a\xe9\x85\x32\xb0\xf3\xc4\x42\xd3\xc3\xd5\x73\x39\x69\x12\x6e\xf3\xff\xe2\xde\x48\xc2\x97\x42\xe8\xd6\xf2\x09\x03\x5b\x28\x4c\xc2\x57\x84\xb2\x46\xc2\x68\xf5\x79\x9f\x70\x27\xc0\x4d\xdd\x5e\x62\x3b\xf2\xe9\xcd\x2c\xb6\xb9\x3f\x30\x49\x84\x4b\x21\xc1\xab\xfe\xdb\x28\x6d\x92\xba\xdd\x12\xd1\x56\xa2\xd4\x8b\x5c\x3b\x9b\x12\xa9\x93\x83\xb1\x6a\xea\x4b\xa8\xda\x98\x51\x0e\x0f\x7d\x93\x6d\xae\xfc\x13\xe1\x47\xa8\xcc\xa4\xc1\xbb\xe9\xeb\x2c\x74\x0d\x11\xb5\x6e\x20\xcf\x54\x29\x3b\xa3\x5b\xb4\x6b\xd9\x0b\x2b\xc9\x29\x0a\x5c\x31\x4a\x69\xdd\xbe\xef\x5e\x7a\x6f\x33\x39\xcd\xc2\x3c\x7f\x19\x45\xb5\xc3\xad\xdd\x67\x8b\xcd\xb3\x0c\xe5\x2f\x96\xb9\x10\x0d\x31\xe8\x37\xdb\x0b\x75\x30\x3f\xd7\x26\x95\xa2\x26\x47\xa2\x41\xb5\x25\x2e\x17\xa6\x56\xca\x64\x44\x83\x8b\x99\x65\x23\x95\x1e\x21\xe2\x1a\xe4\x85\x30\x63\xbb\x4c\xbb\xec\xa9\x86\x0e\x9d\xe7\x94\x2c\x8a\x2c\xf4\x36\x36\x54\x26\xf1\x92\x41\x09\xf4\x02\xcb\xe6\x70\x00\x69\x32\x38\x34\x0a\x22\xc2\x1b\xc2\xda\xea\x3a\x67\x44\x6d\x24\xd8\x29\xed\x02\x87\x05\x57\x2b\x29\xce\x26\x83\x33\xa1\xdc\x7d\x52\x85\xef\xd4\x5e\xf9\x47\x43\x25\x54\xcb\x6b\x6f\xaa\xc1\x70\x51\xaa\x56\x42\x0e\x4c\x72\x01\x29\x69\xe5\x5a\x7e\xc7\x29\xdb\x37\x0f\xd6\x7c\xd8\x7e\x07\xc2\x53\xee\xac\x59\x67\x98\x81\xea\x56\xad\xba\x1e\xc0\x36\x11\x76\x39\x58\x13\xdd\x0c\x0e\x36\xee\x32\x21\xf4\xa8\x0a\x33\x34\x86\x42\xd6\x70\xdb\x81\xd8\x52\x61\x4b\x7b\x8f\x7b\xbd\xb0\x71\x31\x52\x5b\x35\xa0\x67\xa2\xcb\x53\x25\x8e\x76\x22\x45\xce\x35\x03\x65\x54\x49\x18\x14\xef\xdd\xff\xd5\x60\x20\xcc\xb8\xe0\x85\x25\xd5\xca\x14\x38\xdc\xa0\x78\xfb\x5b\xe1\x27\x71\x1e\xfe\x96\x1b\x0c\xbc\xea\x36\xc6\x9a\x18\xad\x1f\xd1\x66\x63\x70\xf7\x15\x8c\x4f\xe2\xad\x7b\x2c\x7c\x6a\x74\x25\xde\xf8\x6c\x5a\xbb\x38\x7c\x26\xe5\xeb\x86\xec\x81\x4d\x4c\x94\x22\x3e\x83\x49\xa3\x0d\x76\xdf\xd4\xae\xbe\xb5\xa6\x32\x58\x34\xb2\x04\x9b\x2f\xa6\xc0\xc9\x36\xf3\xc3\x1f\x45\x10\xae\x19\xed\xae\x9b\x75\x96\x3d\x42\xdc\xe6\xf1\x4d\x83\xe9\xde\x70\x5b\x03\xdb\x96\x63\x24\xda\x38\x1f\xf1\x10\xe8\xf6\x13\x9e\x96\x05\x6f\xa7\x12\xf5\xf3\x09\xf8\x96\x73\x80\x0a\x2a\x4b\x48\x72\x04\xa3\xb4\xa4\xfc\x58\x80\x2a\x49\x0d\x86\x0b\x0e\x46\x42\xcd\x48\x09\xb8\x71\xd2\x36\x09\x06\xdc\xd4\x35\x73\x87\x02\x44\x5e\x5d\x57\xa6\x0c\xde\xa6\xc3\xa7\xf4\xd8\x5d\xdd\xe6\x7c\xab\xf8\x2b\x52\xb6\x1f\xb6\xf8\x05\x6f\x92\x75\xb1\xf2\x7c\xb4\xb1\x49\xde\x0e\x23\xa7\x52\x07\x6a\xb7\xaf\x75\x40\x41\x18\xe7\x68\x85\xc2\xac\x73\x69\xcb\xd8\xc4\x4e\x25\x1c\xe8\x7b\xef\x6f\x75\x08\xbb\x83\x11\x9f\x30\xb6\x6a\x7b\x55\xfc\x82\xf3\x30\x0a\x0a\x6f\x83\x3c\x6c\x8a\x1e\xfa\xeb\x2c\xd9\xa6\x23\x4e\x9e\xe3\x30\x2b\xb6\xf6\x0e\x1d\x93\x85\x5e\xf0\x32\x3a\xf4\x87\x17\x03\xb1\x8d\x51\x3e\x41\xd8\x5e\x6e\xa9\x9e\x79\xf6\xe2\x1c\x77\xeb\x19\x12\xa2\x85\xd3\x7c\x18\x18\x9b\x0e\xf8\xaa\x9e\xba\x76\xbc\x53\xc2\xdc\x4f\x7d\xc1\x8f\xa0\xdc\xb6\xe7\x7e\xfa\x2c\x49\xed\x24\xbe\x6f\xf5\x27\x2d\x5b\x6f\xf6\x39\x3b\x60\x51\xf7\x50\x62\x46\xca\xd7\xd8\x41\x49\xb8\xaa\x89\xb4\xdf\x14\x45\x9e\x79\x31\xb6\x5b\x69\xb4\x53\xbf\x3c\x7f\x71\x91\x9c\xe7\x2f\x4e\x36\xac\xf1\xf4\x40\xf8\xb1\xa9\x9d\x99\x07\x54\x11\xc6\x6c\x3b\x01\x26\xbf\xd6\x60\xdc\xcb\xdb\x46\x44\xbd\x1a\x5b\xb3\x8c\xed\xec\xcc\x56\x9f\xeb\xc9\xc6\x3e\x85\x99\x7b\x89\xdd\xbf\xad\xe3\xcf\x84\x6b\xa7\x7a\xd6\x50\x66\x9a\x92\xcf\x27\xa2\xcd\xf3\x09\x24\x98\x67\x21\x6d\x15\x1e\x24\xe7\xf3\x3f\xef\xba\x93\xaa\x5a\x42\x2d\x45\xd9\x9e\x67\x7d\xa5\xdc\x75\xa0\xbb\xdd\xbf\xfa\x71\xe5\x0e\x0f\xee\x17\x77\xc3\x15\xaa\xed\x96\xba\x13\xb0\x4f\x6e\xb1\x88\x2b\x4d\x18\x1b\xc5\xa2\x3d\x32\xdb\xed\xbe\xf7\x57\xd1\xe1\x29\xbe\xba\x93\x1f\x77\xc6\xf6\x31\xf2\x50\x9c\xa2\xa0\x77\x2a\x85\xbd\x0f\xd7\x5f\xf7\xc2\xcd\xb9\xdb\xed\x3f\x69\xd9\x80\x39\x10\xa6\xe0\xf3\x6e\xb7\x1f\x3d\xcf\xdd\xf1\xda\xa7\xdf\xcd\xb7\x6f\xf7\xaa\x26\x25\xdc\x7f\xff\xfe\xf9\x6f\x9f\xbe\xfd\xfe\xbf\xef\x5f\xff\xfe\xf9\xdf\x1f\x87\xa9\xed\x67\xbb\xfe\xb9\x3c\x11\xf9\xf5\xed\x44\x35\xb4\xce\x8b\xbb\xc9\x75\x5f\x7e\xe4\x7d\xbf\xb8\xfb\xe9\xcb\xe2\x8b\x59\x7c\xf9\xe9\xcb\xdd\x87\xff\x07\x00\x00\xff\xff\x12\x83\x8f\x17\x3e\x14\x00\x00")
2520
2521 func runtimeSyntaxSystemdYamlBytes() ([]byte, error) {
2522         return bindataRead(
2523                 _runtimeSyntaxSystemdYaml,
2524                 "runtime/syntax/systemd.yaml",
2525         )
2526 }
2527
2528 func runtimeSyntaxSystemdYaml() (*asset, error) {
2529         bytes, err := runtimeSyntaxSystemdYamlBytes()
2530         if err != nil {
2531                 return nil, err
2532         }
2533
2534         info := bindataFileInfo{name: "runtime/syntax/systemd.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2535         a := &asset{bytes: bytes, info: info}
2536         return a, nil
2537 }
2538
2539 var _runtimeSyntaxTclYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\x5d\x97\xdb\x34\x10\x7d\xdf\x5f\xe1\xa6\x7b\x68\xb2\x7b\x36\xf0\x4a\x0a\x2c\xbc\xf3\x0b\x58\x6d\x83\x2c\x8f\x6d\x91\xb1\x24\x46\xe3\x24\xa6\xd3\xff\xce\x19\xd9\xc9\xa6\xe7\x40\x1f\x6c\xdd\xd1\xc7\x48\xba\xba\xba\x6a\x3d\x02\x4f\x09\x76\x15\x3b\xbc\xbb\x6b\x80\xc1\xf1\xae\xba\xab\xaa\xaa\xd2\xb6\x60\x07\xd8\x55\x2b\x63\xb6\xec\xf0\x7e\x55\xea\x7b\xb0\x0d\xd0\xae\x5a\x7d\x7a\xff\x6e\xfb\xf0\xfd\x1a\xc2\xb1\x7a\xdc\x3c\xb3\xc3\xdc\xaf\x2b\xb9\xdf\xac\xee\xee\x68\x44\xc8\xbb\xd2\xfd\xa9\xca\x6c\x19\x06\x08\x5c\x32\xd5\x6b\xdb\x32\x90\xd8\x94\x20\x34\x62\x89\xec\x24\x76\xe4\xb8\x87\x33\xb8\x78\x98\xb1\x1f\x52\x24\x9e\x31\x46\xdb\xbc\xa1\xbd\x0f\x0d\x9c\xe7\xf8\xef\xd1\xa2\x6f\x27\xa9\x7d\xb0\x34\x49\x4d\x60\x0f\xe2\x6c\x06\x71\x96\x5d\x2f\xae\x11\x87\xd1\x1d\xf4\xaf\x95\x31\x38\xcb\x5a\xb0\x0f\x23\x08\x60\x06\x81\xe0\x62\xe3\x43\x27\x10\x5b\x01\xa2\x48\x02\x47\x8b\xa2\xab\x11\x38\x7b\x16\x38\x27\x92\xb6\xd6\x44\xd0\x48\xeb\x62\x68\x7d\x37\x12\x28\x4c\x93\x28\x4f\xe5\x07\x47\x08\x2c\x2d\x8e\xb9\x97\x36\x92\x7e\x60\x5d\xc1\x83\x65\xe9\x80\xb3\x74\x18\xeb\xf2\xb3\x28\xbd\xcf\x1c\x69\x12\xdf\x8a\x0f\x8e\xc4\x87\x36\x8a\x0f\x0c\x94\xe4\xaf\xe8\x83\xe0\xc2\x11\xce\x5b\x46\x1f\x32\x10\x0b\xfa\xcc\x82\x08\xa1\xe3\x5e\x0a\x39\x48\x36\x74\x20\x48\x90\xd0\x3a\x10\xcc\x60\xc9\xf5\x5a\xb2\x60\x56\x26\xf5\x24\x73\xd2\xc6\x98\x20\x48\xb2\xee\x60\x3b\x90\xe4\x1b\x49\x23\x67\x49\xa7\x46\x08\xac\xfe\x3a\x38\x27\x2d\xf2\x58\x0b\x15\x09\x08\x01\x8f\x14\x24\x3b\x1b\x24\x03\x1c\x44\x13\x67\x25\x44\x8b\x91\x1c\x48\x4e\xe8\x59\x32\x93\x72\x99\xc7\x3a\xb3\xe4\x93\xd7\x53\x60\x87\xbf\xc7\x4e\x18\x10\x85\xfd\x00\xc2\xa4\xeb\x18\xc3\x21\xc4\x53\x90\x31\x68\xb2\x31\x35\x96\x41\xc6\x84\x70\x04\x94\x31\x1d\x2d\xc9\xd1\x92\xb7\x35\x82\x1c\x4f\xd6\xb3\x9c\x7a\x8f\xb0\x31\xa6\x5e\xfd\x9f\xb2\x54\x4c\x95\x0d\xd3\x10\x09\x66\x69\x55\x4d\x0c\xb0\xd0\x31\x57\xc0\xd9\x67\xce\x4b\xd0\x01\x2f\xa8\x10\x74\xc1\x70\x66\xc0\x92\x79\xa9\xc9\xd7\x7e\xd9\xff\x73\x49\x9d\xd9\x12\x7f\x95\x5b\x17\xe4\x33\x7b\x77\xc9\x54\x36\xf7\xad\x25\xcf\x84\x55\xf5\xa4\x13\x96\x13\x5d\x6a\x5c\x1c\x92\x25\xb8\x84\xa0\x5a\xbf\x04\xad\xa7\x7c\xe1\xba\x9a\xc5\x71\x09\xf2\x05\xa1\x7d\xeb\xf2\x75\xe6\xc1\xa6\x37\xa8\x07\xb4\x04\xb3\x88\x2e\x01\x24\xb0\x7c\x13\x15\x61\x2d\x21\xc7\x37\x84\xf1\x04\xf4\x16\xb2\x67\xbc\xe9\x37\xa6\x74\xd3\x4a\x7e\xb8\xc5\x08\x2d\xdf\xc6\xe4\xbb\xfe\x5a\x71\xf2\x78\xdd\xef\x29\x52\xa3\x17\xe1\x26\x2c\xdc\x7f\x53\x0b\x68\x69\xb8\xb1\x8d\x74\xe8\xa4\x5e\x0e\x4b\xdd\x61\x76\x04\xcb\xe5\x5a\x3a\xcb\xe5\x5a\x38\x17\x11\x55\x87\xee\xe2\x15\x33\xef\xae\xef\x28\x89\xeb\x87\xd8\x88\xeb\x55\xb5\xae\xa7\x18\x59\xdc\xcc\xbe\x5b\x18\x76\x43\x33\x8b\xdb\xc5\x61\xb0\xa1\xc1\x18\x93\xb8\x99\x58\x57\x2e\x05\x89\xe3\x78\xd0\xa9\xd4\x77\xa5\x19\x93\x80\xeb\x63\xb1\x1b\x94\xd6\x05\x46\x69\x8b\x67\xb5\x91\x0e\xd2\xea\xb6\xa4\x65\x1a\x75\x39\x20\xed\x18\x4a\x63\x1f\x33\xef\x67\xc3\x68\x8a\x71\x9c\xe5\x00\x13\x36\x80\xa5\x54\x59\x6b\x79\x80\x29\x17\xa0\xfa\x3d\x28\xa3\x68\x73\xf6\x5d\x10\x54\x17\xb4\x6a\x32\x30\x24\x9e\x04\x0b\x0f\xe8\xc3\x41\x70\x56\x85\xb2\x86\xbe\x5e\xbc\x47\x37\x82\x47\x4b\x4a\x8a\x96\x69\x89\x93\xba\xdd\x60\xcf\x32\xf8\x20\xc1\x3b\xb5\x94\x04\x92\x28\x16\x5f\x24\x1b\x9a\x38\x14\x67\x69\x3c\x89\xea\xc8\x97\x8d\xa8\x95\xe8\x12\xe0\xcc\x05\x97\xde\x0a\x16\x49\x02\x82\x63\xc9\x40\x47\xa0\xbd\x75\x0e\xd2\x35\x72\x04\x25\x83\xef\x82\x5e\x09\x04\x48\x92\xa7\xe0\x24\x4f\x99\x61\x50\xbf\x39\xef\x5b\x1f\x1a\x1f\x3c\x2f\x91\x72\x59\x50\xd1\x02\x87\xe6\x9c\xe7\x78\x1e\x3e\xc3\x9b\xe1\xc5\x6f\xd4\xac\xb2\xba\x55\xc8\xea\x6d\x4c\xd3\xbe\x3c\x0d\xe3\x60\xf3\x41\xb4\xcb\xad\x00\x7d\x03\x81\x7d\xeb\x81\xb6\x4e\x59\xde\x55\xab\x44\xd1\xbd\xbc\xec\x8a\xef\xee\x5e\x5f\x65\x6d\xcc\x67\x31\xe6\xcb\xe6\x2a\xda\x69\xa8\x23\x6e\x63\x02\xb2\x1c\xf5\x51\x5d\x1b\xb3\x16\x63\x36\x62\xcc\x47\xf9\x53\x8c\x31\x46\x8c\xb9\x97\x9f\xe4\x17\x79\x27\x3f\xcb\x77\x62\x8c\x5c\xc7\xbb\x18\x32\xdb\xc0\xdb\x30\x0e\x75\x79\x94\x8d\xa9\x5f\x7e\x78\xfa\xf1\xf5\x71\x6d\xcc\x76\x46\x9b\xe7\x9b\x55\x5e\x47\xcc\x77\x49\x47\xe8\x9c\xc6\x6c\xe5\xe5\x93\x59\xbd\x6e\x1e\xcc\x4a\x3e\x5c\x6b\x3e\xbc\x6e\x1e\x3e\xfc\xc7\x0e\x8f\x76\x9e\xec\xde\x98\xcf\xcf\x3a\xcd\x6f\x4f\x7f\xec\xdf\xfd\xfa\xfe\xfe\xe1\xf9\xe9\xf5\xd1\x98\x2f\xcf\x6f\x13\x0e\xcb\xad\x5c\x7f\x92\x8f\x9b\x1b\x3a\x1e\xde\x6f\x1f\xae\xa9\x83\xe6\x7e\x72\xbd\xa5\xed\xa9\xf7\x3c\xbf\x55\xbb\x6a\x75\xd3\xff\xf1\x7e\x75\xf7\x6f\x00\x00\x00\xff\xff\x44\x7a\xd2\xf7\xb1\x08\x00\x00")
2540
2541 func runtimeSyntaxTclYamlBytes() ([]byte, error) {
2542         return bindataRead(
2543                 _runtimeSyntaxTclYaml,
2544                 "runtime/syntax/tcl.yaml",
2545         )
2546 }
2547
2548 func runtimeSyntaxTclYaml() (*asset, error) {
2549         bytes, err := runtimeSyntaxTclYamlBytes()
2550         if err != nil {
2551                 return nil, err
2552         }
2553
2554         info := bindataFileInfo{name: "runtime/syntax/tcl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2555         a := &asset{bytes: bytes, info: info}
2556         return a, nil
2557 }
2558
2559 var _runtimeSyntaxTexYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xed\x8e\x9c\x30\x0c\xfc\xcf\x53\x58\x2c\xad\x76\x75\x02\xf5\x6f\x51\xd5\x6d\x5f\xa3\x31\xaa\xf2\x61\xee\xa2\x26\x01\x11\x6f\xb5\x3d\xb2\xef\x5e\xf1\x71\xcb\xb5\x27\xa4\xe3\x57\x18\xdb\xe3\xf1\x4c\x6b\x1d\xf1\x9f\x9e\x6a\x60\xba\x66\x99\x21\x26\xcd\x35\x64\x00\x00\x53\x2d\x48\x4f\x35\xe4\x88\x15\xd3\xb5\x48\xca\xaa\x84\x58\x29\xab\x8a\xa4\x5d\x9c\xde\xda\xc5\x22\xcf\xb2\xe1\xe2\x28\xd6\xf3\xdc\x01\x74\xe7\xba\xc1\x3e\x13\xf0\x13\x81\x35\x14\xd8\xb6\x96\x86\x08\x5d\x0b\xe3\x97\x0d\xf8\x7a\x03\x19\x0c\x88\xd7\x50\x33\x73\x94\xaf\xc6\x16\xd6\xe9\x8b\x2c\x07\x9e\xe5\x8c\xf9\x1d\xa4\x60\x66\xe8\xb6\x41\x8b\x18\x10\xef\xe3\x12\x6f\xb9\x9a\x3d\xae\x03\x84\x8b\x57\x34\xc4\x95\x59\x77\x21\xb2\x0c\x5c\x2d\xf0\x3c\xac\xc4\xa7\xf2\x73\xf3\x70\x44\xac\x96\xd7\xe9\x7c\x14\xa2\x8e\xbd\xd4\x54\x37\xcd\xb1\xe7\xe4\x7d\xd2\x3e\xd9\x90\xe8\x9a\xc8\x27\xd5\xa7\x5e\x27\x63\x92\xd6\x29\x98\x14\x74\x8a\xfd\xe9\x74\x46\x54\xf9\xba\xd5\x11\x83\x1a\xa4\xfe\x45\x1c\xe1\x49\xfe\x5e\xac\x35\xd4\xca\x8b\xe3\xc5\x6f\x90\x8f\xd2\x86\x55\xd7\x5a\xa9\x21\x17\xe3\x0d\x51\x20\x36\xeb\x4d\x25\xc4\x9e\xb4\x95\x6e\xaa\x7d\x44\xbc\x1f\x7b\x00\x2f\xf5\xd0\xbd\x5c\x16\x59\x32\x79\x0a\x8b\x47\x88\xdf\xce\x42\x96\xcf\xdf\xcb\x1f\x3f\x9b\x87\xfc\x9e\xb3\x9f\x3a\x36\x33\xe6\xdf\xb7\x1e\x7f\xf8\xdf\xe1\x62\x3f\xab\x5d\x92\x49\x84\xa2\x47\x1b\x10\xc7\xb5\xe9\x9f\xd0\x5f\xb2\x43\xa4\x60\x76\x7a\xb6\x65\x7f\x03\x00\x00\xff\xff\xff\xda\xec\x07\xf9\x02\x00\x00")
2560
2561 func runtimeSyntaxTexYamlBytes() ([]byte, error) {
2562         return bindataRead(
2563                 _runtimeSyntaxTexYaml,
2564                 "runtime/syntax/tex.yaml",
2565         )
2566 }
2567
2568 func runtimeSyntaxTexYaml() (*asset, error) {
2569         bytes, err := runtimeSyntaxTexYamlBytes()
2570         if err != nil {
2571                 return nil, err
2572         }
2573
2574         info := bindataFileInfo{name: "runtime/syntax/tex.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2575         a := &asset{bytes: bytes, info: info}
2576         return a, nil
2577 }
2578
2579 var _runtimeSyntaxTomlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x52\x4d\x4b\xc3\x40\x10\xbd\xef\xaf\x18\xb7\x42\x9a\x4a\x42\x51\x41\x5d\x2c\xa5\x7e\x14\x3c\x68\x2f\x0a\x81\x6c\xa0\xdb\x64\xda\x06\x93\x4d\x49\xb6\x50\xe9\xe6\xbf\xcb\xa6\x46\x96\x16\x3f\x0e\x62\x4e\x99\x79\xf3\xe6\xbd\x79\xec\x3c\xcd\x50\xbd\xad\x90\x81\x2a\xf2\x8c\x90\x04\x15\xc6\x8a\x11\x00\x00\x83\x49\x91\x23\x03\xca\xb9\x6f\x70\x4a\x48\xb9\xce\xb0\xda\xe1\x1e\x54\x4a\x28\xcc\x51\x2a\x06\xb4\xeb\xf7\xdc\x30\x64\xd5\x4a\xc4\xc8\xa2\x68\x40\xdb\x99\x15\xc6\xa9\xc8\x18\xd0\x01\x25\x4d\x0f\xa0\x03\x37\xa5\x88\x5f\x51\x81\x5a\xa6\x72\x91\x62\x75\x30\xdc\xe5\x3c\xd4\x9c\x47\xae\x45\x7a\x5a\xe7\x33\x2c\x2b\x10\x32\x81\x4a\x95\xa9\x5c\xb4\xbc\xb8\x90\x95\x12\x52\xf9\xb2\x19\x69\x1c\xcf\xba\x61\xdf\xbb\x8a\x4e\x74\x7f\x63\x7e\x84\x37\x1f\x79\xe3\xa8\xe7\x72\x3e\xd3\x8e\xef\xd0\x6f\xa8\x9c\x1b\xee\x45\xb4\x3d\xab\xf5\x26\x1c\x79\x63\xe1\xcd\xcd\xae\xed\x69\xad\xd7\x76\x7d\x5e\xeb\x17\xbb\xbe\xac\x5b\xbf\xd6\xe2\x9d\x55\xf6\x71\x06\x98\xd4\x4a\x93\x18\xa7\xf4\xb3\x87\x32\x31\x47\x0f\xaf\x8f\x8c\xba\x6b\x43\x56\xe2\xed\x67\x2f\xdf\x25\x76\xbb\x14\xad\x75\xff\xf7\x0e\x9c\x2f\x0d\x38\xff\xa2\x3f\xdd\xd7\x9f\xfe\x8d\x6c\xde\xbc\xc9\x03\xb9\xce\xbe\xdc\xf1\x0f\x72\xaa\x48\x0a\x93\xca\xf3\xe4\x6e\xa2\x83\x20\xd0\xe3\x87\xe0\xf1\xde\x65\x43\x4a\xc8\x7b\x00\x00\x00\xff\xff\x23\x96\xd4\x18\x3a\x03\x00\x00")
2580
2581 func runtimeSyntaxTomlYamlBytes() ([]byte, error) {
2582         return bindataRead(
2583                 _runtimeSyntaxTomlYaml,
2584                 "runtime/syntax/toml.yaml",
2585         )
2586 }
2587
2588 func runtimeSyntaxTomlYaml() (*asset, error) {
2589         bytes, err := runtimeSyntaxTomlYamlBytes()
2590         if err != nil {
2591                 return nil, err
2592         }
2593
2594         info := bindataFileInfo{name: "runtime/syntax/toml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2595         a := &asset{bytes: bytes, info: info}
2596         return a, nil
2597 }
2598
2599 var _runtimeSyntaxTypescriptYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xdf\x6f\xe4\x34\x10\x7e\xdf\xbf\x22\xb7\x3a\xe8\x6e\x56\xe9\x96\x27\xd4\xe8\x20\x2a\x5c\xfb\x04\x2d\xe2\xe0\x05\xdb\x3d\x39\xce\x64\xd7\x9c\x63\x07\x7b\xdc\x6d\xd0\x88\xbf\x1d\x39\xd9\x5e\xcb\xf6\x07\x95\x2e\x0f\x63\xcf\x38\xf3\x7d\xe3\x4f\xe3\x69\xb5\x01\x1c\x7a\x28\xb3\x64\x83\xf2\xba\xc7\xd9\xac\x01\x04\x85\xe5\x2c\xcb\xb2\x2c\xfd\x61\x65\x07\x65\x36\xe7\xfc\x18\xc3\xdb\xf9\x6c\xe6\xa3\x81\x30\x1d\x17\x99\x72\x36\xa0\xb4\x78\x6c\x63\x57\x83\x1f\xff\xab\x59\xb1\x12\xd5\x82\x7d\x53\x9c\x0a\x76\x52\x9c\x8a\x9c\x4e\xd8\x49\xf1\x6d\x5a\x6f\x53\x40\x16\xed\x59\x71\x21\x56\xcb\x05\x8b\xbf\x0b\x66\x7e\x12\x15\x25\x9b\xbc\x6a\x59\x71\x5e\xcf\x5f\x01\x9f\x90\x57\x9c\x1f\xef\x29\xa6\xe5\xce\x4f\xd8\xe7\xf0\x4b\x2f\xd8\xaa\x10\xd5\x3e\x54\xb1\xf6\x22\x91\xbd\x1a\xfd\x31\xc4\x01\x82\x6e\xc0\xa2\x6e\xf5\x98\xcc\xce\x8a\x3f\x64\xf1\xf7\x47\xb1\xdf\x9c\x14\xa7\x1f\x45\xce\x58\x19\x7a\xa9\xa0\x14\x22\x67\x0b\x71\x97\x19\x50\x22\x74\x60\x71\x62\x5d\xc8\x3a\xa0\x97\x0a\x49\x06\x92\x61\xb0\x8a\xe4\x4e\x6a\xa4\xda\x83\xfc\x44\x4a\x06\x20\x25\x51\x6d\x49\x19\x19\x02\x8d\xa5\x4f\xd6\x47\x85\xce\xa7\x3d\x6a\x1b\x61\xf9\x40\xbe\x43\x92\x06\xea\xb8\xd9\x80\xa7\x06\x94\x91\x1e\xa8\x81\x56\x46\x83\xd4\x80\x01\x04\x6a\x1c\x81\x09\x40\x60\x63\x47\x70\xdb\x3b\x8f\x04\xb7\x08\xb6\x09\xd4\x6a\x2b\x8d\x19\xa8\x75\x9e\x5a\xef\xba\x97\x78\xda\x68\x15\x6a\x67\x69\x03\x48\xba\x25\xdd\xf5\x66\x3c\x0f\x69\x9b\x50\xb5\x25\x3d\x8a\xaf\xc0\xb5\xa4\x2d\x82\x6f\xa5\x02\xd2\x81\x0c\x20\x75\xae\x89\x06\x28\xb5\xde\x28\xde\x4b\x64\x16\x76\xe4\x5a\xea\xa5\xfa\x24\x37\x40\xbd\xd7\x37\x12\xd3\xea\x52\x1f\x43\x43\x7d\xac\x8d\x56\xe4\xe1\xaf\xa8\x3d\x90\x07\x8c\xde\x52\x00\xa4\x04\xa5\x15\x85\xd8\x83\xa7\xb0\xd3\xa8\xb6\x2f\x31\xe1\x56\x07\xc2\xad\x77\x3b\x42\x3f\x50\x7a\x34\xa3\x71\x2d\xdd\x48\x4f\x37\x4e\x37\xb4\xdb\x6a\x03\xb4\xd3\xb8\xa5\x41\x83\x69\x96\x4f\x74\xf3\x9d\x4a\x32\x69\x8d\x3e\x02\xd9\x68\x0c\x45\xdb\x40\xab\x2d\x34\x74\x29\x2f\x1f\xe6\x4d\x6f\x74\xcc\x39\xf3\x5e\x0e\xf4\x83\x73\x06\xa4\xa5\xf7\xe9\xa2\xe7\x36\x76\xe0\x65\xea\x81\x73\xef\x9d\xa7\x8b\x3b\xf5\x7f\x96\xb8\x7d\x06\xe7\x72\xec\x78\xba\xaa\xff\x04\x85\xf4\x2b\x6c\xce\x6f\x7b\xfa\x80\x5e\xdb\x0d\x7d\x18\xba\xda\x99\x67\x12\xa5\x1d\xa8\xde\xd3\x5b\xb8\x01\x4f\xd3\xe3\xa1\x30\x25\x87\x47\xc9\x0f\x55\x64\xc5\x6a\x9d\x7f\xf7\xee\xfb\x37\xff\x7c\x55\x95\x5f\x93\x78\x42\x99\x35\xbb\xce\xc5\x82\x5d\xaf\x05\x2d\x38\xe7\x7c\xbd\x5c\xe6\xec\x3a\xed\xc4\x9a\x6d\x74\x27\xf2\x27\xe5\xe4\x7c\x1c\x31\xa3\xa9\x26\x4b\x29\xfa\x9f\x81\x33\x46\x58\xdd\x5a\x8f\x47\x7c\xce\x79\x35\xc2\xde\xe3\x75\x63\x99\xa3\x9b\xbe\x80\xd2\x8f\x25\xad\xe7\x9f\x63\x60\x9b\x32\x9b\xbf\xbd\x0f\x4c\xe3\x30\x63\xe2\x7f\x51\x38\xcf\x0f\x71\x38\xcf\xd7\x87\x50\x9f\xdd\xbd\xf6\xae\x71\x65\x36\xff\xed\xea\xfd\x55\xf9\x78\x72\x4d\xaa\x3f\x26\xe3\xf3\x43\xaa\x45\xf5\xee\x4d\xba\xee\xf2\xe1\xd1\x93\x8c\xf7\xe0\x3d\x28\x2d\xcd\x8f\x5b\xe9\xf7\x1a\x1f\xbf\xba\x80\xa3\x67\xf9\x8f\xbe\x98\x7e\xf6\x6f\x00\x00\x00\xff\xff\xf1\x9e\xcc\xf7\xb9\x06\x00\x00")
2600
2601 func runtimeSyntaxTypescriptYamlBytes() ([]byte, error) {
2602         return bindataRead(
2603                 _runtimeSyntaxTypescriptYaml,
2604                 "runtime/syntax/typescript.yaml",
2605         )
2606 }
2607
2608 func runtimeSyntaxTypescriptYaml() (*asset, error) {
2609         bytes, err := runtimeSyntaxTypescriptYamlBytes()
2610         if err != nil {
2611                 return nil, err
2612         }
2613
2614         info := bindataFileInfo{name: "runtime/syntax/typescript.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2615         a := &asset{bytes: bytes, info: info}
2616         return a, nil
2617 }
2618
2619 var _runtimeSyntaxValaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\xc1\x4e\xdc\x30\x10\x3d\x93\xaf\x70\x2d\x5a\x76\x13\x25\xcb\x95\xa8\x05\x55\xea\x9d\x4b\x4f\x8d\x03\x72\xec\xc9\xc6\xc2\x6b\xaf\xec\xf1\x6e\xa9\x46\xfd\xf6\xca\x4b\x16\x16\x8a\xf0\x21\x4a\x9c\xf7\x9e\xdf\x1b\xcf\x8c\xc6\x02\x3e\x6e\xa1\x65\x3b\x69\x65\x51\x68\x40\x50\xd8\xb2\x82\x31\xc6\xf2\x4f\x27\x37\xd0\x32\x2e\x44\x93\x01\xe7\xbc\x28\x42\xb2\x10\xdb\x03\xa0\x66\x4f\x5c\x2e\xc4\xb0\x18\xad\x97\x48\xda\xa7\xc1\x02\x0d\xde\x5b\x52\x93\x0c\x64\x1c\x52\xca\x8f\x38\xf9\x80\x64\xbd\x5b\xd3\xce\x1b\x4d\x8b\xe4\x96\x37\xd1\xac\x1d\xe8\xa5\x10\x03\x9f\x15\x8d\x06\x87\x66\x34\x10\x1a\x65\x65\x8c\x2d\xe3\xdd\xf7\xfa\x97\xac\xff\xdc\xf7\xf3\xcb\x65\x7d\x75\xdf\x97\x5d\xd7\xc6\xad\x54\xd0\xf6\x7d\xd9\x2d\x96\xfd\x51\x20\xa2\x44\xd8\x80\xc3\xa3\x2f\x1f\xc8\x8c\xb4\x9f\x8c\x05\xd2\x9e\xc0\x46\x20\x25\x23\x90\x86\x51\x26\x8b\x14\xf7\x06\xd5\x44\x18\x1e\x09\xa7\xe0\xf7\xa4\x24\xaa\xe9\xd4\xd4\x5b\x4d\xe3\xac\x71\x40\x39\xbd\x86\x91\x22\x86\xa4\x90\xc0\xa5\x0d\x25\x67\xbc\x23\xf8\x8d\x10\x1c\x65\x9e\x51\xa4\xbc\x8b\xf8\x91\x9e\xdf\x42\x90\xe8\x03\x39\xd8\x93\x06\x0b\x08\x14\x00\x53\x70\xe4\x92\xb5\x1f\x51\x0f\x45\x22\xbf\x83\x10\x8c\x06\xda\x06\xb3\x93\x08\xb4\x4d\x83\x35\x8a\x72\x7d\xa5\x25\x9c\x4c\xa4\x3d\xc8\x87\x57\x4a\x5b\x50\x46\xda\x59\x67\xed\xd1\xd3\x10\x40\x3e\x64\xbb\x68\x5c\x82\x53\xf0\x21\x82\x74\xd8\xe4\x9b\x9d\x29\x18\x12\xd0\x28\x6d\x7c\x1f\xe9\xd2\x66\x80\x30\x63\xbb\xcb\xfa\xaa\xaf\x5e\x1d\xff\xb8\x19\xbc\x6d\x8e\xd1\xf3\x3d\x0b\x51\x57\xab\xf2\xdb\xd7\xeb\x9b\xf6\xd3\xdf\xcf\x5f\xa8\xa7\xfa\xfa\x3f\xd9\x88\xc1\xb8\x75\x96\xe5\x0b\x21\x84\x68\xa8\xbb\x13\xbc\x5f\x96\x82\xd3\xc5\xf3\xce\x45\xbf\x2c\x2f\x5e\xb8\x9b\xb9\x62\x8b\x3b\x3a\xe9\x9b\xe5\x6a\xd5\x94\x6f\x41\x87\xcf\xbc\x22\xca\x90\x39\x2b\x21\x66\x50\x5e\xe0\xf4\x21\x52\xb9\x7a\xd9\x7b\x1a\x09\xd6\xf5\xc5\x71\x2c\xbc\xf6\x2d\xe3\x3f\x6f\x7f\xdc\xb6\x37\xcf\x9d\xed\x72\x6b\xd7\x79\x2a\x9a\xfd\x64\x10\x9e\x6c\x30\x7e\xe2\xa8\x3a\x7f\x07\xdd\x32\x7e\x56\xb1\x8a\x58\x75\x56\xf1\xe2\x5f\x00\x00\x00\xff\xff\xf5\xc2\x49\xcc\xb3\x03\x00\x00")
2620
2621 func runtimeSyntaxValaYamlBytes() ([]byte, error) {
2622         return bindataRead(
2623                 _runtimeSyntaxValaYaml,
2624                 "runtime/syntax/vala.yaml",
2625         )
2626 }
2627
2628 func runtimeSyntaxValaYaml() (*asset, error) {
2629         bytes, err := runtimeSyntaxValaYamlBytes()
2630         if err != nil {
2631                 return nil, err
2632         }
2633
2634         info := bindataFileInfo{name: "runtime/syntax/vala.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2635         a := &asset{bytes: bytes, info: info}
2636         return a, nil
2637 }
2638
2639 var _runtimeSyntaxVhdlYaml = []byte("\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")
2640
2641 func runtimeSyntaxVhdlYamlBytes() ([]byte, error) {
2642         return bindataRead(
2643                 _runtimeSyntaxVhdlYaml,
2644                 "runtime/syntax/vhdl.yaml",
2645         )
2646 }
2647
2648 func runtimeSyntaxVhdlYaml() (*asset, error) {
2649         bytes, err := runtimeSyntaxVhdlYamlBytes()
2650         if err != nil {
2651                 return nil, err
2652         }
2653
2654         info := bindataFileInfo{name: "runtime/syntax/vhdl.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2655         a := &asset{bytes: bytes, info: info}
2656         return a, nil
2657 }
2658
2659 var _runtimeSyntaxViYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xc1\x6a\xe3\x30\x10\x86\xef\x7e\x0a\xc5\x84\x8d\x9d\xc5\xd9\x5c\x63\xb6\x98\xd2\xb7\xa8\xa4\x06\x59\x1e\xb7\x02\x69\x64\x2c\xd9\xb8\x65\x1e\xbe\xd8\x49\x43\x08\x04\x72\xe8\x9c\xa4\x19\xfd\xf3\xff\xfa\x5a\x63\x21\x7e\x76\x50\xb2\xd1\x24\x49\x03\x11\x74\x2c\x13\xc6\x18\x9b\x27\xa8\x1c\x94\x2c\xcd\xde\xe8\x1f\x09\xb1\xcb\x33\x98\x68\x34\x2e\xef\xf5\x7a\xbe\x8f\xc6\xa5\x49\xd2\x0f\x16\xc2\x49\x53\x30\xd3\x00\x46\xd3\x1a\xe8\x4b\x96\xf2\xe7\xe2\x55\x15\x5f\x47\x79\x3e\xec\x8b\xc3\x51\x6e\x39\x2f\x43\xa7\x34\x94\x52\x6e\x79\x96\xcb\xf4\x2c\x0d\x51\x45\x70\x80\xb1\x64\xa9\x10\x75\xc6\x71\x9c\x82\x37\x56\xcb\x2a\x43\xdf\x03\x0d\x98\x57\x4e\x75\xc4\x71\xb4\x93\x44\xe2\x46\x7b\x59\xa1\x27\xae\x8d\xf5\xe3\x24\xf9\xe0\x24\x85\x6a\x40\x97\x0b\x51\xdf\xdb\x1b\xd0\xf7\x84\x03\x12\x3a\x0a\x10\xc9\xb4\x04\xd8\x98\x96\x2c\x44\x1a\xd0\x42\xbc\xa7\xe6\xab\x3f\x4f\x97\xb8\xda\x63\x88\x0a\xe3\x0e\x07\x57\x2f\xdf\x15\xa2\xe6\xfb\xe2\x20\xff\x2e\xf2\xdb\x67\x21\xf6\x06\xdf\x4f\x9c\xe6\x0a\x51\xf5\x4b\xa4\x34\xbd\xf4\x00\x9b\x19\x77\xf5\x7f\x25\x84\x10\xf9\xf5\xe8\x8a\xf2\x4f\x5d\x2f\xef\x40\x1b\x65\x5f\x3e\xd4\x29\x88\x10\xbb\xc7\x13\x6c\xee\x06\xd8\xfc\xaa\xbf\xf6\x6e\x01\xf9\x00\x82\xf5\xad\x31\xe3\xf2\xd2\x49\x92\xef\x00\x00\x00\xff\xff\x67\x75\xb5\xbb\xb6\x02\x00\x00")
2660
2661 func runtimeSyntaxViYamlBytes() ([]byte, error) {
2662         return bindataRead(
2663                 _runtimeSyntaxViYaml,
2664                 "runtime/syntax/vi.yaml",
2665         )
2666 }
2667
2668 func runtimeSyntaxViYaml() (*asset, error) {
2669         bytes, err := runtimeSyntaxViYamlBytes()
2670         if err != nil {
2671                 return nil, err
2672         }
2673
2674         info := bindataFileInfo{name: "runtime/syntax/vi.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2675         a := &asset{bytes: bytes, info: info}
2676         return a, nil
2677 }
2678
2679 var _runtimeSyntaxXmlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xcd\x31\x0b\xc2\x30\x10\x05\xe0\x3d\xbf\xe2\x3c\x44\xb4\x90\xba\xa7\x62\x07\x75\xd6\xc1\x45\xda\x0a\xa5\xbd\x96\x40\x12\x4b\x12\xa1\x42\x7f\xbc\x84\x56\x87\x22\xbe\xf5\xdd\xfb\xae\x91\x8a\xfc\xab\x23\x01\xbd\x56\x8c\xd5\xe4\xa9\xf2\x82\x01\x00\x84\xca\x94\x9a\x04\x60\x9e\xc7\xeb\x5e\xab\xc1\xb5\x5a\xa5\x83\x35\xed\xd0\x29\xe9\xfc\x66\x89\x8c\xd9\xa7\x22\x37\x2e\x38\xc8\x9a\x8c\x97\x8d\x24\x2b\x00\x77\x71\x94\xee\x71\x6a\xaa\x87\xd6\x64\x26\x3a\xc4\xf9\xd2\xfa\x70\xb5\x38\x9e\x0f\xd7\xdb\xe5\x84\xdf\x8a\x4c\x2d\x00\xb3\x6d\xf1\x99\x87\x8c\x7f\x20\x2b\x66\x20\xfc\x10\x39\x9f\x63\x9c\xff\xa1\x5c\x47\x95\x2c\x95\x00\x5c\x65\xf7\xa4\x88\x12\x64\xef\x00\x00\x00\xff\xff\x1f\x6d\x27\xb2\x18\x01\x00\x00")
2680
2681 func runtimeSyntaxXmlYamlBytes() ([]byte, error) {
2682         return bindataRead(
2683                 _runtimeSyntaxXmlYaml,
2684                 "runtime/syntax/xml.yaml",
2685         )
2686 }
2687
2688 func runtimeSyntaxXmlYaml() (*asset, error) {
2689         bytes, err := runtimeSyntaxXmlYamlBytes()
2690         if err != nil {
2691                 return nil, err
2692         }
2693
2694         info := bindataFileInfo{name: "runtime/syntax/xml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2695         a := &asset{bytes: bytes, info: info}
2696         return a, nil
2697 }
2698
2699 var _runtimeSyntaxXresourcesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\xdd\x4a\xc3\x30\x18\xc6\xf1\xe3\xe5\x2a\x5e\xe2\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\xbc\xaf\xcf\x30\x83\x01\x00\x00")
2700
2701 func runtimeSyntaxXresourcesYamlBytes() ([]byte, error) {
2702         return bindataRead(
2703                 _runtimeSyntaxXresourcesYaml,
2704                 "runtime/syntax/xresources.yaml",
2705         )
2706 }
2707
2708 func runtimeSyntaxXresourcesYaml() (*asset, error) {
2709         bytes, err := runtimeSyntaxXresourcesYamlBytes()
2710         if err != nil {
2711                 return nil, err
2712         }
2713
2714         info := bindataFileInfo{name: "runtime/syntax/xresources.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2715         a := &asset{bytes: bytes, info: info}
2716         return a, nil
2717 }
2718
2719 var _runtimeSyntaxYamlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\x4d\x8f\xd3\x30\x10\xbd\xfb\x57\xb8\xa6\xcb\x26\x5b\xb9\xe2\x8a\x85\x58\x55\x88\xe5\x02\xed\x01\x2e\x25\x93\x48\x6e\x3b\x61\x2d\x39\x76\xb1\x5d\xa1\xa0\xf9\xf1\x28\x0e\x5b\x45\x59\x21\x71\xd8\x51\x0e\xc9\x7c\xbc\xf7\xf2\x5e\x6b\x2c\xa6\xfe\x8c\x8a\xf7\xba\xb3\x8c\x9d\x30\xe1\x31\x29\xc6\x39\xe7\xc3\xcc\xe9\x0e\x15\x17\x00\xeb\x5e\xdf\x77\x76\x29\xf2\xe4\x11\xf5\x09\x83\xe2\xe2\x66\xbf\xf9\xf2\x59\x30\x16\x2e\x16\xe3\x78\x25\xf9\x88\x27\x8a\x86\x78\xb9\x58\x14\x07\xe3\x74\xe8\xe9\xe0\xbd\xa5\xd6\x7a\x9d\xc8\xb8\x44\x9d\x3e\x93\xbb\x58\x4b\x7e\x78\x8b\xf8\x93\x22\x26\x8a\x29\x94\x5c\xfc\xc5\x39\x7a\x17\x93\x76\x49\xf1\x41\xc0\xa1\xd8\x7f\xfc\x4a\x3d\x46\xda\x53\x4f\xbb\x2d\x79\x47\xdb\x1d\x39\x4f\x5b\x72\xb4\x7b\x78\x20\xdf\xb6\x25\xc0\xe1\xf9\x79\xbe\x4e\xe1\x82\xd4\x6a\x1b\x71\xba\x14\x93\x4e\xd8\x61\xde\x2a\x54\x55\xa9\x78\xd6\x47\x54\x75\x4d\x00\x15\x01\xd4\x34\x6d\xae\x2a\x7a\x5f\x53\x33\xe9\xdc\x49\x5e\x3e\x61\x99\x13\xba\x64\x5a\x93\x9d\x99\xec\x54\x00\x77\xaf\xeb\x6a\x23\xbf\x6b\xf9\xfb\x8d\x7c\x5b\xaf\xc4\xcc\xa9\x4a\x02\xfc\xaa\x57\x0a\x20\xae\x4a\xba\x7e\x2e\xaf\xd0\xf1\x8c\x47\xa3\xed\xe0\x44\xd1\x48\x29\xa9\x01\x58\x8f\x0f\x35\x39\x04\x6a\x6e\xbe\x6d\x3e\x95\x82\xcd\xfe\x7e\x1d\x53\x30\xee\xc7\x98\xcd\x50\x31\xe9\x90\x3d\x11\xe2\xda\x43\x77\x1a\x64\xdc\xbf\x5b\x00\x00\x94\xd3\xd1\x24\xd9\xa7\x9a\x82\x8f\xba\x3e\x3c\xea\x90\x6d\x06\x58\xff\xbf\x82\xdb\x7f\x0a\xb8\x7d\x19\xfe\x2e\x07\xfb\x8c\xf7\xd5\x9c\x77\x39\xa7\xe3\x55\xcd\x18\xfb\x13\x00\x00\xff\xff\xf0\xac\xa0\x99\x1c\x03\x00\x00")
2720
2721 func runtimeSyntaxYamlYamlBytes() ([]byte, error) {
2722         return bindataRead(
2723                 _runtimeSyntaxYamlYaml,
2724                 "runtime/syntax/yaml.yaml",
2725         )
2726 }
2727
2728 func runtimeSyntaxYamlYaml() (*asset, error) {
2729         bytes, err := runtimeSyntaxYamlYamlBytes()
2730         if err != nil {
2731                 return nil, err
2732         }
2733
2734         info := bindataFileInfo{name: "runtime/syntax/yaml.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2735         a := &asset{bytes: bytes, info: info}
2736         return a, nil
2737 }
2738
2739 var _runtimeSyntaxYumYaml = []byte("\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")
2740
2741 func runtimeSyntaxYumYamlBytes() ([]byte, error) {
2742         return bindataRead(
2743                 _runtimeSyntaxYumYaml,
2744                 "runtime/syntax/yum.yaml",
2745         )
2746 }
2747
2748 func runtimeSyntaxYumYaml() (*asset, error) {
2749         bytes, err := runtimeSyntaxYumYamlBytes()
2750         if err != nil {
2751                 return nil, err
2752         }
2753
2754         info := bindataFileInfo{name: "runtime/syntax/yum.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2755         a := &asset{bytes: bytes, info: info}
2756         return a, nil
2757 }
2758
2759 var _runtimeSyntaxZshYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\xdf\x73\x1b\xb7\x11\x7e\xd7\x5f\x71\xa2\x34\x35\xcf\x2a\x55\xdb\xb5\x3d\xad\xea\x96\x6d\x3d\xd3\xe9\x43\x26\x2f\x99\xc9\x83\x05\x25\x01\x81\x3d\x02\x26\x7e\x9c\xb1\x0b\x51\xa4\x3f\xff\xef\x19\x1c\x25\x59\x91\xed\x49\x38\xc4\xe1\x70\x00\xbe\xfd\xf6\xc3\xee\x62\xf0\x81\x64\x37\xd2\x45\xb7\x67\x77\x74\x64\x49\xc8\xc8\xc5\x51\xd7\x75\x5d\x9b\x4a\x3a\xd2\x45\x37\x9b\x2b\x75\xbe\x67\x77\x0a\xa5\xce\x97\xf3\x3d\x3b\x4a\xd7\xd8\x8f\x25\xb7\x35\xd8\xb3\x2b\x06\xfb\x90\xd7\x3e\x4d\x5d\xae\xd2\x9f\xf6\xb3\x09\xc5\x91\xb6\x54\x2e\xba\xd9\x4f\x27\xc7\xe7\x4f\xff\x32\xa7\x74\xdd\x9d\xf5\xcb\x3d\xbb\x79\x87\xb6\xe8\xa8\xd4\x40\x7c\x30\x79\x72\xd2\x7d\x5f\xe3\x8a\x0a\x4f\xc3\x45\x67\x72\x62\xd1\x49\xce\xd3\xf4\xf9\xa2\x9b\x29\xb5\xba\x7c\xb6\xf8\xfb\xd5\x99\x52\xab\xd9\xd1\xb4\x6c\xda\xf7\x36\x27\xeb\xc5\xe7\xa4\x03\x77\x3a\xd9\xb6\x55\x4a\x0e\xdd\x10\xf2\xf6\x16\x8d\x45\x0b\x45\x4a\x72\xc0\x99\xeb\xb0\xd5\x3b\xc6\xaa\x90\xde\x60\xb5\x23\x18\xcd\x84\xb6\xd1\xa7\x4a\xb0\x9e\xf3\x36\xc1\x66\xd8\x9c\x08\x14\xfc\x00\x0a\x4c\x20\xd6\x06\x74\xe3\x05\x83\xc7\x90\x0b\x86\x9a\x4c\xb3\x0d\x3f\xc0\x27\x84\x6c\x74\x40\x21\x6d\x51\x48\x6a\x49\x60\x0a\x64\x04\xec\xfc\x20\x10\x47\x09\xe2\x23\xa1\x26\xf1\x01\x5b\xe7\x03\xf5\x9f\xfd\xf9\x2d\xd1\xb9\x52\x1f\xa1\xd4\x27\x28\x35\x87\x52\x3d\x94\xfa\x07\x94\xba\x82\x52\x97\xf8\x05\x4a\x29\x05\xa5\x4e\xf1\x06\xff\xc2\x31\xfe\x89\x3f\x41\x29\xdc\x8a\xff\x58\x99\x6e\x08\x7a\x7d\xa7\x2d\x8f\x64\xbc\x0e\x17\xdd\x6c\x71\xf9\x9d\xa5\x61\x5d\xea\xf6\xe6\x6a\xa2\xf1\xc5\x82\x39\x7d\x40\x22\xac\x05\x41\xb0\x26\x04\x02\x23\x61\xdf\x3f\x3a\x85\xff\x6a\x76\x0b\x9f\x1c\x15\x2f\x64\xbf\x21\xfb\xbc\xa6\x7e\xa9\x83\xd7\x8c\x95\x4f\x76\x43\x3b\xac\xaa\x0f\xe2\x13\x8c\x85\x25\x13\x74\x21\xd0\xb5\x0e\xa0\x1b\x6a\x4a\x8f\xb9\x08\xde\xe7\x15\x23\x90\x60\xcc\xa3\xc5\x58\xd9\x59\x30\x09\x38\xd7\x62\x08\x2d\x8a\xdb\xb0\x46\xcd\x1b\xd4\xc4\x24\xfd\xbd\x33\x13\xb9\x77\x3f\xfc\x7f\x31\xf9\x34\x78\x73\x4b\xed\x10\xfa\x87\x60\xb0\x76\xb1\x67\xb7\x70\x39\x6f\xa0\xab\xe4\x90\xb5\x85\x71\xd6\x17\x98\x1c\x47\x9f\xbc\xc0\xfa\xc2\x98\x5b\xcf\xa0\xd4\xeb\x55\x20\x90\x71\x59\x0c\x28\xd6\xa0\x85\x30\x16\x9f\x04\x63\xc9\x71\x94\x79\xdb\xd2\x2f\x31\xf9\xcb\x24\x79\x14\xec\x5b\xbe\xc4\x6c\x27\xf0\x3d\xcb\x2e\x10\xb6\x8e\x92\xa1\xc7\x52\xbe\xcd\x31\xe6\xd4\x05\x9f\xea\x4d\x67\x72\x8c\x3a\x59\xfe\x96\xa2\x6b\xf8\x75\xbf\xd4\xdb\x0d\x06\x9f\x2c\x94\xda\x7e\x7c\xf6\xe7\x97\x9f\xd6\x85\x46\x6c\x7c\x08\xd3\x43\x87\x70\x3f\x13\x88\x19\x51\x6f\x08\xe3\x34\xcf\x64\x21\xba\x7c\x49\xa2\x50\x15\x1f\xf8\xf7\x18\xac\x34\xd3\xeb\x97\x68\x5d\xab\x19\x30\x5a\x60\x9c\xc9\x09\xc6\xad\xcb\x08\xe3\x62\x6e\x6a\xb6\x84\x32\xae\xe4\x2c\x30\x1b\xae\xb1\x49\x1b\x61\x46\x18\x1e\x83\x17\x98\x2a\xb0\x4d\x48\x6b\x61\x87\xa6\x77\x6b\x26\x87\x5c\xb8\xbd\x4d\xe0\xb6\x4e\xb2\xa3\x55\x21\xba\x19\x75\xb2\xad\x2b\x18\xb4\x91\x96\x8d\xba\x25\xe9\x10\x05\x43\x0e\x16\xad\x02\xc1\x65\x16\x6f\xd1\xfe\xad\xa2\x84\x80\xf7\xb9\x65\xaa\x4f\x1b\x84\x96\xb1\xeb\x09\x39\x30\xa2\x7d\xd5\x78\xc5\x4d\xb3\x1d\x37\x83\x1f\x32\xe2\x26\x65\x8b\xb8\x11\x8a\x23\xe2\x35\x92\x37\x84\x14\x90\xb2\xab\x23\xd2\x58\xb2\x41\xaa\xb1\x99\xcc\x16\xa3\xe6\x16\x09\x5a\x9c\x71\x1b\x8c\x3e\x6d\x76\x18\xcb\x21\x34\x1a\xe5\xe9\x65\xc0\x28\x37\x18\xb7\x76\xaa\x13\x13\x8f\x42\x3a\xb4\x5d\x28\x11\x25\x36\xf3\xa5\xa6\x26\x21\xd3\x07\xcc\xd9\xe9\xe7\x60\xa7\x5f\xbc\x78\x39\x75\xaf\x5e\xb7\xee\xaf\x7f\x9b\x46\xaf\x9e\xbf\xe8\x1b\x6b\x76\x85\x2c\xd8\xd5\x01\x1c\x88\x46\x70\xcb\x9c\x83\xb4\xed\xc8\xc0\x62\x57\x6d\x52\x64\x87\x69\xc3\x2e\x19\x88\x6e\xcd\x07\x08\x11\x84\x58\xa6\xea\x94\xab\x40\x72\x35\x0e\x52\x20\xa5\x52\x7b\x24\xd3\x0e\x47\x26\xd8\x86\x51\x27\xd9\x6a\xba\x3d\x86\x9a\xfc\x07\xd4\x34\xb9\x53\x99\x0a\xe3\xba\xf9\xb1\x35\xd8\xba\xdc\x9a\x8e\x1e\x3b\xe2\xc7\x71\xf6\xbf\xdb\x02\xda\x59\x1a\x5a\xd6\xf8\x9c\x6e\x03\xcd\x5b\x4a\xe2\x07\x7f\xb8\x43\x94\xe2\xb3\xf9\x5d\xb5\x6d\x83\xbe\x5d\x06\xff\x59\xbc\xfb\xb9\x5d\x08\x7c\xa6\xd4\x5c\xa9\x7e\xd6\x9d\x74\x73\xdf\x3f\xc0\xff\x51\x17\xdf\xd2\x95\xbf\x86\xaa\xd4\xa9\x52\x1f\x97\x77\x48\xc7\xff\x3e\x39\x7d\xba\x5c\x34\xc0\x4f\xcb\x59\x77\x72\x8f\xf4\xe0\x3a\x62\x29\x3e\xad\x2f\x6e\x0d\x74\x2d\x1d\xca\x94\x0a\xb3\xd9\xfd\x37\x4a\xb6\x95\xef\xe5\x9b\xe3\x56\xa3\xfb\x87\x53\x0f\xae\xbc\xbb\xdf\x43\xf0\x43\xdd\x7d\xeb\xf4\x81\x9d\x52\xe7\xb3\x3f\xcc\xe0\xc9\x37\x09\x3c\x79\x6c\xbf\xbb\xbc\xfa\x0c\x1b\xa7\x64\xfe\x02\xee\xe4\x31\xdc\xe9\x57\x51\x7e\x0d\x00\x00\xff\xff\xd0\xb4\x28\xa1\x47\x08\x00\x00")
2760
2761 func runtimeSyntaxZshYamlBytes() ([]byte, error) {
2762         return bindataRead(
2763                 _runtimeSyntaxZshYaml,
2764                 "runtime/syntax/zsh.yaml",
2765         )
2766 }
2767
2768 func runtimeSyntaxZshYaml() (*asset, error) {
2769         bytes, err := runtimeSyntaxZshYamlBytes()
2770         if err != nil {
2771                 return nil, err
2772         }
2773
2774         info := bindataFileInfo{name: "runtime/syntax/zsh.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
2775         a := &asset{bytes: bytes, info: info}
2776         return a, nil
2777 }
2778
2779 // Asset loads and returns the asset for the given name.
2780 // It returns an error if the asset could not be found or
2781 // could not be loaded.
2782 func Asset(name string) ([]byte, error) {
2783         cannonicalName := strings.Replace(name, "\\", "/", -1)
2784         if f, ok := _bindata[cannonicalName]; ok {
2785                 a, err := f()
2786                 if err != nil {
2787                         return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
2788                 }
2789                 return a.bytes, nil
2790         }
2791         return nil, fmt.Errorf("Asset %s not found", name)
2792 }
2793
2794 // MustAsset is like Asset but panics when Asset would return an error.
2795 // It simplifies safe initialization of global variables.
2796 func MustAsset(name string) []byte {
2797         a, err := Asset(name)
2798         if err != nil {
2799                 panic("asset: Asset(" + name + "): " + err.Error())
2800         }
2801
2802         return a
2803 }
2804
2805 // AssetInfo loads and returns the asset info for the given name.
2806 // It returns an error if the asset could not be found or
2807 // could not be loaded.
2808 func AssetInfo(name string) (os.FileInfo, error) {
2809         cannonicalName := strings.Replace(name, "\\", "/", -1)
2810         if f, ok := _bindata[cannonicalName]; ok {
2811                 a, err := f()
2812                 if err != nil {
2813                         return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
2814                 }
2815                 return a.info, nil
2816         }
2817         return nil, fmt.Errorf("AssetInfo %s not found", name)
2818 }
2819
2820 // AssetNames returns the names of the assets.
2821 func AssetNames() []string {
2822         names := make([]string, 0, len(_bindata))
2823         for name := range _bindata {
2824                 names = append(names, name)
2825         }
2826         return names
2827 }
2828
2829 // _bindata is a table, holding each asset generator, mapped to its name.
2830 var _bindata = map[string]func() (*asset, error){
2831         "runtime/README.md": runtimeReadmeMd,
2832         "runtime/colorschemes/atom-dark-tc.micro": runtimeColorschemesAtomDarkTcMicro,
2833         "runtime/colorschemes/bubblegum.micro": runtimeColorschemesBubblegumMicro,
2834         "runtime/colorschemes/default.micro": runtimeColorschemesDefaultMicro,
2835         "runtime/colorschemes/gruvbox-tc.micro": runtimeColorschemesGruvboxTcMicro,
2836         "runtime/colorschemes/gruvbox.micro": runtimeColorschemesGruvboxMicro,
2837         "runtime/colorschemes/monokai.micro": runtimeColorschemesMonokaiMicro,
2838         "runtime/colorschemes/simple.micro": runtimeColorschemesSimpleMicro,
2839         "runtime/colorschemes/solarized-tc.micro": runtimeColorschemesSolarizedTcMicro,
2840         "runtime/colorschemes/solarized.micro": runtimeColorschemesSolarizedMicro,
2841         "runtime/colorschemes/zenburn.micro": runtimeColorschemesZenburnMicro,
2842         "runtime/help/colors.md": runtimeHelpColorsMd,
2843         "runtime/help/commands.md": runtimeHelpCommandsMd,
2844         "runtime/help/help.md": runtimeHelpHelpMd,
2845         "runtime/help/keybindings.md": runtimeHelpKeybindingsMd,
2846         "runtime/help/options.md": runtimeHelpOptionsMd,
2847         "runtime/help/plugins.md": runtimeHelpPluginsMd,
2848         "runtime/help/tutorial.md": runtimeHelpTutorialMd,
2849         "runtime/plugins/autoclose/autoclose.lua": runtimePluginsAutocloseAutocloseLua,
2850         "runtime/plugins/ftoptions/ftoptions.lua": runtimePluginsFtoptionsFtoptionsLua,
2851         "runtime/plugins/linter/linter.lua": runtimePluginsLinterLinterLua,
2852         "runtime/syntax/README.md": runtimeSyntaxReadmeMd,
2853         "runtime/syntax/apacheconf.yaml": runtimeSyntaxApacheconfYaml,
2854         "runtime/syntax/arduino.yaml": runtimeSyntaxArduinoYaml,
2855         "runtime/syntax/asciidoc.yaml": runtimeSyntaxAsciidocYaml,
2856         "runtime/syntax/asm.yaml": runtimeSyntaxAsmYaml,
2857         "runtime/syntax/awk.yaml": runtimeSyntaxAwkYaml,
2858         "runtime/syntax/c++.yaml": runtimeSyntaxCYaml,
2859         "runtime/syntax/c.yaml": runtimeSyntaxCYaml2,
2860         "runtime/syntax/caddyfile.yaml": runtimeSyntaxCaddyfileYaml,
2861         "runtime/syntax/clojure.yaml": runtimeSyntaxClojureYaml,
2862         "runtime/syntax/cmake.yaml": runtimeSyntaxCmakeYaml,
2863         "runtime/syntax/coffeescript.yaml": runtimeSyntaxCoffeescriptYaml,
2864         "runtime/syntax/colortest.yaml": runtimeSyntaxColortestYaml,
2865         "runtime/syntax/conf.yaml": runtimeSyntaxConfYaml,
2866         "runtime/syntax/conky.yaml": runtimeSyntaxConkyYaml,
2867         "runtime/syntax/cpp.yaml": runtimeSyntaxCppYaml,
2868         "runtime/syntax/crystal.yaml": runtimeSyntaxCrystalYaml,
2869         "runtime/syntax/csharp.yaml": runtimeSyntaxCsharpYaml,
2870         "runtime/syntax/css.yaml": runtimeSyntaxCssYaml,
2871         "runtime/syntax/cython.yaml": runtimeSyntaxCythonYaml,
2872         "runtime/syntax/d.yaml": runtimeSyntaxDYaml,
2873         "runtime/syntax/dart.yaml": runtimeSyntaxDartYaml,
2874         "runtime/syntax/dockerfile.yaml": runtimeSyntaxDockerfileYaml,
2875         "runtime/syntax/dot.yaml": runtimeSyntaxDotYaml,
2876         "runtime/syntax/erb.yaml": runtimeSyntaxErbYaml,
2877         "runtime/syntax/fish.yaml": runtimeSyntaxFishYaml,
2878         "runtime/syntax/fortran.yaml": runtimeSyntaxFortranYaml,
2879         "runtime/syntax/gdscript.yaml": runtimeSyntaxGdscriptYaml,
2880         "runtime/syntax/gentoo-ebuild.yaml": runtimeSyntaxGentooEbuildYaml,
2881         "runtime/syntax/gentoo-etc-portage.yaml": runtimeSyntaxGentooEtcPortageYaml,
2882         "runtime/syntax/git-commit.yaml": runtimeSyntaxGitCommitYaml,
2883         "runtime/syntax/git-config.yaml": runtimeSyntaxGitConfigYaml,
2884         "runtime/syntax/git-rebase-todo.yaml": runtimeSyntaxGitRebaseTodoYaml,
2885         "runtime/syntax/glsl.yaml": runtimeSyntaxGlslYaml,
2886         "runtime/syntax/go.yaml": runtimeSyntaxGoYaml,
2887         "runtime/syntax/golo.yaml": runtimeSyntaxGoloYaml,
2888         "runtime/syntax/groff.yaml": runtimeSyntaxGroffYaml,
2889         "runtime/syntax/haml.yaml": runtimeSyntaxHamlYaml,
2890         "runtime/syntax/haskell.yaml": runtimeSyntaxHaskellYaml,
2891         "runtime/syntax/html.yaml": runtimeSyntaxHtmlYaml,
2892         "runtime/syntax/html4.yaml": runtimeSyntaxHtml4Yaml,
2893         "runtime/syntax/html5.yaml": runtimeSyntaxHtml5Yaml,
2894         "runtime/syntax/ini.yaml": runtimeSyntaxIniYaml,
2895         "runtime/syntax/inputrc.yaml": runtimeSyntaxInputrcYaml,
2896         "runtime/syntax/java.yaml": runtimeSyntaxJavaYaml,
2897         "runtime/syntax/javascript.yaml": runtimeSyntaxJavascriptYaml,
2898         "runtime/syntax/json.yaml": runtimeSyntaxJsonYaml,
2899         "runtime/syntax/keymap.yaml": runtimeSyntaxKeymapYaml,
2900         "runtime/syntax/kickstart.yaml": runtimeSyntaxKickstartYaml,
2901         "runtime/syntax/ledger.yaml": runtimeSyntaxLedgerYaml,
2902         "runtime/syntax/lfe.yaml": runtimeSyntaxLfeYaml,
2903         "runtime/syntax/lilypond.yaml": runtimeSyntaxLilypondYaml,
2904         "runtime/syntax/lisp.yaml": runtimeSyntaxLispYaml,
2905         "runtime/syntax/lua.yaml": runtimeSyntaxLuaYaml,
2906         "runtime/syntax/mail.yaml": runtimeSyntaxMailYaml,
2907         "runtime/syntax/makefile.yaml": runtimeSyntaxMakefileYaml,
2908         "runtime/syntax/man.yaml": runtimeSyntaxManYaml,
2909         "runtime/syntax/markdown.yaml": runtimeSyntaxMarkdownYaml,
2910         "runtime/syntax/micro.yaml": runtimeSyntaxMicroYaml,
2911         "runtime/syntax/mpdconf.yaml": runtimeSyntaxMpdconfYaml,
2912         "runtime/syntax/nanorc.yaml": runtimeSyntaxNanorcYaml,
2913         "runtime/syntax/nginx.yaml": runtimeSyntaxNginxYaml,
2914         "runtime/syntax/nim.yaml": runtimeSyntaxNimYaml,
2915         "runtime/syntax/objc.yaml": runtimeSyntaxObjcYaml,
2916         "runtime/syntax/ocaml.yaml": runtimeSyntaxOcamlYaml,
2917         "runtime/syntax/pascal.yaml": runtimeSyntaxPascalYaml,
2918         "runtime/syntax/patch.yaml": runtimeSyntaxPatchYaml,
2919         "runtime/syntax/peg.yaml": runtimeSyntaxPegYaml,
2920         "runtime/syntax/perl.yaml": runtimeSyntaxPerlYaml,
2921         "runtime/syntax/perl6.yaml": runtimeSyntaxPerl6Yaml,
2922         "runtime/syntax/php.yaml": runtimeSyntaxPhpYaml,
2923         "runtime/syntax/pkg-config.yaml": runtimeSyntaxPkgConfigYaml,
2924         "runtime/syntax/po.yaml": runtimeSyntaxPoYaml,
2925         "runtime/syntax/pony.yaml": runtimeSyntaxPonyYaml,
2926         "runtime/syntax/pov.yaml": runtimeSyntaxPovYaml,
2927         "runtime/syntax/privoxy-action.yaml": runtimeSyntaxPrivoxyActionYaml,
2928         "runtime/syntax/privoxy-config.yaml": runtimeSyntaxPrivoxyConfigYaml,
2929         "runtime/syntax/privoxy-filter.yaml": runtimeSyntaxPrivoxyFilterYaml,
2930         "runtime/syntax/puppet.yaml": runtimeSyntaxPuppetYaml,
2931         "runtime/syntax/python2.yaml": runtimeSyntaxPython2Yaml,
2932         "runtime/syntax/python3.yaml": runtimeSyntaxPython3Yaml,
2933         "runtime/syntax/r.yaml": runtimeSyntaxRYaml,
2934         "runtime/syntax/reST.yaml": runtimeSyntaxRestYaml,
2935         "runtime/syntax/rpmspec.yaml": runtimeSyntaxRpmspecYaml,
2936         "runtime/syntax/ruby.yaml": runtimeSyntaxRubyYaml,
2937         "runtime/syntax/rust.yaml": runtimeSyntaxRustYaml,
2938         "runtime/syntax/scala.yaml": runtimeSyntaxScalaYaml,
2939         "runtime/syntax/sed.yaml": runtimeSyntaxSedYaml,
2940         "runtime/syntax/sh.yaml": runtimeSyntaxShYaml,
2941         "runtime/syntax/sls.yaml": runtimeSyntaxSlsYaml,
2942         "runtime/syntax/solidity.yaml": runtimeSyntaxSolidityYaml,
2943         "runtime/syntax/sql.yaml": runtimeSyntaxSqlYaml,
2944         "runtime/syntax/swift.yaml": runtimeSyntaxSwiftYaml,
2945         "runtime/syntax/syntax_checker.go": runtimeSyntaxSyntax_checkerGo,
2946         "runtime/syntax/syntax_converter.go": runtimeSyntaxSyntax_converterGo,
2947         "runtime/syntax/systemd.yaml": runtimeSyntaxSystemdYaml,
2948         "runtime/syntax/tcl.yaml": runtimeSyntaxTclYaml,
2949         "runtime/syntax/tex.yaml": runtimeSyntaxTexYaml,
2950         "runtime/syntax/toml.yaml": runtimeSyntaxTomlYaml,
2951         "runtime/syntax/typescript.yaml": runtimeSyntaxTypescriptYaml,
2952         "runtime/syntax/vala.yaml": runtimeSyntaxValaYaml,
2953         "runtime/syntax/vhdl.yaml": runtimeSyntaxVhdlYaml,
2954         "runtime/syntax/vi.yaml": runtimeSyntaxViYaml,
2955         "runtime/syntax/xml.yaml": runtimeSyntaxXmlYaml,
2956         "runtime/syntax/xresources.yaml": runtimeSyntaxXresourcesYaml,
2957         "runtime/syntax/yaml.yaml": runtimeSyntaxYamlYaml,
2958         "runtime/syntax/yum.yaml": runtimeSyntaxYumYaml,
2959         "runtime/syntax/zsh.yaml": runtimeSyntaxZshYaml,
2960 }
2961
2962 // AssetDir returns the file names below a certain
2963 // directory embedded in the file by go-bindata.
2964 // For example if you run go-bindata on data/... and data contains the
2965 // following hierarchy:
2966 //     data/
2967 //       foo.txt
2968 //       img/
2969 //         a.png
2970 //         b.png
2971 // then AssetDir("data") would return []string{"foo.txt", "img"}
2972 // AssetDir("data/img") would return []string{"a.png", "b.png"}
2973 // AssetDir("foo.txt") and AssetDir("notexist") would return an error
2974 // AssetDir("") will return []string{"data"}.
2975 func AssetDir(name string) ([]string, error) {
2976         node := _bintree
2977         if len(name) != 0 {
2978                 cannonicalName := strings.Replace(name, "\\", "/", -1)
2979                 pathList := strings.Split(cannonicalName, "/")
2980                 for _, p := range pathList {
2981                         node = node.Children[p]
2982                         if node == nil {
2983                                 return nil, fmt.Errorf("Asset %s not found", name)
2984                         }
2985                 }
2986         }
2987         if node.Func != nil {
2988                 return nil, fmt.Errorf("Asset %s not found", name)
2989         }
2990         rv := make([]string, 0, len(node.Children))
2991         for childName := range node.Children {
2992                 rv = append(rv, childName)
2993         }
2994         return rv, nil
2995 }
2996
2997 type bintree struct {
2998         Func     func() (*asset, error)
2999         Children map[string]*bintree
3000 }
3001 var _bintree = &bintree{nil, map[string]*bintree{
3002         "runtime": &bintree{nil, map[string]*bintree{
3003                 "README.md": &bintree{runtimeReadmeMd, map[string]*bintree{}},
3004                 "colorschemes": &bintree{nil, map[string]*bintree{
3005                         "atom-dark-tc.micro": &bintree{runtimeColorschemesAtomDarkTcMicro, map[string]*bintree{}},
3006                         "bubblegum.micro": &bintree{runtimeColorschemesBubblegumMicro, map[string]*bintree{}},
3007                         "default.micro": &bintree{runtimeColorschemesDefaultMicro, map[string]*bintree{}},
3008                         "gruvbox-tc.micro": &bintree{runtimeColorschemesGruvboxTcMicro, map[string]*bintree{}},
3009                         "gruvbox.micro": &bintree{runtimeColorschemesGruvboxMicro, map[string]*bintree{}},
3010                         "monokai.micro": &bintree{runtimeColorschemesMonokaiMicro, map[string]*bintree{}},
3011                         "simple.micro": &bintree{runtimeColorschemesSimpleMicro, map[string]*bintree{}},
3012                         "solarized-tc.micro": &bintree{runtimeColorschemesSolarizedTcMicro, map[string]*bintree{}},
3013                         "solarized.micro": &bintree{runtimeColorschemesSolarizedMicro, map[string]*bintree{}},
3014                         "zenburn.micro": &bintree{runtimeColorschemesZenburnMicro, map[string]*bintree{}},
3015                 }},
3016                 "help": &bintree{nil, map[string]*bintree{
3017                         "colors.md": &bintree{runtimeHelpColorsMd, map[string]*bintree{}},
3018                         "commands.md": &bintree{runtimeHelpCommandsMd, map[string]*bintree{}},
3019                         "help.md": &bintree{runtimeHelpHelpMd, map[string]*bintree{}},
3020                         "keybindings.md": &bintree{runtimeHelpKeybindingsMd, map[string]*bintree{}},
3021                         "options.md": &bintree{runtimeHelpOptionsMd, map[string]*bintree{}},
3022                         "plugins.md": &bintree{runtimeHelpPluginsMd, map[string]*bintree{}},
3023                         "tutorial.md": &bintree{runtimeHelpTutorialMd, map[string]*bintree{}},
3024                 }},
3025                 "plugins": &bintree{nil, map[string]*bintree{
3026                         "autoclose": &bintree{nil, map[string]*bintree{
3027                                 "autoclose.lua": &bintree{runtimePluginsAutocloseAutocloseLua, map[string]*bintree{}},
3028                         }},
3029                         "ftoptions": &bintree{nil, map[string]*bintree{
3030                                 "ftoptions.lua": &bintree{runtimePluginsFtoptionsFtoptionsLua, map[string]*bintree{}},
3031                         }},
3032                         "linter": &bintree{nil, map[string]*bintree{
3033                                 "linter.lua": &bintree{runtimePluginsLinterLinterLua, map[string]*bintree{}},
3034                         }},
3035                 }},
3036                 "syntax": &bintree{nil, map[string]*bintree{
3037                         "README.md": &bintree{runtimeSyntaxReadmeMd, map[string]*bintree{}},
3038                         "apacheconf.yaml": &bintree{runtimeSyntaxApacheconfYaml, map[string]*bintree{}},
3039                         "arduino.yaml": &bintree{runtimeSyntaxArduinoYaml, map[string]*bintree{}},
3040                         "asciidoc.yaml": &bintree{runtimeSyntaxAsciidocYaml, map[string]*bintree{}},
3041                         "asm.yaml": &bintree{runtimeSyntaxAsmYaml, map[string]*bintree{}},
3042                         "awk.yaml": &bintree{runtimeSyntaxAwkYaml, map[string]*bintree{}},
3043                         "c++.yaml": &bintree{runtimeSyntaxCYaml, map[string]*bintree{}},
3044                         "c.yaml": &bintree{runtimeSyntaxCYaml2, map[string]*bintree{}},
3045                         "caddyfile.yaml": &bintree{runtimeSyntaxCaddyfileYaml, map[string]*bintree{}},
3046                         "clojure.yaml": &bintree{runtimeSyntaxClojureYaml, map[string]*bintree{}},
3047                         "cmake.yaml": &bintree{runtimeSyntaxCmakeYaml, map[string]*bintree{}},
3048                         "coffeescript.yaml": &bintree{runtimeSyntaxCoffeescriptYaml, map[string]*bintree{}},
3049                         "colortest.yaml": &bintree{runtimeSyntaxColortestYaml, map[string]*bintree{}},
3050                         "conf.yaml": &bintree{runtimeSyntaxConfYaml, map[string]*bintree{}},
3051                         "conky.yaml": &bintree{runtimeSyntaxConkyYaml, map[string]*bintree{}},
3052                         "cpp.yaml": &bintree{runtimeSyntaxCppYaml, map[string]*bintree{}},
3053                         "crystal.yaml": &bintree{runtimeSyntaxCrystalYaml, map[string]*bintree{}},
3054                         "csharp.yaml": &bintree{runtimeSyntaxCsharpYaml, map[string]*bintree{}},
3055                         "css.yaml": &bintree{runtimeSyntaxCssYaml, map[string]*bintree{}},
3056                         "cython.yaml": &bintree{runtimeSyntaxCythonYaml, map[string]*bintree{}},
3057                         "d.yaml": &bintree{runtimeSyntaxDYaml, map[string]*bintree{}},
3058                         "dart.yaml": &bintree{runtimeSyntaxDartYaml, map[string]*bintree{}},
3059                         "dockerfile.yaml": &bintree{runtimeSyntaxDockerfileYaml, map[string]*bintree{}},
3060                         "dot.yaml": &bintree{runtimeSyntaxDotYaml, map[string]*bintree{}},
3061                         "erb.yaml": &bintree{runtimeSyntaxErbYaml, map[string]*bintree{}},
3062                         "fish.yaml": &bintree{runtimeSyntaxFishYaml, map[string]*bintree{}},
3063                         "fortran.yaml": &bintree{runtimeSyntaxFortranYaml, map[string]*bintree{}},
3064                         "gdscript.yaml": &bintree{runtimeSyntaxGdscriptYaml, map[string]*bintree{}},
3065                         "gentoo-ebuild.yaml": &bintree{runtimeSyntaxGentooEbuildYaml, map[string]*bintree{}},
3066                         "gentoo-etc-portage.yaml": &bintree{runtimeSyntaxGentooEtcPortageYaml, map[string]*bintree{}},
3067                         "git-commit.yaml": &bintree{runtimeSyntaxGitCommitYaml, map[string]*bintree{}},
3068                         "git-config.yaml": &bintree{runtimeSyntaxGitConfigYaml, map[string]*bintree{}},
3069                         "git-rebase-todo.yaml": &bintree{runtimeSyntaxGitRebaseTodoYaml, map[string]*bintree{}},
3070                         "glsl.yaml": &bintree{runtimeSyntaxGlslYaml, map[string]*bintree{}},
3071                         "go.yaml": &bintree{runtimeSyntaxGoYaml, map[string]*bintree{}},
3072                         "golo.yaml": &bintree{runtimeSyntaxGoloYaml, map[string]*bintree{}},
3073                         "groff.yaml": &bintree{runtimeSyntaxGroffYaml, map[string]*bintree{}},
3074                         "haml.yaml": &bintree{runtimeSyntaxHamlYaml, map[string]*bintree{}},
3075                         "haskell.yaml": &bintree{runtimeSyntaxHaskellYaml, map[string]*bintree{}},
3076                         "html.yaml": &bintree{runtimeSyntaxHtmlYaml, map[string]*bintree{}},
3077                         "html4.yaml": &bintree{runtimeSyntaxHtml4Yaml, map[string]*bintree{}},
3078                         "html5.yaml": &bintree{runtimeSyntaxHtml5Yaml, map[string]*bintree{}},
3079                         "ini.yaml": &bintree{runtimeSyntaxIniYaml, map[string]*bintree{}},
3080                         "inputrc.yaml": &bintree{runtimeSyntaxInputrcYaml, map[string]*bintree{}},
3081                         "java.yaml": &bintree{runtimeSyntaxJavaYaml, map[string]*bintree{}},
3082                         "javascript.yaml": &bintree{runtimeSyntaxJavascriptYaml, map[string]*bintree{}},
3083                         "json.yaml": &bintree{runtimeSyntaxJsonYaml, map[string]*bintree{}},
3084                         "keymap.yaml": &bintree{runtimeSyntaxKeymapYaml, map[string]*bintree{}},
3085                         "kickstart.yaml": &bintree{runtimeSyntaxKickstartYaml, map[string]*bintree{}},
3086                         "ledger.yaml": &bintree{runtimeSyntaxLedgerYaml, map[string]*bintree{}},
3087                         "lfe.yaml": &bintree{runtimeSyntaxLfeYaml, map[string]*bintree{}},
3088                         "lilypond.yaml": &bintree{runtimeSyntaxLilypondYaml, map[string]*bintree{}},
3089                         "lisp.yaml": &bintree{runtimeSyntaxLispYaml, map[string]*bintree{}},
3090                         "lua.yaml": &bintree{runtimeSyntaxLuaYaml, map[string]*bintree{}},
3091                         "mail.yaml": &bintree{runtimeSyntaxMailYaml, map[string]*bintree{}},
3092                         "makefile.yaml": &bintree{runtimeSyntaxMakefileYaml, map[string]*bintree{}},
3093                         "man.yaml": &bintree{runtimeSyntaxManYaml, map[string]*bintree{}},
3094                         "markdown.yaml": &bintree{runtimeSyntaxMarkdownYaml, map[string]*bintree{}},
3095                         "micro.yaml": &bintree{runtimeSyntaxMicroYaml, map[string]*bintree{}},
3096                         "mpdconf.yaml": &bintree{runtimeSyntaxMpdconfYaml, map[string]*bintree{}},
3097                         "nanorc.yaml": &bintree{runtimeSyntaxNanorcYaml, map[string]*bintree{}},
3098                         "nginx.yaml": &bintree{runtimeSyntaxNginxYaml, map[string]*bintree{}},
3099                         "nim.yaml": &bintree{runtimeSyntaxNimYaml, map[string]*bintree{}},
3100                         "objc.yaml": &bintree{runtimeSyntaxObjcYaml, map[string]*bintree{}},
3101                         "ocaml.yaml": &bintree{runtimeSyntaxOcamlYaml, map[string]*bintree{}},
3102                         "pascal.yaml": &bintree{runtimeSyntaxPascalYaml, map[string]*bintree{}},
3103                         "patch.yaml": &bintree{runtimeSyntaxPatchYaml, map[string]*bintree{}},
3104                         "peg.yaml": &bintree{runtimeSyntaxPegYaml, map[string]*bintree{}},
3105                         "perl.yaml": &bintree{runtimeSyntaxPerlYaml, map[string]*bintree{}},
3106                         "perl6.yaml": &bintree{runtimeSyntaxPerl6Yaml, map[string]*bintree{}},
3107                         "php.yaml": &bintree{runtimeSyntaxPhpYaml, map[string]*bintree{}},
3108                         "pkg-config.yaml": &bintree{runtimeSyntaxPkgConfigYaml, map[string]*bintree{}},
3109                         "po.yaml": &bintree{runtimeSyntaxPoYaml, map[string]*bintree{}},
3110                         "pony.yaml": &bintree{runtimeSyntaxPonyYaml, map[string]*bintree{}},
3111                         "pov.yaml": &bintree{runtimeSyntaxPovYaml, map[string]*bintree{}},
3112                         "privoxy-action.yaml": &bintree{runtimeSyntaxPrivoxyActionYaml, map[string]*bintree{}},
3113                         "privoxy-config.yaml": &bintree{runtimeSyntaxPrivoxyConfigYaml, map[string]*bintree{}},
3114                         "privoxy-filter.yaml": &bintree{runtimeSyntaxPrivoxyFilterYaml, map[string]*bintree{}},
3115                         "puppet.yaml": &bintree{runtimeSyntaxPuppetYaml, map[string]*bintree{}},
3116                         "python2.yaml": &bintree{runtimeSyntaxPython2Yaml, map[string]*bintree{}},
3117                         "python3.yaml": &bintree{runtimeSyntaxPython3Yaml, map[string]*bintree{}},
3118                         "r.yaml": &bintree{runtimeSyntaxRYaml, map[string]*bintree{}},
3119                         "reST.yaml": &bintree{runtimeSyntaxRestYaml, map[string]*bintree{}},
3120                         "rpmspec.yaml": &bintree{runtimeSyntaxRpmspecYaml, map[string]*bintree{}},
3121                         "ruby.yaml": &bintree{runtimeSyntaxRubyYaml, map[string]*bintree{}},
3122                         "rust.yaml": &bintree{runtimeSyntaxRustYaml, map[string]*bintree{}},
3123                         "scala.yaml": &bintree{runtimeSyntaxScalaYaml, map[string]*bintree{}},
3124                         "sed.yaml": &bintree{runtimeSyntaxSedYaml, map[string]*bintree{}},
3125                         "sh.yaml": &bintree{runtimeSyntaxShYaml, map[string]*bintree{}},
3126                         "sls.yaml": &bintree{runtimeSyntaxSlsYaml, map[string]*bintree{}},
3127                         "solidity.yaml": &bintree{runtimeSyntaxSolidityYaml, map[string]*bintree{}},
3128                         "sql.yaml": &bintree{runtimeSyntaxSqlYaml, map[string]*bintree{}},
3129                         "swift.yaml": &bintree{runtimeSyntaxSwiftYaml, map[string]*bintree{}},
3130                         "syntax_checker.go": &bintree{runtimeSyntaxSyntax_checkerGo, map[string]*bintree{}},
3131                         "syntax_converter.go": &bintree{runtimeSyntaxSyntax_converterGo, map[string]*bintree{}},
3132                         "systemd.yaml": &bintree{runtimeSyntaxSystemdYaml, map[string]*bintree{}},
3133                         "tcl.yaml": &bintree{runtimeSyntaxTclYaml, map[string]*bintree{}},
3134                         "tex.yaml": &bintree{runtimeSyntaxTexYaml, map[string]*bintree{}},
3135                         "toml.yaml": &bintree{runtimeSyntaxTomlYaml, map[string]*bintree{}},
3136                         "typescript.yaml": &bintree{runtimeSyntaxTypescriptYaml, map[string]*bintree{}},
3137                         "vala.yaml": &bintree{runtimeSyntaxValaYaml, map[string]*bintree{}},
3138                         "vhdl.yaml": &bintree{runtimeSyntaxVhdlYaml, map[string]*bintree{}},
3139                         "vi.yaml": &bintree{runtimeSyntaxViYaml, map[string]*bintree{}},
3140                         "xml.yaml": &bintree{runtimeSyntaxXmlYaml, map[string]*bintree{}},
3141                         "xresources.yaml": &bintree{runtimeSyntaxXresourcesYaml, map[string]*bintree{}},
3142                         "yaml.yaml": &bintree{runtimeSyntaxYamlYaml, map[string]*bintree{}},
3143                         "yum.yaml": &bintree{runtimeSyntaxYumYaml, map[string]*bintree{}},
3144                         "zsh.yaml": &bintree{runtimeSyntaxZshYaml, map[string]*bintree{}},
3145                 }},
3146         }},
3147 }}
3148
3149 // RestoreAsset restores an asset under the given directory
3150 func RestoreAsset(dir, name string) error {
3151         data, err := Asset(name)
3152         if err != nil {
3153                 return err
3154         }
3155         info, err := AssetInfo(name)
3156         if err != nil {
3157                 return err
3158         }
3159         err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))
3160         if err != nil {
3161                 return err
3162         }
3163         err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
3164         if err != nil {
3165                 return err
3166         }
3167         err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
3168         if err != nil {
3169                 return err
3170         }
3171         return nil
3172 }
3173
3174 // RestoreAssets restores an asset under the given directory recursively
3175 func RestoreAssets(dir, name string) error {
3176         children, err := AssetDir(name)
3177         // File
3178         if err != nil {
3179                 return RestoreAsset(dir, name)
3180         }
3181         // Dir
3182         for _, child := range children {
3183                 err = RestoreAssets(dir, filepath.Join(name, child))
3184                 if err != nil {
3185                         return err
3186                 }
3187         }
3188         return nil
3189 }
3190
3191 func _filePath(dir, name string) string {
3192         cannonicalName := strings.Replace(name, "\\", "/", -1)
3193         return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
3194 }
3195