2017-10-19 22:20:39 +00:00
|
|
|
// Code generated by go-bindata.
|
|
|
|
// sources:
|
2022-10-26 17:50:29 +00:00
|
|
|
// ui/dist/assets/chunk.143.48119a334ff734324b1b.js
|
|
|
|
// ui/dist/assets/chunk.178.b8f5106e989af93f5388.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-09-14 18:59:59 +00:00
|
|
|
// ui/dist/assets/chunk.6.c15cf43689aad35b4c31.js
|
|
|
|
// ui/dist/assets/chunk.6.c15cf43689aad35b4c31.js.LICENSE.txt
|
2022-10-26 17:50:29 +00:00
|
|
|
// ui/dist/assets/nomad-ui-538907d3a38823a32a18c8701313f9be.js
|
|
|
|
// ui/dist/assets/nomad-ui-53c809b4e175a108d1bdf080b59d01db.css
|
2022-09-14 18:59:59 +00:00
|
|
|
// ui/dist/assets/vendor-8d1246b27592b361fb3ba91a1df9b9dd.js
|
|
|
|
// ui/dist/assets/vendor-f4da1fe0ef1f52a5b9db781a71ee770b.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-10-26 17:50:29 +00:00
|
|
|
var _distAssetsChunk14348119a334ff734324b1bJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x5a\x5f\x73\xdb\x38\x92\x7f\xf7\xa7\x70\xf0\xa0\x25\xca\x14\x2d\x92\xe2\xdf\x0c\x92\xdb\x9b\x9d\xad\xba\xaa\xdd\xf1\x54\xcd\xec\x93\x4e\xe5\x82\x49\xc8\xa2\x4d\x82\x1a\x00\x74\xa2\xd8\xba\xcf\x7e\xd5\x68\x90\x52\x32\xb1\x66\xfc\xe2\xf4\xaf\xd1\x00\x1a\xdd\x8d\xee\x06\xa3\x27\xae\x2e\x6f\x6f\x45\x77\x27\xd4\x2d\x1f\x4c\x7f\xdb\x74\xbb\x5e\x99\xdb\xdb\xf7\x9e\x47\xd9\x87\x67\x18\x17\xbe\xf2\x8d\xaf\x7d\xe9\xf7\xec\x39\xcd\x16\x8b\xd2\xb3\xac\x71\x5c\xb3\x67\x12\x5c\xf3\x0d\x29\xf3\x65\x9c\xf8\x96\x0e\x1e\xf4\x09\x54\xa4\x2c\xd2\x2c\x46\x7a\x5e\x7f\x21\x65\x12\x15\xe9\x04\xad\xf0\x09\xe7\xf1\x13\x29\xa3\x3c\x49\x26\x68\x05\x4e\x38\xed\x9e\x94\x59\x3e\xc9\xb7\x7b\x2b\x70\xc2\xe9\x38\x29\xa3\x78\x51\x4c\x10\x57\x38\x72\x34\x27\x65\xbc\x28\xb2\x09\x5a\x81\x13\x8e\x91\xa4\xcc\xb2\x28\x9f\x20\x6e\x31\x71\x2c\x9c\x0e\xf5\x85\x94\x71\x8c\x9b\xe3\x69\x1c\xba\x13\xa4\x0c\xc3\xe5\x02\x69\x3b\x32\xc1\x7b\x52\x2e\x8b\xc4\xd1\x76\x68\x82\x1d\x29\xd3\x62\x99\x21\x6d\x87\x26\x28\x49\x19\x26\x61\x82\xf4\xfc\xae\x26\xe5\x72\x91\x46\x13\xc4\x75\x26\x0e\xee\x38\xca\xf7\xa4\xcc\xb3\x24\x46\x1a\x3d\x34\x42\x45\xca\x78\x19\x39\x1a\x4f\x30\x42\x58\x30\x09\xf1\x38\x1a\xd7\x77\xb0\xe2\xa4\xcc\xd2\x2c\x42\x1a\x0d\x34\x42\x7b\xd2\xb8\x40\xda\x1d\xdc\xc1\x27\x52\x2e\xb3\x30\x46\x1a\x17\x1c\xe1\x9e\x94\x49\x1e\x2d\x90\xc6\xb0\x70\xb0\xe6\xa4\x5c\x86\x71\x88\x34\xce\x1a\xa1\x20\x65\x9c\x62\xa8\xd5\x62\xce\x8d\x55\x3e\x9a\xe0\x78\x9c\x91\x53\x6d\x49\x99\x46\xcb\x74\x82\x68\xe1\x89\x83\xf2\xe3\x82\x4f\xa4\xcc\x17\xcb\x02\x69\x34\x9a\x83\xa2\x25\x65\xb2\x58\xa4\x48\xa3\xb6\x23\x94\x73\x3e\x80\xe4\x09\x74\x73\x27\x0e\x58\xaf\xc8\x4e\x20\x86\xd4\x91\x73\x7f\x07\xae\xcc\x93\x09\x3a\xe7\x4e\x9c\x46\x40\x60\x4c\xf2\x8d\x70\xa1\x72\xe4\x58\x0d\xf3\x62\x82\x4e\xc9\x23\x47\x92\x32\x89\x17\xcb\x09\xa2\xc0\x91\x23\xbf\x90\x32\x5a\xe6\xf1\x04\xf1\x22\x1d\x39\xfa\x1e\xee\x79\x5a\x4c\xd0\xdd\x7c\xc7\xe9\x49\x19\x66\x09\xae\x86\x21\x37\x41\xa0\x97\x79\x8e\xf4\xbc\x86\xe0\x8c\xf3\x6c\x82\xb8\xce\x91\xd3\x7d\x26\x65\x94\x26\x47\x88\x9a\x1c\x39\x03\x58\x6f\x51\x14\x13\x44\x7b\x4e\x1c\xdc\x7d\xdc\xd1\xc0\x31\x43\x47\xbb\x53\x3b\x38\xc0\x3d\xc7\xfb\x2b\x06\x77\xed\x11\x6e\xc0\x65\x31\x9e\x7d\xe3\xfc\x35\xc2\x86\x94\x61\x9c\x47\x48\xe3\x5e\x13\x6c\x49\x99\x17\x49\xe1\x00\x9e\x6c\xc4\x3d\x29\xb3\x04\x63\x6d\x83\x87\x9e\xa0\x22\x65\x14\xa2\x94\xb2\xe1\x92\xe4\x79\x3a\x41\x77\x3d\x8e\x9c\x2d\x29\xc3\x22\xcd\x26\x88\x4a\x4c\x1c\xb4\x97\x5b\x6f\x0f\x71\x52\xa0\xe6\x7b\x17\x36\x08\xef\x39\x29\xf3\xbc\x08\x91\x46\x5d\x47\x58\x93\xb2\x48\xd0\x7d\xf7\x98\x6a\x26\xd8\x92\x32\xcc\xd3\x04\x69\xdc\x79\x84\x7d\x37\xaf\xc5\x13\x98\x6e\x99\x7f\xc5\xc1\x15\x4e\x98\x2d\x87\xb4\x9b\xe7\x18\x3c\x23\xc7\xe9\xe0\x98\x03\xe4\xc9\x22\x47\xda\xa5\x4d\x84\x5b\x48\xb6\xd1\xd2\xd1\xa8\xc3\x08\xc1\x3b\xc9\x62\x81\xb4\xcb\x8a\x0e\x2a\x52\x2e\x73\xcc\xe3\x5b\x34\xd2\x04\x61\xaf\x3c\x5d\x22\xed\x86\x1c\xdc\xcf\x39\x64\xe9\x45\xba\x98\x20\x9a\xd1\x71\x9a\x9a\x94\x49\xb1\x8c\x90\x46\x5f\x8d\x10\x4e\x5d\x44\x21\xd2\x68\x84\x11\x1a\x52\xa6\x59\xee\x68\xeb\xd2\x22\xce\xf2\x09\xba\x90\x1b\x39\xb8\xa3\x93\x7f\x80\x9a\x97\xa1\x7f\x1f\x5c\xc1\x1b\xe1\x13\xe4\xb7\xd4\xd1\x2e\xdd\x21\x7c\x84\x1c\x8e\x04\x06\x9f\xa5\x1f\x21\x70\x92\x08\x69\x17\x47\x0e\x76\xa4\x8c\x13\x2c\x61\x8f\x78\xe4\x09\x42\xc9\x5c\x66\xb8\xac\xab\x97\x23\xec\xad\xa3\x43\xa4\x47\xbf\x23\x1c\xa0\x8e\x62\xdd\x7d\x1c\x5c\x59\x75\x10\xa2\xd4\xad\xed\x82\x14\x51\x0b\x99\x31\x42\x6b\xb6\x2e\x2d\x8e\xb0\xb7\x97\xa2\x40\x7a\xbc\x23\x08\x0d\xc4\x7f\x9c\x23\xed\xae\x83\x83\x4f\x10\xca\xcb\x10\x69\x17\xd9\x08\x3b\xa8\x2e\x05\x56\xb5\xce\xd5\x86\x11\x36\xa4\xcc\xd3\x28\x45\x1a\xc3\x74\x84\x8f\xa4\x5c\xc6\x68\xb2\x0e\x2d\x38\xc1\x16\xce\x81\x41\xdf\xb5\xee\x58\x0e\x4a\x70\x0c\xaa\xd4\x49\xe7\x27\x07\x15\x44\x33\x36\x38\x9d\x72\xc1\xed\x20\x18\x7a\x81\x81\xde\xe9\x79\xb7\xb7\x29\x3e\x9c\xe0\x98\xf4\x1d\x07\x1d\x33\xca\x1b\xe8\x9b\xc2\x25\xd2\xae\x8d\x72\x70\x0f\xc5\x06\xb3\x94\x5b\x64\x84\xf2\x8e\x94\x69\x1e\x2d\x91\x46\x3d\x47\x28\xec\x85\xcc\x90\x1e\xef\x27\xc
|
2019-01-30 18:49:44 +00:00
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
func distAssetsChunk14348119a334ff734324b1bJsBytes() ([]byte, error) {
|
2019-01-30 18:49:44 +00:00
|
|
|
return bindataRead(
|
2022-10-26 17:50:29 +00:00
|
|
|
_distAssetsChunk14348119a334ff734324b1bJs,
|
|
|
|
"dist/assets/chunk.143.48119a334ff734324b1b.js",
|
2019-01-30 18:49:44 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
func distAssetsChunk14348119a334ff734324b1bJs() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk14348119a334ff734324b1bJsBytes()
|
2019-01-30 18:49:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.143.48119a334ff734324b1b.js", size: 10644, 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-10-26 17:50:29 +00:00
|
|
|
var _distAssetsChunk178B8f5106e989af93f5388Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x51\x6f\xe2\x38\x10\x7e\xe7\x57\x00\x0f\x91\x47\xb8\xde\xd0\xae\xb6\x5d\xe8\xb0\xb7\xba\xbb\x87\x7b\x38\x71\xd2\xee\x5b\x14\x45\x86\x0c\xe0\x36\xd8\xd4\x71\xe8\x45\x21\xff\xfd\xe4\x98\x94\x4a\x57\x1e\xf6\x05\x26\xe3\xef\x9b\x19\x8f\xbf\xb1\x8f\xd2\x0e\xb3\x8c\xf6\x2b\xb2\x99\xac\x9c\xc9\xd4\xfe\x60\xac\xcb\xb2\x39\x63\x80\x8b\xc6\xaf\x13\xb7\xd8\xdc\x3f\xdc\xcd\x36\x95\x5e\x3b\x65\x34\x23\x6e\xa1\x79\x55\x3a\x37\xaf\x22\x23\xa9\x32\x8b\x96\x5e\x2a\x65\x89\xbf\xf7\xe6\x98\xd3\x46\x69\x6a\xf9\xed\xc3\x97\xaf\x33\x4f\xe3\xa6\x8f\xea\xb8\x1e\x90\xa0\x7f\x7d\xba\x12\x99\xc3\x40\xe1\x3a\x18\xb6\x8f\xd4\xd5\xf6\xbd\x72\xe6\xaf\xae\xb2\x3f\x6a\x2d\xf7\x6a\x8d\x97\x5a\xa0\xb1\xe4\x2a\xab\x87\x53\x44\x94\x76\x5b\xed\x49\xbb\x52\x14\xa4\xb7\x6e\xf7\x4d\xb3\x71\x08\x5c\xeb\x6c\x3c\x21\x98\xbd\x73\xb8\xce\xc3\xbe\x5b\x2b\x6b\x71\xb0\xc6\x19\x57\x1f\x48\x94\x85\x5a\x93\x58\xcb\xa2\x60\x6f\xe1\xf8\x14\xa0\xbd\x52\xd2\x8f\x5a\x7f\x58\x4f\x9f\xa9\xac\xf5\xfa\x57\x33\x39\x36\xfe\xcd\x9a\x78\x6b\x3f\xad\x49\xad\xcc\x98\x27\x29\x67\x6f\x39\xde\x52\x18\x76\xf7\xf9\x01\x5a\x00\x4f\x78\x7a\xa9\xc8\xd6\xd7\xa1\xf7\x77\x77\x5f\x7b\xec\x4b\xa5\x95\xbb\x0e\xfd\x3a\xfd\xd2\x21\x8f\x46\xe5\x43\xc7\xc6\xb6\x3c\x1e\xae\xa3\x6f\xe3\xdb\x5b\x0f\x87\xb6\xe5\x06\x9b\x76\xd0\x83\x86\xce\xb7\xc3\x9f\xb6\x46\x93\x50\x3a\x50\x1b\xd6\x85\x8c\x47\x88\x1a\xfa\x3e\xf5\x2a\x18\x78\xa4\xea\x90\xd8\xa8\x7c\x46\xbc\x30\x32\xa7\x7c\x36\x9a\xf2\x33\x64\xd6\xb4\xed\xe0\xcc\xb3\x09\xa5\xa1\x79\xaa\x8f\xc0\x15\xbf\xd8\x0e\xb8\x12\x21\x02\x8e\xe2\xcb\x42\xeb\xc4\x1e\x2d\x27\x4c\x52\xee\xc4\x12\x99\xe5\x86\x6b\xae\xbc\x32\xd5\x86\x8d\x4c\x28\x59\xe2\xf4\x53\x3c\xd8\x18\xcb\x72\x8c\xe7\xf9\x23\x9d\x25\x35\xcf\x27\x13\x68\xbc\xff\x28\x6d\xd2\x31\x53\xa4\x24\x4f\x79\xe5\xd3\x64\x18\xcf\xb3\x47\xd3\x83\xb3\xc9\x04\xd8\x68\x1a\xa9\xd3\x49\x2e\x50\x41\x14\x2d\x57\x4f\xb4\x76\xe2\x99\xea\x92\x39\xb1\x04\x41\x47\xb2\x35\x63\x84\x0b\x27\x96\x09\xa5\xcc\x24\x59\x0a\x00\xdf\x8c\x28\x0f\x5e\x21\x2c\xbb\xb9\xe1\x53\x98\xb1\x0a\x47\x53\xae\x1e\x65\x14\x31\x89\x0a\xc0\xf7\xb3\x82\x86\x7a\x5c\xde\xe1\xba\x36\x16\xa8\x19\x0c\xde\x9a\x5d\x44\x11\xb3\x58\x40\xdb\xf6\xcd\x6b\x15\xaa\xd3\x29\x6c\xd0\x13\x72\xbc\x6c\x70\x11\x47\x11\x25\xf9\xcd\x34\x4d\x6e\xd3\x85\x9a\xe7\x37\x37\xe0\x77\x88\xc1\x39\xe8\xec\xf3\xd6\x5b\xee\x44\x8e\xdd\x95\x80\x8b\xbe\x2d\x43\x33\x54\x7a\x68\xc1\x09\xe3\xbb\x0b\x51\x34\xf2\x26\x75\xe6\xb9\x01\xe1\x6e\xf8\xc7\x9a\x03\x59\x57\xfb\x35\xde\x90\xae\xf6\x64\xe5\xaa\xa0\xd9\x28\xe6\x5b\x72\x33\x9b\x98\xb4\xf5\x03\x21\x4c\x9f\xe4\xcc\xbf\x8c\xd1\x4e\x96\xcb\x57\xdd\x47\x0a\x92\xf0\x50\xee\x84\x45\xc2\x45\x33\xae\x74\xc8\x96\x8f\x47\xe8\x29\x66\x33\xfc\x51\xef\x57\xa6\x88\xa2\xf0\x2f\x9c\xf9\xe1\xac\xd2\xdb\x9f\x72\x7b\xbd\xc2\xff\x63\x79\x73\x94\x45\x45\xb3\xf1\xdf\x26\xaf\x0a\x1a\xb7\xc0\xaf\x91\xc7\x59\x46\xe5\x19\xd6\xd3\x46\x71\xd8\x9b\xde\xe7\xbe\x50\x46\xe2\x20\xdd\xae\xf4\xca\x24\xb1\xde\xa9\x22\xb7\xa4\x4f\x27\x76\xf9\xc0\x24\x05\x4e\xc0\xdf\x5d\xcf\xd8\x4c\xef\x1f\x66\x71\x3b\x70\x62\x29\x9e\xd0\xe2\x22\x46\x44\x4a\x6c\xda\x29\xc1\x76\x02\xef\xd1\x9a\x2b\x9e\x48\x5e\xf1\x2c\x45\xc3\x0b\x8c\xbd\x86\xa4\x28\xcd\x9e\x18\xf3\xd4\x51\xa0\x02\x04\x8d\x6b\x7f\x90\x55\x77\x90\x15\xd7\x10\x45\xcc\x89\x7d\xa2\x53\xac\x12\x9d\x76\x02\xcc\x20\xc8\x27\x63\x0e\x5a\x4f\xb1\x51\x64\x99\x81\x79\xf1\x28\x7b\x45\x15\x93\x09\x28\x94\x49\xe1\x27\xce\xeb\xc0\x0f\x02\x25\x2a\x0d\xbf\x49\x9c\x32\xe0\xde\xc2\xb8\x9f\x6e\x27\x96\x2c\x07\x7f\xa1\x6c\x0b\xb3\x92\xc5\xcf\x9d\x2a\xc5\x2b\xad\x0e\x72\xfd\xfc\xfb\xae\xd2\xcf\x1f\xbc\x5a\xbf\x00\x3d\x9d\x92\x74\x60\xc4\xc6\xd8\x3f\xe5\x7a\xc7\xac\x58\x29\x9d\x33\x5d\x15\x05\x8f\x01\xb8\x11\x87\xaa\xdc\xe1\x7b\x77\x70\x05\x87\x01\x68\x81\x79\x81\x2d\xcf\x17\x1a\x4f\x3e\xc7\xd3\x34\x1c\x8b\x63\xf7\x0f\x77\x00\x61\x10\x35\x5e\x03\xf9\x47\xd1\xa3\x02\x42\x03\xff\xf0\x21\x46\xed\x33\x0d\xfe\x0b\x00\x00\xff\xff\x12\xb5\x7c\xac\xa9\x07\x00\x00")
|
2019-01-30 18:49:44 +00:00
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
func distAssetsChunk178B8f5106e989af93f5388JsBytes() ([]byte, error) {
|
2019-01-30 18:49:44 +00:00
|
|
|
return bindataRead(
|
2022-10-26 17:50:29 +00:00
|
|
|
_distAssetsChunk178B8f5106e989af93f5388Js,
|
|
|
|
"dist/assets/chunk.178.b8f5106e989af93f5388.js",
|
2019-01-30 18:49:44 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
func distAssetsChunk178B8f5106e989af93f5388Js() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk178B8f5106e989af93f5388JsBytes()
|
2019-01-30 18:49:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.178.b8f5106e989af93f5388.js", size: 1961, 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-09-14 18:59:59 +00:00
|
|
|
var _distAssetsChunk6C15cf43689aad35b4c31Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\xfd\xdd\x92\xe3\x36\xf2\x28\x88\xdf\xeb\x29\x24\xc6\x98\x43\x98\x90\x8a\x54\x7d\x53\x85\x52\xb4\xdb\xed\x69\x8f\xab\xba\x7b\x5c\xed\xf1\xd8\x2a\x4d\x05\x44\x42\x25\xba\x29\x50\x26\xa1\xfa\x70\x51\x11\xe7\xfe\x1f\xff\x88\xf3\x08\x27\x36\xf6\x7a\x1f\xe2\x3c\xc5\x5e\xff\x9e\x64\x03\x09\x90\x04\x29\xa9\xdd\x73\xe2\x6c\x6c\x87\xcd\x12\x41\x20\x01\x24\x12\x89\xcc\x44\x22\x71\xf0\x75\xaf\xfb\x5d\x9a\x75\x93\x38\x64\x3c\x67\xdd\x98\xcf\xd3\x6c\x49\x45\x9c\xf2\xee\x2a\x61\x34\x67\xdd\x9c\xb1\x6e\xb8\x58\xf3\x4f\x83\x93\x41\xe8\x1f\x87\xf3\xa3\xc3\x93\xb3\x73\x4a\xa3\xc3\xe3\xd9\x51\x78\xe8\x0f\x7e\xcb\x07\x57\xdf\xbf\x7e\xf3\xee\xe6\xcd\x40\x3c\x89\xee\xd7\x07\x1d\xe7\x3e\x49\x67\x34\xf9\xb8\x88\xf3\xc1\x23\x9b\xad\x68\xf8\xe9\xb5\x84\x70\xc7\x96\x33\x96\xdd\xd1\xb5\x48\xef\xe2\xe5\x2a\xcd\xc4\x1d\xf9\xf2\xac\x45\x31\x99\xa2\xc1\x6a\x9d\x2f\x9c\xc9\xe4\x64\x8a\x5f\x4e\x0e\x8f\x8f\x03\x41\x2e\x5f\xac\xb5\x6c\xa7\xc8\xe2\x50\x58\x9d\x07\x9a\x75\x19\x99\xaf\x79\x28\x7b\xe1\xa0\x97\xf2\x67\x57\x38\x02\x33\xf4\x32\x4f\x33\x47\x66\xe2\xc4\x1b\xf1\x0b\x36\x48\x18\xbf\x17\x8b\x11\x77\x5d\xf4\x22\xd3\x33\xc2\x26\x7c\xda\xc9\x06\x8c\xaf\x97\x2c\xa3\xb3\x84\x11\xf3\xa5\x28\x7a\x3e\xce\x06\x61\xca\xe7\xf1\xfd\x5a\x7d\xef\x79\xd8\x7a\xa0\xc9\x9a\x59\x31\xef\x66\xb6\xed\x64\x83\xc7\x2c\x16\xfa\x1b\xc2\xef\x67\xbf\xb1\x50\x0c\x22\x36\x8f\x39\xfb\x90\xa5\x2b\x96\x89\x67\x47\xe0\x6c\xf0\x89\x3d\xe3\x0c\x6d\x36\x19\x13\xeb\x8c\x77\xab\x76\x33\xcc\x71\x86\x5e\x74\x32\xb7\x6d\xe1\xb0\xc1\x2a\x4b\x45\x2a\x9e\x57\x0c\x73\x84\x33\x48\xc3\x19\xc2\x6c\xb3\x71\x10\xe6\x64\x32\x79\x09\xd3\x24\xcd\x02\xcb\xc3\x5d\xf9\x9f\x85\xc3\x84\xe6\x79\x60\x51\x9e\xc7\xfd\x59\x42\xc3\x4f\xd6\x06\x97\x99\xfc\xb3\xd3\x5d\xd9\x32\x16\x19\x99\x3c\xdc\x55\xf9\x9a\x99\xee\x33\xc6\x78\x1b\xd6\xae\x8c\xcf\x2c\x49\xd2\xc7\x26\x40\x05\xb3\xdd\xb8\x35\xdb\xd1\xb6\xad\x7c\x4b\x7a\xcf\xb8\xa0\x3b\x5a\xb8\x95\x35\x7c\xa6\x66\x13\x87\xc7\xc7\x58\xff\xdf\xcc\xf7\xb8\x88\x05\xb3\x36\x53\x5c\xa1\xef\xec\x18\x77\xd5\xff\xad\x46\x66\xf1\xfd\x42\x6c\x21\x52\x42\xfd\x5c\xfe\x2d\x8c\x42\x81\xf6\xe8\xa8\xbc\x6d\xc4\x42\x56\x5d\xc1\xce\x02\x5b\x08\x2e\x1b\xbf\xd5\xcf\xaa\xf5\x0d\x4c\x57\x8d\xdf\x97\x7f\x1b\xe3\x67\x65\x93\xf6\x15\xd9\x81\xf9\xcf\x17\x28\x87\x60\x8a\xb3\x3d\x53\x17\xbd\xf4\xaa\x0f\x30\x8d\xe3\xb9\xd3\x73\x44\x37\xe6\xb9\xa0\x3c\x64\xe9\xbc\xcb\x10\x12\x8b\x2c\x7d\xec\x72\xf6\xd8\xfd\xf8\xbc\x62\x6f\xb2\x2c\xcd\x1c\xeb\x35\xe5\x3c\x15\xdd\x90\x26\x49\x97\x76\xa1\xf6\x2e\xcd\xbb\xb4\x9a\x6c\x16\xda\x38\x62\x11\xe7\x58\x20\x2c\xff\x0e\xe6\xf7\x04\xfe\xce\xf4\xdf\xf9\xfd\x9d\xc8\xd6\x0c\xba\x53\x7e\x31\x52\xf8\x3a\x49\x54\x41\xd5\x1d\xe2\xa9\xb7\x88\x85\x69\x06\xcc\x34\x27\x93\x69\x39\xc5\x99\x23\x30\x94\x98\xbc\x7c\x62\xcf\x81\xc5\xf2\x90\xae\xd8\x77\x69\xf6\x56\x2c\x13\x0b\x03\x1b\x09\x6a\x3e\x50\xf2\x00\x47\xf6\x4a\xa0\x41\x23\xbb\xc3\xd0\x66\x83\x15\x9c\x24\xe6\x9f\xe2\xf9\xf3\x9f\x43\xd0\x19\xcd\xb2\x72\x2c\x3e\xa6\xbb\x1b\x80\x79\x1b\x40\x9d\x1b\xbe\xb6\xa0\xfc\x3d\x4f\xf9\x97\x43\x91\xb9\x77\x41\xf9\xc8\x9e\xc4\x9f\x77\xa5\xce\x0b\xbd\x99\x22\x2c\xb1\xab\x11\x9b\x33\xb1\x5e\x7d\xa0\x09\x13\x82\x6d\x81\x42\x2f\x30\x44\x1f\x5e\x5d\xbd\xf9\xf8\xf1\xcd\xdd\xeb\xf7\x57\xef\x7f\xbc\x21\x93\x69\xa7\x5c\x1e\x04\xf1\x46\xe2\x62\x38\x72\x5d\x81\xca\x34\x46\xbc\x11\xbb\x38\x1b\xb9\x2e\x43\x3b\x8a\xab\xc5\x89\x4f\xc4\x74\xc2\xa6\x03\xa0\x0d\x54\xc1\xcb\xc8\xc4\xc3\xe7\xc7\xd8\x3f\x3c\xc6\xfe\xe9\x31\x1e\xfa\xc0\x8a\xa6\x38\x26\x26\x61\xd7\x78\xea\x66\x13\x31\x75\x2d\xdc\xb5\xdc\x6c\xc2\xaa\x5f\x7c\xba\xc1\x94\x78\x23\x7a\x71\x32\x72\x5d\x5a\xb5\x2d\x25\xde\x28\x85\xb4\xb4\x4a\xcb\x89\x37\xca\x21\x2d\xdf\xdf\xde\xd8\xa1\x38\xc5\x39\xaa\x9b\x1a\x92\x33\xbc\x26\xde\x68\x7d\x31\x3c\x1a\xb9\xee\x1a\x87\x2e\xf1\xbd\xcf\x41\x08\x71\x88\x43\x54\x8f\xe1\xe7\x69\x5a\x54\x5d\x14\x83\x8c\xad\x12\x1a\x32\xe7\x60\x62\x5f\x5c\xde\x5a\xd3\x83\xfb\x25\x76\xb6\x73\x5a\xb6\x45\x88\x18\x5b\x36\x5d\xae\x46\x56\xf0\x57\xeb\xaf\xea\xf5\xf7\x75\x2a\x46\x56\x60\x5d\xe8\xcf\x09\xbc\x5d\xea\xb7\x7b\x78\xb3\x36\xe8\
|
2022-04-07 20:21:26 +00:00
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
func distAssetsChunk6C15cf43689aad35b4c31JsBytes() ([]byte, error) {
|
2022-04-07 20:21:26 +00:00
|
|
|
return bindataRead(
|
2022-09-14 18:59:59 +00:00
|
|
|
_distAssetsChunk6C15cf43689aad35b4c31Js,
|
|
|
|
"dist/assets/chunk.6.c15cf43689aad35b4c31.js",
|
2022-04-07 20:21:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
func distAssetsChunk6C15cf43689aad35b4c31Js() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk6C15cf43689aad35b4c31JsBytes()
|
2022-04-07 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.6.c15cf43689aad35b4c31.js", size: 1162635, 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-09-14 18:59:59 +00:00
|
|
|
var _distAssetsChunk6C15cf43689aad35b4c31JsLicenseTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6f\xe3\x2a\x14\xc5\xf7\xfe\x14\xb7\xb3\x9a\xa9\x12\x9c\x76\xde\x1f\xa9\x3b\x6a\xe3\x98\xf7\x1c\xc8\x03\xd2\x68\x96\xae\x43\x62\x3a\x89\x89\x00\x37\x4a\x3f\xfd\x13\x76\x3a\xca\xcc\x6c\x6b\xc9\xc6\xa0\xf3\x3b\x1c\xd0\xbd\xe9\xed\x4d\x02\xb7\x50\xf4\x5e\xa3\x17\x0f\xaf\x5f\xd1\x5f\xe8\x0e\xa6\x50\x99\x5d\x1b\x4e\x3a\x7e\x61\xdb\xbf\xbd\x9d\xa7\x5e\xd7\xae\x69\xe1\x73\x1b\xc2\xf1\x21\x4d\xb7\xbd\xd7\x2f\x1e\x19\xfb\x25\xf2\xf1\xcd\xec\xf1\xec\x06\xe0\x73\xf3\x05\xee\x67\x77\xf7\xd3\xfb\xd9\xdd\xdf\xf0\xaf\x71\x76\xbf\xb7\x1e\x84\xf1\xdf\x7f\xf0\xdf\x8d\xb3\xe8\xa0\x07\x1a\xef\xf7\x20\x22\xe9\x41\x68\xaf\xdd\xab\xde\x20\xc0\xc7\xba\x69\x35\x48\xbb\x0d\xa7\xda\x69\xa8\x4c\xa3\x3b\xaf\xe1\x1e\xcd\xde\x77\xbc\x58\x9d\x4e\x27\x54\x0f\x6a\x64\xdd\x2e\xdd\x8f\x42\x9f\x56\x34\x23\x4c\x92\xe9\x48\xa4\x49\x92\xde\xde\xc0\xed\x47\x3e\xc9\xcf\x67\x5e\x98\xc6\x59\x6f\xb7\x01\x32\xeb\x8e\xd6\xd5\xc1\xd8\x0e\x25\xc9\x52\xbb\x83\xf1\xde\xd8\x0e\x82\x85\xde\xeb\x09\x34\xf6\x78\x9e\xc0\xc1\x6e\xcc\xf6\x3c\x81\xba\xdb\xa4\xd6\xc1\xc6\xf8\xe0\xcc\x73\x1f\x34\x84\xd6\x78\xf0\xef\x67\xdf\x5a\x07\x75\x77\x4e\x8e\xbd\x3b\x5a\xaf\xe1\x64\x42\x0b\xd6\x0d\xa3\xed\x03\x6c\xb5\x06\xe3\xa1\xd5\x4e\x3f\x9f\x61\xe7\xea\x2e\xe8\x0d\x4a\x12\x55\x12\x90\xbc\x50\x6b\x2c\x08\x50\x09\x4b\xc1\x9f\x68\x4e\x72\xf8\x84\x25\x50\xf9\x09\x30\xcb\x21\x8a\xf0\x4a\x95\x5c\x40\x4e\x65\x56\x61\xba\x90\x80\xab\x0a\xd6\x58\x08\xcc\x14\x25\x12\xd6\x54\x95\x89\x20\x73\x2c\x72\x50\x1c\x54\x49\xe5\x95\x31\xcb\xaa\x55\x4e\xd9\x7c\xa0\xe8\x62\x59\x51\x92\x5f\xd3\xbc\x80\x05\x11\x59\x89\x99\xc2\x8f\xb4\xa2\xea\x5b\x12\x37\x2e\xa8\x62\x44\x4a\x04\x94\x01\xe3\x40\x9e\x08\x53\x20\xcb\x68\x72\x95\xe9\x91\x40\x45\xf1\x63\x45\xa0\xe0\x02\x30\xfb\x06\x72\x49\x32\x8a\xab\x09\xe4\x54\x90\x4c\x4d\x12\xca\x2e\x7f\xc0\x05\x64\x9c\x49\xf2\xdf\x8a\x30\x45\x71\x05\x39\x5e\xe0\x79\x8c\x30\xa2\xef\xd3\x75\x89\x95\xe4\xe4\x89\x08\x10\x44\xae\x2a\x15\xd3\x17\x82\x2f\x92\x8a\xcb\x21\xf0\x4a\x92\x09\xe4\x58\xe1\x88\x2e\x05\x2f\xa8\x92\x13\x58\x97\x44\x95\x44\xc4\xc4\x98\x01\xce\x14\xe5\x2c\xaa\x33\xce\x94\xc0\x31\x01\x23\xf3\x8a\xce\x09\xcb\x08\x70\x91\xf0\x41\xad\xb8\x50\x94\xaf\xe4\x05\x98\x00\x16\x54\xc6\x1d\xf9\x4a\x45\x9a\x0f\x86\x19\x67\x8c\x8c\x8e\xf1\xba\x87\x3b\x58\xc9\xc1\x66\x49\x44\xc1\xc5\x02\x0f\xae\xc5\xcf\xd7\x8f\x92\x0f\x2d\xe9\x1f\x8d\x12\x74\x68\xb5\x8b\xed\x86\x66\xe3\x62\x7a\xf3\x4b\x8f\xff\x23\xa1\xb0\x7d\xb7\x19\xea\x3c\x16\x31\xd8\x81\x69\x6c\x37\xd6\xb1\x75\x7e\xe4\x76\x26\xb4\xfd\x33\x6a\xec\x21\x3d\xd8\x83\xee\xc2\x65\x98\x06\x73\xd0\x6f\xb6\xd3\xa3\xec\xd2\xba\xf0\x00\x0b\xaa\xc6\xa5\x5f\x74\xe8\xc5\x5f\xaf\xff\x3e\x85\xbd\x6d\xea\xbd\x8e\x19\xb6\x66\xd7\x8f\x3d\x38\x6a\x5e\xb5\x1b\x7a\xf0\x01\x66\xe8\x4f\xf4\xf5\x8f\xe4\xff\x00\x00\x00\xff\xff\x6d\x02\x11\x79\xfd\x04\x00\x00")
|
2022-04-07 20:21:26 +00:00
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
func distAssetsChunk6C15cf43689aad35b4c31JsLicenseTxtBytes() ([]byte, error) {
|
2022-04-07 20:21:26 +00:00
|
|
|
return bindataRead(
|
2022-09-14 18:59:59 +00:00
|
|
|
_distAssetsChunk6C15cf43689aad35b4c31JsLicenseTxt,
|
|
|
|
"dist/assets/chunk.6.c15cf43689aad35b4c31.js.LICENSE.txt",
|
2022-04-07 20:21:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
func distAssetsChunk6C15cf43689aad35b4c31JsLicenseTxt() (*asset, error) {
|
|
|
|
bytes, err := distAssetsChunk6C15cf43689aad35b4c31JsLicenseTxtBytes()
|
2022-04-07 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/chunk.6.c15cf43689aad35b4c31.js.LICENSE.txt", size: 1277, 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-10-26 17:50:29 +00:00
|
|
|
var _distAssetsNomadUi538907d3a38823a32a18c8701313f9beJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xfb\x76\xdb\x36\xba\x30\x0e\xff\xef\xab\x90\xb9\xb3\xbd\xc9\x16\x92\x2d\x27\x4e\x5b\xcd\xb0\x6e\x9a\xa4\x33\x99\x9d\x34\x99\x38\xdd\x33\xfb\x55\xb5\x6a\x88\x84\x24\x24\x14\xc9\x82\xa0\x6d\x45\xe6\x5a\xef\x6d\x7c\x37\xf0\x5d\xd8\x7b\x25\xbf\x85\x23\x41\x90\x94\x28\xdb\x49\x9b\x36\x5d\x69\x22\x92\xc0\x83\xf3\x73\xc2\x73\x70\xf2\x0c\xf5\x32\x4a\x70\x40\x9d\xbd\x10\xcd\x70\x8c\x5c\x27\x4e\x96\x30\xec\xe7\xf8\x10\x4e\x71\x84\x29\x46\xd9\x21\x9c\x66\x94\xc0\x80\x3a\x60\xec\xa0\xab\x34\x21\x34\x73\x80\x83\x96\x53\x44\xfa\x01\x8c\x1d\xe0\x7c\xc7\x1f\x0e\x33\x44\x2e\x70\x80\xca\x17\xc9\xf4\x2d\x62\xf5\xaa\xcf\x87\x41\xb2\x4c\x73\x8a\x42\x67\x02\xdc\x59\x1e\x07\x14\x27\xb1\x8b\x00\x05\x18\xc4\x80\x78\xeb\x0b\x48\x7a\x11\x48\x00\x04\x19\xc8\x41\x00\x42\x90\x82\x25\x98\xee\xa9\xb2\xbd\x99\x2a\xed\xad\xf1\xc1\xc1\x4b\x0e\x75\x20\x46\xf0\x8a\x24\x29\x22\x74\xc5\x4b\xac\x51\x9c\x2f\x11\x81\xd3\x08\x8d\xf0\xa0\x7c\x00\x41\x12\xcf\xf0\x3c\x57\x5f\xcc\x47\x70\x49\x30\x95\xef\xd5\x4f\x70\x01\xa3\x9c\xbd\xc0\x31\xa6\x18\x46\xf8\x3d\x22\xa7\x95\xa7\x41\x00\xa3\xc8\x8d\xbd\xd1\x45\x82\xc3\xde\x51\xe1\x15\xba\xb3\x8b\xda\xd0\xfc\x75\xb1\x47\x10\xcd\x49\xdc\x93\x7d\x7f\x87\x56\x99\x1b\x7b\x83\x59\x42\x9e\xc2\x60\xe1\x1a\xd3\xe2\xad\xa3\x31\x9a\xf8\xf1\x18\x4d\x0a\xcf\x03\x91\x31\x0c\x7f\x7f\xdf\x7c\x04\x51\x65\x20\xfc\x6b\x65\x64\xae\xc3\xc7\xe1\xe0\xb8\x17\x5d\x5f\x47\x66\xff\xbd\x83\x03\x37\xd2\xe3\xf5\xf7\x8f\x3c\x10\xf9\x78\x90\x45\x38\x40\xae\x37\x20\xe8\x02\x91\x4c\xfc\x0a\xf3\x00\x19\x1d\xe4\xab\x20\x47\x23\x57\xd1\xbb\xbe\xc6\x85\x07\x22\x0f\x90\x83\x03\x31\x21\xfb\xbe\x5f\x69\x8f\x37\xc7\x7b\x53\x7d\x7f\x1a\xd5\x67\x95\xa8\x59\x05\x95\x8f\xbe\x78\xe9\x01\xf1\xaf\x5f\x6f\xa1\x7d\x63\x44\x6c\x78\x71\x1e\xb1\x7f\x8b\xb6\x62\xce\x2f\xbf\xa0\xec\x45\x12\xe6\x11\x72\xc0\x5a\x6c\x81\xfd\xa3\xc2\x03\x88\x95\x85\x79\x44\x65\x17\xf6\x22\x44\x7b\x73\xdf\x8d\x7c\xf7\x08\x90\x41\x9c\x50\xcf\x75\x68\xf2\x0e\xc5\x03\x18\x44\x4f\x63\x36\xa5\xa1\xe3\x81\x44\x7c\x47\xbf\xe6\x30\xd2\x25\x32\x14\xcd\xde\xf0\x5f\x74\x95\xb2\xb3\xb3\x84\x31\x9c\xa3\x25\x8a\xa9\xe3\x01\xc8\xaa\xc4\x03\x75\x62\x3c\xd7\xf9\x25\x86\x4b\x94\xa5\x90\x9f\x33\x0b\xc4\xab\x24\xc2\x01\x46\xd9\x60\x3c\x71\x3c\x90\xd5\xea\x6e\x2c\x9e\xd7\x8a\x67\xab\x8c\xa2\xe5\x60\x86\x20\xcd\x89\x2a\x16\xf8\x41\x04\xb3\xac\x87\xae\x28\x8a\xc3\xac\x47\x07\x8f\x38\xa6\x58\xad\x83\x24\xce\x28\xc9\x03\x9a\x10\x57\xec\x74\xbe\x1b\xf6\xb2\x3c\x45\xc4\x1d\x0c\x06\x90\xcc\x73\x36\xae\xcc\x03\x33\x97\x2e\x70\x06\x64\x13\x0e\x08\x01\x7b\x2e\xdf\xf3\x9e\x3a\x20\xb5\x5e\x4f\x57\x29\xcc\xb2\x47\x39\x5d\x24\x04\xbf\x87\x6c\x03\x3a\x60\x69\x15\xd2\xe3\x7b\x96\xbd\x28\xe7\x12\x4c\x65\x31\xec\x3b\x72\xf9\x1c\xe0\x52\xdf\x29\xe7\xd3\xc3\xb1\x8b\x7c\x5e\xea\x74\x03\x52\x91\xc8\x00\x18\xc8\x65\xff\xa8\x8a\x52\xf6\x8f\x4a\x34\xc2\xb6\xcc\x08\x8d\xe9\xc4\xc7\xc5\x1c\xd1\x5e\xb9\x80\xae\x3e\x38\xac\xcd\x81\x7e\x7f\xea\x30\xac\x1c\xcf\x1d\xdf\x67\x7b\x22\x99\xd9\xdf\xab\x8f\x23\xbe\x6e\x73\x44\x3d\xb7\xfa\x01\xf0\xb1\x39\xde\x48\x0f\x98\x77\x80\xe4\x11\xca\x7e\x48\xc8\x8f\x46\x3f\xd8\x0e\x16\x43\x1f\x94\xfd\x93\x48\x4a\x40\x9d\x23\xda\xba\x81\x1c\xef\xfa\x7a\x3c\xf1\x06\x34\x79\x44\x08\x5c\x19\x68\xc2\x65\xe8\xc0\xff\x96\xc3\x27\x7e\xd9\x51\x0c\x1c\xde\x8d\x7f\x9c\xbd\xfc\x71\xa0\x3b\x22\x01\x81\x48\xf6\x64\x86\xe3\xf0\x05\xa4\xc1\x02\xc7\xf3\xb2\xb7\x04\x20\x4f\xe1\xcf\xe8\xe0\x80\x0e\xd2\x3c\x5b\xb8\x64\xc0\x4a\xbb\x2e\xf2\xbf\x45\x1c\x22\x43\x08\x9e\xe7\x01\x5a\x78\x60\x3c\xf1\xf8\xd0\x03\x98\x6a\xba\xf6\x43\x42\x1e\x45\x51\xd9\xb6\x5e\x8d\x5b\x8d\x17\x01\xea\xf9\xdf\xba\xae\xb1\x26\x9b\x86\x6a\xa0\x7c\x2a\xa6\x69\xfd\xd8\xe8\xe3\x08\x17\x3e\xdd\x43\x3e\x62\x88\x3c\x80\xd4\xc5\x1e\x23\x02\xc8\x13\x43\xd2\x2b\xf5\x2c\x0e\xa2\x3c\x44\x99\xae\xbb\x62\x84\xc3\xdc\x5c\xb5\x45\x1f\x64\xc9\x12\xf1\x56\xab\x7d\x35\x9b\x57\x7d\xc4\x12\xbc\x8b\x3c\x4f\x4c\xa4\xc2\x09\xd6\x16\xb6\x30\x46\x21\x7f\x3c\xcb\x5e\x11\x94\xa1\x98\xda\xbd\xd2\xa8\xc5\x68\xa1\x68\x59\x76\x36\xb3\x7c\x1f\x61\x1f\x0d\x96\x30\xfd\x7e\xe5\x3a\x3f
|
2022-04-07 20:21:26 +00:00
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
func distAssetsNomadUi538907d3a38823a32a18c8701313f9beJsBytes() ([]byte, error) {
|
2022-04-07 20:21:26 +00:00
|
|
|
return bindataRead(
|
2022-10-26 17:50:29 +00:00
|
|
|
_distAssetsNomadUi538907d3a38823a32a18c8701313f9beJs,
|
|
|
|
"dist/assets/nomad-ui-538907d3a38823a32a18c8701313f9be.js",
|
2022-04-07 20:21:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
func distAssetsNomadUi538907d3a38823a32a18c8701313f9beJs() (*asset, error) {
|
|
|
|
bytes, err := distAssetsNomadUi538907d3a38823a32a18c8701313f9beJsBytes()
|
2022-04-07 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/nomad-ui-538907d3a38823a32a18c8701313f9be.js", size: 1489472, 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-10-26 17:50:29 +00:00
|
|
|
var _distAssetsNomadUi53c809b4e175a108d1bdf080b59d01dbCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\xfd\xdb\x8e\xf4\x38\x92\x20\x08\xbf\x8a\x77\x16\x3e\x20\xa3\x52\xee\x25\x3f\xc6\x09\x93\xe8\x7f\x1a\x98\x7f\x1a\x98\x03\x30\x35\x0d\x4c\xa3\x50\x17\x72\x17\x3d\x42\x9d\x72\xc9\x5b\x92\x7f\x5f\x44\xf9\xc4\x62\xaf\x16\xd8\xdb\x7d\x84\x7d\x89\xbd\xd8\xbb\x7d\x94\x7d\x92\x85\x78\x12\x8d\x34\x23\x29\x79\x44\x27\xa2\x2a\xbf\x08\xd1\xcc\x68\x34\x1a\xcd\x8c\x47\xfb\xfb\xc3\x6b\xd6\xb4\xac\x9b\xfd\xf4\x4f\xff\xfd\x3f\xcc\x1f\x7e\x7a\x5e\x1c\x4b\xf6\x36\x3f\x65\x6d\x5d\x35\xef\xc9\xa2\x68\xe7\x59\xdb\xd6\x87\x22\xeb\x8a\xef\xec\x7a\xca\x9a\x97\xa2\x9a\x77\xf5\xf9\x69\xbe\xb8\xdf\xb2\xd3\xc7\x22\x67\x25\xeb\x58\xb2\x38\xd5\x79\x56\xce\x0f\x65\xdd\xb2\x64\x51\x65\xdf\xf7\x59\x33\xdf\x5f\x9a\x17\xd6\x5c\xe7\xa7\xfa\x6f\xf3\xec\x7c\x66\x59\x93\x55\x07\xf6\x54\xd5\x15\x7b\x9e\xff\x60\xfb\xdf\x8a\xce\xfe\xfe\xb1\xaf\xf3\xf7\xe4\x50\xe7\x2c\x79\x5d\x26\xaf\xab\xe4\x75\x9d\xbc\x6e\x92\xd7\x6d\xf2\xba\xbb\x1e\xeb\xaa\x9b\xff\x60\xc5\xcb\x6b\xf7\xb4\x49\xd3\x8f\xc5\xa1\xae\x3a\x56\x75\xb3\x73\x33\x54\xda\x65\xfb\x36\x39\x37\xec\x5a\x7f\x67\xcd\xb1\xac\x7f\xcc\xdf\x9e\xb2\x4b\x57\x7f\x64\xb3\xb6\x6b\xea\xea\xa5\x2f\x9c\xf5\x35\x5c\x0f\x75\x59\x37\x4f\x87\x4b\xd3\xb0\xaa\xfb\x87\xfe\x8f\x8f\xc5\x2b\xcb\xf2\xa2\x7a\x49\x16\x27\x56\x5d\xe6\x65\xb6\x67\xe5\xb5\x63\x6f\xdd\xbc\x6b\xb2\xaa\x3d\xd6\xcd\xe9\xe9\x72\x3e\xb3\xe6\x90\xb5\x92\xd9\xfe\x3f\xbf\x2e\xd8\x69\xcf\x9a\xf9\xf7\x82\xfd\x48\x5e\xbb\x53\x79\x7d\x15\x6c\x2e\xd3\xf4\xdb\xf3\x8f\x22\xef\x5e\xf9\xaf\x1f\x8b\xfd\xe5\x74\x66\xcd\xbc\x64\xc7\x4e\x89\xb3\xff\xfd\x69\xb9\xd8\x36\xbd\x3c\x65\x79\xd3\x63\x2b\x80\x46\x90\x12\x10\x7f\xfa\xe3\xdf\xcd\xf6\x97\xf2\x94\x2d\x8a\x7a\xf6\x3d\x5d\x3c\x2e\xd6\xb3\xff\x39\xfb\xcf\xff\xf8\xdf\x67\xff\xa9\x38\xb0\xaa\x65\xb3\xff\x39\x7b\x29\xba\xd7\xcb\x7e\x71\xa8\x4f\x7f\xfa\x97\x97\xee\xf5\xd4\xfe\x89\x63\xcc\xfe\xf8\xa7\xc5\xfe\xd2\x75\x75\x95\x2c\x8e\x45\xc9\xe6\x87\x2e\x93\xbf\x55\xd9\x89\x25\x8b\xa2\x3a\x5f\xba\x64\x71\xce\x5e\x8a\x2a\xeb\x8a\xba\x9a\xb3\xb2\x2c\xce\x6d\xd1\x82\x8f\x65\x51\xfd\x06\x3e\x54\xec\x0d\xa2\x9d\x1b\xf6\xbd\xa8\x2f\x6d\xb2\x68\x59\xc9\x0e\xdd\x4c\xfc\x93\x2c\x7a\x51\x66\x0d\xcb\x46\x29\xc5\x73\x56\x16\x2f\xd5\xbc\xe8\xd8\xa9\x7d\x3a\xb0\xaa\x63\xcd\xf3\xbe\x6e\x72\xd6\x3c\x2d\xcf\x6f\xb3\xb6\x2e\x8b\x7c\xc6\xfb\xe7\x9c\xf5\x5d\x29\x0b\xe7\x4d\x96\x17\x97\xf6\x69\x75\x7e\x7b\xde\xd7\x6f\xf3\xf6\x35\xcb\xeb\x1f\x82\x62\x5e\xb4\xe7\x32\x7b\x7f\x2a\xaa\xb2\xa8\xd8\xbc\xd7\xfa\x67\xae\x5e\x6d\xf1\x37\xf6\xb4\x6c\xd8\xe9\x59\xf6\xe0\x6a\xb1\xda\xb2\xd3\xf3\xbf\x5c\xda\xae\x38\xbe\xcf\xa5\xca\x3d\xf1\x71\xd2\x76\x59\xd3\x3d\x73\x0a\xaa\xbf\x17\xdb\xe7\x73\x96\xf7\x2a\x34\xdf\xd7\x5d\x57\x9f\x9e\x0e\x59\x79\xf8\x79\xb1\xee\x87\xcb\x6c\x3e\x5b\x9e\xdf\xee\x34\x04\xef\x79\x51\xbe\x5b\x21\xe5\xa2\xe3\x3d\x00\xfd\x48\xc4\xe8\xd7\x6d\xd1\xf7\xc3\x53\xc3\x4a\x3e\x72\x9f\xbf\xb3\xa6\x2b\x0e\x59\x39\xe7\xa2\x7c\xea\xea\xf3\x87\x54\x85\xa7\xec\xd0\x43\x24\xea\xcf\x63\x7d\xe8\xfb\x4d\xe9\x87\x2e\xd6\x1f\x4c\x80\x5e\x6d\x20\x04\xff\x22\x41\xb8\x3a\xe9\x62\xf1\x97\x2a\x6a\xe7\xe2\xbb\x56\xc8\xe1\xcb\xa0\x9a\xd6\x37\xa9\xa4\xfa\xa3\x54\xd7\xe1\x03\xaa\xb8\x68\xb1\x50\x61\xb4\x48\x28\x33\x5a\x34\xa8\xf5\x50\xac\x34\x9a\x7f\xe3\xad\x63\xb9\xd9\x28\xf5\x09\xb4\x0a\x7c\xd4\xcd\x52\x5f\x87\x76\xa9\x2f\x54\xc3\x90\x72\xdd\x32\xa4\x4c\x37\x0d\x29\x03\x6d\x53\xe5\x43\xe3\x10\x0e\x74\xcf\x62\x65\xb2\x9f\x2d\xc6\x30\x14\xfe\xdd\x05\xef\x79\xc5\xc0\xf9\x77\x17\x5c\xb1\x8f\xa1\xe8\x32\x89\x06\x6c\xd2\xd0\x95\x48\x81\x94\x83\x55\xf2\x84\xc2\x2b\xea\x4a\x66\x1a\x4a\x7f\xe0\x00\xd7\xfa\xd2\xf5\x16\xe3\x29\xfd\x50\xf8\xc7\x82\x95\x79\xcb\xba\xbf\xe4\x45\x9b\xed\x4b\x96\xff\x55\xdb\x4b\x50\xc3\x50\x9e\x0c\xbf\x2a\x5d\x33\xbe\x68\x55\xb3\xbf\x71\x4d\x33\x3e\x0a\x45\x33\x3e\x60\x7a\x86\x17\x73\x35\xc3\x8b\xb8\x96\xe1\x45\x5a\xc9\x8c\x62\xad\x63\x88\x18\x54\xe3\xb0\x22\xdd\x4a\xb2\x90\x37\x17\x2b\x15\xed\xc6\x4a\x30\x01\x04\xe0\xb8\x24\x02\x30\x5c\x24\x01\x18\x2d\x1b\x0c\x0e\xba\x51\x0c\x42\x7b\xd6\xc3\xa5\x69\xeb\xe6\xa9\xaa\xbb\x79\x56\x96\xf5\x0f\x9
|
2022-04-07 20:21:26 +00:00
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
func distAssetsNomadUi53c809b4e175a108d1bdf080b59d01dbCssBytes() ([]byte, error) {
|
2022-04-07 20:21:26 +00:00
|
|
|
return bindataRead(
|
2022-10-26 17:50:29 +00:00
|
|
|
_distAssetsNomadUi53c809b4e175a108d1bdf080b59d01dbCss,
|
|
|
|
"dist/assets/nomad-ui-53c809b4e175a108d1bdf080b59d01db.css",
|
2022-04-07 20:21:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
func distAssetsNomadUi53c809b4e175a108d1bdf080b59d01dbCss() (*asset, error) {
|
|
|
|
bytes, err := distAssetsNomadUi53c809b4e175a108d1bdf080b59d01dbCssBytes()
|
2022-04-07 20:21:26 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-10-26 17:50:29 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/nomad-ui-53c809b4e175a108d1bdf080b59d01db.css", size: 321113, 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-09-14 18:59:59 +00:00
|
|
|
var _distAssetsVendor8d1246b27592b361fb3ba91a1df9b9ddJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x7f\x5b\xdb\xb8\xb2\x00\xfc\x3f\x9f\x22\xf8\xdd\xe6\x48\xb5\x12\xec\x00\xa1\x75\xab\xfa\x61\x0b\xb4\xdd\x53\x68\xb7\xd0\x65\xdb\xe0\xc3\x35\x44\x80\xb7\x89\xcd\xca\x4a\x29\xc5\xb9\x9f\xfd\x7d\x34\x92\x6c\xd9\x71\x28\x3d\xe7\xbe\xf7\xbd\xdb\x7d\x88\xf5\x6b\x34\x1a\x49\xa3\xd1\x68\x34\xba\x49\xd2\x71\x76\xd3\xdf\x9d\x9e\x31\xbe\x7b\xf0\x07\xbd\x98\xa5\xe7\x22\xc9\x52\xc4\x88\xc0\x77\x17\x19\x47\x5f\x63\xde\xe1\x9d\x24\xed\x08\xcc\x46\x3c\xa2\x62\xc4\xa3\x15\xce\xc4\x8c\xa7\x1d\x36\x47\x0d\x00\x45\x71\x37\x27\x77\x7b\xbb\xdb\x47\x1f\x3f\xec\x1e\x06\x77\x73\xb2\xfb\xe7\xd1\xee\xc1\xce\xe9\xfb\x0f\xef\x8e\xde\x1d\x7d\x7a\x2f\x23\x77\x62\xc1\x82\x55\x7f\x4e\x4e\xb7\xdf\xbf\x7f\xfb\xe6\xe5\xf6\xd1\x9b\x77\x07\xa7\x47\xbb\xfb\xef\xdf\x6e\x1f\xed\x9e\x1e\x7f\xd8\x7e\xff\x7e\xf7\x43\xb0\xea\x93\xd3\x9d\xdd\xbd\xed\x8f\x6f\x8f\x4e\xb7\x0f\x3f\x1d\xbc\x3c\x7d\xf7\xeb\xe1\xee\x87\x3f\x76\x3f\x1c\x06\xab\x1e\x39\xfd\xed\xf7\x8f\xbb\x1f\x3e\x9d\xbe\x39\x38\xda\x7d\xf5\x01\x60\x40\x91\x12\xce\xbb\x83\xb7\x9f\x4e\x5f\xbd\x7d\xb3\xbf\xbf\xfb\xe1\xf4\xe5\xbb\xfd\xf7\xef\x0e\x76\x0f\x8e\x64\xd9\x39\x5e\x91\xcd\x9a\x64\xf1\x98\x71\x32\x66\x17\x49\xca\x08\x67\x7f\xcf\x12\xce\xf6\xb3\xf1\x6c\x52\x86\xcc\xef\x5f\x39\xe1\xb3\x34\x4d\xd2\xcb\x23\x96\x8b\x9c\xae\xfa\x2b\xc9\x05\xaa\xa8\x85\xef\x9c\x59\xce\x3a\xb9\xe0\xc9\xb9\x70\x56\x4c\x42\x47\x20\x7c\x27\xab\x62\xf4\xdd\xd9\x5f\xec\x5c\xf4\xcf\x39\x8b\x05\x43\xe9\x6c\x32\xc1\x25\x19\xfb\xa7\xa7\xf4\x6b\x96\x8c\x3b\x1e\x19\xb3\x09\x13\x0c\xa2\x08\x9b\x03\xf1\xe9\x9d\x42\x34\xa8\xe1\x1b\xb4\xa1\x1d\xb4\x36\x22\x58\x68\x4c\x50\x7e\xcd\x57\xca\x4f\xaa\xbf\x68\x0d\x08\xb5\x1b\x69\x06\x84\xa0\xa3\x88\x70\x7a\x8e\x18\x71\x90\xce\x8e\x1d\x22\x30\x49\xa9\xe8\x4f\x58\x7a\x29\xae\x7a\xfe\xb3\xf4\x05\xf5\x9e\xa5\xbd\x1e\x16\xa3\x34\xea\xb3\x6f\xd7\x19\x17\x39\x2a\xdb\xcd\xfb\x53\xa8\xc2\xa4\xcc\x89\x6a\x21\xbd\x4b\xb3\x97\x59\x7a\x31\x49\xce\x45\x50\x56\x2f\x14\x25\x53\x92\xac\x48\x34\x52\x35\x26\x45\xff\x2a\xce\xdf\xdd\xa4\xef\x79\x76\xcd\xb8\xb8\x45\x29\xee\x76\x79\x5b\x24\x4a\xa8\x44\x83\xb0\x51\x12\x51\xa6\xbe\xd2\x88\xf2\x51\x1a\xe1\x39\x99\xc6\x5f\xd8\x0e\xbb\x88\x67\x13\xb1\x0b\xd8\xc8\x61\x02\xa3\x24\xa5\x02\x61\x92\x50\x24\x7f\x3c\x5c\xf5\x6d\x26\x29\x22\xae\x78\x76\xd3\x49\xd9\x4d\x67\x97\xf3\x8c\x23\x27\x4e\x3b\xb3\x34\x9f\x5d\x4b\x18\x6c\xdc\x51\x2d\xec\xdc\xc4\x79\x47\x75\xd8\x98\x74\xd8\xb7\x6b\x76\x2e\x13\xff\x4b\x45\xa1\x64\x4c\x3a\x63\x76\x9d\x13\x9d\x1d\xff\x57\x27\x49\x73\xc1\xe2\x71\xe7\x32\x13\x41\xe7\xbf\x1c\x97\xb9\xce\x7f\x75\x62\x7e\x39\x9b\xb2\x54\xe4\x1d\x91\x69\x70\xff\xe5\x60\x18\x25\x39\x1d\x39\xba\x23\x1c\xe2\x68\x82\x3a\xc4\x51\x00\x9d\xa8\x42\x3b\x96\x73\x9b\x70\x92\x4a\xe4\x93\xbc\x3f\x9b\x25\x63\x9a\xb8\x2e\x81\x50\x32\xa6\x4c\x7d\x49\x84\xe8\xaa\xe9\x4d\x49\x54\xf5\x15\xe6\x81\x50\x39\x14\x6c\x7a\xa7\x6b\x0b\xee\xe6\x73\x95\x70\x1e\x4f\x26\x67\xf1\xf9\x17\xca\x55\xf8\x2a\xce\x15\x51\xf3\xed\x7c\x87\x5d\xd3\x55\x5f\x57\x96\x6f\x4f\x92\x38\xa7\xa9\x0a\x72\x96\x5c\x24\x6c\x4c\x25\x35\xb7\x39\x8f\x6f\x91\xa9\x1d\xab\x0c\xb9\x88\x05\xa3\x4e\xca\x6e\x9c\x79\xd9\x9e\x09\xc2\x77\x55\x68\xa6\x3a\x45\xb7\xa4\x8a\x3f\x57\xad\xae\x86\x70\x42\xd3\x11\x8b\x8a\x22\x1d\x31\xd7\x59\x4b\xd2\x31\xfb\xe6\x44\xcf\x92\x6e\x37\x31\x68\x3d\xc3\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\x2e\x92\xb4\x1c\x10\xa6\x4b\x93\xa9\x1e\x28\x17\x3c\x9b\xca\x58\xe1\x3a\xb2\x4f\x01\x18\xe1\xdd\xae\x73\xcd\xd2\x71\x92\x5e\x3a\xab\x94\x26\x8a\x02\xdd\xae\x73\x91\xa4\xf1\x24\xf9\xce\xc6\xb5\x68\x94\xf4\x65\x1d\x3b\xec\x3a\x47\x1c\x13\xde\xbf\x9e\xe5\x57\x28\xc1\x98\x24\x15\x25\xc6\x0a\xcf\xe4\x02\x39\x7d\x59\x9a\xf5\xcf\xaf\x62\xbe\x2d\x90\x87\xb1\x61\x48\x2b\x25\xe7\xa7\xac\x9f\x5f\x4f\x12\x81\x9c\x35\x47\xcd\xee\x2a\xd8\xcf\x27\xc9\x39\x43\x1e\xe9\xf9\x72\x82\x78\x24\xa3\x66\x90\x3c\x4b\x9e\x67\xcf\x12\xd7\x55\x73\x36\xa7\x7c\x94\x44\x2b\x50\x65\xdf\xa1\x94\xe6\x50\xbf\x47\x29\x4d\x4d\x0f\x2f\xd2\x2d\x4e\x25\xd1\xe2\xf3\x73\x96\
|
2019-05-22 19:29:30 +00:00
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
func distAssetsVendor8d1246b27592b361fb3ba91a1df9b9ddJsBytes() ([]byte, error) {
|
2019-05-22 19:29:30 +00:00
|
|
|
return bindataRead(
|
2022-09-14 18:59:59 +00:00
|
|
|
_distAssetsVendor8d1246b27592b361fb3ba91a1df9b9ddJs,
|
|
|
|
"dist/assets/vendor-8d1246b27592b361fb3ba91a1df9b9dd.js",
|
2019-05-22 19:29:30 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
func distAssetsVendor8d1246b27592b361fb3ba91a1df9b9ddJs() (*asset, error) {
|
|
|
|
bytes, err := distAssetsVendor8d1246b27592b361fb3ba91a1df9b9ddJsBytes()
|
2019-05-22 19:29:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/vendor-8d1246b27592b361fb3ba91a1df9b9dd.js", size: 1182312, 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-09-14 18:59:59 +00:00
|
|
|
var _distAssetsVendorF4da1fe0ef1f52a5b9db781a71ee770bCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x1a\x6b\x6f\xe2\xb8\xf6\xaf\x70\xb5\x5a\xed\x8c\x86\x94\x40\xa1\x94\xa0\xbd\xda\xf0\x68\x87\x3e\x68\xa1\xef\x7e\x73\x12\x93\x78\x71\xec\x8c\xe3\x10\x5a\xd4\xff\x7e\x65\xe7\x41\x42\x0c\xdd\x19\xed\x97\xab\x51\x27\xc4\x3e\x3e\x3e\x3e\x6f\x9f\x93\xa3\x35\x87\xcc\xdf\x04\x34\x44\x1c\x51\x62\x30\x88\x01\x47\x2b\xd8\x8f\x42\xc8\xb4\x10\x62\x68\x73\x83\x50\x02\xfb\x9a\x1f\x6a\xd5\xc1\x18\x5a\x4b\xc4\x2b\x13\x1f\x09\xde\xa3\x05\xb5\xa3\xb0\x9e\xbc\x18\xf2\x65\x43\x23\x8e\x11\x81\x86\x9e\xc2\xd4\x92\x87\xe6\x41\x1c\x40\x16\x6e\x49\x01\x56\x48\x71\xc4\x61\x9f\xd3\xc0\xd0\xfb\xef\x1a\x22\x0e\x5c\x1b\x1d\xe5\x3a\x8d\xc3\x35\x07\x0c\x82\x4d\x00\x1c\x07\x11\xd7\xd0\xfb\x16\x65\x0e\x64\x86\xde\xf7\x01\x73\x11\x31\xf4\x7e\x15\x37\x0d\x80\x8d\xf8\x9b\xa1\xf7\x31\x5c\x70\x43\xeb\xf5\x7a\x3d\xe8\xa7\x5b\xc6\xc8\xe1\x9e\xa1\xf7\x3d\x88\x5c\x8f\x17\x68\xd0\x3a\xfd\xd8\x43\x1c\x6a\x61\x00\x6c\x68\x10\x1a\x33\x10\xf4\xe9\x0a\xb2\x05\xa6\xb1\xe1\x21\xc7\x81\xa4\xcf\x60\x88\xde\x61\x91\x1f\xb5\x23\x9b\xfa\x19\x11\xda\x0a\xc1\x78\x63\x01\x7b\xe9\x32\x1a\x11\xc7\xf8\x4d\xd7\xf5\xbe\x4d\x31\x65\xc6\x6f\x67\x67\x67\x7d\x07\x85\x01\x06\x6f\x09\xa7\xab\xa4\x2b\x28\xc8\xe8\x6b\xee\xdd\xef\x08\xd8\x42\xbc\x9b\x0c\xb7\x85\xa9\xbd\xdc\xe1\xa8\x80\x0b\x28\xe3\x05\xda\xb4\x94\x2c\x41\x61\x76\x4c\xed\xcd\x08\x6d\x46\x31\xee\xdb\x11\x0b\x29\x33\x1c\xb8\x00\x11\xe6\x0a\x52\x59\xca\x3f\xc9\x63\x3d\xe5\xae\x45\x39\xa7\x7e\x45\x0f\x42\x9b\x41\x48\xaa\x1a\xa9\x04\xab\xd9\x80\xac\x80\x4a\x69\x8a\x5b\x55\x97\x52\x8c\x35\xa9\x2d\x2b\x14\x22\x0b\x61\xa1\x02\x89\xd4\x52\x58\xcd\xf6\x00\xd3\x7c\x08\xc2\x88\x41\x0d\x62\xe8\x43\xc2\x73\xae\x21\x22\x54\x58\x93\xcc\xeb\x57\x50\x28\x18\x90\x9c\xb8\xa4\x62\x12\x43\xaa\x59\x84\x32\x1f\xe0\x74\xeb\x4d\xca\x4e\xa1\xd1\x99\x1d\x41\x02\x2c\x0c\x35\x9f\x46\x21\xd4\xe0\x0a\x12\x1e\x6e\xca\x5c\xcf\x20\x53\xea\xe5\x9c\x16\x50\x44\x38\x64\x19\x68\xfa\x9a\x81\xda\x14\x47\x3e\x49\xcd\x36\x31\xd5\x0c\xd2\x66\x34\x0c\x3d\x80\xd8\x0e\xeb\x80\x6d\xc3\x30\x3b\x6e\xbd\x3c\xe7\xc3\x30\x04\x2e\xfc\x44\x16\xb9\xd8\x73\xa5\xc8\x95\x36\x53\x7e\xce\x00\x09\x03\xc0\x20\xe1\xf9\xf6\x18\xad\xa0\xc6\xa0\x8b\x28\xd9\xb7\x81\x64\x6c\xb0\x4e\xad\xb6\x19\xac\x33\xbb\x15\x3f\x77\x6c\x33\x93\xb2\x83\xfc\x4d\xe6\x02\x8e\x32\xcf\xa2\x45\xc4\x81\x4c\xc8\x67\x23\x64\xa0\x39\xd0\xa6\x0c\xc8\x1d\xf3\x99\x0c\x34\xe4\x0c\x2d\x21\xf7\x18\x8d\x5c\xaf\x02\x2e\x65\x9c\x4e\x7e\x1c\x0d\xa9\x03\xaf\x11\x63\x94\x69\x18\x11\xae\xf9\x80\x2d\x85\xc7\x4b\x09\x3e\x09\xd6\x55\x18\x4e\x29\xe6\x28\x50\x98\xe2\x62\xe1\x64\x1e\xae\x19\xac\x6b\x21\xc5\xc8\xa9\x49\x03\x4d\x46\x35\x06\x1c\x14\x85\x46\x3b\x58\xf7\x0b\xd6\xbb\xa0\x84\x6b\x0b\xe0\x23\xfc\x66\xf8\x94\x50\xe9\x3f\x92\x51\xe9\xad\x9a\x7a\xc0\x2b\x9e\x2c\xf3\xa9\xad\x60\x5d\xeb\x04\xeb\xad\x82\x2f\xd0\x1a\x3a\x25\x4f\x14\x30\xb8\xfb\xae\x95\x7d\x93\x2e\x1c\xf2\x5a\x4b\x4e\x7d\xa2\xeb\x42\x3a\xb9\x17\x96\xb2\x4f\x70\xa7\x83\xb5\xa3\x76\xd8\xd7\x7c\xfa\xae\xed\x9b\x4b\x63\xd0\xbe\x69\xba\x77\xc6\x0f\xf7\x4c\xa9\x65\x55\x14\x42\xce\x01\xa1\x7a\xb5\x44\xa7\xfb\x85\x79\x06\x03\x08\xb8\x91\x3c\x34\x85\x60\x05\x42\x2d\x06\x8c\x20\xe2\x16\x11\x23\x1f\xb8\xd0\x88\x18\xfe\xe2\x00\x0e\x0c\xf9\xda\x08\x88\xdb\xb7\x40\x08\x4f\xda\x75\xf4\x38\xb8\x99\xc7\xfa\xe5\xb9\x4b\x4d\xd3\x34\xa7\x77\x0f\xde\xf8\xc1\x15\x3f\x67\xe2\xbf\xd1\xd0\x7c\x31\x4d\x73\xa8\xf7\x2e\xbb\xe7\x62\xc0\x7c\x9e\xde\xcd\xf5\x89\xc9\xc2\xb6\x7d\x22\x41\x5e\xd1\x9d\xee\x8c\xcd\xdb\x53\xb3\x11\x8f\x1a\xf4\xaa\x45\x96\xb1\x18\xc7\xf1\xdd\x19\x7e\x37\x4d\xf3\x6a\x1c\x9b\xe6\x70\x7d\x3d\x30\x2f\x7e\xd8\x09\x12\x47\xbf\x7b\x68\x9e\x0d\x7a\xe1\xc5\x99\x37\x7b\x1e\x5b\xde\xbd\xdb\x7d\x91\xc8\x9c\xf1\xe3\x8b\x33\x9e\xae\xac\xa7\x26\xb6\xc8\xcc\x9c\x1d\x5f\xe0\x97\xe7\x39\x7e\x1d\x0e\x8e\xc1\xf3\x9c\x4e\xc6\xce\xc5\xfd\xe3\xe0\xd9\x9d\xb5\x9f\xc5\x82\xeb\x25\x1e\xcf\x1e\x67\x93\x66\x6b\xba\x74\x27\x93\xd5\xc5\xf1\xec\xf9\xfa\x6f\x33\x76\x46\xd3\x6f\x37\x60\x6c\xbd\x85\x23\xb3\x7d\x7d\x6b\xc6\xd3\xd1\x34\xbe\x1e\xc6\xe8\xe6\xfb\xd5\xd0\x69\xbe\x3f\xeb\x5d\x7a\xb2\x1c\x3c
|
2020-06-24 20:37:13 +00:00
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
func distAssetsVendorF4da1fe0ef1f52a5b9db781a71ee770bCssBytes() ([]byte, error) {
|
2020-06-24 20:37:13 +00:00
|
|
|
return bindataRead(
|
2022-09-14 18:59:59 +00:00
|
|
|
_distAssetsVendorF4da1fe0ef1f52a5b9db781a71ee770bCss,
|
|
|
|
"dist/assets/vendor-f4da1fe0ef1f52a5b9db781a71ee770b.css",
|
2020-06-24 20:37:13 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
func distAssetsVendorF4da1fe0ef1f52a5b9db781a71ee770bCss() (*asset, error) {
|
|
|
|
bytes, err := distAssetsVendorF4da1fe0ef1f52a5b9db781a71ee770bCssBytes()
|
2020-06-24 20:37:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-09-14 18:59:59 +00:00
|
|
|
info := bindataFileInfo{name: "dist/assets/vendor-f4da1fe0ef1f52a5b9db781a71ee770b.css", size: 10636, 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-10-26 17:50:29 +00:00
|
|
|
var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x8f\x1c\xc7\x91\x2f\xfa\xff\x7e\x8a\xba\x63\x18\x38\x0b\xdc\x0a\x65\x64\x44\xbe\x00\xd1\x00\x45\x52\xab\xbd\x18\xda\x3a\xb6\xdc\xe7\xec\x5f\x44\xb1\x39\xd4\xcc\x55\x91\xc3\x4b\x0e\xdb\xab\xf9\xf4\x17\xf1\x8b\xac\xea\x9e\x27\x87\xb4\xbd\x2b\xfb\x08\x83\xee\xae\xe9\xae\xca\x47\x64\xbc\x23\x32\xf2\xeb\xff\xeb\xe9\x1f\x9e\xfc\xf0\x1f\xdf\x3f\x1b\x4e\x2f\xde\xcc\xbf\xfb\x97\xaf\xfd\x63\x18\xbe\x3e\x3d\x99\x5e\xd9\xc5\x30\x7c\xfd\xe6\xe4\x62\x1a\xb6\xa7\xd3\xfb\x0f\x27\x17\x8f\x8e\x3e\x5e\xbc\x1e\xeb\xd1\xe1\x4f\xa7\x17\x17\xef\xc6\x93\xff\xef\xe3\xd9\xee\xd1\xd1\xff\x1e\xff\xfc\x78\x7c\x72\xfe\xe6\xdd\x74\x71\xf6\x72\x3e\x39\x1a\xb6\xe7\x6f\x2f\x4e\xde\x5e\x3c\x3a\xfa\xf7\x67\x8f\x4e\x5e\xfd\x78\xb2\x3c\x79\x71\x76\x31\x9f\xfc\xee\xf7\xe7\x6f\xa6\x57\x5f\x7f\xe5\xff\x1c\x34\xf9\x76\x7a\x73\xf2\xe8\xe8\xd5\xc9\x87\xed\xfb\xb3\x77\x17\x67\xe7\x6f\x0f\x1a\x3a\xba\x79\xe3\xee\xec\xe4\x2f\xef\xce\xdf\x5f\x1c\xdc\xf5\x97\xb3\x57\x17\xa7\x8f\x5e\x9d\xec\xce\xb6\x27\x23\xfe\xf9\xbf\x87\xb3\xb7\x67\x17\x67\xd3\x3c\x7e\xd8\x4e\xf3\xc9\x23\x3e\xfa\xdd\xbf\xa0\xa5\x7f\x39\x6c\xea\xad\x8d\x68\xfc\x78\xf6\xd5\xf6\xfc\xed\xeb\xb3\x1f\xbf\x3a\x79\xbb\x3b\x7b\x7f\xfe\xf6\xcd\xc9\xdb\xc3\xd6\x7f\x5b\xbe\xf9\x6d\x8c\x6f\xce\x5f\x7d\x9c\x4f\xbe\x7f\x7f\xf2\xfa\xec\x3f\x7f\x1b\xe3\x6f\xe5\xf1\x6f\x63\x5c\x1a\xb0\x2f\xe2\x93\xdf\xc6\x78\xd0\xc2\x7a\xd3\xbb\xf7\xe7\xaf\x3e\x6e\x6d\x62\xeb\x6d\xef\xcf\xcf\x2f\xfe\xfc\xc7\xe3\xf5\x96\xdf\xc6\x6f\xad\x91\x6f\xd7\x1b\xe6\xf3\xed\x64\x4f\xfc\xf0\xf3\xbb\x93\xf5\xae\xe9\xe3\xc5\xf9\x7a\xc7\xb3\x37\x2f\x4f\xde\x3f\xfb\xfd\xa6\xff\x8a\x31\x7e\xfb\xec\xf1\x0f\x7f\xfe\xe3\xb3\x3f\xed\xbf\x2b\x4f\xfb\xdd\xff\xfb\x87\x67\xbf\x7f\xfa\xe2\xfb\x3f\xfe\xe1\x87\x3f\x18\x0a\xfc\xe9\xf0\xb1\xa7\xd3\x45\xef\xe4\xf5\x34\x7f\x38\x59\x1f\x7a\xf1\xf8\xfb\xef\x8f\xff\xfd\xc9\xe3\x1f\xfe\xfd\x0f\xbf\x7f\xf1\xc3\xb3\xe7\xdf\x1f\x3f\xfe\xe1\xd9\x8b\xff\xf5\xc7\xc7\xdf\x7f\xff\xec\x8f\x87\x0f\xf8\xdd\x4f\x9f\x7d\xfb\xf8\xcf\xc7\x3f\xbc\x78\xfc\xa7\xff\xf8\xfd\x93\x17\x7f\xf8\xe6\x4f\xcf\xfe\xb8\x79\xf6\xc7\xde\xd3\xc5\xfb\x8f\xcb\x7d\xff\xcf\xff\xfc\xf3\xb3\x3f\xfe\xc7\x8b\x7f\xff\xfd\x0f\xcf\xfe\xed\x8f\x68\xfc\x66\x5b\x6b\x6f\x7f\xf8\xfd\xf1\x7f\xbc\xf8\xb7\xe3\x7f\x7f\xfe\xfc\xd9\x1f\x5f\x3c\xf9\xc3\xf3\xef\xff\xf0\xfb\x67\xbf\xff\xe1\xb0\xd1\x65\xb4\x8f\xbf\xff\xfe\x70\x52\x2f\xe7\xf3\xed\x4f\x67\x6f\x7f\xfc\x9f\x1f\x4f\xde\x9f\x9d\x7c\xb8\x3e\x8a\x37\x67\xef\xa7\x1f\x4f\xfe\xb4\x3d\x79\x3b\xbd\x3f\x3b\x5f\x41\xfc\xe1\xcd\x34\xcf\x4f\xe6\x8f\x1f\x2e\x4e\xde\xaf\xa0\xf6\x7b\xff\xd7\xd9\xc5\xe9\xef\xa7\x37\x27\x1f\xde\x4d\xdb\xbb\xda\xb3\x7b\x7e\x38\xff\xe9\xe4\xed\x3d\xbf\xff\xf1\xe4\xc7\xb3\xf3\x9b\x37\x7c\x38\x3d\xff\xcb\x9f\x2e\xce\xdf\xff\xfc\xf2\xfc\xfc\xa7\xe3\xb3\xb7\x3f\xdd\xb6\x22\xef\x4e\xde\x6f\x7f\x3e\x9c\xe5\xc9\xdb\xe9\xe5\x7c\xf2\xea\x16\x70\x9c\x18\x7e\x8c\xdb\xf9\x6c\xf4\xae\x0f\x9f\xfa\xf8\xe1\xec\xed\x8f\xdf\xbf\x3f\xff\xcf\x9f\xaf\x8f\xe2\xe3\x87\x93\xa7\x27\xaf\xa7\x8f\xf3\xc5\xf7\xd3\x87\x0f\x17\xa7\xef\xcf\x3f\xfe\x78\xfa\xe1\xb6\xe6\xff\xd3\x68\xf0\xf1\xbb\x77\xf3\x99\x63\xea\xbf\xcd\xe7\x2f\xa7\xf9\xea\xa0\x8f\x86\xaf\x3a\xd9\x7d\x3d\x9f\xbd\xfd\x69\x78\x7f\x32\x3f\x3a\xfa\x70\xf1\xf3\x7c\xf2\xe1\xf4\xe4\xe4\xe2\x68\x38\x7d\x7f\xf2\xfa\xd1\xd1\x57\x1f\xcf\xbe\x9a\x3e\x7c\x38\xb9\xf8\xf0\xd5\xee\xe4\xed\xab\xf3\xf7\xe3\x6b\x7d\x35\xf1\xeb\x93\x70\xf2\x9a\x5f\xa7\x38\xa5\x97\xed\xd5\xcb\x52\x79\x2a\x7c\x72\x52\x4a\x78\x49\xdb\x0f\x1f\x16\xd6\xf0\xc0\x96\x17\x52\x1d\x93\x6c\x6b\x68\x2f\xf5\x84\x4b\x9a\x38\xd4\x57\xfc\xf2\xd5\xeb\x50\xc3\xcb\xd4\x5e\x05\x7e\x75\x47\xdb\x67\x5b\xe3\x4b\x17\x3f\xbf\x3b\x79\x74\x74\xf6\x66\xfa\xf1\xe4\xab\x77\x6f\x7f\x3c\xec\xe6\xab\xd7\xd3\xce\x6e\xa2\xb3\xed\xf9\x7e\xde\xc6\x5d\xbf\x5a\xd8\xeb\xd7\x2f\xcf\x5f\xfd\xec\x2d\x77\xa8\x38\xcb\x1b\x3e\xbc\xdf\xde\x06\x85\xfa\x8a\xa3\xe6\x97\xb1\xa4\x16\x5f\x4a\xe6\xd7\x2f\xe5\xe5\xd4\x78\xe2\x57\xaf\xdb\xcb\xf6\xea\x15\xfd\xbf\x1f\x8e\x7e\xf7\xf5\x57\xde\xc8\xef\xfe\xe5\xae\xd6\xb6\xa7\x1f\xdf\xfe\x44\x99\xb6\x9c\xb6\xaf\x55\x72\x6d\xd3\xf4\x4a\x
|
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-09-27 17:53:18 +00:00
|
|
|
info := bindataFileInfo{name: "dist/index.html", size: 766559, 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-10-26 17:50:29 +00:00
|
|
|
"dist/assets/chunk.143.48119a334ff734324b1b.js": distAssetsChunk14348119a334ff734324b1bJs,
|
|
|
|
"dist/assets/chunk.178.b8f5106e989af93f5388.js": distAssetsChunk178B8f5106e989af93f5388Js,
|
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-09-14 18:59:59 +00:00
|
|
|
"dist/assets/chunk.6.c15cf43689aad35b4c31.js": distAssetsChunk6C15cf43689aad35b4c31Js,
|
|
|
|
"dist/assets/chunk.6.c15cf43689aad35b4c31.js.LICENSE.txt": distAssetsChunk6C15cf43689aad35b4c31JsLicenseTxt,
|
2022-10-26 17:50:29 +00:00
|
|
|
"dist/assets/nomad-ui-538907d3a38823a32a18c8701313f9be.js": distAssetsNomadUi538907d3a38823a32a18c8701313f9beJs,
|
|
|
|
"dist/assets/nomad-ui-53c809b4e175a108d1bdf080b59d01db.css": distAssetsNomadUi53c809b4e175a108d1bdf080b59d01dbCss,
|
2022-09-14 18:59:59 +00:00
|
|
|
"dist/assets/vendor-8d1246b27592b361fb3ba91a1df9b9dd.js": distAssetsVendor8d1246b27592b361fb3ba91a1df9b9ddJs,
|
|
|
|
"dist/assets/vendor-f4da1fe0ef1f52a5b9db781a71ee770b.css": distAssetsVendorF4da1fe0ef1f52a5b9db781a71ee770bCss,
|
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-10-26 17:50:29 +00:00
|
|
|
"chunk.143.48119a334ff734324b1b.js": &bintree{distAssetsChunk14348119a334ff734324b1bJs, map[string]*bintree{}},
|
|
|
|
"chunk.178.b8f5106e989af93f5388.js": &bintree{distAssetsChunk178B8f5106e989af93f5388Js, 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-09-14 18:59:59 +00:00
|
|
|
"chunk.6.c15cf43689aad35b4c31.js": &bintree{distAssetsChunk6C15cf43689aad35b4c31Js, map[string]*bintree{}},
|
|
|
|
"chunk.6.c15cf43689aad35b4c31.js.LICENSE.txt": &bintree{distAssetsChunk6C15cf43689aad35b4c31JsLicenseTxt, map[string]*bintree{}},
|
2022-10-26 17:50:29 +00:00
|
|
|
"nomad-ui-538907d3a38823a32a18c8701313f9be.js": &bintree{distAssetsNomadUi538907d3a38823a32a18c8701313f9beJs, map[string]*bintree{}},
|
|
|
|
"nomad-ui-53c809b4e175a108d1bdf080b59d01db.css": &bintree{distAssetsNomadUi53c809b4e175a108d1bdf080b59d01dbCss, map[string]*bintree{}},
|
2022-09-14 18:59:59 +00:00
|
|
|
"vendor-8d1246b27592b361fb3ba91a1df9b9dd.js": &bintree{distAssetsVendor8d1246b27592b361fb3ba91a1df9b9ddJs, map[string]*bintree{}},
|
|
|
|
"vendor-f4da1fe0ef1f52a5b9db781a71ee770b.css": &bintree{distAssetsVendorF4da1fe0ef1f52a5b9db781a71ee770bCss, 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")
|
|
|
|
}
|