2017-10-19 22:20:39 +00:00
|
|
|
// Code generated by go-bindata.
|
|
|
|
// sources:
|
2022-05-19 23:12:41 +00:00
|
|
|
// ui/dist/assets/chunk.143.32ce641d97e0c3ab7fca.js
|
|
|
|
// ui/dist/assets/chunk.178.6699fe92c4e5ffb04a1a.js
|
2022-04-07 20:21:26 +00:00
|
|
|
// ui/dist/assets/chunk.331.2bf16a8aab827bcd7550.js
|
|
|
|
// ui/dist/assets/chunk.401.018c1d72186cc4f1a80c.js
|
|
|
|
// ui/dist/assets/chunk.401.018c1d72186cc4f1a80c.js.LICENSE.txt
|
2022-05-19 23:12:41 +00:00
|
|
|
// ui/dist/assets/chunk.963.85f0012321e24fd6b00e.js
|
|
|
|
// ui/dist/assets/chunk.963.85f0012321e24fd6b00e.js.LICENSE.txt
|
2022-05-02 16:09:00 +00:00
|
|
|
// ui/dist/assets/nomad-ui-5e1f695edd3f904b7aa332b07823351b.css
|
2022-05-11 01:14:22 +00:00
|
|
|
// ui/dist/assets/nomad-ui-decb3b7265bfac6189ae777c90c84190.js
|
2022-05-02 16:09:00 +00:00
|
|
|
// ui/dist/assets/vendor-194b1e0d68d11ef7a4bf334eb30ba74d.js
|
2021-11-09 22:55:13 +00:00
|
|
|
// ui/dist/assets/vendor-2178567ff7c98706522514fb07f7d3be.css
|
2017-10-19 22:20:39 +00:00
|
|
|
// ui/dist/crossdomain.xml
|
2021-11-09 22:55:13 +00:00
|
|
|
// ui/dist/favicon.ico
|
2019-05-22 19:29:30 +00:00
|
|
|
// ui/dist/images/icons/boot.svg
|
2021-10-14 20:10:05 +00:00
|
|
|
// ui/dist/images/icons/box.svg
|
2019-05-22 19:29:30 +00:00
|
|
|
// ui/dist/images/icons/cancel.svg
|
2018-06-01 22:23:10 +00:00
|
|
|
// ui/dist/images/icons/clock.svg
|
2020-05-14 20:49:42 +00:00
|
|
|
// ui/dist/images/icons/console.svg
|
2018-06-01 22:23:10 +00:00
|
|
|
// ui/dist/images/icons/history.svg
|
2017-12-12 01:30:37 +00:00
|
|
|
// ui/dist/images/icons/media-pause.svg
|
|
|
|
// ui/dist/images/icons/media-play.svg
|
2020-05-14 20:49:42 +00:00
|
|
|
// ui/dist/images/icons/node-init-circle-fill.svg
|
2021-01-13 16:52:51 +00:00
|
|
|
// ui/dist/images/icons/nomad-logo-n.svg
|
2019-05-22 19:29:30 +00:00
|
|
|
// ui/dist/images/icons/search.svg
|
2017-10-19 22:20:39 +00:00
|
|
|
// ui/dist/index.html
|
|
|
|
// ui/dist/robots.txt
|
|
|
|
// DO NOT EDIT!
|
|
|
|
|
|
|
|
// +build ui
|
|
|
|
|
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
2021-01-13 16:52:51 +00:00
|
|
|
"github.com/elazarl/go-bindata-assetfs"
|
2017-10-19 22:20:39 +00:00
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2019-01-30 18:49:44 +00:00
|
|
|
"io/ioutil"
|
2017-10-19 22:20:39 +00:00
|
|
|
"os"
|
2019-01-30 18:49:44 +00:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2017-10-19 22:20:39 +00:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func bindataRead(data []byte, name string) ([]byte, error) {
|
|
|
|
gz, err := gzip.NewReader(bytes.NewBuffer(data))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Read %q: %v", name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
_, err = io.Copy(&buf, gz)
|
|
|
|
clErr := gz.Close()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Read %q: %v", name, err)
|
|
|
|
}
|
|
|
|
if clErr != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type asset struct {
|
|
|
|
bytes []byte
|
|
|
|
info os.FileInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
type bindataFileInfo struct {
|
|
|
|
name string
|
|
|
|
size int64
|
|
|
|
mode os.FileMode
|
|
|
|
modTime time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fi bindataFileInfo) Name() string {
|
|
|
|
return fi.name
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) Size() int64 {
|
|
|
|
return fi.size
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) Mode() os.FileMode {
|
|
|
|
return fi.mode
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) ModTime() time.Time {
|
|
|
|
return fi.modTime
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) IsDir() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) Sys() interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
2019-01-30 18:49:44 +00:00
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
var _distAssetsChunk14332ce641d97e0c3ab7fcaJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x5a\x5f\x73\xe3\x36\x92\x7f\xf7\xa7\xb0\xf1\xa0\x25\xca\x14\x2d\x92\xe2\xdf\x09\x3c\x97\x4b\xb2\x55\x57\xb5\x1b\xa7\x2a\xd9\x27\x9d\xca\x05\x93\x90\x45\x9b\x04\x15\x00\xf4\x8c\xc6\xd6\x7d\xf6\xab\x46\x83\x94\x26\x89\x9d\xf1\xcb\xa4\x7f\xcd\x06\xd0\xe8\xff\x50\xfc\xc4\xd5\xf9\xed\xad\xe8\xee\x84\xba\xe5\x83\xe9\x6f\x9b\x6e\xd7\x2b\x73\x7b\xfb\xc1\xf3\x28\xbb\x7e\x86\xef\xc2\x57\xbe\xf1\xb5\x2f\xfd\x9e\x3d\xa7\xd9\x62\x51\x7a\x96\x35\x7e\xd7\xec\x99\x04\x57\x7c\x43\xca\x7c\x19\x27\xbe\xa5\x83\x07\x7d\x02\x15\x29\x8b\x34\x8b\x91\x9e\xd7\x5f\x48\x99\x44\x45\x3a\x41\x2b\x7c\xc2\x79\xfc\x44\xca\x28\x4f\x92\x09\x5a\x81\x13\x4e\xbb\x27\x65\x96\x4f\xf2\xed\xde\x0a\x9c\x70\x3a\x4e\xca\x28\x5e\x14\x13\xc4\x1d\x8e\x1c\xcd\x49\x19\x2f\x8a\x6c\x82\x56\xe0\x84\x63\x24\x29\xb3\x2c\xca\x27\x88\x47\x4c\x1c\x0b\xa7\x4b\x7d\x21\x65\x1c\xe3\xe1\x78\x1b\x87\xee\x04\x29\xc3\x70\xb9\x40\xda\x7e\x99\xe0\x3d\x29\x97\x45\xe2\x68\xfb\x69\x82\x1d\x29\xd3\x62\x99\x21\x6d\x3f\x4d\x50\x92\x32\x4c\xc2\x04\xe9\xf9\x5d\x4d\xca\xe5\x22\x8d\x26\x88\xfb\x4c\x1c\x3c\x71\x94\xef\x49\x99\x67\x49\x8c\x34\x7a\x68\x84\x8a\x94\xf1\x32\x72\x34\xde\x60\x84\xb0\x61\x12\xe2\x75\x34\xee\xef\x60\xc5\x49\x99\xa5\x59\x84\x34\x1a\x68\x84\xf6\xa6\x71\x81\xb4\xbb\xb8\x83\x4f\xa4\x5c\x66\x61\x8c\x34\x6e\x38\xc2\x3d\x29\x93\x3c\x5a\x20\x8d\x61\xe1\x60\xcd\x49\xb9\x0c\xe3\x10\x69\x5c\x35\x42\x41\xca\x38\xc5\x50\xab\xc5\x9c\x1b\xab\x7c\x34\xc1\xf1\x3a\x23\xa7\xda\x92\x32\x8d\x96\xe9\x04\xd1\xc2\x13\x07\xe5\xc7\x0d\x9f\x48\x99\x2f\x96\x05\xd2\x68\x34\x07\x45\x4b\xca\x64\xb1\x48\x91\x46\x6d\x47\x28\xe7\x7c\x00\xc9\x13\xe8\xd6\x4e\x1c\xb0\x5e\x91\x9d\x40\x0c\xa9\x23\xe7\xfe\x0e\x5c\x99\x27\x13\x74\xce\x9d\x38\x8d\x80\xc0\x98\xe4\x1b\xe1\x42\xe5\xc8\xb1\x1a\xe6\xc5\x04\x9d\x92\x47\x8e\x24\x65\x12\x2f\x96\x13\x44\x81\x23\x47\x7e\x21\x65\xb4\xcc\xe3\x09\x62\x22\x1d\x39\xfa\x1e\xf2\x3c\x2d\x26\xe8\x32\xdf\x71\x7a\x52\x86\x59\x82\xbb\x61\xc8\x4d\x10\xe8\x65\x9e\x23\x3d\xaf\x21\x38\xe3\x3c\x9b\x20\xee\x73\xe4\x74\x9f\x49\x19\xa5\xc9\x11\xa2\x26\x47\xce\x00\xd6\x5b\x14\xc5\x04\xd1\x9e\x13\x07\x4f\x1f\x4f\x34\x70\xcd\xd0\xd1\xee\xd6\x0e\x0e\x90\xe7\x98\xbf\x62\x70\x69\x8f\x70\x03\x2e\x8b\xf1\xee\x1b\xe7\xaf\x11\x36\xa4\x0c\xe3\x3c\x42\x1a\xcf\x9a\x60\x4b\xca\xbc\x48\x0a\x07\xf0\x66\x23\xee\x49\x99\x25\x18\x6b\x1b\xbc\xf4\x04\x15\x29\xa3\x10\xa5\x94\x0d\x97\x30\x4d\x8f\x10\xcf\x38\xe1\x6c\x49\x19\x16\x69\x36\x41\x14\x98\x38\x68\x2f\xb7\xdf\x1e\xe2\xa4\x40\xcd\xf7\x2e\x6c\x10\xde\x73\x52\xe6\x79\x11\x22\x8d\xba\x8e\xb0\x26\x65\x91\xa0\xfb\xee\xb1\xd4\x4c\xb0\x25\x65\x98\xa7\x09\xd2\x78\xf2\x08\xfb\x6e\x5e\x8b\x27\x30\xdd\x32\xff\x8a\x83\x3b\x9c\x30\x5b\x0e\x65\x37\xcf\xf1\x4e\x23\xc7\xe9\xe0\x98\x03\xd4\xc9\x22\x47\xda\x95\x4d\x84\x5b\x28\xb6\xd1\xd2\xd1\xa8\xc3\x08\xc1\x3b\xc9\x62\x81\xb4\xab\x8a\x0e\x2a\x52\x2e\x73\xac\xe3\x5b\x34\xd2\x04\xe1\xac\x3c\x5d\x22\xed\x3e\x39\xb8\x9f\x73\xa8\xd2\x8b\x74\x31\x41\x34\xa3\xe3\x34\x35\x29\x93\x62\x19\x21\x8d\x01\x36\x42\xb8\x75\x11\x85\x48\xa3\x11\x46\x68\x48\x99\x66\xb9\xa3\xad\x4b\x8b\x38\xcb\x27\xe8\x42\x6e\xe4\xe0\x89\x4e\xfe\x01\x7a\x5e\x86\xfe\x7d\x70\x0d\x6f\x84\x4f\x50\xdf\x52\x47\xbb\x72\x87\xf0\x11\x6a\x38\x12\x18\x7c\x96\x7e\x84\xc0\x49\x22\xa4\x5d\x1c\x39\xd8\x91\x32\x4e\xb0\x85\x3d\xe2\x95\x27\x08\x2d\x73\x99\xe1\xb6\xae\x5f\x8e\xb0\xb7\x8e\x0e\x91\x1e\xfd\x8e\x70\x80\x3e\x8a\x7d\xf7\x71\x70\x6d\xd5\x41\x88\x52\xb7\xb7\x0b\x52\x44\x2d\x54\xc6\x08\xad\xd9\xba\xb2\x38\xc2\x1e\x7a\x06\x16\xb8\xb6\x77\x2d\xc4\x41\x03\xf1\x1f\xe7\x48\xbb\x74\x70\xf0\x09\x42\x79\x19\x22\xed\x22\x1b\x61\x07\xdd\xa5\xc0\xae\xd6\xb9\xde\x30\xc2\x86\x94\x79\x1a\xa5\x48\x63\x98\x8e\xf0\x91\x94\xcb\x18\x4d\xd6\xa1\x05\x27\xd8\xc2\x3d\x30\xe8\xbb\xd6\x5d\xcb\x41\x09\x8e\x41\x95\x3a\xe9\xfc\xe4\xa0\x82\x68\xc6\x01\xa7\x53\x2e\xb8\x1d\x04\x43\x2f\x30\xd0\x3b\x3d\xef\xf6\xb6\xc4\x87\x13\x1c\x8b\xbe\xe3\xa0\x63\x46\x79\x03\x73\x53\xb8\x44\xda\x8d\x51\x0e\xee\xa1\xd9\x60\x95\x72\x9b\x8c\x50\xde\x91\x32\xcd\xa3\x25\xd2\xa8\xe7\x08\x85\x4d\xc8\x0c\xe9\x31\x3f\x11\xb6\xe0\xa
|
2019-01-30 18:49:44 +00:00
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
func distAssetsChunk14332ce641d97e0c3ab7fcaJsBytes() ([]byte, error) {
|
2019-01-30 18:49:44 +00:00
|
|
|
return bindataRead(
|
2022-05-19 23:12:41 +00:00
|
|
|
_distAssetsChunk14332ce641d97e0c3ab7fcaJs,
|
|
|
|
"dist/assets/chunk.143.32ce641d97e0c3ab7fca.js",
|
2019-01-30 18:49:44 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
func distAssetsChunk14332ce641d97e0c3ab7fcaJs() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk14332ce641d97e0c3ab7fcaJsBytes()
|
2019-01-30 18:49:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.143.32ce641d97e0c3ab7fca.js", size: 10144, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
var _distAssetsChunk1786699fe92c4e5ffb04a1aJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x4d\x8f\xe2\x38\x10\xbd\xf3\x2b\x80\x43\xe4\x12\x6e\x4f\xd2\x8c\xe6\x03\xba\x98\x1d\xed\xee\x61\x0f\x2b\x56\x9a\xb9\x45\x51\x64\x48\x01\xee\x0e\x36\xed\x38\xf4\xa2\x90\xff\xbe\x72\x4c\x9a\x96\xb6\x39\xcc\x05\x2a\xe5\xf7\xaa\xca\xe5\x57\xf6\x51\xda\x61\x9e\xd3\x7e\x45\x36\x97\xb5\x33\xb9\xda\x1f\x8c\x75\x79\x3e\x67\x0c\x70\xd1\xf8\x75\xe2\x16\x9b\x69\x32\xfd\x32\xdb\xd4\x7a\xed\x94\xd1\x8c\xb8\x85\xe6\x45\xe9\xc2\xbc\x88\x9c\xa4\xca\x2d\x5a\x7a\xae\x95\x25\xfe\xd6\x5b\x60\x41\x1b\xa5\xa9\xe5\x9f\x92\xe9\x74\xe6\x69\xdc\xf4\x61\x1d\xd7\x03\x12\xf4\xaf\xcf\x57\x21\x73\x18\x28\x5c\x07\xc3\xf6\x91\xba\xe2\xbe\xd7\xce\xfc\xd5\x95\xf6\xc7\x49\xcb\xbd\x5a\xe3\xb5\x16\x68\x2c\xb9\xda\xea\x61\x82\x88\xd2\x6e\xeb\x3d\x69\x57\x89\x92\xf4\xd6\xed\xbe\x69\x36\x0e\x81\x4f\x3a\x1f\x4f\x08\x66\x6f\x1c\xae\xf3\xb0\xef\xd6\xca\x93\x38\x58\xe3\x8c\x3b\x1d\x48\x54\xa5\x5a\x93\x58\xcb\xb2\x64\xaf\xe1\x78\x02\xd0\xde\x28\xe9\xc7\x49\xbf\x5b\x4f\x9f\xa9\x3a\xe9\xf5\xaf\x66\x72\x6c\xfc\x9b\x35\xf1\xd6\x7e\x58\x93\x5a\x99\x31\x4f\x33\xce\x5e\x73\xbc\xa6\x30\x6c\xfa\xf1\x0b\xb4\x00\x9e\xf0\xf8\x5c\x93\x3d\xdd\x86\x7e\x9e\x4e\xbf\xf6\xd8\xe7\x5a\x2b\x77\x1b\xfa\x35\xf9\xd4\x21\x8f\x46\x15\x43\xc7\xc6\xb6\x3a\x1e\x6e\xa3\xef\xe3\xfb\x7b\x0f\x87\xb6\xe5\x06\x9b\x76\xd0\x83\x86\xce\xb7\xc3\x9f\xb6\x46\x93\x52\x36\x50\x1b\xd6\x85\x8c\x47\x88\x1a\xfa\x3e\xf5\x2a\x18\x78\xa4\xea\x90\xd8\xa8\x62\x46\xbc\x34\xb2\xa0\x62\x36\x4a\xf8\x05\x32\x6b\xda\x76\x70\xe1\xd9\x94\xb2\xd0\x3c\xd5\x47\xe0\x8a\x5f\x6d\x07\x5c\x89\x10\x01\x47\xf1\x75\xa1\x75\x62\x8f\x96\x13\xa6\x19\x77\x62\x89\xcc\x72\xc3\x35\x57\x5e\x99\x6a\xc3\x46\x26\x94\x2c\x31\xf9\x10\x0f\x36\xc6\xb2\x02\xe3\x79\xf1\x40\x17\x49\xcd\x8b\xc9\x04\x1a\xef\x3f\x4a\x9b\x76\xcc\x0c\x29\x2d\x32\x5e\xfb\x34\x39\xc6\xf3\xfc\xc1\xf4\xe0\x7c\x32\x01\x36\x4a\x22\x75\x3e\xcb\x05\x2a\x88\xa2\xe5\xea\x91\xd6\x4e\x3c\xd1\xa9\x62\x4e\x2c\x41\xd0\x91\xec\x89\x31\xc2\x85\x13\xcb\x94\x32\x66\xd2\x3c\x03\x80\x6f\x46\x54\x07\xaf\x10\x96\xdf\xdd\xf1\x04\x66\xac\xc6\x51\xc2\xd5\x83\x8c\x22\x26\x51\x01\xf8\x7e\xd6\xd0\x50\x8f\x2b\x3a\x5c\xd7\xc6\x12\x35\x83\xc1\x6b\xb3\xcb\x28\x62\x16\x4b\x68\xdb\xbe\x79\xad\x42\x75\x3e\x87\x0d\x7a\x42\x81\xd7\x0d\x2e\xe2\x28\xa2\xb4\xb8\x4b\xb2\xf4\x3e\x5b\xa8\x79\x71\x77\x07\x7e\x87\x18\x9c\x83\xce\xbe\x6c\xbd\xe5\x4e\x14\xd8\x5d\x09\xb8\xe8\xdb\x32\x34\x43\xa5\x87\x16\x9c\x30\xbe\xbb\x10\x45\x23\x6f\x52\x67\x5e\x1a\x10\xee\x86\x7f\xac\x39\x90\x75\x27\xbf\xc6\x1b\xd2\xf5\x9e\xac\x5c\x95\x34\x1b\xc5\x7c\x4b\x6e\x66\x53\x93\xb5\x7e\x20\x84\xe9\x93\x5c\xf8\xd7\x31\xda\xc9\x6a\xf9\xa2\xfb\x48\x41\x12\x1e\xca\x9d\xb0\x48\xb8\x68\xc6\xb5\x0e\xd9\x8a\xf1\x08\x3d\xc5\x6c\x86\x3f\x4e\xfb\x95\x29\xa3\x28\xfc\x0b\x67\x7e\x38\xab\xf4\xf6\xa7\xdc\xde\xae\xf0\xff\x58\xde\x1c\x65\x59\xd3\x6c\xfc\xb7\x29\xea\x92\xc6\x2d\xf0\x5b\xe4\x71\x9e\x53\x75\x81\xf5\xb4\x51\x1c\xf6\xa6\xf7\x85\x2f\x94\x91\x38\x48\xb7\xab\xbc\x32\x49\xac\x77\xaa\x2c\x2c\xe9\xf3\x99\x5d\x3f\x30\xcd\x80\x13\xf0\x37\xf7\x33\x36\xc9\xe7\x2f\xb3\xb8\x1d\x38\xb1\x14\x8f\x68\x71\x11\x23\x22\xa5\x36\xeb\x94\x60\x3b\x81\xf7\x68\xcd\x15\x4f\x25\xaf\x79\x9e\xa1\xe1\x25\xc6\x5e\x43\x52\x54\x66\x4f\x8c\x79\xea\x28\x50\x01\x82\xc6\xb5\x3f\xc8\xba\x3b\xc8\x9a\x6b\x88\x22\xe6\xc4\x3e\xd5\x19\xd6\xa9\xce\x3a\x01\xe6\x10\xe4\x93\x33\x07\xad\xa7\xd8\x28\xb2\xcc\xc0\xbc\x7c\x90\xbd\xa2\xca\xc9\x04\x14\xca\xb4\xf4\x13\xe7\x75\xe0\x07\x81\x52\x95\x85\xdf\x34\xce\x18\x70\x6f\x61\xdc\x4f\xb7\x13\x4b\x56\x80\xbf\x50\xb6\xa5\x59\xc9\xf2\xe7\x4e\x55\xe2\x85\x56\x07\xb9\x7e\xfa\x7d\x57\xeb\xa7\x77\x9e\xad\x5f\x80\x9e\xcf\x69\x36\x30\x62\x63\xec\x9f\x72\xbd\x63\x56\xac\x94\x2e\x98\xae\xcb\x92\xc7\x00\xdc\x88\x43\x5d\xed\xf0\xad\x3b\xb8\x82\xc3\x00\xb4\xc0\xbc\xc0\x96\x97\x0b\x8d\xa7\x1f\xe3\x24\x0b\xc7\xe2\x98\x7f\x2e\x01\xc2\x24\x6a\xbc\x85\xf2\xaf\xa2\x47\x05\x84\x06\xfe\xee\x53\x8c\xda\xa7\x1a\xfc\x17\x00\x00\xff\xff\x15\xfb\x74\x7d\xab\x07\x00\x00")
|
2019-01-30 18:49:44 +00:00
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
func distAssetsChunk1786699fe92c4e5ffb04a1aJsBytes() ([]byte, error) {
|
2019-01-30 18:49:44 +00:00
|
|
|
return bindataRead(
|
2022-05-19 23:12:41 +00:00
|
|
|
_distAssetsChunk1786699fe92c4e5ffb04a1aJs,
|
|
|
|
"dist/assets/chunk.178.6699fe92c4e5ffb04a1a.js",
|
2019-01-30 18:49:44 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
func distAssetsChunk1786699fe92c4e5ffb04a1aJs() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk1786699fe92c4e5ffb04a1aJsBytes()
|
2019-01-30 18:49:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.178.6699fe92c4e5ffb04a1a.js", size: 1963, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-04-07 20:21:26 +00:00
|
|
|
var _distAssetsChunk3312bf16a8aab827bcd7550Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6b\x73\xe4\xb8\x96\x20\xf6\x3d\xff\x82\xbf\xa4\xb8\x3b\x39\x64\x27\xc4\x4e\xa6\x1e\x55\x45\x89\x52\xe8\x51\xd5\x5d\xdb\x55\x5d\xb5\x25\xf5\xed\x7b\x47\xa3\x50\x40\x24\x52\x89\x29\x8a\xcc\x0b\x22\x4b\xca\x56\xe6\xc6\xce\xcc\xbe\x67\xed\x7d\xcd\x63\xed\x5d\x7b\x1c\x61\x7f\xb3\x67\xc3\xf6\xbe\x1f\xb6\x23\xfc\x53\xe6\x17\xcc\x4f\x70\xe0\x45\x02\x24\x98\x99\xaa\xaa\x9e\x3b\x1b\xd3\xdd\x11\xa5\x24\x70\x70\x00\x1c\x1c\x1c\x1c\x1c\x1c\x1c\xb8\x37\x69\x7e\x0d\xd3\xf3\x31\x2e\xfc\x3b\x74\x3d\x81\xf1\xfb\x93\xf1\x34\x7b\x7f\x85\x6e\xaf\x11\xb9\x82\x53\x9a\x5f\xe1\xdb\x49\x4e\xe8\x55\xb4\x3e\xe8\x7c\x7e\x71\xe9\xf9\x93\x69\x31\x76\x2f\x2e\xb6\xb6\x82\x4b\xf0\x30\xdc\xda\x0a\x42\x14\x1d\x3c\x14\x28\x1d\x01\xe4\xa3\x7b\x06\x59\x44\xae\xeb\x45\x07\x0f\xce\xb4\x40\xdd\x82\x12\x1c\x53\xa7\xf3\x01\x92\x2e\x8a\x1e\xb6\x77\x76\x9f\x84\xa3\x69\x16\x53\x9c\x67\x2e\x02\x14\x10\xef\x81\xe5\x61\x90\x45\x74\x8c\x8b\x5e\x8f\xfd\xeb\x5f\x5d\xa1\x7b\x8a\xb2\xa4\x98\xcf\x5d\x1c\xe9\x05\xbc\x07\x82\xe8\x94\x64\x2e\x8e\xde\x5c\xff\x16\x8a\xa9\x5f\x20\xfa\x96\xe4\x34\xa7\xb3\x09\x7a\x33\x9a\xcf\x1f\xae\xae\x26\xec\xfb\xea\x2a\xbc\xb8\x5c\xe0\xac\xa0\x30\x8b\x51\x3e\xea\x1e\x11\x02\x67\xbd\x9e\x89\x0d\xf9\x25\x78\x44\x17\xf3\xb9\x99\x3b\xca\x89\xcb\x9a\x47\xba\x38\xeb\x52\x4f\xd6\x38\x51\xd5\xf9\x63\x58\xbc\xb9\xcb\xde\x92\x7c\x82\x08\x9d\xf9\x31\x4c\x53\x97\xf5\xa9\xd7\x73\xd1\x05\xb9\x8c\xe8\x05\xb9\xf4\x16\x1e\x47\xb6\x00\x26\x6e\x3c\x72\x1d\x95\xe2\x6c\x44\x0c\x5f\x3e\xea\xd2\x5e\x2f\x9b\xa6\xe9\x46\x14\x51\x8f\x8e\x49\x7e\xd7\xcd\xd0\x5d\xf7\x7c\x36\x41\xcf\x09\xc9\x89\xeb\x9c\xa4\xb0\x28\xba\x92\x3c\xdd\x0f\x30\x9d\xa2\xae\xd3\x3f\xa3\x04\x67\x37\x2e\xf5\xfa\x4e\x17\x17\xdd\x2c\xa7\x5d\xd8\x8d\xf3\xac\xa0\x64\x1a\xd3\x9c\x74\x73\xd2\x65\x78\x1d\xaf\xa3\xea\xec\x12\xd7\x7b\xe0\xd4\xd6\xe0\x22\xb4\xc0\xbc\x79\x00\x55\xdd\x8c\x58\xc9\x28\x8a\xe8\xa1\x24\x40\x4c\x10\xa4\xc8\xa5\x5e\xe8\x12\x0d\x4c\xa3\x0c\x60\xad\x26\xde\xc2\xeb\xc8\x22\x09\x1a\xe1\x0c\x29\x4a\xb9\x14\x38\x57\x57\xa8\x78\x9d\x27\xd3\x14\x39\xe0\x81\xf7\x23\xdc\x18\x2c\x3c\x40\xfd\xa3\x38\x46\x45\x81\xaf\x71\x8a\xe9\xec\x35\xcc\xe0\x0d\x22\xd1\x87\x1c\x27\xdd\x01\x67\xa4\x3c\x22\xee\xb3\xc1\xf6\xd0\x03\x45\x44\xdc\xdd\x20\xd8\xf6\x00\x64\x69\xcf\x86\xdb\x1e\x88\x23\xe2\x6e\xed\xee\xec\x7a\x20\x8d\x88\xfb\x74\x7b\xdb\x03\xe3\x88\xb8\x3b\x3b\xcf\x76\x3d\x30\x65\x60\xbb\x5b\x81\x07\x46\x1a\x5b\x79\x0f\x25\x51\xa8\x5b\xf1\x64\x84\xe4\x88\x8e\x71\xe1\xcd\xe7\xec\x4f\x07\xfb\x57\x14\x91\x5b\x9c\xc1\x34\xa2\x00\xfb\x57\x04\x65\x09\x22\x67\x88\x7c\xc0\x31\x8a\x08\x4b\x4a\xf1\x07\xf4\x0e\xdd\xe0\x3c\x7b\x85\x33\x74\x92\x4f\x33\x1a\x0d\x58\x46\x3c\x86\xa4\x38\xcf\x4f\xf2\xac\x98\xde\xa2\xe8\xe2\x52\x4b\x3c\xca\xb2\x7c\x9a\xc5\x28\x72\x1c\x96\x0a\x75\x1a\x9c\x13\x84\xde\xe5\x39\x8d\x92\x3c\x9e\xde\xa2\x4c\x8d\xc0\xf3\x14\xb1\x2f\xd7\x49\xf0\x07\xc7\x6b\x2d\xc6\xa6\xc8\x11\xa5\x04\x5f\x4f\x29\x72\x1d\x92\x33\x92\x3b\x0a\xd7\xb2\x82\x31\x63\xb6\x57\xb8\xa0\x3e\x4c\x12\xd7\xb9\x67\x5d\xdf\x34\x40\x45\x69\x92\xdf\x9d\xe4\x19\x85\x38\x43\x64\x75\x23\x75\x68\x7b\xdb\x52\x5c\x50\x0b\xec\xea\xe6\x6c\x52\x82\x50\x59\x52\x56\x5d\x44\x17\x97\x1d\x35\x95\xb3\x68\xb0\x97\xed\x6b\xc3\xe8\x93\xfc\xae\xd8\xcb\xfa\x7d\xcf\x2c\x74\x91\x5d\x46\x6c\x78\x78\x27\x8e\xea\xe4\xf9\x36\x4f\x90\xdb\x6c\x21\x9c\x4c\x50\x96\x9c\x8c\x71\x9a\xb8\x0d\x74\x5e\x07\x8f\x58\x2a\xcd\x27\xc7\xf9\x34\x4b\x20\x99\xbd\xc8\xe3\x29\xef\x11\x62\x94\xd3\x39\x52\x88\xb9\x2e\xf6\xaf\xf2\xcc\x80\x76\x11\x18\x78\x0b\x56\xf3\x75\x4e\x69\x7e\xfb\x69\xa8\x02\x81\x4a\x6f\xe8\xe0\x92\x91\xf7\xf9\x07\x94\x51\x85\xce\x75\x46\x0c\x9e\x73\x66\x5b\xeb\xeb\x44\xbf\x30\x3f\xfd\x14\x65\x37\x74\xbc\x19\x2c\xc7\xbe\xa4\x4f\xa2\x02\x34\x22\xa8\x18\xbf\xcb\xef\x8a\x53\x7c\x8b\xb2\x02\xe7\x59\xe1\x2e\x61\xe1\xe6\x88\x94\xa3\xe5\x55\xf3\x97\xe3\x43\xd7\x7c\x06\x92\x88\x09\x2f\xe8\x9f\xe3\x5b\x74\x0c\x0b\x94\x94\x19\xae\x01\xef\x5f\xe3\x2c\x71\xb1\x57\x6f\x97\x68\x4d\x25\x04\x56\x4f\x88\x0a\xb6\xce\xe2\x2c\x67\x93\xf0\xac\x06\xa8\x39\x73\x20\xc1\x70\x93\xe5\x3
|
2019-01-30 18:49:44 +00:00
|
|
|
|
2022-04-07 20:21:26 +00:00
|
|
|
func distAssetsChunk3312bf16a8aab827bcd7550JsBytes() ([]byte, error) {
|
2019-01-30 18:49:44 +00:00
|
|
|
return bindataRead(
|
2022-04-07 20:21:26 +00:00
|
|
|
_distAssetsChunk3312bf16a8aab827bcd7550Js,
|
|
|
|
"dist/assets/chunk.331.2bf16a8aab827bcd7550.js",
|
2019-01-30 18:49:44 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-04-07 20:21:26 +00:00
|
|
|
func distAssetsChunk3312bf16a8aab827bcd7550Js() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk3312bf16a8aab827bcd7550JsBytes()
|
2019-01-30 18:49:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-04-07 20:21:26 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.331.2bf16a8aab827bcd7550.js", size: 338101, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _distAssetsChunk401018c1d72186cc4f1a80cJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xe9\x96\xdb\x36\xb6\x30\xfa\xbf\x9e\xa2\xc4\xf6\x61\x00\x0b\x62\x49\x76\x92\x73\xc2\x2a\x58\xcb\xb1\xcb\x9d\x74\xc6\x8e\x9d\x4e\x3a\x14\x9d\xc5\x92\xa0\x12\x62\x0a\x50\x48\xa8\x86\x14\xd9\x6f\x76\xd7\x7d\xa4\xfb\x0a\x77\x61\x03\x20\x41\x8a\xb2\xd3\xfd\x9d\xcf\x6b\xb9\xc4\x01\xc4\xb8\xb1\x27\xec\xe1\xec\xf1\xe8\xf4\x95\x2c\x4e\x73\xbe\x64\xa2\x64\xa7\x5c\xac\x65\xb1\xcd\x14\x97\xe2\x74\x97\xb3\xac\x64\xa7\x25\x63\xa7\xcb\xcd\x5e\xbc\x8b\x3e\x9e\xce\xa2\xe9\xec\x7f\x96\xb3\xd5\x7f\x3f\x99\xfd\xcf\xa7\xcb\xe5\xc7\xeb\x59\xf6\x3f\xd3\x65\xf4\x5b\x19\x7d\xfd\xe5\x8b\xcb\x6f\x5f\x5f\x46\xea\x4e\x9d\x3e\x3e\x3b\x41\xd7\xb9\xbc\xca\xf2\x37\x1b\x5e\x46\xb7\xec\x6a\x97\x2d\xdf\xbd\xd0\x75\xfc\xca\xb6\x57\xac\xf8\x35\xdb\x2b\xf9\x2b\xdf\xee\x64\xa1\x7e\xa5\x7f\xbe\x68\x55\x25\x29\x8e\x76\xfb\x72\x83\x92\xe4\xe3\xe9\x2c\x25\x0f\x4f\x3f\xfe\x9f\x18\x31\xa2\x88\xc0\xf4\xd9\x43\xb0\xd7\x1d\x56\x05\x5f\xaa\xe0\x64\xbd\x17\x4b\x18\x48\x81\x18\x7e\x28\x98\xda\x17\xe2\x94\x85\x21\x8b\x78\xf9\x92\x95\xcb\x82\xef\x94\x2c\xe6\xc1\xaa\xb9\x0e\x62\xb1\xcf\x73\x4a\x29\x9b\x07\xfa\x2a\x88\xd5\xfd\x8e\xc9\xf5\x29\xab\x9b\xca\xb8\x69\x8d\x70\xfc\x70\x93\x15\xa7\x92\x3e\x2c\xa5\x58\xf3\xeb\x7d\x91\x5d\xe5\x2c\x1e\x4d\x09\x13\xfb\x2d\x73\x77\xf5\x49\xb0\x17\x2b\xb6\xe6\x82\xad\x82\x11\xa5\x05\xe2\x78\x2e\xa3\x6b\xa6\x28\x8f\x91\x8c\x6e\x0b\xae\x74\x51\x3a\x9a\x11\x19\xdd\x64\xf9\x9e\x51\x81\xc9\x77\x57\xbf\xb1\xa5\x8a\xcc\x87\xdf\x17\x72\xc7\x0a\x75\x0f\x2d\x4b\xdc\xf6\x45\xea\x27\xf8\x61\xc5\x72\xa6\xd8\x29\x8b\x7e\xfd\x75\x97\x15\x4c\xa8\x37\x05\x63\xdf\xca\x15\x23\x2a\x0c\x8f\xd5\x14\xf4\x0b\x07\xe4\x01\x9a\x8f\x15\x79\xdf\x88\x66\xb5\xd7\x81\xd2\x74\x40\xe9\xb5\xbb\xca\xf7\x6c\x57\x70\xa1\x28\x23\xe6\xc1\x9e\xe7\x2b\x56\x94\x54\xd5\x22\x2a\x90\xc2\x44\x44\x2b\xa4\xc8\xc3\x8a\xad\xb3\x7d\xae\x62\x84\xe9\xb3\x7d\x8d\x49\x19\xed\x0a\xa9\xa4\x9e\x6b\xfa\x60\xbf\x7a\x25\x8b\xd8\x35\xe3\x2d\x5f\xa7\xe2\x44\x2f\x6c\x5a\x55\x9d\x87\x91\xad\xbd\x26\xf0\xa4\x53\x89\x5e\x30\x45\x04\x7d\xa8\x4f\xfc\xfa\x76\x85\x5c\xb2\xb2\xd4\x93\x80\x1e\x0a\x29\x55\xdc\x1d\x50\x4d\x04\x26\x12\x29\x2a\x22\xfd\x96\x30\x4c\x54\x4d\xbc\xaf\xbc\x46\x00\x12\xa1\x21\x4e\xed\xd4\xbf\x63\xf7\x25\x62\x98\x94\x54\x57\xeb\x5a\xe6\xd1\x5a\x16\x97\xd9\x72\x83\x50\xf3\xb5\xfb\x92\x48\xb2\x27\x39\x65\x89\x48\x4f\x38\x6d\xc6\xf6\x4a\x16\x28\xc7\x44\xd2\x2c\xd1\x17\x69\x55\x65\x6e\xb4\x04\xed\x29\x47\x1a\x2e\x73\x22\x31\x0e\xc3\xee\xa8\xf6\xc9\x2c\x25\xfb\x64\x9a\x12\x85\x6b\x0c\x83\xd1\x63\x52\x75\x7d\xb2\x94\xa2\x54\xa7\x19\x7d\x68\xb7\xc1\xc1\x70\x02\xf7\x20\xa0\xd4\xee\x08\x11\x95\x4c\xed\x77\x61\x68\x2f\x00\x10\x88\x30\x10\x3c\xb7\x9b\xc4\xdc\xe1\xd8\xdc\xde\x48\xbe\x3a\x9d\x92\x76\xb8\xcd\xaa\x0a\xbd\x1f\xa2\x65\x96\xe7\x48\x4f\x91\xe9\x64\x4d\x24\xcc\xdf\xe0\xe4\x16\x44\x92\xd2\x5b\x47\xd3\x42\x89\x49\x41\x4b\x22\xa9\x3a\xb2\x81\x0a\x0d\xf6\x5b\xa6\xb2\x06\xd8\x1f\xde\xb1\xfb\x58\x12\x3d\xaa\x38\x10\x7a\x1b\xd4\x3d\xf0\x9f\xf5\xc1\x9f\x24\x25\x11\x69\x4d\x1c\x18\xf7\xfb\x67\x07\x8f\xeb\x9a\xec\xf5\xb4\xfa\x3d\x88\x39\x59\x16\x2c\x53\x5d\x90\x31\x63\x12\xd4\x9b\x99\xb5\x2c\x90\x7e\xc8\x88\xa2\x59\x71\xbd\xdf\x32\xa1\x4a\xbd\x80\x82\x3e\x2f\x8a\xec\xbe\xdd\x32\x51\xa9\x91\xb7\x99\xbd\xa6\x24\x99\xe9\xa9\x98\x9e\x17\x17\x22\xca\x99\xb8\x56\x9b\xf3\x62\x3c\xc6\x7c\x8d\x18\x15\x49\x91\x62\x57\x3f\x3f\xe5\xe2\x94\x61\xb3\x36\x23\x4a\x59\xc2\xd3\x30\x44\x2a\xe1\x29\x5c\xe3\x66\xa7\xd4\xe8\xa1\x26\x19\x41\x8a\xaa\xaa\x7a\xa8\xb1\x83\xca\xa6\x84\x60\xb7\x80\x10\x84\x7d\x85\x54\x64\x30\x0c\xae\x89\xb9\x18\xda\xd1\xfe\x23\xbe\x46\x81\x59\xf4\x16\xd0\x58\x18\x6a\x54\xac\xbb\x86\x1d\x0e\x3f\x40\x74\x35\x62\xb8\x26\x7a\x61\xff\x17\x9b\xd0\xd5\x41\xc5\x75\x4d\xfe\xfb\xe9\xd3\xcf\x86\x96\xec\x64\xd4\x3c\x34\x3b\xc5\x27\x40\x87\x0d\x45\xec\x4e\x13\xb2\x72\xde\x5c\x51\x15\xad\xe4\x12\x16\x6d\xae\xeb\x18\x4d\x71\xdc\xeb\xef\x88\x35\x45\xb0\xda\x14\xf2\x16\x66\xfa\xb2\x28\x64\x81\x82\xdf\xfe\xbe\x67\xc5\xfd\x69\xc1\x7e\xdf\xf3\x82\x95\xa7\xd9\xe9\x2d\x17\x2b\x79\x7b\x7a\xcb\xd5\xe6\x34\x3b\x75\x5f\x0
|
|
|
|
|
|
|
|
func distAssetsChunk401018c1d72186cc4f1a80cJsBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distAssetsChunk401018c1d72186cc4f1a80cJs,
|
|
|
|
"dist/assets/chunk.401.018c1d72186cc4f1a80c.js",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distAssetsChunk401018c1d72186cc4f1a80cJs() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk401018c1d72186cc4f1a80cJsBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.401.018c1d72186cc4f1a80c.js", size: 185484, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _distAssetsChunk401018c1d72186cc4f1a80cJsLicenseTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x91\xc1\x6e\xda\x4c\x14\x85\xf7\x3c\xc5\xf9\x77\x7f\x49\x18\x1b\x63\xaa\x84\x55\x2b\x42\x25\x52\xda\x92\x0c\xad\xd4\xee\x06\xfb\x82\xc7\xb2\x67\x9c\x99\x6b\x47\xf0\xf4\x95\x1d\x08\x34\x4d\x97\x55\xbd\x1a\xeb\x8e\xcf\xb9\xdf\xe7\xa0\xff\x5f\x0f\x7d\xbc\xb3\x0d\xb9\x46\xd3\x23\xee\xe5\xb7\x25\x06\x50\x60\x6d\x76\xd0\x65\x55\x50\x49\x86\x15\x6b\x6b\x60\x37\x58\x3a\x5b\x6a\x4f\x3e\x78\x7f\x21\xba\x2f\x13\x5b\xed\x9c\xde\x66\x8c\xe9\xf3\xe9\xff\xe4\x0d\xa2\x70\xf8\x16\xdf\x29\xab\x53\x85\x8f\x8a\xf7\x97\x58\xd9\x12\x37\xaa\xa0\x4b\x48\xa6\x8d\x32\x58\x92\x31\xe4\xa0\x4c\x8a\xc4\x1a\x76\x7a\x5d\xb3\x75\xbe\x8b\x2d\x74\x42\xc6\x13\x80\xc5\xd3\x29\x45\x6d\x52\x72\xf8\x34\x5f\xe1\x30\x6c\x2f\x9e\x3d\x92\x08\x19\x73\xe5\x27\x41\xe0\xd4\xa3\xd8\x6a\xce\xea\x75\xed\xc9\xb5\xe9\x64\x58\x24\xb6\x0c\x58\x17\x29\x69\x1b\x38\xdf\x54\x22\xf7\x41\xa9\x3c\x93\x0b\x16\xf3\xe9\xec\xb3\x9c\x75\xdd\x0d\x39\xdf\xe2\x02\xb1\xb8\x12\xf1\xc5\x66\x33\x0c\xc3\xf8\x7a\xdd\x43\x3f\xe8\xf5\x0e\xca\xee\xbe\x1a\xcd\x88\xc4\xf0\x4a\x84\xed\xfb\xb1\xf9\xa1\x36\x9a\x73\xdf\x75\xf5\xd0\x6f\x47\x27\x31\x5f\x2a\x32\xb7\x12\x1f\x6c\x6d\xd2\x27\xa5\x2d\xbc\xe5\x8c\xdc\x6f\x0a\xee\xa9\x20\x75\xe2\xe6\x8c\x5e\xb2\x1f\x2b\xf3\x87\x9a\xdc\x4e\x58\xb7\x0d\x4e\xd3\xd3\xa6\x52\xef\xf7\x05\x61\x2a\x25\x24\x15\x94\xb0\x75\x98\x99\xad\x36\x84\x26\x12\x23\x31\x3e\xcf\xf2\xdd\xe5\x3f\xed\xff\x17\x76\xf7\x62\xf3\x9c\x78\x2c\xbc\x51\x4c\x13\x44\x61\x14\x0e\xc2\xd1\x60\x18\xff\x82\x93\xdf\xb5\xb4\xb8\x55\x8d\x92\x89\xd3\x15\x63\xa1\xd7\x4e\xb9\x1d\x9a\x91\x18\x8b\xe1\x2b\x66\xce\x58\xe6\x26\x29\xea\x94\xfc\xc1\x8a\xc8\xfd\x3f\xa5\x7f\xed\xcf\xbd\x34\x30\x1e\x84\xf1\x2a\x8a\x26\xf1\xf5\x8f\x4e\xc4\xcf\x00\x00\x00\xff\xff\xe5\x86\xc1\xba\xb4\x03\x00\x00")
|
|
|
|
|
|
|
|
func distAssetsChunk401018c1d72186cc4f1a80cJsLicenseTxtBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distAssetsChunk401018c1d72186cc4f1a80cJsLicenseTxt,
|
|
|
|
"dist/assets/chunk.401.018c1d72186cc4f1a80c.js.LICENSE.txt",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distAssetsChunk401018c1d72186cc4f1a80cJsLicenseTxt() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk401018c1d72186cc4f1a80cJsLicenseTxtBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.401.018c1d72186cc4f1a80c.js.LICENSE.txt", size: 948, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
var _distAssetsChunk96385f0012321e24fd6b00eJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xed\x72\x24\xb9\x91\x20\xf8\x9f\x4f\x91\x8c\xeb\x8e\x0a\x54\x22\x83\x11\xc9\x8f\x62\x05\x09\xa6\x55\x77\x55\x4f\xb7\xa6\x58\xec\x6b\xb2\xd5\x5d\x13\x0c\x65\x83\x11\xc8\xcc\x10\x23\x11\x59\x08\x24\xc9\x2c\x66\x98\x9d\xe6\x24\x9d\x4e\xb7\x66\xf7\x0a\xbb\xab\x9d\x69\x8d\x66\x76\x75\x3a\xcd\xd8\xd9\x8c\xcd\xda\x9a\xed\xec\xef\xfd\x4d\xfe\xbd\x17\xd8\x57\x38\x03\x10\xdf\x19\x59\x55\xdd\xd2\xcc\x69\x64\x5d\xd6\xcd\x44\xe0\xc3\xe1\x70\x38\x1c\xee\xf8\x70\x6c\x3d\xdc\xec\x7c\x14\xb3\x4e\x14\xfa\x84\x26\xa4\x13\xd2\x51\xcc\xa6\x98\x87\x31\xed\xcc\x22\x82\x13\xd2\x49\x08\xe9\xf8\x93\x39\xbd\x34\x1f\xef\x6d\x9b\xfb\xbb\x23\xcb\xb2\xfb\xdb\x7d\x9b\xf4\x77\x46\xc1\xde\x85\x65\x11\xf3\x87\x89\xf9\xfc\x93\x0f\x9f\xbd\x38\x7d\x66\xf2\x1b\xde\x79\xb8\xb5\x61\x8c\xa3\xf8\x02\x47\x67\x93\x30\x31\xaf\xc9\xc5\x0c\xfb\x97\x1f\x0a\x18\x43\x32\xbd\x20\x6c\x88\xe7\x3c\x1e\x86\xd3\x59\xcc\xf8\x10\xbd\x7b\xd6\xe5\xd2\xf5\x80\x39\x9b\x27\x13\xc3\x75\x1f\xef\x6d\x7b\xf0\x76\x6f\x7b\x77\xd7\xe1\xe8\xe8\x56\x9b\x0b\x5c\x39\x0b\x7d\xae\x6d\x5c\x61\xd6\x21\x68\x34\xa7\xbe\x68\x89\x01\x6e\xf3\x60\x87\x1b\x1c\x12\x70\x3b\x8a\x99\x21\x32\x51\x64\x1d\xd0\x43\x62\x46\x84\x8e\xf9\xe4\x80\x76\xbb\xe0\x56\xc4\x33\x44\x5c\xea\x6d\x30\x93\xd0\xf9\x94\x30\x7c\x11\x11\x54\xfd\x58\x2e\x37\x6d\xc8\x4c\x3f\xa6\xa3\x70\x3c\x57\xe9\x9b\x16\xd4\xae\x70\x34\x27\x5a\x48\x3b\x4c\xd7\x0d\x66\x5e\xb3\x90\x67\x69\x00\x9e\x5c\xfc\x90\xf8\xdc\x0c\xc8\x28\xa4\xe4\x53\x16\xcf\x08\xe3\x0b\x83\x43\x66\x5e\x92\x05\x64\x20\x4d\x19\xe1\x73\x46\x3b\x05\xde\x04\x52\xc8\xc0\x6d\x16\x4d\x75\x9d\x1b\xc4\x9c\xb1\x98\xc7\x7c\x31\x23\x90\x02\xc8\x64\x1c\x64\x00\x92\x34\x35\x00\xa4\xc8\x75\x6f\xfd\x38\x8a\x99\xa3\x59\xb0\x23\xfe\xd3\xa0\x1f\xe1\x24\x71\x34\x4c\x93\xb0\x77\x11\x61\xff\x52\x4b\x61\x9e\xc9\xde\x7f\xd4\x96\x8d\x91\xa0\x92\xc9\x82\x1d\x95\xaf\x9e\x69\xcc\x08\xa1\x4d\x58\x6d\x19\x17\x24\x8a\xe2\xeb\x3a\x40\x05\xb3\x89\xdc\x9c\xb4\xe0\xb6\x92\x6f\x8a\xc7\x84\x72\xdc\x82\xe1\x4a\x56\x7f\x81\xab\x28\xf6\x77\x77\x61\xf6\x7f\x3d\xdf\xf5\x24\xe4\x44\x4b\x3d\x58\x90\x6f\x7f\x17\x76\xd4\xff\x0d\x24\x59\x38\x9e\xf0\x15\x42\x0a\xa8\x6f\xca\xbf\x42\x51\x59\xa0\xd9\x3b\x2a\x6f\x93\xb0\x32\x6b\x56\x41\x6b\x81\x15\x02\xe7\xc8\xaf\xb4\xb3\xc0\xbe\x46\xe9\x02\xf9\x75\xf9\x57\x29\xbe\x9f\xa3\xb4\xae\x48\x0b\xe5\xdf\x5c\x20\xef\x02\x0f\xb2\x35\x43\x17\xdc\x6e\x16\x09\x72\x18\x87\x23\x63\xd3\xe0\x9d\x90\x26\x1c\x53\x9f\xc4\xa3\x0e\x01\x80\x4f\x58\x7c\xdd\xa1\xe4\xba\x73\xb6\x98\x91\x67\x8c\xc5\xcc\xd0\x3e\xc4\x94\xc6\xbc\xe3\xe3\x28\xea\xe0\x8e\xac\xbd\x83\x93\x0e\x2e\x06\x9b\x06\x52\x83\x4f\xc2\x04\x72\x00\xc5\xaf\x39\x1a\x23\xf9\x7b\x91\xfd\x8e\xc6\x43\xce\xe6\x44\x36\x27\x4f\xa9\xc4\xd0\x79\x14\xa9\x82\xaa\x39\xc8\x52\x5f\x01\xf1\x63\x26\x05\x6a\x82\x5c\x2f\x1f\xe2\xc4\xe0\x50\x96\x70\x6f\x2f\xc9\xc2\xd1\x48\xe2\xe3\x19\xf9\x28\x66\x1f\xf3\x69\xa4\x41\x29\x46\x9c\x52\x0e\xe4\x32\xc0\x10\xad\xe2\xc0\xac\x65\x37\x08\x48\x53\xa8\xe0\x44\x21\xbd\x0c\x47\x8b\xb7\x43\xc8\x32\x56\xcb\x8a\xbe\x38\x8b\xdb\x11\x80\xb4\x09\xa0\xcc\x2d\x53\x1b\x50\xbe\x97\xc4\xf4\xdd\xa1\x88\xdc\x6d\x50\xce\xc8\x0d\x7f\x7b\x53\xca\xbc\xb2\x35\x1e\x80\x82\xba\x19\x61\x13\xc2\xe7\xb3\x4f\x71\x44\x38\x27\x2b\xa0\xc0\xad\xec\xa2\x4f\x9f\x3c\x7f\x76\x76\xf6\x6c\xf8\xe1\xc9\xf3\x93\xcf\x4e\x91\xeb\x6d\xe4\xd3\x03\x47\xd6\x01\x3f\xec\x1f\x74\xbb\x1c\xe4\x71\x04\x59\x07\xe4\x70\xff\xa0\xdb\x25\xa0\xa5\xb8\x9a\x9e\xa8\xcb\x3d\x97\x78\xa6\xe4\x0d\x50\xc0\x63\xc8\xb5\xe0\xe3\x5d\x68\x6f\xef\x42\xfb\xd1\x2e\xec\xdb\x52\x14\x79\x30\x44\x55\xc6\x2e\xe9\xd4\x61\x2e\xf7\xba\x1a\xec\x68\x5d\xe6\x92\x22\x44\xbd\x14\x62\x64\x1d\xe0\xc3\xbd\x83\x6e\x17\x17\xb8\xc5\xc8\x3a\x88\x65\x5c\x5c\xc4\xf9\xc8\x3a\xf0\x65\x9c\xbf\x1e\xdf\xd0\xc0\x30\x86\x3e\x28\x51\x4d\xd0\x3e\x9c\x23\xeb\x60\x7e\xd8\xdf\x39\xe8\x76\xe7\x30\xe9\x22\xdb\x7a\x13\x84\x04\x26\x30\x01\x65\x1f\xbe\x99\xa7\x79\xd1\x44\x6e\x32\x32\x8b\xb0\x4f\x8c\x2d\x57\x3f\x3c\x3a\xd7\xbc\xad\xf1\x14\x1a\xab\x39\x35\x5d\x43\x88\x0f\x34\x1d\x4f\x67\x07\x9a\xf3\x40\x7b\xa0\x3e\x5f\xcd\x63\x7e\xa
|
2022-04-07 20:21:26 +00:00
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
func distAssetsChunk96385f0012321e24fd6b00eJsBytes() ([]byte, error) {
|
2022-04-07 20:21:26 +00:00
|
|
|
return bindataRead(
|
2022-05-19 23:12:41 +00:00
|
|
|
_distAssetsChunk96385f0012321e24fd6b00eJs,
|
|
|
|
"dist/assets/chunk.963.85f0012321e24fd6b00e.js",
|
2022-04-07 20:21:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
func distAssetsChunk96385f0012321e24fd6b00eJs() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk96385f0012321e24fd6b00eJsBytes()
|
2022-04-07 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.963.85f0012321e24fd6b00e.js", size: 931770, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2022-04-07 20:21:26 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
var _distAssetsChunk96385f0012321e24fd6b00eJsLicenseTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xdf\x6e\xe3\x28\x18\xc5\xef\xfd\x14\xa7\x73\x35\x53\xa5\x76\xdb\xd9\x3f\x52\xef\xa8\x8d\x13\x76\x1d\xc8\x02\x69\x34\x97\xa9\x43\x62\x3a\x89\x89\xc0\x6e\x94\x3e\xfd\x0a\x3b\x5d\x75\x66\x6f\xc7\x92\x8d\x41\xe7\x77\x38\xa0\xef\xcb\xae\xaf\x12\x5c\xa3\xec\x83\x49\x5f\x02\x5e\xbf\xa6\x7f\xa4\x77\xb8\x41\x65\x77\x4d\x77\x32\xf1\x8b\x6d\xff\xf6\x76\xbe\x09\x66\xed\xeb\x06\x9f\x9b\xae\x3b\x3e\x64\xd9\xb6\x0f\xe6\x25\xa4\xd6\x7d\x89\x7c\x7c\x73\x77\x3c\xfb\x01\xf8\x5c\x7f\xc1\xfd\xed\xdd\xfd\xcd\xfd\xed\xdd\x9f\xf8\xdb\x7a\xb7\xdf\xbb\x00\x69\xc3\xf7\xff\xf8\xef\xd6\xbb\xf4\x60\x06\x9a\xec\xf7\x90\x91\x0c\x90\x26\x18\xff\x6a\x36\x29\xc8\x71\x5d\x37\x06\xca\x6d\xbb\xd3\xda\x1b\x54\xb6\x36\x6d\x30\xb8\x4f\x6f\xdf\x77\xbc\x58\x9d\x4e\xa7\x74\x3d\xa8\x53\xe7\x77\xd9\x7e\x14\x86\xac\x62\x39\xe5\x8a\xde\x8c\x44\x96\x24\xd9\xf5\x15\xae\x7f\xe5\x93\xfc\x78\xe6\xb9\xad\xbd\x0b\x6e\xdb\x21\x77\xfe\xe8\xfc\xba\xb3\xae\x4d\x93\x64\x61\xfc\xc1\x86\x60\x5d\x8b\xce\xa1\x0f\x66\x82\xda\x1d\xcf\x13\x1c\xdc\xc6\x6e\xcf\x13\xac\xdb\x4d\xe6\x3c\x36\x36\x74\xde\x3e\xf7\x9d\x41\xd7\xd8\x80\xf0\x7e\xf6\xad\xf3\x58\xb7\xe7\xe4\xd8\xfb\xa3\x0b\x06\x27\xdb\x35\x70\x7e\x18\x5d\xdf\x61\x6b\x0c\x6c\x40\x63\xbc\x79\x3e\x63\xe7\xd7\x6d\x67\x36\x69\x92\xe8\x19\x85\x12\xa5\x5e\x11\x49\xc1\x14\x16\x52\x3c\xb1\x82\x16\xf8\x44\x14\x98\xfa\x04\xc2\x0b\x44\x11\x59\xea\x99\x90\x28\x98\xca\x2b\xc2\xe6\x0a\xa4\xaa\xb0\x22\x52\x12\xae\x19\x55\x58\x31\x3d\x4b\x24\x9d\x12\x59\x40\x0b\xe8\x19\x53\x1f\x8c\x79\x5e\x2d\x0b\xc6\xa7\x03\xc5\xe6\x8b\x8a\xd1\xe2\x23\x2d\x4a\xcc\xa9\xcc\x67\x84\x6b\xf2\xc8\x2a\xa6\xbf\x25\x71\xe3\x92\x69\x4e\x95\x4a\xc1\x38\xb8\x00\x7d\xa2\x5c\x43\xcd\xa2\xc9\x87\x4c\x8f\x14\x15\x23\x8f\x15\x45\x29\x24\x08\xff\x06\xb5\xa0\x39\x23\xd5\x04\x05\x93\x34\xd7\x93\x84\xf1\xcb\x1f\x84\x44\x2e\xb8\xa2\xff\x2c\x29\xd7\x8c\x54\x28\xc8\x9c\x4c\x63\x84\x11\x7d\x9f\xae\x66\x44\x2b\x41\x9f\xa8\x84\xa4\x6a\x59\xe9\x98\xbe\x94\x62\x9e\x54\x42\x0d\x81\x97\x8a\x4e\x50\x10\x4d\x22\xba\x90\xa2\x64\x5a\x4d\xb0\x9a\x51\x3d\xa3\x32\x26\x26\x1c\x24\xd7\x4c\xf0\xa8\xce\x05\xd7\x92\xc4\x04\x9c\x4e\x2b\x36\xa5\x3c\xa7\x10\x32\x11\x83\x5a\x0b\xa9\x99\x58\xaa\x0b\x30\x01\x91\x4c\xc5\x1d\xc5\x52\x47\x5a\x0c\x86\xb9\xe0\x9c\x8e\x8e\xf1\xba\x87\x3b\x58\xaa\xc1\x66\x41\x65\x29\xe4\x9c\x0c\xae\xe5\x8f\xd7\x9f\x26\xbf\xb4\xa4\xc7\x46\xc9\xae\x7e\x6a\xe7\xbf\x14\x4a\xd7\xb7\x9b\xa1\xa4\x63\xbd\xc2\x75\x8d\xf1\xa8\x5d\x3b\x96\xac\xf3\x61\xe4\x76\xb6\x6b\xfa\xe7\xb4\x76\x87\xec\xe0\x0e\xa6\xed\x2e\xc3\x4d\x67\x0f\xe6\xcd\xb5\x66\x94\x5d\xba\x14\x0f\x98\x33\x3d\x2e\xfd\xa4\x4b\x5f\xc2\xc7\xf5\xff\x4f\xb1\x77\xf5\x7a\x6f\x62\x86\xad\xdd\xf5\x63\xbb\x8d\x9a\x57\xe3\x87\x76\x7b\xc0\x6d\xfa\x7b\xfa\xf5\xb7\xe4\xdf\x00\x00\x00\xff\xff\x9b\x98\x3b\xc6\xe8\x04\x00\x00")
|
2022-04-07 20:21:26 +00:00
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
func distAssetsChunk96385f0012321e24fd6b00eJsLicenseTxtBytes() ([]byte, error) {
|
2022-04-07 20:21:26 +00:00
|
|
|
return bindataRead(
|
2022-05-19 23:12:41 +00:00
|
|
|
_distAssetsChunk96385f0012321e24fd6b00eJsLicenseTxt,
|
|
|
|
"dist/assets/chunk.963.85f0012321e24fd6b00e.js.LICENSE.txt",
|
2022-04-07 20:21:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
func distAssetsChunk96385f0012321e24fd6b00eJsLicenseTxt() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk96385f0012321e24fd6b00eJsLicenseTxtBytes()
|
2022-04-07 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.963.85f0012321e24fd6b00e.js.LICENSE.txt", size: 1256, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2022-04-07 20:21:26 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
var _distAssetsNomadUi5e1f695edd3f904b7aa332b07823351bCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\xfd\xdb\x8e\xec\x3a\x92\x20\x88\xfe\x8a\xd7\x4e\x2c\x60\x47\x6d\xb9\xa7\xfc\x1a\x37\x74\xa2\x4e\x17\xd0\xa7\x0b\xe8\x0b\xd0\xd9\x05\x74\x23\x91\x0f\x72\x17\x3d\x42\xbd\xe4\x92\x4a\x2e\x5f\x2b\x22\xbd\x63\x30\x4f\x03\xcc\xeb\x7c\xc2\xfc\xc4\x3c\xcc\xdb\x7c\xca\x7c\xc9\x40\xbc\x89\x46\x9a\x91\x94\x3c\xa2\x36\x22\x73\xaf\x08\xd1\xcc\x68\x34\x1a\xcd\x8c\x37\xe3\x3f\x1c\x5e\xb3\xf6\xcc\xba\xd9\x2f\xff\xfc\x5f\xff\xdd\xfc\xe1\x97\xe7\xc5\xb1\x64\x6f\xf3\x53\x76\xae\xab\xf6\x3d\x59\x14\xe7\x79\x76\x3e\xd7\x87\x22\xeb\x8a\x1f\xec\x7a\xca\xda\x97\xa2\x9a\x77\x75\xf3\x34\x5f\xdc\x6f\xd9\xe9\x63\xb1\xbf\x74\x5d\x5d\x25\x8b\x43\xd6\xe6\xf3\x57\x96\xe5\xac\x9d\x17\x87\xfe\x4b\xce\x4a\xd6\xb1\x64\x71\x2c\x4a\x36\x3f\x74\x99\xfc\xad\xca\x4e\x2c\x59\x14\x55\x73\xe9\x92\xc5\xa9\xce\xb3\x72\x7e\x28\xeb\x33\x4b\x16\x55\xf6\x63\x9f\xb5\xf3\xfd\xa5\x7d\x61\x6d\xb2\x68\xb2\x97\xa2\xca\xba\xa2\xae\xe6\xac\x2c\x8b\xe6\x5c\x9c\xc1\xc7\xb2\xa8\xbe\x83\x0f\x15\x7b\xeb\xc0\x87\xa6\x65\x3f\x8a\xfa\xd2\xa3\xb5\xf5\x4b\xcb\xce\xe7\x64\x71\x66\x25\x3b\x74\x33\xf1\x4f\xb2\xe8\xd8\x5b\x97\xb5\x2c\xbb\xce\x4f\xf5\xdf\xe6\x59\xd3\xb0\xac\xcd\xaa\x03\x7b\xaa\xea\x8a\x3d\xcf\x7f\xb2\xfd\xf7\xa2\xb3\xbf\x7f\xec\xeb\xfc\x3d\xe9\xff\xf3\xa7\x05\x3b\xed\x59\x3b\xff\x51\xb0\x9f\xc9\x6b\x77\x2a\xaf\xaf\xac\x78\x79\xed\x9e\x96\x69\xfa\xed\xf9\x67\x91\x77\xaf\xfc\xd7\x5e\x4e\xa7\x86\xb5\xf3\x92\x1d\x3b\x25\xc6\xfe\xf7\xa7\xe5\x62\xdb\x0a\x39\xf2\xf2\xb6\xc7\x56\x00\xad\x20\x25\x20\xfe\xf8\xf7\x7f\x37\xdb\x5f\xca\x53\xb6\x28\xea\xd9\x8f\x74\xf1\xb8\x58\xcf\xfe\xe7\xec\x3f\xfe\xd3\x7f\x9d\xfd\x87\xe2\xc0\xaa\x33\x9b\xfd\xcf\xd9\x4b\xd1\xbd\x5e\xf6\x8b\x43\x7d\xfa\xe3\xff\x78\xe9\x5e\x4f\xe7\x3f\x72\x8c\xd9\xdf\xff\x51\xf7\x93\xaf\x37\x3e\x53\xe2\x94\x9c\xb3\xb2\x78\xa9\xe6\x45\xc7\x4e\xe7\xa7\x03\xab\x3a\xd6\x3e\xef\xeb\x36\x67\xed\xd3\xb2\x79\x9b\x9d\xeb\xb2\xc8\x67\x5d\x9b\x55\xe7\x26\x6b\x59\xd5\xc9\xc2\x79\x9b\xe5\xc5\xe5\xfc\xb4\x6a\xde\x9e\xf7\xf5\xdb\xfc\xfc\x9a\xe5\xf5\x4f\xd1\x49\x79\x71\x6e\xca\xec\xfd\xa9\xa8\xca\xa2\x62\xf3\x5e\x81\x9f\x8f\x75\xd5\xcd\xcf\xc5\xdf\xd8\xd3\xb2\x65\xa7\x67\xd9\x29\xab\xc5\x6a\xcb\x4e\xcf\xff\xe3\x72\xee\x8a\xe3\xfb\xfc\x50\x57\x1d\xab\xba\x27\xae\xf2\xe7\x2e\x6b\xbb\x67\x4e\x41\x75\xe1\x62\xfb\xdc\x64\x79\x5e\x54\x2f\xf3\x7d\xdd\x75\xf5\xe9\xe9\x90\x95\x87\x5f\x17\xeb\x5e\xf3\x67\xf3\xd9\xb2\x79\xbb\xd3\x10\xbc\x33\x45\xf9\x6e\x85\x94\x8b\xbe\xf4\x00\xf4\x83\x0a\xa3\x5f\x9f\x8b\x5e\xb4\x4f\x2d\x2b\xf9\x20\x7c\xfe\xc1\xda\xae\x38\x64\xe5\x9c\x8b\xf2\xa9\xab\x1b\x35\x0a\x9f\xb2\x43\x0f\x91\xa8\x3f\x8f\xf5\xa1\xef\x0a\xd5\xe5\xba\x58\x7f\x30\x01\x7a\x4d\x80\x10\xfc\x8b\x04\xe1\x1a\xa2\x8b\xc5\x5f\xaa\xe8\x3c\x17\xdf\xb5\x8e\x0d\x5f\x06\x6d\xb3\xbe\x49\xbd\xd3\x1f\xa5\x06\x0e\x1f\x50\x5d\x44\x8b\x85\x56\xa2\x45\x42\x3f\xd1\xa2\x41\x53\x87\x62\xa5\xa4\xfc\x1b\x6f\x1d\xcb\xcd\x46\xa9\x4f\xa0\x55\xe0\xa3\x6e\x96\xfa\x3a\xb4\x4b\x7d\xa1\x1a\x86\x94\xeb\x96\x21\x65\xba\x69\x48\x19\x68\x9b\x2a\x1f\x1a\x87\x70\xa0\x7b\x16\x2b\x93\xfd\x6c\x31\x86\xa1\xf0\xef\x2e\x78\xcf\x2b\x06\xce\xbf\xbb\xe0\x8a\x7d\x0c\x45\x97\x49\x34\x60\x66\x86\xae\x44\x0a\xa4\x1c\xac\x92\x27\x14\x5e\x51\x57\x32\xd3\x50\xfa\x03\x07\xb8\xd6\x97\xae\xb7\x18\x4f\xe9\x87\xc2\x3f\x16\xac\xcc\xcf\xac\xfb\x4b\x5e\x9c\xb3\x7d\xc9\xf2\xbf\x6a\x13\x08\x6a\x18\xca\x93\xe1\x57\xa5\x6b\xc6\x17\xad\x6a\xf6\x37\xae\x69\xc6\x47\xa1\x68\xc6\x07\x4c\xcf\xf0\x62\xae\x66\x78\x11\xd7\x32\xbc\x48\x2b\x99\x51\xac\x75\x0c\x11\x83\x6a\x1c\x56\xa4\x5b\x49\x16\xf2\xe6\x62\xa5\xa2\xdd\x58\x09\x26\x80\x00\x1c\x97\x44\x00\x86\x8b\x24\x00\xa3\x65\x83\xc1\x41\xcf\x88\x41\x68\x67\x79\xb8\xb4\xe7\xba\x7d\xaa\xea\x6e\x9e\x95\x65\xfd\x93\xe5\x46\xc0\xf5\xca\x0e\xdf\xf7\xf5\xdb\xf0\xdb\x4c\x1a\x1b\x15\x78\x81\xe0\xaa\x77\xa0\xb5\xfc\x47\x02\x6a\xfa\x4d\x5d\xf4\x8e\xf8\x63\xb1\x6f\x59\x96\x1f\xda\xcb\x69\x9f\x80\x80\x81\x1b\x92\x4b\x25\x58\xee\xb9\xfc\xdc\x58\xa1\xcb\xf6\xe7\xab\x8a\xb5\xba\xfa\x72\x78\x9d\x1f\xfa\xf6\x5e\x3a\x18\x86\x5d\xce\xac\x9d\xcb\x11\x2a\x0a\xfa\xa0\x0d\xf9\x7a\x76\x3
|
2022-04-07 20:21:26 +00:00
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
func distAssetsNomadUi5e1f695edd3f904b7aa332b07823351bCssBytes() ([]byte, error) {
|
2022-04-07 20:21:26 +00:00
|
|
|
return bindataRead(
|
2022-05-02 16:09:00 +00:00
|
|
|
_distAssetsNomadUi5e1f695edd3f904b7aa332b07823351bCss,
|
|
|
|
"dist/assets/nomad-ui-5e1f695edd3f904b7aa332b07823351b.css",
|
2022-04-07 20:21:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
func distAssetsNomadUi5e1f695edd3f904b7aa332b07823351bCss() (*asset, error) {
|
|
|
|
bytes, err := distAssetsNomadUi5e1f695edd3f904b7aa332b07823351bCssBytes()
|
2022-04-07 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/nomad-ui-5e1f695edd3f904b7aa332b07823351b.css", size: 310628, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2022-04-07 20:21:26 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-05-11 01:14:22 +00:00
|
|
|
var _distAssetsNomadUiDecb3b7265bfac6189ae777c90c84190Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xfb\x76\xdb\x36\xf6\x28\x8e\xff\xef\xa7\x50\x78\x32\x3e\xc4\x04\x92\x2d\xe7\x32\xad\x66\x58\x37\xb7\x4e\x33\x9f\xa4\xc9\xc4\xe9\xe7\x33\x73\x34\x5e\x35\x44\x42\x12\x12\x8a\x60\x49\xd0\xb6\x22\x73\xad\xf3\x1a\xbf\x17\xf8\x3d\xd8\x79\x92\xef\xc2\x95\x20\x48\xea\x62\x3b\x6d\xd3\xa6\x6b\xb5\xb5\x08\x60\x03\xd8\x00\x36\xf6\xde\xd8\x17\xaf\xc8\x71\x2f\x67\x19\x09\x99\xb7\x17\xe1\x29\x49\xb0\xef\x25\x74\x81\xa2\x7e\x41\x0e\xd0\x84\xc4\x84\x11\x9c\x1f\xa0\x49\xce\x32\x14\x32\x0f\x8e\x3d\x7c\x99\xd2\x8c\xe5\x1e\xf4\xf0\x62\x82\xb3\x7e\x88\x12\x0f\x7a\xdf\x8a\x1f\x07\x39\xce\xce\x49\x88\xab\x0f\x74\xf2\x1e\xf3\x76\xf5\xdf\x07\x21\x5d\xa4\x05\xc3\x91\x77\x0a\xfd\x69\x91\x84\x8c\xd0\xc4\xc7\x90\x41\x02\x13\x98\x81\xd5\x39\xca\x7a\x31\xa4\x10\xc1\x1c\x16\x30\x84\x11\x4c\xe1\x02\x4e\xf6\x74\xdd\xde\x54\xd7\x06\x2b\xb2\xbf\xff\x5a\x40\x1d\xc8\x19\xbc\xc9\x68\x8a\x33\xb6\x14\x35\x56\x38\x29\x16\x38\x43\x93\x18\x8f\xc8\xa0\xfa\x01\x43\x9a\x4c\xc9\xac\xd0\x25\xf6\x4f\x78\x91\x11\xa6\xbe\xeb\x3f\xe1\x39\x8a\x0b\xfe\x81\x24\x84\x11\x14\x93\x8f\x38\x3b\xae\xfd\x1a\x84\x28\x8e\xfd\x04\x8c\xce\x29\x89\x7a\x87\x25\x28\xcd\x60\xe7\x8d\xa9\x05\xab\x72\x2f\xc3\xac\xc8\x92\x9e\x1a\xfb\x07\xbc\xcc\xfd\x04\x0c\xa6\x34\x7b\x8e\xc2\xb9\x6f\xa1\x05\xac\xe2\x31\x3e\x0d\x92\x31\x3e\x2d\x01\x80\xb1\x35\x8d\xe0\xce\x1d\xfb\x27\x8c\x6b\x13\x11\xa5\xb5\x99\xf9\x9e\x98\x87\x47\x92\x5e\x7c\x75\x15\xdb\xe3\x07\xfb\xfb\x7e\x6c\xe6\x1b\xdc\x39\x04\x30\x0e\xc8\x20\x8f\x49\x88\x7d\x30\xc8\xf0\x39\xce\x72\xf9\x57\x54\x84\xd8\x1a\xa0\x58\x05\x35\x1b\xb5\x8a\xe0\xea\x8a\x94\x00\xc6\x00\x66\xfb\xfb\x12\x21\x77\x82\xa0\xd6\x9f\xe8\x4e\x8c\xa6\xfe\xfd\x38\x6e\x62\x35\xd3\x58\x85\xb5\xc2\x40\x7e\x04\x50\xfe\x3f\x68\xf6\xd0\xbd\x31\x62\x3e\xbd\xa4\x88\xf9\xff\xcb\xae\x6a\xde\x4f\x3f\xe1\xfc\x15\x8d\x8a\x18\x7b\x70\x25\xb7\xc0\x9d\xc3\x12\x40\xcc\xeb\xa2\x22\x66\x6a\x08\x7b\x31\x66\xbd\x59\xe0\xc7\x81\x7f\x08\xb3\x41\x42\x19\xf0\x3d\x46\x3f\xe0\x64\x80\xc2\xf8\x79\xc2\x51\x1a\x79\x00\x52\x59\x8e\x7f\x2e\x50\x6c\x6a\xe4\x38\x9e\xbe\x13\x7f\xb1\x65\xca\xcf\xce\x02\x25\x68\x86\x17\x38\x61\x1e\x80\x88\x37\x49\x06\xfa\xc4\x00\xdf\xfb\x29\x41\x0b\x9c\xa7\x48\x9c\x33\x07\xc4\x1b\x1a\x93\x90\xe0\x7c\x30\x3e\xf5\x00\xcc\x1b\x6d\xd7\x56\x2f\x1a\xd5\xf3\x65\xce\xf0\x62\x30\xc5\x88\x15\x99\xae\x16\x06\x61\x8c\xf2\xbc\x87\x2f\x19\x4e\xa2\xbc\xc7\x06\x8f\x05\xa5\x58\xae\x42\x9a\xe4\x2c\x2b\x42\x46\x33\x5f\xee\x74\xb1\x1b\xf6\xf2\x22\xc5\x99\x3f\x18\x0c\x50\x36\x2b\xf8\xbc\x72\x00\xa7\x3e\x9b\x93\x1c\xaa\x2e\x3c\x18\x41\xfe\xbb\xfa\x2e\x46\xea\xc1\xd4\xf9\x3c\x59\xa6\x28\xcf\x1f\x17\x6c\x4e\x33\xf2\x11\xf1\x0d\xe8\xc1\x85\x53\xc9\xcc\xef\x45\xfe\xaa\xc2\x25\x9c\xa8\x6a\x24\xf0\xd4\xf2\x79\xd0\x67\x81\x57\xe1\x13\x90\xc4\xc7\x81\xa8\x75\xbc\x86\xa8\x28\x62\x00\x2d\xe2\x72\xe7\xb0\x4e\x52\xee\x1c\x56\x64\x84\x6f\x99\x11\x1e\xb3\xd3\x80\x94\x33\xcc\x7a\xd5\x02\xfa\xe6\xe0\xf0\x3e\x07\xe6\xfb\xb1\xc7\xa9\x72\x32\xf3\x82\x80\xef\x09\x3a\x75\xcb\xeb\x3f\x47\x62\xdd\x66\x98\x01\xbf\x5e\x00\xc5\xdc\x3c\x30\x32\x13\x16\x03\xc8\x8a\x18\xe7\xdf\xd1\xec\x07\x6b\x1c\x7c\x07\xcb\xa9\x0f\xaa\xf1\x29\x22\x25\xa1\xce\x30\xeb\xdc\x40\x1e\xb8\xba\x1a\x9f\x82\x01\xa3\x8f\xb3\x0c\x2d\x2d\x32\xe1\x73\x72\x10\x7c\x23\xe0\x67\x41\x35\x50\x02\x3d\x31\x8c\x7f\x9c\xbc\xfe\x61\x60\x06\xa2\x00\xc1\x58\x8d\x64\x4a\x92\xe8\x15\x62\xe1\x9c\x24\xb3\x6a\xb4\x19\xc4\x40\xd3\xcf\x78\x7f\x9f\x0d\xd2\x22\x9f\xfb\xd9\x80\xd7\xf6\x7d\x1c\x7c\x83\x05\x44\x4e\x10\x00\x00\x90\x95\x00\x8e\x4f\x81\x98\x7a\x88\x52\x73\xaf\x7d\x47\xb3\xc7\x71\x5c\xf5\x6d\x56\xe3\x46\xf3\xc5\x90\x81\xe0\x1b\xdf\xb7\xd6\x64\xdd\x54\x2d\x92\xcf\x24\x9a\x56\x4f\xad\x31\x8e\x48\x19\xb0\x3d\x1c\x60\x4e\xc8\x43\xc4\x7c\x02\xf8\x25\x80\x81\x9c\x92\x59\xa9\x17\x49\x18\x17\x11\xce\x4d\xdb\x25\xbf\x38\xec\xcd\xd5\x58\xf4\x41\x4e\x17\x58\xf4\x5a\x1f\xab\xdd\xbd\x1e\x23\x51\xe0\x7d\x0c\x80\x44\xa4\xa6\x09\xce\x16\x76\x28\x46\xa9\xfe\x78\x91\xbf\xc9\x70\x8e\x13\xe6\x8e\xca\x90\x16\xab\x87\xb2\x63\xd9\x39\x66\xc5\x3e\x22\x01\x1e\x2c\x50\xfa\x64\xe9\x7b
|
2022-04-07 20:21:26 +00:00
|
|
|
|
2022-05-11 01:14:22 +00:00
|
|
|
func distAssetsNomadUiDecb3b7265bfac6189ae777c90c84190JsBytes() ([]byte, error) {
|
2022-04-07 20:21:26 +00:00
|
|
|
return bindataRead(
|
2022-05-11 01:14:22 +00:00
|
|
|
_distAssetsNomadUiDecb3b7265bfac6189ae777c90c84190Js,
|
|
|
|
"dist/assets/nomad-ui-decb3b7265bfac6189ae777c90c84190.js",
|
2022-04-07 20:21:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-11 01:14:22 +00:00
|
|
|
func distAssetsNomadUiDecb3b7265bfac6189ae777c90c84190Js() (*asset, error) {
|
|
|
|
bytes, err := distAssetsNomadUiDecb3b7265bfac6189ae777c90c84190JsBytes()
|
2022-04-07 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-11 01:14:22 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/nomad-ui-decb3b7265bfac6189ae777c90c84190.js", size: 1319715, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-05-22 19:29:30 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
var _distAssetsVendor194b1e0d68d11ef7a4bf334eb30ba74dJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x7f\x5b\xdb\xb8\xb2\x00\xfc\x3f\x9f\x22\xf8\x6d\x73\xa4\x5a\x09\x76\x80\xd0\xba\x55\xfd\x74\x0b\xf4\xc7\x29\xb4\x5b\xe8\xb2\x6d\xf0\xe1\x1a\x22\xc0\xdb\xc4\x66\x65\xa5\x94\xe2\xdc\xcf\xfe\x3e\x1a\x49\xb6\xec\x38\x94\x9e\x73\xdf\xfb\xde\xed\x3e\xc4\xfa\x35\x1a\x8d\xa4\xd1\x68\x34\x1a\x5d\x27\xe9\x38\xbb\xee\xef\x4c\x4f\x19\xdf\xd9\xff\x83\x9e\xcf\xd2\x33\x91\x64\x29\x62\x44\xe0\xdb\xf3\x8c\xa3\x6f\x31\xef\xf0\x4e\x92\x76\x04\x66\x23\x1e\x51\x31\xe2\xd1\x0a\x67\x62\xc6\xd3\x0e\x9b\xa3\x06\x80\xa2\xb8\x9d\x93\xdb\xdd\x9d\x17\x87\x9f\x3e\xee\x1c\x04\xb7\x73\xb2\xf3\xe7\xe1\xce\xfe\xf6\xc9\x87\x8f\xef\x0f\xdf\x1f\x7e\xfe\x20\x23\xb7\x63\xc1\x82\x55\x7f\x4e\x4e\x5e\x7c\xf8\xf0\xee\xcd\xcb\x17\x87\x6f\xde\xef\x9f\x1c\xee\xec\x7d\x78\xf7\xe2\x70\xe7\xe4\xe8\xe3\x8b\x0f\x1f\x76\x3e\x06\xab\x3e\x39\xd9\xde\xd9\x7d\xf1\xe9\xdd\xe1\xc9\x8b\x83\xcf\xfb\x2f\x4f\xde\xff\x76\xb0\xf3\xf1\x8f\x9d\x8f\x07\xc1\xaa\x47\x4e\xde\xfe\xfe\x69\xe7\xe3\xe7\x93\x37\xfb\x87\x3b\xaf\x3e\x02\x0c\x28\x52\xc2\x79\xbf\xff\xee\xf3\xc9\xab\x77\x6f\xf6\xf6\x76\x3e\x9e\xbc\x7c\xbf\xf7\xe1\xfd\xfe\xce\xfe\xa1\x2c\x3b\xc7\x2b\xb2\x59\x93\x2c\x1e\x33\x4e\xc6\xec\x3c\x49\x19\xe1\xec\xef\x59\xc2\xd9\x5e\x36\x9e\x4d\xca\x90\xf9\xfd\x2b\x27\x7c\x96\xa6\x49\x7a\x71\xc8\x72\x91\xd3\x55\x7f\x25\x39\x47\x15\xb5\xf0\xad\x33\xcb\x59\x27\x17\x3c\x39\x13\xce\x8a\x49\xe8\x08\x84\x6f\x65\x55\x8c\xbe\x3f\xfd\x8b\x9d\x89\xfe\x19\x67\xb1\x60\x28\x9d\x4d\x26\xb8\x24\x63\xff\xe4\x84\x7e\xcb\x92\x71\xc7\x23\x63\x36\x61\x82\x41\x14\x61\x73\x20\x3e\xbd\x55\x88\x06\x35\x7c\x83\x36\xb4\x83\xd6\x46\x04\x0b\x8d\x09\xca\xaf\xf9\x4a\xf9\x49\xf5\x17\xad\x01\xa1\x76\x23\xcd\x80\x10\x74\x14\x11\x4e\xcf\x10\x23\x0e\xd2\xd9\xb1\x43\x04\x26\x29\x15\xfd\x09\x4b\x2f\xc4\x65\xcf\x7f\x9a\x3e\xa7\xde\xd3\xb4\xd7\xc3\x62\x94\x46\x7d\xf6\xfd\x2a\xe3\x22\x47\x65\xbb\x79\x7f\x0a\x55\x98\x94\x39\x51\x2d\xa4\xb7\x69\xf6\x32\x4b\xcf\x27\xc9\x99\x08\xca\xea\x85\xa2\x64\x4a\x92\x15\x89\x46\xaa\xc6\xa4\xe8\x5f\xc6\xf9\xfb\xeb\xf4\x03\xcf\xae\x18\x17\x37\x28\xc5\xdd\x2e\x6f\x8b\x44\x09\x95\x68\x10\x36\x4a\x22\xca\xd4\x57\x1a\x51\x3e\x4a\x23\x3c\x27\xd3\xf8\x2b\xdb\x66\xe7\xf1\x6c\x22\x76\x00\x1b\x39\x4c\x60\x94\xa4\x54\x20\x4c\x12\x8a\xe4\x8f\x87\xab\xbe\xcd\x24\x45\xc4\x25\xcf\xae\x3b\x29\xbb\xee\xec\x70\x9e\x71\xe4\xc4\x69\x67\x96\xe6\xb3\x2b\x09\x83\x8d\x3b\xaa\x85\x9d\xeb\x38\xef\xa8\x0e\x1b\x93\x0e\xfb\x7e\xc5\xce\x64\xe2\x7f\xa9\x28\x94\x8c\x49\x67\xcc\xae\x72\xa2\xb3\xe3\xff\xea\x24\x69\x2e\x58\x3c\xee\x5c\x64\x22\xe8\xfc\x97\xe3\x32\xd7\xf9\xaf\x4e\xcc\x2f\x66\x53\x96\x8a\xbc\x23\x32\x0d\xee\xbf\x1c\x0c\xa3\x24\xa6\x23\x47\x77\x84\x43\x1c\x4d\x50\x87\x38\x0a\xa0\x13\x55\x68\xe7\x72\x6e\x13\x4e\x52\x89\x7c\x92\xf7\x67\xb3\x64\x4c\x13\xd7\x25\x10\x4a\xc6\x94\xa9\x2f\x89\x10\x5d\x35\xbd\x29\x89\xaa\xbe\xc2\x38\x10\x2a\x87\x82\x4d\x6f\x75\x6d\xc1\xed\x7c\xae\x12\xce\xe2\xc9\xe4\x34\x3e\xfb\x4a\xb9\x0a\x5f\xc6\xb9\x22\x6a\xfe\x22\xdf\x66\x57\x74\xd5\xd7\x95\xe5\x2f\x26\x49\x9c\xd3\x54\x05\x39\x4b\xce\x13\x36\xa6\x92\x9a\x2f\x38\x8f\x6f\x90\xa9\x1d\xab\x0c\xb9\x88\x05\xa3\x4e\xca\xae\x9d\x79\xd9\x9e\x09\xc2\xb7\x55\x68\xa6\x3a\x45\xb7\xa4\x8a\x3f\x53\xad\xae\x86\x70\x42\xd3\x11\x8b\x8a\x22\x1d\x31\xd7\x59\x4b\xd2\x31\xfb\xee\x44\x4f\x93\x6e\x37\x31\x68\x3d\xc5\x32\x4f\xd2\x4f\xc6\x90\x4d\x7e\x54\x39\xcd\x18\x4e\x8a\xa2\xce\x33\x17\x06\xc4\xcb\x6c\x36\x19\x77\xd2\x4c\x74\xce\x93\xb4\x1c\x10\xa6\x4b\x93\xa9\x1e\x28\xe7\x3c\x9b\xca\x58\xe1\x3a\xb2\x4f\x01\x18\xe1\xdd\xae\x73\xc5\xd2\x71\x92\x5e\x38\xab\x94\x26\x8a\x02\xdd\xae\x73\x9e\xa4\xf1\x24\xf9\xc1\xc6\xb5\x68\x94\xf4\x65\x1d\xdb\xec\x2a\x47\x1c\x13\xde\xbf\x9a\xe5\x97\x28\xc1\x98\x24\x15\x25\xc6\x0a\xcf\xe4\x1c\x39\x7d\x59\x9a\xf5\xcf\x2e\x63\xfe\x42\x20\x0f\x63\xc3\x90\x56\x4a\xce\x4f\x59\x3f\xbf\x9a\x24\x02\x39\x6b\x8e\x9a\xdd\x55\xb0\x9f\x4f\x92\x33\x86\x3c\xd2\xf3\xe5\x04\xf1\x48\x46\xcd\x20\x79\x9a\x3c\xcb\x9e\x26\xae\xab\xe6\x6c\x4c\xf9\x28\x89\x56\xa0\xca\xbe\x43\x29\x8d\xa1\x7e\x8f\x52\x9a\x9a\x1e\x5e\xa4\x5b\x9c\x4a\xa2\xc5\x67\x67\
|
2019-05-22 19:29:30 +00:00
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
func distAssetsVendor194b1e0d68d11ef7a4bf334eb30ba74dJsBytes() ([]byte, error) {
|
2019-05-22 19:29:30 +00:00
|
|
|
return bindataRead(
|
2022-05-02 16:09:00 +00:00
|
|
|
_distAssetsVendor194b1e0d68d11ef7a4bf334eb30ba74dJs,
|
|
|
|
"dist/assets/vendor-194b1e0d68d11ef7a4bf334eb30ba74d.js",
|
2019-05-22 19:29:30 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
func distAssetsVendor194b1e0d68d11ef7a4bf334eb30ba74dJs() (*asset, error) {
|
|
|
|
bytes, err := distAssetsVendor194b1e0d68d11ef7a4bf334eb30ba74dJsBytes()
|
2019-05-22 19:29:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/vendor-194b1e0d68d11ef7a4bf334eb30ba74d.js", size: 1342797, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2020-06-24 20:37:13 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
var _distAssetsVendor2178567ff7c98706522514fb07f7d3beCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\xdd\x8e\xa3\x3a\x12\x7e\x15\x56\xa3\xa3\x73\x46\x0a\x91\x93\xee\x4c\x4f\x40\x5a\x8d\xb4\xd2\xdc\xed\x43\x18\x28\xc0\x8a\xb1\x39\xb6\x49\xa7\x07\xe5\xdd\x57\xfe\x23\x18\x9c\xa4\xcf\x5c\xad\xa2\xbe\xc0\x2e\x97\xab\xca\xf5\xf3\x55\xf5\xf6\x3f\xbc\x82\xff\x12\x21\xb8\x18\x6b\xce\x54\x5a\xe3\x8e\xd0\x8f\xac\xe3\x8c\xcb\x1e\x97\x90\xb7\x40\x9a\x56\x65\x2f\x08\xf5\x97\xbc\xe4\x94\x8b\xec\x0b\x42\x28\xaf\x88\x80\x52\x11\xce\x32\xaa\xc4\x75\xc6\x27\xa5\x84\x81\x1c\x7b\x5c\x55\x84\x35\xd9\x6b\x7f\x49\xd0\x7c\x3f\xe9\x05\x2c\xc9\x37\x4f\xf6\x53\x4a\x4e\x30\xb1\x44\xc9\x6b\x7f\x09\xae\x6c\x06\xa5\x40\xa4\x35\xa1\x14\xc4\x9c\x59\x2a\x4b\xc1\x29\x2d\xb0\xdf\x1c\x0b\x5c\x9e\x1a\xc1\x07\x56\xa5\x4e\x9b\xba\xae\x23\xcc\xe4\x58\x70\x51\x81\x48\x85\xd1\x7f\xd7\x5f\x12\xc9\x29\xa9\x92\x2f\x55\x55\xe5\x11\x2e\x6f\xfa\x97\xbf\xb7\x44\x41\x6a\x4c\x97\x31\xfe\x2e\x70\xbf\xb2\x0d\x1b\xba\x02\xc4\x4c\x9b\x17\x6d\xa2\xe4\xd0\x5f\xf2\x8e\xb0\xf4\x9d\x54\xaa\xcd\xf6\xda\xdc\x0a\x2e\x2a\xc5\x94\x34\x2c\x33\x52\x78\xfb\x1f\x8f\xc7\x67\x17\x59\x25\x3a\x2c\x4e\x20\xc6\xdb\xb3\xdd\xa5\x49\xe5\x50\x28\x0a\xe3\xed\x86\x80\xb4\x1c\x84\xe4\xc2\x9b\x84\x42\x1d\x58\x44\xfb\x43\x60\x2d\xc6\x19\xe4\x56\x91\xf0\xed\x2b\x72\x0e\x5e\x07\x4a\xce\x2a\x2c\x3e\x1e\xf2\x97\x84\x9e\x41\x5c\xb7\x65\x97\xd6\x58\x39\x59\x92\x88\x78\xf6\x46\x3c\x28\xee\xc4\xc9\xd0\xbf\x48\xd7\x73\xa1\x30\x53\xb3\x37\xcb\xbe\xbc\xc1\xdb\x92\xdf\x42\x34\xbb\x2a\xc7\x5f\x29\x61\x15\x5c\xb2\xdd\x82\x3e\xd5\x76\x5b\x7b\x93\x68\x0a\xfc\xd7\x1e\x6d\xf6\x87\xc3\x66\x8f\x36\xdb\xc3\xd7\x3c\x7d\x87\xe2\x44\x54\x8a\x19\xe9\xb0\x89\x98\x82\x12\x76\x4a\x76\x5b\xf4\x4d\x26\x52\x41\x2f\xff\xda\x7d\x4d\x08\xab\x09\x23\x0a\xf2\xb4\xe3\xbf\x3e\x4d\xfc\x49\x3a\x23\xbc\xa5\x85\x99\x12\x73\x8b\xfd\x3f\x88\x19\x89\x2b\xfd\x52\x3f\xcc\x5d\x27\xf8\xa8\x05\xee\x40\x26\x86\xc7\x78\x40\x7f\xac\xed\xaf\x04\x66\xb2\xc7\x02\x98\xba\x5e\x7f\x78\x9d\x7e\xe3\xe8\x3f\x3f\xa2\x4d\xac\x70\x31\x56\x44\xf6\x14\x7f\x64\x84\x99\xd4\x55\x50\x5e\x9e\x6c\x28\x57\x50\x72\x61\xcd\x40\x58\x0b\x82\x28\x73\x48\xf3\xdf\x6c\x2f\x3a\x16\xd3\x81\x55\x20\xf4\xb9\x71\x79\x62\xda\x09\x02\x53\x0c\x54\xe7\xaa\x9e\x4b\x62\xa8\x70\x21\x39\x1d\x14\xe4\x26\x86\x50\x6e\xe3\x11\xe5\x8a\xf7\x59\x7a\xd0\x49\xa5\xe0\x4a\xf1\x2e\x43\x39\x3f\x83\xa8\x29\x7f\xcf\x5a\x52\x55\xc0\xd6\x6c\xef\x85\x7b\x59\x96\x86\x1f\xba\xf1\x5a\xdd\x6f\x14\x93\x69\x05\x35\x1e\xa8\x4a\xf4\x57\x0b\xb8\x9a\x27\xa3\x3a\x42\xf3\xf7\xc0\xd5\x94\x84\xd0\x11\x19\x12\x06\x0d\x56\xe4\x3c\xad\x57\xaf\xaf\x66\xdd\x5e\x7a\x5b\xdf\x1f\xf7\xd7\xdb\x45\x1b\xc3\x5d\x09\xce\x1a\x5b\xda\xde\x6d\x25\x7b\x43\x96\x2b\x74\x76\x59\xaa\x0f\x0a\x19\x51\x98\x92\xf2\xea\xce\x90\x13\xa8\x56\xf0\xa1\x69\x57\xcf\x60\xde\xd4\x6d\x46\x14\x38\xc1\xc7\x3b\x17\x95\x17\xe9\x0d\x7d\x8f\x10\x61\xc5\xbb\x49\xe8\xdd\x31\x42\xe1\x6a\x84\xa3\xd9\x7d\x7b\x8d\xd0\x54\x50\x3f\x36\xe6\x19\x0b\x82\x0b\x0a\xe9\x7e\xa2\x3b\xe0\x08\x9d\xfa\xe8\x61\xf3\xe0\xf8\xcb\x74\xfc\xfb\x21\x72\xbc\xe4\x5d\x07\x4c\x79\x22\x7c\x40\x11\x22\x6d\x54\xd6\x4c\x34\xbb\xdd\x5d\x9a\x9b\xb4\x75\x94\x53\x07\x0a\x47\xa4\xfd\x7b\xc0\x94\xd4\xe4\x66\xb4\xc3\x21\x26\x6c\x31\x10\xaa\x08\xf3\x44\x2f\x28\x66\x90\x42\xe0\xf2\x04\xea\x56\x0c\xdf\x62\x56\xc3\x93\x3a\xbb\xb7\x98\xa0\x58\x29\x41\x8a\x61\xe6\xcf\xa8\x8c\x85\x85\x08\x8a\xee\x6a\xdf\x64\x9f\x05\x07\xc2\xce\x98\x92\xaa\x6c\xb1\x88\x98\x02\x0c\x9c\x73\xf5\x08\xaa\xb0\x90\xf3\x4e\x87\x0d\x6b\x7c\x70\xbb\x10\xde\xfb\xf0\xbe\x86\x75\x30\x91\x3d\x66\x73\x06\x1d\x56\x65\x4b\x58\xb3\xb0\x11\x2a\xd0\xb3\x93\x8c\xb3\x3b\x87\xf1\x7e\x7f\x8d\xdd\xa1\x4d\x3c\xab\xda\xb6\xb6\x1e\x0e\x9b\xdd\x01\x6d\xd0\x66\xfb\xf2\x35\x38\x85\x4b\x9d\x0c\x6c\xce\x9d\x0e\xcd\xcf\x7f\x81\xef\xf5\x3e\x04\x7b\xb7\xc4\x29\x80\x9a\x24\xb3\x4c\x8b\x01\x6c\x58\x42\x45\x8b\x2e\xc7\xe9\x88\xfd\x9e\x61\x8e\x0e\x8b\x86\x30\x6f\x64\x9b\x80\xdd\x9a\xcd\xcc\x76\xc9\x61\x41\x4f\x67\xd6\x1c\xf0\xde\x21\xf4\x47\xce\x07\xa5\xf5\x9a\x27\x5a\x2f\x6f\x28\x0f\xf9\x05\x31\x9d\x02\x70\xa6\xb9\xbb\x54\x3e\xaf\x5f\x9f\xc3\xd3\xed\x04\xa8\x1f
|
2020-06-24 20:37:13 +00:00
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
func distAssetsVendor2178567ff7c98706522514fb07f7d3beCssBytes() ([]byte, error) {
|
2020-06-24 20:37:13 +00:00
|
|
|
return bindataRead(
|
2022-05-02 16:09:00 +00:00
|
|
|
_distAssetsVendor2178567ff7c98706522514fb07f7d3beCss,
|
|
|
|
"dist/assets/vendor-2178567ff7c98706522514fb07f7d3be.css",
|
2020-06-24 20:37:13 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
func distAssetsVendor2178567ff7c98706522514fb07f7d3beCss() (*asset, error) {
|
|
|
|
bytes, err := distAssetsVendor2178567ff7c98706522514fb07f7d3beCssBytes()
|
2020-06-24 20:37:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-02 16:09:00 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/vendor-2178567ff7c98706522514fb07f7d3be.css", size: 7354, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _distCrossdomainXml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xd1\xc1\x6e\xc2\x30\x0c\x06\xe0\x7b\x9f\xc2\xe4\x38\xc9\xed\x76\x45\x6d\x39\x6c\xdc\x86\x36\x0d\x2e\x9c\x50\x96\x18\x35\x52\x5a\x77\xb1\xa1\xec\xed\x27\x28\xd3\x84\x60\x93\x76\x4c\xe2\xff\x73\x2c\x97\xb3\x43\x1b\x61\x4f\x49\x02\x77\x95\x79\xc8\xef\xcd\xac\xce\xca\xc9\xd3\xcb\xe3\x6a\xfd\x3a\x07\x97\x58\x04\x3d\xb7\x36\x74\xd8\x73\x0c\xee\x13\x96\xeb\xe5\x6a\xbe\x00\xd3\xa8\xf6\xd3\xa2\x18\x86\x21\xb7\x9e\xdf\x29\x77\xdc\x16\x87\x36\x16\x5e\xbd\x14\x37\x92\xb9\x57\x6f\xea\xac\xbc\xf1\x54\x67\x00\xe5\x04\x11\xde\xc8\x7a\xd0\x26\xc8\x14\x2e\x61\x4f\xfb\x8e\xb4\xb0\x49\x83\x8b\x74\xf6\x47\x63\x33\x1a\x9b\x6d\x88\xb4\x91\x9e\x5c\xde\x68\x1b\x01\xb1\xce\xbe\xd9\x05\x8b\x42\x22\xd1\x14\x9c\x86\x3d\xc1\x18\x99\x9e\x8a\x00\x4a\x09\x4a\xe8\xb8\xd3\xc4\x11\x7a\x4a\x6d\x50\x25\x8f\xd7\x3f\x0d\x24\x95\xe9\xb8\x23\x53\xfc\xe8\xcf\x64\xff\xe6\x27\x88\xff\xef\x62\x63\x3c\x36\x01\x28\x6d\x8c\x3c\xa0\x75\x8e\x44\x70\x9b\xb8\x85\xb1\xb8\x32\x77\x06\x94\xb1\xe7\xa4\x72\x3a\x08\xb9\x5d\xa2\xca\x6c\x6d\x14\xba\x48\x1f\xb7\x85\x89\x3e\x76\x24\x8a\x0d\x59\x4f\xe9\xda\x3a\xdf\xff\x46\x1d\xa7\x29\x6f\x6d\xb6\xce\xbe\x02\x00\x00\xff\xff\x1a\x15\x48\x7f\x49\x02\x00\x00")
|
|
|
|
|
|
|
|
func distCrossdomainXmlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distCrossdomainXml,
|
|
|
|
"dist/crossdomain.xml",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distCrossdomainXml() (*asset, error) {
|
|
|
|
bytes, err := distCrossdomainXmlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-14 20:49:42 +00:00
|
|
|
info := bindataFileInfo{name: "dist/crossdomain.xml", size: 585, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-11-09 22:55:13 +00:00
|
|
|
var _distFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\xdb\x6b\x1c\x55\x18\xff\xc5\xc4\x5e\x14\x4c\xa0\x56\x05\x6b\x37\x0f\x2d\x44\x5f\x0c\x82\x35\x5a\x31\x8a\xe2\x93\x3e\xfa\x24\x94\x3c\xd4\xa2\xe0\xed\x45\x8c\xa0\x64\xb1\xe0\xa5\xc9\x39\x13\x43\x50\x82\x77\x1f\x44\xf3\x07\xf8\xd6\x26\x18\x4d\xf6\x7c\xb3\x4d\x9b\x87\xfa\x12\x28\xb5\x7d\xa8\xe9\x05\x02\xb6\x74\xc1\xed\x8e\x7c\x73\x49\x26\xd3\xd9\xdd\x99\xd9\xb9\xec\xea\xfc\xca\x8f\xaf\xbb\x3b\xe7\x7c\xbf\x33\x73\xce\x99\xf3\x7d\xe7\x04\xe8\x42\x37\x06\x07\xd9\xf6\xe3\xa7\xfd\xc0\x01\x00\xfd\xfd\xf6\xe7\x3e\xe0\xec\x7e\xa0\xaf\xcf\xfa\xfc\x6a\x0f\xf0\xd1\x01\x60\x00\xc0\x20\x80\x11\x58\xdf\x9b\xd8\x87\x1c\x39\x72\xa4\x84\x89\x32\xee\x66\x66\xad\x23\x2c\x8a\x06\x6e\x13\x0a\x87\x24\xe1\x2f\x26\xff\x9f\xbf\xcb\x5a\x57\x10\x88\x12\x9e\x91\x84\xd3\x92\x60\x78\x78\x9a\x7f\xcb\x5a\x5f\x3d\xc8\x93\xd8\xa7\xe9\x98\xf5\xd1\xbd\x95\x0a\x3f\x7c\x56\xc6\xde\xac\xf5\x3a\x18\x5f\xc1\x9d\x42\xa1\x28\x09\x37\x9a\x6a\xdf\xe4\x0d\x2e\xc3\x65\xb3\xd2\xed\xea\xe3\x17\x43\xe8\xf6\xf2\x62\x16\x63\x43\x12\x86\x25\xe1\x54\x0b\xba\xbd\x5c\x9a\x2c\xe3\xb1\xa4\x75\x0b\xc2\x03\xdc\x7f\x25\xa1\x16\xa3\x76\x87\x35\xae\x9b\x7d\xc4\xad\x3b\x62\x1f\x8f\xca\xd8\xc6\x46\x71\x0e\x3d\x82\xf0\x9a\x24\x5c\x6e\xe0\xef\x3b\xa1\xf0\x63\x02\xed\xb8\xcc\xbe\x67\x67\xd1\x1d\x55\x7f\xc0\xf9\xf0\x18\x5f\x2b\x14\x5e\x90\x84\xf3\x09\xb4\xe3\xe7\xa8\xfa\x25\xe1\x78\x50\xfd\xb0\xd7\x0b\x81\xda\x1c\x8e\xc7\xd3\xd2\xbf\x51\x4e\xc7\x3b\x9d\xac\x5f\x53\x38\x9c\xeb\x6f\x3b\xfd\xbf\x49\x82\xea\x40\xfd\x7f\x6a\x3a\x8e\xf0\x1a\x81\xe7\x42\x49\x78\x4b\x12\xae\x76\x80\xfe\xab\x42\xe1\xdd\xe2\x1c\x76\x78\x7f\x9f\x5a\xc6\x6e\x49\x98\x91\x84\x7f\xda\x52\xff\x12\xfa\x83\xbc\x3f\x05\x61\xbc\x1d\xf5\x07\x85\xd0\xf1\x69\xae\x3f\x79\xfd\x9a\x8e\x83\xd3\x0a\xbb\xda\x52\x3f\xe1\x4a\xbd\x18\x64\xa2\x8c\x01\x7b\x3d\x51\xe3\xf8\xb2\x4d\xf5\x9b\x14\x04\x9a\x24\x3c\x0a\x27\x4e\xf0\xce\x2f\x3e\xfa\x35\x1d\x9f\xb4\x8b\x7e\x17\x97\x7c\xe7\xc5\xce\xd1\xef\xcf\x5c\x7f\xa6\xfa\x85\xc2\xc3\x3e\xf5\x7f\xdc\x29\xfa\x25\x61\x8d\xe7\x29\xc3\x40\x57\x5a\xfa\x13\x88\xa5\x98\x27\x35\x85\xc7\x43\xe8\x8f\x1c\x3f\x06\x8c\xdf\xa3\xb0\x26\x14\xbe\x66\x36\xb8\xa6\xe5\xf8\xdd\xc1\x64\x09\xf7\xda\x79\x9f\x9b\x09\x3c\x0f\x2f\x6f\xb2\x2f\xf6\xd9\xaa\x6e\x2f\x78\x0c\x4a\x1d\x27\x12\xd3\xae\xe3\x84\xdf\x38\x4f\xa0\x1d\x87\x38\x2e\x89\x4d\xb7\xc2\xaa\x50\x78\x29\x69\xdd\x6e\x70\x5c\x62\xe7\xe4\xae\xb5\xa0\xfd\x1a\xd7\xe1\x17\xe3\xa4\x85\x63\x84\xfb\x22\x8c\x0d\xb3\x8f\x73\xd9\xac\x74\x7b\x21\x4a\x18\x92\x0a\xa5\x00\xda\xe7\x35\x32\xb7\xa6\xdb\x0e\xfc\x6e\xb2\xc7\x86\x5f\x1e\xf1\xbc\xf7\xfd\xd5\xae\xf0\x8c\x8d\xcc\xfb\x78\x54\x74\xea\xfe\x69\x8e\x1c\x9d\x02\xc3\x44\x10\x5b\x1b\xb3\x6c\xa5\x60\xd9\x73\xdb\x2d\x5b\xec\xb2\xac\xcd\x2a\x30\xcc\x76\x1d\xe8\x65\x3b\x0f\x74\xb3\x2d\x02\x5d\x06\x50\xc3\x08\x30\xc6\xf6\x6d\xdb\xbe\xdf\xcc\x8e\x5a\xf6\x83\xaa\x65\xc7\x6a\x4d\xec\x53\x96\xdd\x63\x5b\x34\xb3\x7b\x6d\xbb\x8d\xad\xa3\x73\x43\xb7\xd3\x0e\xa7\x5d\x35\x60\x6c\x4b\xbb\x9d\xfb\xe0\xdc\x97\xea\x70\xb0\xfb\x69\xd9\x01\xc0\x3c\x9d\xf5\xb4\xfb\x9c\x56\x5f\xd6\xbd\x22\x47\x5c\x30\x63\x1f\x1d\x5f\x09\xc2\x97\x49\xc4\x24\xf5\xe0\x3a\xdf\x70\xc9\xb5\x86\xb9\x94\xc6\x79\x05\xf3\x0c\x8e\x8e\x95\x06\x71\xce\x8a\xa6\x9b\x5d\x3e\x5e\xbf\x9b\xe7\x0b\x82\xc6\x2d\xb1\x9c\x17\x98\x29\xe3\x8e\x16\xce\x07\x98\xfb\xfd\x5c\x47\x58\xbf\xfc\x1c\x35\x1d\x47\x3c\xcf\xd8\x08\xb9\xbf\xe4\x70\x4d\x10\x5e\x09\xda\x37\x78\x5d\x26\x09\xcb\xbe\x75\x2d\xe2\x7e\x4d\xc7\xf7\x11\xcf\x79\x2c\x07\x59\xf3\x4d\x94\xf0\x50\xbd\x3a\xa6\x56\xb1\x1d\x56\xfe\xe7\xb9\x28\x71\x2e\xd7\x1d\x87\x7f\x58\x7b\xe1\x5f\xe4\xfe\xcd\x31\xff\x87\x24\xbc\x68\x52\x61\x35\x2d\xff\x82\xf0\x9e\x46\x78\xd9\x1d\xb7\xd9\x79\xb5\x37\xd3\xf0\x5f\x0f\x7c\xcd\x7f\xd5\xbf\xd4\xf1\xba\x3b\x6f\x38\xb5\x8c\xdd\x9a\x0e\xa1\x29\x1c\x4e\xc5\xbf\x3d\x8f\xc8\x12\x9e\x97\x84\xa3\x52\xe1\x6f\xfe\x4e\x53\x78\x23\x45\xff\xb7\xd0\xed\xbf\x78\x06\xdb\xfe\x6f\xfe\xcd\xdc\x79\x19\x8f\xc4\xe2\xbf\xd1\xfb\xa7\x31\xab\x1a\xe1\x73\x73\x5d\x56\xa7\xdf\x04\xcd\x39\x34\x78\xff\x06\xe1\x15\xcf\xe7\x50\xef\x5f\x37\xc6\x7f\xc7\x3d\x2d\xe4\xd7\xcd\
|
2019-01-30 18:49:44 +00:00
|
|
|
|
2021-11-09 22:55:13 +00:00
|
|
|
func distFaviconIcoBytes() ([]byte, error) {
|
2019-01-30 18:49:44 +00:00
|
|
|
return bindataRead(
|
2021-11-09 22:55:13 +00:00
|
|
|
_distFaviconIco,
|
|
|
|
"dist/favicon.ico",
|
2019-01-30 18:49:44 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-11-09 22:55:13 +00:00
|
|
|
func distFaviconIco() (*asset, error) {
|
|
|
|
bytes, err := distFaviconIcoBytes()
|
2019-01-30 18:49:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-11-09 22:55:13 +00:00
|
|
|
info := bindataFileInfo{name: "dist/favicon.ico", size: 15086, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2019-05-22 19:29:30 +00:00
|
|
|
var _distImagesIconsBootSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xcd\x6e\xdb\x30\x10\x84\x5f\x65\xa1\x9e\x39\xde\x1f\x72\xb9\x2c\xa2\x1c\x7a\x4e\x1f\xc2\x70\x5c\xdb\x80\x1a\x07\xb1\x6b\x05\x79\xfa\x82\x92\x01\xf7\xd8\x83\x7e\x67\x38\xfb\xed\x92\x4f\x97\xdb\x81\xe6\xd3\xeb\xf5\x38\x0e\x12\x3e\xd0\x71\x7f\x3a\x1c\xaf\xf7\x8f\xdb\x69\x3f\xff\x38\x7f\x8e\x03\x13\x93\x84\xd3\xf2\xf7\xf3\xf7\xf4\x76\x19\x87\xe3\xf5\xfa\xfe\x7d\xb3\x99\xe7\x19\xb3\xe1\xfc\x71\xd8\x28\x33\x6f\x2e\xb7\xc3\xf0\xfc\xf4\xbe\xbd\x1e\xe9\x75\x1c\x7e\x0a\x33\x5a\x18\xb9\xc1\xdb\x64\x30\x36\x0a\x38\x17\x52\x46\x35\x4f\x15\xcd\x77\xd2\x90\x53\x45\xce\x95\xb2\x80\x35\x93\x40\xd5\xa9\x30\x44\x94\xba\x9c\xeb\x56\x19\x5c\x85\xee\x8f\x85\x89\x94\x0c\xd1\xa6\x0a\xf1\x20\x09\x78\x95\x9d\xa1\x95\x20\x61\x98\x68\x12\x48\x33\x52\x41\x44\x12\x41\xe9\x95\x0b\x22\x4f\x29\x1a\x5c\x8d\x2c\x23\xb3\x2d\xe1\x6d\x0d\x6f\xf7\xf0\x64\x88\x68\x24\x60\x97\x29\x75\xc5\x85\x2a\x2a\xcb\x36\x28\xee\x9e\x5e\xc6\x3c\x65\x38\xeb\x0b\xc2\x2b\xe5\x02\xcf\xfe\xb0\xd0\xa2\xad\xc6\xf2\x52\x05\xb5\x18\xb5\x6e\xfd\xc7\xb3\xaa\xab\xf5\xa5\x29\x24\x53\x66\x78\xd1\xad\x22\x47\xd0\x7a\xef\x5e\xee\x2d\x49\x45\xe8\x2e\x19\x24\xf7\x45\x5c\x7b\x6f\x52\x3b\x5d\x52\x43\xeb\xd8\x8c\xd2\xb6\x8a\x42\xfd\xe2\xb5\x0e\x3a\x4d\xd4\xd8\x89\x22\x5a\x52\x34\xf6\x3e\x9c\xc2\x9e\x1c\xa5\x45\x1f\x4e\x93\xdc\xe3\x4c\x62\x2a\x60\xc9\x24\x06\xf6\x5d\x82\xb5\x3e\x67\x49\xa8\xa5\x21\xab\x27\x01\x67\xd4\xb6\x70\xe4\x07\x87\xc7\x03\x24\xfe\x03\x44\x23\x75\x1c\xed\x24\x59\xad\x93\xb8\x2e\xdb\x54\x7a\x9e\x96\xaf\x81\x7e\x9d\xa6\x69\x1c\xbe\x31\xf3\xfa\x9e\x3e\xfe\x4c\xfb\x71\x78\x3b\xbf\x7d\xed\x3f\xce\xc3\xe6\xf9\xa9\x1f\xbd\xe7\xbf\x01\x00\x00\xff\xff\xbb\xae\x47\x17\xd1\x02\x00\x00")
|
|
|
|
|
|
|
|
func distImagesIconsBootSvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distImagesIconsBootSvg,
|
|
|
|
"dist/images/icons/boot.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distImagesIconsBootSvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsBootSvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-14 20:49:42 +00:00
|
|
|
info := bindataFileInfo{name: "dist/images/icons/boot.svg", size: 721, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-05-22 19:29:30 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-10-14 20:10:05 +00:00
|
|
|
var _distImagesIconsBoxSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x92\xcb\x8e\xa3\x30\x10\x45\xf7\xf3\x15\x25\xef\x7d\xa9\x2a\x3f\x30\xa3\x10\xa9\x67\xb6\xe9\x6d\xef\xa3\x84\x09\x48\x04\x22\x42\x43\x2b\x5f\x3f\xc2\x3d\x0f\x75\x36\x25\x24\xce\xf5\xb9\x25\x7b\x77\x5f\x2e\xf4\x71\xed\x87\x7b\x6d\xda\x79\xbe\x7d\x2f\x8a\x75\x5d\xb1\x3a\x8c\xd3\xa5\x50\x66\x2e\xee\xcb\xc5\xd0\xda\x9d\xe7\xb6\x36\xea\x0d\xb5\x4d\x77\x69\xe7\xcf\xef\x5f\x5d\xdf\xd7\x66\x18\x87\xc6\xd0\xd2\x35\xeb\x8f\xf1\xa3\x36\x4c\x4c\xea\x49\xbd\xd9\xef\x6e\xc7\xb9\xfd\x43\x9d\xde\xa7\xa9\x19\xe6\x9f\x63\x3f\x4e\x9f\x49\x3b\xbd\xf7\x4d\x6d\x9a\xa5\x19\xc6\xf3\xd9\xd0\xb9\x36\xaf\xe2\xa0\x1c\x51\x06\x7f\x54\x94\x81\xf2\x60\x62\xb6\x0a\x2f\x4a\x7c\x10\x54\xc9\x51\x00\x07\x7d\x91\xed\xaf\xfc\x45\x84\x22\xa2\x86\xa5\x42\xc5\xfa\x14\x17\xf8\x2a\x92\xc2\xfb\xd4\x27\x68\x20\x0f\xd5\xf8\x04\x29\x02\x27\xe2\x0c\xd8\x0c\xbc\x3c\x01\x8e\x24\x22\x68\xf9\x96\x4d\xc7\xaf\x7e\xbb\x35\xb3\x82\x50\xba\xc3\xff\x3d\x1e\x57\xbb\x11\x9e\x04\xce\xa7\xa3\x6c\xf2\x3c\x98\x58\x04\x5c\xc5\x6c\x14\x21\x87\x2a\xc4\x83\x28\x09\x43\x4a\x72\x70\xde\x51\x04\x87\xad\xb2\x70\x65\x33\xf0\x78\x55\x04\x2a\xe1\x24\x2d\x15\x54\x4e\x4c\xf0\x31\x41\xa3\x43\xaa\x12\x62\x22\x81\x88\xf6\x09\x5c\x92\x87\x38\xf7\x26\x02\x5f\xfa\xc3\xbf\xe0\xe3\x2a\x9c\x7b\x78\xf8\x10\x32\x69\x33\xf9\xb5\x1e\x23\x26\xbb\x1d\xe6\x16\xbb\xa9\x7a\x9b\xb6\x5d\x3d\x24\x94\x8b\x30\xdc\xc3\xd0\xa9\xef\x6e\x4f\x17\x59\xec\x77\xdb\xab\xd9\x7f\xfb\x1d\x00\x00\xff\xff\x8f\x14\x35\x10\x5e\x02\x00\x00")
|
|
|
|
|
|
|
|
func distImagesIconsBoxSvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distImagesIconsBoxSvg,
|
|
|
|
"dist/images/icons/box.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distImagesIconsBoxSvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsBoxSvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "dist/images/icons/box.svg", size: 606, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2019-05-22 19:29:30 +00:00
|
|
|
var _distImagesIconsCancelSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4d\x8a\x84\x30\x14\x84\xf7\x9e\xa2\x78\x07\xc8\x8f\x13\xc9\x44\x8c\x8b\x59\xcf\x1c\x42\x50\x92\x30\xb6\x4a\x1b\x8c\xf4\xe9\x9b\xc4\xa6\x57\x0d\x59\x7c\xf9\xaa\xe0\x55\xb7\x1f\x0e\x29\x8c\xd1\x5b\x92\x8a\xe0\xa7\xe0\x7c\xbc\xf8\x08\x53\xfa\x59\x4f\x4b\x02\x02\x52\x21\xbb\xf3\x36\x2f\xbb\x25\x1f\xe3\xd6\x72\x9e\x52\x62\xe9\x8b\xad\x77\xc7\x6b\x21\x04\xdf\x0f\xf7\xaa\xb4\xe7\x1c\x96\xff\x4f\x45\x69\x8c\xe1\x25\xa5\xbe\x02\xba\x6d\x88\x1e\x61\xb4\x34\x10\x46\x4b\x7f\xf9\x10\x53\xf2\x57\xd6\xac\x31\x10\xd0\x68\x32\x64\x87\x32\x24\x43\x51\x3a\xff\xea\x77\x28\x15\x34\xbe\x0b\x5d\x52\x95\x57\xb8\x68\xfd\x20\xde\x57\x5d\x5e\xd9\x3f\x03\x00\x00\xff\xff\x59\x8b\x37\x5f\xf8\x00\x00\x00")
|
|
|
|
|
|
|
|
func distImagesIconsCancelSvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distImagesIconsCancelSvg,
|
|
|
|
"dist/images/icons/cancel.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distImagesIconsCancelSvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsCancelSvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-14 20:49:42 +00:00
|
|
|
info := bindataFileInfo{name: "dist/images/icons/cancel.svg", size: 248, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-05-22 19:29:30 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:49:44 +00:00
|
|
|
var _distImagesIconsClockSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8f\xd1\x6a\xc3\x30\x0c\x45\xdf\xf3\x15\x17\xbf\x4b\xb1\x2c\x27\x33\x23\xc9\xc3\xde\xf7\x11\xa3\x2d\x71\xa0\x59\xcb\x12\xec\x92\xaf\x1f\x76\x8a\x39\xdc\x73\x0d\x42\x68\xd8\xd2\x8c\xd7\x7a\xff\xdd\x46\x13\xf7\xfd\xf9\xd9\xb6\x39\x67\xce\xca\x8f\xbf\xb9\x75\xd6\xda\x76\x4b\xb3\x41\x5e\xae\x7b\x1c\x4d\x30\x88\xb7\x65\x8e\x7b\xd5\xb4\xdc\xf2\xd7\xe3\x35\x1a\x0b\x8b\x80\x60\xa6\x06\x18\x9e\x3f\x7b\xc4\x75\x34\xdf\x1e\xf6\x42\x8e\x1d\x2c\x79\x08\x07\xf2\xf0\x9b\x70\x80\x3f\x1f\x55\xa7\x9a\x54\xd2\x1f\xab\x85\x5c\x84\xfb\x1e\x16\x0a\x61\xf5\x50\xe8\x46\xa7\x91\x16\x6a\xa1\x52\x4e\x29\x7f\xc7\x4a\xdc\x41\x92\x63\xe7\xee\x2c\x3d\x8b\x72\xc7\x1d\xab\x67\x0d\xfc\xe1\xa8\xa2\x81\xca\xc4\x9b\x54\xf6\x4a\x24\x39\x0c\xda\xa9\x19\xca\xa1\x53\xf3\x1f\x00\x00\xff\xff\x86\xad\x56\xe4\x11\x01\x00\x00")
|
|
|
|
|
|
|
|
func distImagesIconsClockSvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distImagesIconsClockSvg,
|
|
|
|
"dist/images/icons/clock.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distImagesIconsClockSvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsClockSvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-14 20:49:42 +00:00
|
|
|
info := bindataFileInfo{name: "dist/images/icons/clock.svg", size: 273, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _distImagesIconsConsoleSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x5d\x6f\xe2\x38\x14\xfd\x2b\x57\x17\x55\x9a\x3e\xc4\xd8\x4e\x08\xa4\xc2\x48\xc3\x8c\xba\x7d\x41\xf3\x30\xda\xbe\xbb\xc4\xf9\xd8\x86\x18\xd9\x4e\xa0\xfc\xfa\x95\x1d\x4a\x03\x62\x35\x4f\xab\x28\x8e\x73\xef\xb9\xc7\xd7\xe7\x24\x5e\xda\xbe\x84\x43\x9d\xbb\x4a\x20\x4b\x10\x2a\x55\x97\x95\x1b\xe6\x7d\xad\x0e\x6b\x7d\x14\x48\x81\x02\x4b\xc0\xc7\x8e\xbb\xa6\xb5\x02\x2b\xe7\xf6\x4f\xd3\xe9\xe1\x70\x20\x87\x98\x68\x53\x4e\x39\xa5\x74\x6a\xfb\xf2\x0c\x79\x3a\x36\x75\xfb\x7e\x0f\xc8\xb2\x2c\x9b\x86\x2c\xae\x96\xb9\x2a\xec\x6a\xb9\x97\xae\x82\x3a\x17\xf8\x86\x90\x0b\xdc\x50\xa0\xd5\x9c\xf7\x3c\x7b\xa1\x27\x9c\x9e\xf3\x3e\xc1\x38\x49\xd3\x39\x30\x12\xc7\xb1\xe4\xc0\x81\x02\x65\x1c\xf8\x2b\xe3\x97\xd7\x88\x03\x7f\x89\xaf\x10\x11\x8f\xf8\xeb\x75\x88\x47\xbc\xca\x48\x1c\x27\xa7\x5d\xe4\x1f\x90\xbc\xc4\x9e\x5b\x32\x60\x1e\x40\x23\x06\xac\x9f\xf9\xd4\x25\xc4\x80\x55\x0b\x92\xa6\xe9\x57\x24\x62\xaf\x69\xe0\xfd\x2a\x8b\xd8\x69\x33\x23\xf1\x0c\x52\xcf\xd7\x30\x12\x67\x99\xef\x78\x91\x92\x2c\x21\xd9\x2c\x8e\x48\x9a\xc4\x24\x8d\x79\xc4\x48\x9a\xa5\xe0\xc7\x59\x44\xb2\xc4\xdf\x01\x99\x45\xbe\x2a\x0c\x71\x18\x39\xc9\x92\x90\x4e\x4e\x1b\xc6\x81\xd1\x3e\x48\xf0\xb2\x78\x65\xb4\x4a\x4e\x9b\xb0\x37\x08\xe2\x48\x3f\x04\x95\x28\x30\x4a\x07\xad\x46\x31\xea\x7b\xf4\xb1\xd3\x8e\x03\xfd\xbf\xd0\x18\xec\x54\xde\xbc\xa2\x6e\x9c\x32\x70\x14\x18\x71\xb2\x78\x40\xf8\x10\x18\xa5\x24\x7b\xc0\xcb\x77\x47\x67\x24\x7d\x18\x7d\x7b\x7c\x1e\xde\x87\xca\xbf\xdb\xda\x59\x81\xfa\xed\x1f\xb5\x75\x6b\xdd\xb5\x79\xdd\x96\x6b\x7d\x1c\x96\x90\xb8\x5a\x16\x6a\xa3\xcd\xbe\xd2\x8d\x2e\x3f\xc0\xc8\xbc\xee\xac\x40\x86\x50\xb7\x02\x7f\xeb\xce\x6c\xd5\xf7\x66\x5f\x49\x04\xa3\x6c\xd7\x38\x81\xb6\x92\xb9\x3e\xfc\xde\x1b\x25\xf3\x5f\x9d\x53\x86\x85\x46\xd5\xaf\xa2\xb0\xca\x41\xfe\x21\x70\x36\x94\xdf\x41\xde\xb0\x0c\x35\x63\x96\xbf\x64\x67\x6d\x2d\xdb\x75\xd3\x19\xb0\x2e\xff\xa9\xfa\x5a\xba\x5a\xb7\x02\xc9\x15\xed\x55\xe9\x0d\xad\x2f\x1e\x93\xfe\xd0\x8d\x36\x1b\xe9\x4c\x7d\x84\x5e\x36\x9d\xb2\xc3\x6f\xf9\xc7\x8b\x30\x0e\x74\xbc\xea\x35\xf3\x74\x10\x79\xb5\x34\x6a\xeb\x82\xa2\x5b\xf4\x5e\xd1\xe0\x13\xbd\x78\x34\xe7\x5f\xfe\xf0\x0c\xc1\x1c\x05\xf2\x40\x30\xfc\xc2\x25\x38\x23\x5b\x5b\x68\xb3\x13\x18\xa6\x8d\x74\xea\x5b\x94\x41\x34\x7f\x0c\x56\x36\x02\x5b\xdd\xaa\x61\x1e\x99\xae\x51\x02\x55\xaf\x5a\x9d\xe7\xb8\x5a\x76\x56\x9d\x41\x13\x4a\xe9\xa7\xf7\x02\x3b\xd3\x7c\x9b\xc8\x47\x84\x70\x62\x3c\x55\x46\x15\x02\x27\x6f\x7e\xe5\x51\xc9\xf3\xf3\xf3\x3d\xc4\x4e\xda\xf7\xb0\xa7\xfc\xb3\x83\x49\x51\x14\xe7\xd5\xae\xe0\xdb\xb0\x15\x8f\x3f\x2b\x61\x9d\xd1\xef\x4a\xe0\x64\xbd\xfe\x91\xfc\x64\x41\x13\xef\xde\xc7\xf0\xf8\x54\x85\x8d\x54\x59\x8c\x54\x29\xc1\x73\x9d\xdb\xcf\x1f\xf1\x3f\x05\x5a\x40\x4a\x66\x3e\x7f\xe9\xb5\xf8\x53\xaf\x6a\xd4\xeb\x1d\xd9\x3e\xb5\x6d\x75\x7b\x52\x46\xe3\x9d\xe2\xab\xee\x8a\x8b\x3d\x93\x78\x1e\x7f\x4f\x38\x8e\x0e\x5c\x7f\x12\xb3\xb4\x67\xe9\xed\x49\x7c\x9b\x98\x96\x37\xb7\xed\xcb\xd5\xbf\x01\x00\x00\xff\xff\xcc\x87\xf2\xfb\x5d\x06\x00\x00")
|
|
|
|
|
|
|
|
func distImagesIconsConsoleSvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distImagesIconsConsoleSvg,
|
|
|
|
"dist/images/icons/console.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distImagesIconsConsoleSvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsConsoleSvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "dist/images/icons/console.svg", size: 1629, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _distImagesIconsHistorySvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcd\xb1\xaa\x83\x40\x10\x46\xe1\xde\xa7\xf8\x99\x5e\x77\xd4\xbd\x20\x17\xd7\x22\x7d\x1e\x22\xa0\xec\x08\xd9\x28\xd9\x65\x46\x7c\xfa\x90\x90\x2e\xdd\xe1\x6b\xce\x98\x35\xe2\x48\xf7\x47\x0e\x24\xa5\xec\xff\xce\x99\x59\x63\x7d\xb3\x3d\xa3\xeb\x98\xd9\x65\x8d\x04\x5b\xe7\x22\x81\x06\x82\x2c\x6b\x94\xf2\x49\x5d\x17\xbb\x6c\x47\x20\x06\x63\xc0\x40\x53\x05\x8c\xfb\xad\x08\xe6\x40\x57\x06\xab\x17\xaf\xb5\x97\xda\x9f\xe9\x0f\x9d\xf6\x52\xf7\xda\x7e\xad\x3d\x53\xf7\x6b\x04\x37\x55\xe3\xfb\x3a\x55\xaf\x00\x00\x00\xff\xff\x1e\x80\x6e\xef\x9e\x00\x00\x00")
|
|
|
|
|
|
|
|
func distImagesIconsHistorySvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distImagesIconsHistorySvg,
|
|
|
|
"dist/images/icons/history.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distImagesIconsHistorySvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsHistorySvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-14 20:49:42 +00:00
|
|
|
info := bindataFileInfo{name: "dist/images/icons/history.svg", size: 158, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _distImagesIconsMediaPauseSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcd\xbd\x0a\x83\x30\x14\x47\xf1\xdd\xa7\xf8\x73\xa7\x76\xd0\x5c\x6d\x11\x29\xc6\xa1\x7b\x1f\x42\xd0\xe6\x0a\x7e\x91\x5c\x12\xe9\xd3\x97\xba\x75\xfb\x9d\xe9\xb4\x21\x3a\x1c\xcb\xbc\x06\x4b\xa2\xba\x3f\x8c\x49\x29\x15\xe9\x56\x6c\xde\x99\x8a\x99\x4d\x88\x8e\x90\xa6\x41\xc5\x52\x43\x90\x71\x72\xa2\x27\xe3\x34\xa6\xe7\x76\x58\x62\x30\x1a\x34\xd4\x65\x40\xbb\xf7\x2a\x18\x2c\xbd\x18\x1c\x6b\xa9\x62\x5e\x4b\x5e\x7d\x96\xfb\x5f\x12\xd4\xf7\x6b\x78\x6f\x7e\xb1\x74\x72\xee\x75\xbc\x94\x28\xaf\x04\xd3\x65\xed\xef\xdb\x65\xdf\x00\x00\x00\xff\xff\x9c\x80\x43\x8d\xa0\x00\x00\x00")
|
|
|
|
|
|
|
|
func distImagesIconsMediaPauseSvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distImagesIconsMediaPauseSvg,
|
|
|
|
"dist/images/icons/media-pause.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distImagesIconsMediaPauseSvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsMediaPauseSvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-14 20:49:42 +00:00
|
|
|
info := bindataFileInfo{name: "dist/images/icons/media-pause.svg", size: 160, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _distImagesIconsMediaPlaySvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x1c\xcd\xb1\x0a\x83\x30\x10\x06\xe0\xdd\xa7\xf8\xb9\xa9\x1d\x34\x67\x05\x91\x62\x1c\xba\xf7\x21\x04\x6d\x22\xa8\x91\xe4\xc8\x49\x9f\xbe\xd4\xed\xdb\xbe\x3e\x65\x87\x73\x5b\xf7\x64\xc9\x8b\x1c\x4f\x63\x54\xb5\xd2\xa6\x0a\xd1\x99\x07\x33\x9b\x94\x1d\x41\x97\x49\xbc\xa5\x8e\xe0\xe7\xc5\x79\xb9\x98\x97\x59\x5f\xe1\xb4\xc4\x60\x74\xe8\x68\x28\x80\xfe\x18\xc5\x63\xb2\xf4\x66\x70\x6e\xd7\xb6\x6c\xca\xb6\x6c\xbe\x04\x89\xe3\x9e\x3e\x21\x6e\x96\x2e\xae\xa3\xcc\xb7\x1a\xf5\x9d\x60\x86\xa2\xff\x47\x43\xf1\x0b\x00\x00\xff\xff\x46\xfe\x9f\x32\x91\x00\x00\x00")
|
|
|
|
|
|
|
|
func distImagesIconsMediaPlaySvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distImagesIconsMediaPlaySvg,
|
|
|
|
"dist/images/icons/media-play.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distImagesIconsMediaPlaySvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsMediaPlaySvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-14 20:49:42 +00:00
|
|
|
info := bindataFileInfo{name: "dist/images/icons/media-play.svg", size: 145, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _distImagesIconsNodeInitCircleFillSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x31\x4f\xc3\x30\x10\x85\xf7\xfe\x8a\xa7\x63\x81\xa1\x8d\xed\x06\x5a\xa1\xb8\x03\x48\x15\x4b\x57\xf6\xe0\xb8\x8e\x85\x6b\x57\x8e\x1b\xa7\xfd\xf5\xa8\x49\x16\x24\xc4\x70\x7a\xdf\x70\xf7\x3d\xe9\xaa\xae\x37\x18\x4e\xce\x77\x92\xda\x94\xce\xaf\x45\x91\x73\x5e\xe5\xf5\x2a\x44\x53\x08\xc6\x58\xd1\xf5\x86\x90\x6d\x93\x5a\x49\xa2\x24\xb4\xda\x9a\x36\x4d\xdc\x5b\x9d\xdf\xc2\x20\x89\x81\x41\x94\x10\x25\xed\x16\x40\x65\x70\xb4\xce\x49\xf2\xc1\x6b\x1a\x79\x19\x2f\x4e\x4b\xd2\xbd\xf6\xa1\x69\xc6\x2d\xa0\x52\x36\x2a\xa7\xa1\x06\x49\x9c\x11\xd4\x75\xca\x38\xc5\xe4\x50\x97\x18\xb5\x4f\xef\xc1\x85\x48\x48\xb1\xf6\xdd\x31\xc4\x93\xa4\x11\x5d\x9d\xf4\xa3\x80\x78\xa2\x62\x76\x9e\xeb\xd4\xce\xa7\x0f\xfb\xfd\x9e\xd0\x48\x3a\xf0\x2d\xf8\xba\x2f\x3f\x5e\xfa\x65\xd9\x72\x71\x3b\x6c\xc1\xcb\x9a\x83\x83\x8d\xc3\x20\xc0\x67\x62\x60\x4b\x71\xfb\xed\x53\xae\xee\x3a\x49\x5f\xce\xfa\x6f\xeb\x0d\xfd\x55\xb0\xb9\xfb\x3f\x37\xb3\x7e\xfb\xbf\x1d\xe1\x5c\x2b\x9b\xae\x92\x56\xcf\x4c\x4c\x65\x55\x61\x76\x8b\xea\xfe\xf0\xdd\xe2\x27\x00\x00\xff\xff\xdb\xbf\xd1\xad\x99\x01\x00\x00")
|
|
|
|
|
|
|
|
func distImagesIconsNodeInitCircleFillSvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distImagesIconsNodeInitCircleFillSvg,
|
|
|
|
"dist/images/icons/node-init-circle-fill.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distImagesIconsNodeInitCircleFillSvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsNodeInitCircleFillSvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "dist/images/icons/node-init-circle-fill.svg", size: 409, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
var _distImagesIconsNomadLogoNSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4b\x8e\xa3\x30\x10\x86\xd7\xc3\x29\x4a\xb5\x26\x85\x71\x01\xb1\x19\x4c\xa4\xb9\x49\x1e\x1e\x1a\x85\xd8\x08\x13\x20\xb7\x6f\x39\xf4\xa2\x5b\xea\x95\x3f\xfd\xfe\xea\xa1\x6a\x4e\xdb\x63\x80\xc5\x4e\xa1\xf7\xce\x60\x4e\x02\xc1\xba\xab\xbf\xf5\xae\x33\xf8\x9c\xff\x1f\x14\x9e\xda\xa4\x09\x4b\xf7\xdd\xca\x11\xb6\xc7\xe0\x82\xc1\x8f\x79\x1e\xeb\x2c\x5b\xd7\x95\x56\x26\x3f\x75\x99\x14\x42\x64\x61\xe9\xbe\x94\x7a\x1b\x7a\x77\xff\x4d\xcc\xb5\xd6\xd9\xfb\x17\x61\x33\x28\xc6\x0d\xe1\xb5\xbf\xc9\x1f\x58\x7a\xbb\xfe\xf3\x31\x07\x01\xa5\xa6\x0a\x2a\x15\xe7\x86\xf9\x35\x58\x83\xd6\x9d\x2f\x83\x3d\x5c\xce\xd7\x7b\x37\xf9\xa7\xbb\xd5\xce\xae\xf0\xc3\xfd\xfb\xde\xa0\x0e\xe3\xf9\x6a\x0d\x8e\x93\x0d\x76\x5a\x2c\xb6\x09\x40\x33\xfa\xe1\xd5\x79\x07\xa3\xef\xdd\x1c\x0c\x16\x4c\x32\xcd\x0b\x52\xf0\x26\x3e\x52\x09\x5c\x12\xa7\x85\x04\xa9\x49\xa5\xac\xa8\x02\x59\x46\xaa\x88\x77\x2a\x8e\x74\x84\xbc\x22\x9d\x96\x4c\xbc\x13\x8b\x98\x69\xd2\xa9\x54\xa4\x40\x0a\xe2\x48\x15\x24\x00\x00\xb2\x48\x65\x2c\x67\x8e\x8d\x72\x52\x3b\x49\x41\x05\x60\xd6\x26\x4d\x3c\x5c\x9b\x7c\x06\x00\x00\xff\xff\xeb\xf3\x59\x2c\x96\x01\x00\x00")
|
2019-05-22 19:29:30 +00:00
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
func distImagesIconsNomadLogoNSvgBytes() ([]byte, error) {
|
2019-05-22 19:29:30 +00:00
|
|
|
return bindataRead(
|
2021-01-13 16:52:51 +00:00
|
|
|
_distImagesIconsNomadLogoNSvg,
|
|
|
|
"dist/images/icons/nomad-logo-n.svg",
|
2019-05-22 19:29:30 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
func distImagesIconsNomadLogoNSvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsNomadLogoNSvgBytes()
|
2019-05-22 19:29:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
info := bindataFileInfo{name: "dist/images/icons/nomad-logo-n.svg", size: 406, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-05-22 19:29:30 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
var _distImagesIconsSearchSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x6e\xab\x30\x10\x85\xf7\x79\x8a\x23\xef\x3d\xf6\x18\x8c\x99\x28\x20\xdd\xdb\x6d\xbb\xea\x13\x44\x25\xc2\xa8\xe4\x47\x05\x61\x94\xa7\xaf\x4c\xd2\xae\x2a\xcb\xd6\x37\xe7\x7c\x9a\x85\x0f\xd3\xd2\x23\x0d\xdd\x1c\x1b\xc5\xb5\x42\x3c\x0d\x7d\x9c\x1f\xbc\x0c\xa7\xf4\xff\xba\x36\xca\xc2\x82\x6b\xe4\x6c\x3d\x8f\x97\xa9\x51\x71\x9e\x6f\x7b\x63\x52\x4a\x94\x0a\xba\x7e\xf5\xc6\x59\x6b\xcd\xb4\xf4\x4f\x65\xbf\x8e\xc3\xe5\xf3\x2f\x91\x45\xc4\x6c\xad\x6a\x77\xc0\xe1\x76\x9c\x23\xba\x46\xbd\xb1\x23\x0f\xe6\xa8\x29\xc8\xa8\xc9\xd5\x9a\x5c\xf8\x57\x51\x19\x18\x8f\xd7\x6e\x87\x0b\x54\xe4\x7f\xaf\x45\x2e\x32\x71\xf1\xc1\x54\xe5\xa9\x20\x2b\x9a\xbc\xa0\x24\x57\x68\x26\x1f\x46\x72\x81\x5c\xbd\xe4\xdd\x1e\x25\x89\xbc\x72\xa0\x52\xc0\xd5\xa8\xf3\xa8\xfd\xfd\xac\x2b\xd8\x97\x92\x2c\x83\x19\x0e\x35\x89\xc0\xe5\xd5\xef\x5b\xb8\x21\x5c\x2e\x7f\xa4\x1c\x6c\xda\x93\x99\xef\x0a\x43\xd7\xa8\xa3\x32\xed\xee\x90\x3f\xa4\xfd\x0e\x00\x00\xff\xff\x33\xfd\x80\x4a\x63\x01\x00\x00")
|
2019-01-30 18:49:44 +00:00
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
func distImagesIconsSearchSvgBytes() ([]byte, error) {
|
2019-01-30 18:49:44 +00:00
|
|
|
return bindataRead(
|
2021-01-13 16:52:51 +00:00
|
|
|
_distImagesIconsSearchSvg,
|
|
|
|
"dist/images/icons/search.svg",
|
2019-01-30 18:49:44 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
func distImagesIconsSearchSvg() (*asset, error) {
|
|
|
|
bytes, err := distImagesIconsSearchSvgBytes()
|
2019-01-30 18:49:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
info := bindataFileInfo{name: "dist/images/icons/search.svg", size: 355, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:12:41 +00:00
|
|
|
var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x95\x5d\x6f\xe2\x38\x17\xc7\xef\xfb\x29\xf2\x44\xe2\xee\x09\x79\x03\x02\x12\x54\xca\x40\x5a\x75\x45\x21\x13\xd2\x99\xe9\x15\xf2\xcb\x09\xf1\xe2\xc4\x59\xdb\xa1\xe5\xdb\xaf\xd2\x40\x26\xdb\x76\x46\xbb\x57\x60\xfb\x7f\x7e\xe7\xc5\x3e\x27\xf3\xff\xad\xb6\xcb\xf4\x39\x8e\x8c\x5c\x17\xfc\xf6\x66\xde\xfe\x18\xc6\x3c\x07\x44\x9b\x3f\x86\x31\x2f\x40\x23\x83\xe4\x48\x2a\xd0\x0b\xb3\xd6\x99\x35\x35\xfb\x47\xb9\xd6\x95\x05\x7f\xd5\xec\xb4\x30\x7f\x58\x4f\xa1\xb5\x14\x45\x85\x34\xc3\x1c\x4c\x83\x88\x52\x43\xa9\x17\xe6\x43\xb4\x00\x7a\x80\xab\xa5\x66\x9a\xc3\xed\x46\x14\x88\xce\xed\x76\xd1\x43\x96\xa8\x80\x85\x49\x41\x11\xc9\x2a\xcd\x44\xd9\x03\x99\x1f\x85\x27\x06\x2f\x95\x90\xba\xa7\x7a\x61\x54\xe7\x0b\x0a\x27\x46\xc0\x7a\x5b\xfc\xdf\x60\x25\xd3\x0c\x71\x4b\x11\xc4\x61\xe1\x9a\xb7\x37\x6f\xa4\x9b\x3e\xaa\x6c\x22\xb2\x6a\x66\x13\x51\x66\xec\x60\x43\x79\x62\x52\x94\x05\x94\x7d\xfa\x20\xf8\x32\xf0\xbc\x42\xd0\x9a\x43\x2c\x21\x63\xaf\x03\xcf\x1b\xf8\xe1\xc0\xf3\xae\x80\x66\xc3\x5b\x0e\x3c\xaf\x47\xe8\x44\x95\x14\xb4\x26\x4d\x62\x9d\x4c\x0a\xa1\x9f\x92\x75\x27\x19\x78\x77\x0d\xe4\xae\x13\x70\x41\x50\x63\x91\x9e\x2b\xe8\x54\xa8\xd6\xa2\x53\x44\x05\x06\x19\x6d\xbe\x5d\x4e\xdf\x62\xbc\x8b\xc2\xf4\x29\x89\x76\x3f\xf7\x82\xd5\x45\xfd\x23\x8d\x36\xab\x7d\x9c\x6c\xd3\x6d\xf3\x04\x76\x7d\xb3\x15\xd2\x17\x27\x19\xe2\x0a\x3a\xa3\x7d\x18\xc7\xeb\x87\x65\x98\x3e\x6c\x37\xfb\x34\x7a\x8c\xd7\x61\x1a\xed\xbf\x27\x61\x1c\x47\x49\xdf\xa0\x55\xaf\xa2\xbb\xf0\x69\x9d\xee\xc3\xdd\xf3\x66\xb9\xdf\x7e\xd9\x45\xc9\xb7\x28\xb9\x78\xd2\xb2\xbe\xea\xfe\xf8\xfa\x14\x25\xcf\xfb\x87\x4d\x1a\xdd\x27\x6f\xf0\x8f\xac\xce\xdb\x76\xb3\x7e\xde\xdf\xaf\x1f\x1e\x1f\xa3\x64\xbf\xdc\x3e\xc6\xdb\x4d\xb4\x49\xfb\xd0\x6b\xb4\x61\x1c\xf7\x93\xc2\x5c\x90\x23\x2b\x0f\x5f\x6b\x90\x0c\xd4\xfb\x28\x0a\x26\xd1\x01\x76\x04\x4a\x24\x99\xe8\x4a\xac\x0a\xc4\xf9\x92\xd7\x4a\x83\xec\x4a\xdd\x6a\xbf\x33\x9d\x6f\x50\x01\xaa\x42\xe4\x57\xbc\x46\x93\x8a\x23\x94\xbf\x39\x4f\xe0\xc0\xc4\x47\x81\xca\xc5\xcb\x4e\x0b\x79\xc6\x42\x1c\xd7\xac\x3c\x7e\x76\x23\xd0\x5c\xba\x45\x38\xb3\x5a\x5e\x3f\xe1\x5a\xb1\xf2\x10\x4b\xf1\x7a\x7e\x8f\xae\x15\xac\x20\x43\x35\xd7\x31\x52\x4a\xe7\x52\xd4\x87\x5c\x7d\x52\x42\x78\x6d\x1a\x2b\xac\x2a\xce\xda\xe7\x77\xcf\x05\x46\xfc\x9f\x91\x98\x86\x7d\xe9\xa5\x39\x67\xe5\xd1\x90\xc0\x17\xa6\xd2\x67\x0e\x2a\x07\xd0\xa6\x91\x4b\xc8\x16\xa6\x5d\x33\x1b\x29\x05\x5a\xd9\x27\x28\xa9\x90\x96\xe7\x06\xd3\xf1\x24\xc8\xb2\x80\xcc\xa6\x81\x33\x19\x7b\xde\xd8\x1d\x65\xd8\x09\xb2\x80\xfa\x18\x86\x44\xa9\x6b\xbf\xff\x4b\xf2\xb5\xff\xac\x31\xb8\xd9\x64\x36\x06\x4a\xfd\x6c\xe6\x8c\x70\x80\x90\xef\x7b\xd8\x09\xa6\x9e\xef\x8f\x5d\xfc\x39\x9b\x91\x66\xd8\xe8\x73\x05\x0b\x93\x15\xe8\x00\x76\x55\x1e\xfa\x6e\xec\x0c\x9d\x1a\xd1\x90\x11\xf1\x33\xef\x66\x64\xda\xd7\x99\x39\xc7\x82\x9e\x5b\xf2\xa5\x2a\xed\x1c\x33\x94\x24\x9f\x55\xc1\x9d\x8d\xb0\x0b\x0e\x9d\x4c\xa9\xeb\x42\x16\xa0\x11\xce\x7c\x7f\x04\xd8\x77\x30\x0a\x46\x74\xf8\xa7\x32\x6f\xe7\x76\x0b\xb9\xbd\xf9\x15\x8d\xe4\x75\x79\x1c\xce\x26\xfe\x70\x3a\xce\x1c\xc7\xf5\x7c\xcf\x05\x6f\x94\xd1\x09\x76\x1c\xf8\x4f\x10\x77\xe4\x0f\x7d\x8f\xc0\x64\xe4\xd2\x59\x00\x0e\xf1\x11\x0e\x32\x82\xde\x41\x7e\x97\x5b\x77\x0f\x14\x08\xf6\x71\xe0\x4d\xc6\x38\x43\x64\xe2\x4e\x67\x08\x82\x20\x20\x33\x87\x4c\x47\xee\xcc\x79\xc7\x6c\xa1\x94\x9d\x0c\x46\x17\x66\xfb\xba\x31\x52\x8c\x58\x54\x8a\x8a\x8a\x97\xd2\x7a\x11\xb2\xc8\x05\x87\xc6\x8c\xb2\xd3\x5b\xc9\xed\xb6\xe6\x73\xbb\xfd\x82\xfd\x1d\x00\x00\xff\xff\x7f\x25\xc8\x32\xd9\x06\x00\x00")
|
2019-01-30 18:49:44 +00:00
|
|
|
|
|
|
|
func distIndexHtmlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distIndexHtml,
|
|
|
|
"dist/index.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distIndexHtml() (*asset, error) {
|
|
|
|
bytes, err := distIndexHtmlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-04-07 20:21:26 +00:00
|
|
|
info := bindataFileInfo{name: "dist/index.html", size: 1753, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
var _distRobotsTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\xc8\x28\x29\x29\xb0\xd2\xd7\x2f\x2f\x2f\xd7\x2b\xca\x4f\xca\x2f\x29\x2e\xa9\x28\xd1\xcb\x2f\x4a\xe7\x0a\x2d\x4e\x2d\xd2\x4d\x4c\x4f\xcd\x2b\xb1\x52\xd0\xe2\x72\xc9\x2c\x4e\xcc\xc9\xc9\x2f\xb7\x52\xd0\xe7\x02\x04\x00\x00\xff\xff\x62\x07\x43\x8a\x35\x00\x00\x00")
|
2019-01-30 18:49:44 +00:00
|
|
|
|
|
|
|
func distRobotsTxtBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_distRobotsTxt,
|
|
|
|
"dist/robots.txt",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func distRobotsTxt() (*asset, error) {
|
|
|
|
bytes, err := distRobotsTxtBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
info := bindataFileInfo{name: "dist/robots.txt", size: 53, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
|
2019-01-30 18:49:44 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Asset loads and returns the asset for the given name.
|
|
|
|
// It returns an error if the asset could not be found or
|
|
|
|
// could not be loaded.
|
|
|
|
func Asset(name string) ([]byte, error) {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
if f, ok := _bindata[cannonicalName]; ok {
|
|
|
|
a, err := f()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
|
|
|
|
}
|
|
|
|
return a.bytes, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustAsset is like Asset but panics when Asset would return an error.
|
|
|
|
// It simplifies safe initialization of global variables.
|
|
|
|
func MustAsset(name string) []byte {
|
|
|
|
a, err := Asset(name)
|
|
|
|
if err != nil {
|
|
|
|
panic("asset: Asset(" + name + "): " + err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
|
|
|
// AssetInfo loads and returns the asset info for the given name.
|
|
|
|
// It returns an error if the asset could not be found or
|
|
|
|
// could not be loaded.
|
|
|
|
func AssetInfo(name string) (os.FileInfo, error) {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
if f, ok := _bindata[cannonicalName]; ok {
|
|
|
|
a, err := f()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
|
|
|
|
}
|
|
|
|
return a.info, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("AssetInfo %s not found", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AssetNames returns the names of the assets.
|
|
|
|
func AssetNames() []string {
|
|
|
|
names := make([]string, 0, len(_bindata))
|
|
|
|
for name := range _bindata {
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
return names
|
|
|
|
}
|
|
|
|
|
|
|
|
// _bindata is a table, holding each asset generator, mapped to its name.
|
|
|
|
var _bindata = map[string]func() (*asset, error){
|
2022-05-19 23:12:41 +00:00
|
|
|
"dist/assets/chunk.143.32ce641d97e0c3ab7fca.js": distAssetsChunk14332ce641d97e0c3ab7fcaJs,
|
|
|
|
"dist/assets/chunk.178.6699fe92c4e5ffb04a1a.js": distAssetsChunk1786699fe92c4e5ffb04a1aJs,
|
2022-04-07 20:21:26 +00:00
|
|
|
"dist/assets/chunk.331.2bf16a8aab827bcd7550.js": distAssetsChunk3312bf16a8aab827bcd7550Js,
|
|
|
|
"dist/assets/chunk.401.018c1d72186cc4f1a80c.js": distAssetsChunk401018c1d72186cc4f1a80cJs,
|
|
|
|
"dist/assets/chunk.401.018c1d72186cc4f1a80c.js.LICENSE.txt": distAssetsChunk401018c1d72186cc4f1a80cJsLicenseTxt,
|
2022-05-19 23:12:41 +00:00
|
|
|
"dist/assets/chunk.963.85f0012321e24fd6b00e.js": distAssetsChunk96385f0012321e24fd6b00eJs,
|
|
|
|
"dist/assets/chunk.963.85f0012321e24fd6b00e.js.LICENSE.txt": distAssetsChunk96385f0012321e24fd6b00eJsLicenseTxt,
|
2022-05-02 16:09:00 +00:00
|
|
|
"dist/assets/nomad-ui-5e1f695edd3f904b7aa332b07823351b.css": distAssetsNomadUi5e1f695edd3f904b7aa332b07823351bCss,
|
2022-05-11 01:14:22 +00:00
|
|
|
"dist/assets/nomad-ui-decb3b7265bfac6189ae777c90c84190.js": distAssetsNomadUiDecb3b7265bfac6189ae777c90c84190Js,
|
2022-05-02 16:09:00 +00:00
|
|
|
"dist/assets/vendor-194b1e0d68d11ef7a4bf334eb30ba74d.js": distAssetsVendor194b1e0d68d11ef7a4bf334eb30ba74dJs,
|
2021-11-09 22:55:13 +00:00
|
|
|
"dist/assets/vendor-2178567ff7c98706522514fb07f7d3be.css": distAssetsVendor2178567ff7c98706522514fb07f7d3beCss,
|
2021-01-13 16:52:51 +00:00
|
|
|
"dist/crossdomain.xml": distCrossdomainXml,
|
2021-11-09 22:55:13 +00:00
|
|
|
"dist/favicon.ico": distFaviconIco,
|
2021-01-13 16:52:51 +00:00
|
|
|
"dist/images/icons/boot.svg": distImagesIconsBootSvg,
|
2021-10-14 20:10:05 +00:00
|
|
|
"dist/images/icons/box.svg": distImagesIconsBoxSvg,
|
2021-01-13 16:52:51 +00:00
|
|
|
"dist/images/icons/cancel.svg": distImagesIconsCancelSvg,
|
|
|
|
"dist/images/icons/clock.svg": distImagesIconsClockSvg,
|
|
|
|
"dist/images/icons/console.svg": distImagesIconsConsoleSvg,
|
|
|
|
"dist/images/icons/history.svg": distImagesIconsHistorySvg,
|
|
|
|
"dist/images/icons/media-pause.svg": distImagesIconsMediaPauseSvg,
|
|
|
|
"dist/images/icons/media-play.svg": distImagesIconsMediaPlaySvg,
|
|
|
|
"dist/images/icons/node-init-circle-fill.svg": distImagesIconsNodeInitCircleFillSvg,
|
|
|
|
"dist/images/icons/nomad-logo-n.svg": distImagesIconsNomadLogoNSvg,
|
|
|
|
"dist/images/icons/search.svg": distImagesIconsSearchSvg,
|
|
|
|
"dist/index.html": distIndexHtml,
|
|
|
|
"dist/robots.txt": distRobotsTxt,
|
2019-01-30 18:49:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AssetDir returns the file names below a certain
|
|
|
|
// directory embedded in the file by go-bindata.
|
|
|
|
// For example if you run go-bindata on data/... and data contains the
|
|
|
|
// following hierarchy:
|
|
|
|
// data/
|
|
|
|
// foo.txt
|
|
|
|
// img/
|
|
|
|
// a.png
|
|
|
|
// b.png
|
|
|
|
// then AssetDir("data") would return []string{"foo.txt", "img"}
|
|
|
|
// AssetDir("data/img") would return []string{"a.png", "b.png"}
|
|
|
|
// AssetDir("foo.txt") and AssetDir("notexist") would return an error
|
|
|
|
// AssetDir("") will return []string{"data"}.
|
|
|
|
func AssetDir(name string) ([]string, error) {
|
|
|
|
node := _bintree
|
|
|
|
if len(name) != 0 {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
pathList := strings.Split(cannonicalName, "/")
|
|
|
|
for _, p := range pathList {
|
|
|
|
node = node.Children[p]
|
|
|
|
if node == nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if node.Func != nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
rv := make([]string, 0, len(node.Children))
|
|
|
|
for childName := range node.Children {
|
|
|
|
rv = append(rv, childName)
|
|
|
|
}
|
|
|
|
return rv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type bintree struct {
|
|
|
|
Func func() (*asset, error)
|
|
|
|
Children map[string]*bintree
|
|
|
|
}
|
|
|
|
var _bintree = &bintree{nil, map[string]*bintree{
|
|
|
|
"dist": &bintree{nil, map[string]*bintree{
|
|
|
|
"assets": &bintree{nil, map[string]*bintree{
|
2022-05-19 23:12:41 +00:00
|
|
|
"chunk.143.32ce641d97e0c3ab7fca.js": &bintree{distAssetsChunk14332ce641d97e0c3ab7fcaJs, map[string]*bintree{}},
|
|
|
|
"chunk.178.6699fe92c4e5ffb04a1a.js": &bintree{distAssetsChunk1786699fe92c4e5ffb04a1aJs, map[string]*bintree{}},
|
2022-04-07 20:21:26 +00:00
|
|
|
"chunk.331.2bf16a8aab827bcd7550.js": &bintree{distAssetsChunk3312bf16a8aab827bcd7550Js, map[string]*bintree{}},
|
|
|
|
"chunk.401.018c1d72186cc4f1a80c.js": &bintree{distAssetsChunk401018c1d72186cc4f1a80cJs, map[string]*bintree{}},
|
|
|
|
"chunk.401.018c1d72186cc4f1a80c.js.LICENSE.txt": &bintree{distAssetsChunk401018c1d72186cc4f1a80cJsLicenseTxt, map[string]*bintree{}},
|
2022-05-19 23:12:41 +00:00
|
|
|
"chunk.963.85f0012321e24fd6b00e.js": &bintree{distAssetsChunk96385f0012321e24fd6b00eJs, map[string]*bintree{}},
|
|
|
|
"chunk.963.85f0012321e24fd6b00e.js.LICENSE.txt": &bintree{distAssetsChunk96385f0012321e24fd6b00eJsLicenseTxt, map[string]*bintree{}},
|
2022-05-02 16:09:00 +00:00
|
|
|
"nomad-ui-5e1f695edd3f904b7aa332b07823351b.css": &bintree{distAssetsNomadUi5e1f695edd3f904b7aa332b07823351bCss, map[string]*bintree{}},
|
2022-05-11 01:14:22 +00:00
|
|
|
"nomad-ui-decb3b7265bfac6189ae777c90c84190.js": &bintree{distAssetsNomadUiDecb3b7265bfac6189ae777c90c84190Js, map[string]*bintree{}},
|
2022-05-02 16:09:00 +00:00
|
|
|
"vendor-194b1e0d68d11ef7a4bf334eb30ba74d.js": &bintree{distAssetsVendor194b1e0d68d11ef7a4bf334eb30ba74dJs, map[string]*bintree{}},
|
2021-11-09 22:55:13 +00:00
|
|
|
"vendor-2178567ff7c98706522514fb07f7d3be.css": &bintree{distAssetsVendor2178567ff7c98706522514fb07f7d3beCss, map[string]*bintree{}},
|
2019-01-30 18:49:44 +00:00
|
|
|
}},
|
|
|
|
"crossdomain.xml": &bintree{distCrossdomainXml, map[string]*bintree{}},
|
2021-11-09 22:55:13 +00:00
|
|
|
"favicon.ico": &bintree{distFaviconIco, map[string]*bintree{}},
|
2019-01-30 18:49:44 +00:00
|
|
|
"images": &bintree{nil, map[string]*bintree{
|
|
|
|
"icons": &bintree{nil, map[string]*bintree{
|
2021-01-13 16:52:51 +00:00
|
|
|
"boot.svg": &bintree{distImagesIconsBootSvg, map[string]*bintree{}},
|
2021-10-14 20:10:05 +00:00
|
|
|
"box.svg": &bintree{distImagesIconsBoxSvg, map[string]*bintree{}},
|
2021-01-13 16:52:51 +00:00
|
|
|
"cancel.svg": &bintree{distImagesIconsCancelSvg, map[string]*bintree{}},
|
|
|
|
"clock.svg": &bintree{distImagesIconsClockSvg, map[string]*bintree{}},
|
|
|
|
"console.svg": &bintree{distImagesIconsConsoleSvg, map[string]*bintree{}},
|
|
|
|
"history.svg": &bintree{distImagesIconsHistorySvg, map[string]*bintree{}},
|
|
|
|
"media-pause.svg": &bintree{distImagesIconsMediaPauseSvg, map[string]*bintree{}},
|
|
|
|
"media-play.svg": &bintree{distImagesIconsMediaPlaySvg, map[string]*bintree{}},
|
2020-05-14 20:49:42 +00:00
|
|
|
"node-init-circle-fill.svg": &bintree{distImagesIconsNodeInitCircleFillSvg, map[string]*bintree{}},
|
2021-01-13 16:52:51 +00:00
|
|
|
"nomad-logo-n.svg": &bintree{distImagesIconsNomadLogoNSvg, map[string]*bintree{}},
|
|
|
|
"search.svg": &bintree{distImagesIconsSearchSvg, map[string]*bintree{}},
|
2019-01-30 18:49:44 +00:00
|
|
|
}},
|
|
|
|
}},
|
|
|
|
"index.html": &bintree{distIndexHtml, map[string]*bintree{}},
|
|
|
|
"robots.txt": &bintree{distRobotsTxt, map[string]*bintree{}},
|
|
|
|
}},
|
|
|
|
}}
|
|
|
|
|
|
|
|
// RestoreAsset restores an asset under the given directory
|
|
|
|
func RestoreAsset(dir, name string) error {
|
|
|
|
data, err := Asset(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
info, err := AssetInfo(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RestoreAssets restores an asset under the given directory recursively
|
|
|
|
func RestoreAssets(dir, name string) error {
|
|
|
|
children, err := AssetDir(name)
|
|
|
|
// File
|
|
|
|
if err != nil {
|
|
|
|
return RestoreAsset(dir, name)
|
|
|
|
}
|
|
|
|
// Dir
|
|
|
|
for _, child := range children {
|
|
|
|
err = RestoreAssets(dir, filepath.Join(name, child))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func _filePath(dir, name string) string {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:52:51 +00:00
|
|
|
|
2019-01-30 18:49:44 +00:00
|
|
|
func assetFS() *assetfs.AssetFS {
|
|
|
|
assetInfo := func(path string) (os.FileInfo, error) {
|
|
|
|
return os.Stat(path)
|
|
|
|
}
|
|
|
|
for k := range _bintree.Children {
|
|
|
|
return &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: assetInfo, Prefix: k}
|
|
|
|
}
|
|
|
|
panic("unreachable")
|
|
|
|
}
|