2015-11-30 19:24:39 +00:00
|
|
|
// Code generated by go-bindata.
|
|
|
|
// sources:
|
2017-06-12 17:57:02 +00:00
|
|
|
// ui/GNUmakefile
|
|
|
|
// ui/Gemfile
|
|
|
|
// ui/Gemfile.lock
|
|
|
|
// ui/README.md
|
|
|
|
// ui/development_config.json
|
|
|
|
// ui/index.html
|
|
|
|
// ui/javascripts/app/controllers.js
|
|
|
|
// ui/javascripts/app/helpers.js
|
|
|
|
// ui/javascripts/app/mixins.js
|
|
|
|
// ui/javascripts/app/models.js
|
|
|
|
// ui/javascripts/app/router.js
|
|
|
|
// ui/javascripts/app/routes.js
|
|
|
|
// ui/javascripts/app/views.js
|
|
|
|
// ui/javascripts/fixtures.js
|
|
|
|
// ui/javascripts/libs/base64.min.js
|
|
|
|
// ui/javascripts/libs/classie.js
|
|
|
|
// ui/javascripts/libs/classie.min.js
|
|
|
|
// ui/javascripts/libs/ember-debug.min.js
|
|
|
|
// ui/javascripts/libs/ember-validations.min.js
|
|
|
|
// ui/javascripts/libs/ember.min.js
|
|
|
|
// ui/javascripts/libs/handlebars-1.3.0.min.js
|
|
|
|
// ui/javascripts/libs/jquery-1.10.2.min.js
|
|
|
|
// ui/javascripts/libs/list-view.min.js
|
|
|
|
// ui/javascripts/libs/notificationFx.js
|
|
|
|
// ui/scripts/compile.rb
|
|
|
|
// ui/scripts/dist.sh
|
|
|
|
// ui/static/android-chrome-192x192.png
|
|
|
|
// ui/static/android-chrome-512x512.png
|
|
|
|
// ui/static/apple-touch-icon-114x114.png
|
|
|
|
// ui/static/apple-touch-icon-120x120.png
|
|
|
|
// ui/static/apple-touch-icon-144x144.png
|
|
|
|
// ui/static/apple-touch-icon-152x152.png
|
|
|
|
// ui/static/apple-touch-icon-57x57.png
|
|
|
|
// ui/static/apple-touch-icon-60x60.png
|
|
|
|
// ui/static/apple-touch-icon-72x72.png
|
|
|
|
// ui/static/apple-touch-icon-76x76.png
|
|
|
|
// ui/static/apple-touch-icon.png
|
|
|
|
// ui/static/base.css.map
|
|
|
|
// ui/static/bootstrap.min.css
|
|
|
|
// ui/static/consul-logo.png
|
|
|
|
// ui/static/favicon-128.png
|
|
|
|
// ui/static/favicon-16x16.png
|
|
|
|
// ui/static/favicon-196x196.png
|
|
|
|
// ui/static/favicon-32x32.png
|
|
|
|
// ui/static/favicon-96x96.png
|
|
|
|
// ui/static/favicon.ico
|
|
|
|
// ui/static/favicon.png
|
|
|
|
// ui/static/loading-cylon-pink.svg
|
|
|
|
// ui/static/mstile-144x144.png
|
|
|
|
// ui/static/mstile-150x150.png
|
|
|
|
// ui/static/mstile-310x150.png
|
|
|
|
// ui/static/mstile-310x310.png
|
|
|
|
// ui/static/mstile-70x70.png
|
|
|
|
// ui/static/safari-pinned-tab.svg
|
|
|
|
// ui/style-guide.html
|
|
|
|
// ui/styles/_buttons.scss
|
|
|
|
// ui/styles/_forms.scss
|
|
|
|
// ui/styles/_lists.scss
|
|
|
|
// ui/styles/_mixins.scss
|
|
|
|
// ui/styles/_nav.scss
|
|
|
|
// ui/styles/_notifications.scss
|
|
|
|
// ui/styles/_panels.scss
|
|
|
|
// ui/styles/_type.scss
|
|
|
|
// ui/styles/_variables.scss
|
|
|
|
// ui/styles/base.scss
|
|
|
|
// ui/tests/runner.css
|
|
|
|
// ui/tests/runner.js
|
|
|
|
// ui/tests/tests.js
|
|
|
|
// ui/tests/vendor/qunit-1.12.0.css
|
|
|
|
// ui/tests/vendor/qunit-1.12.0.js
|
2015-11-30 19:24:39 +00:00
|
|
|
// DO NOT EDIT!
|
|
|
|
|
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"fmt"
|
|
|
|
"github.com/elazarl/go-bindata-assetfs"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"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
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiGnumakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xce\xb1\x6a\xc3\x30\x10\xc6\xf1\xd9\xf7\x14\x47\x10\x44\x1a\x94\xec\x82\x42\x3b\xa4\x24\xd4\xad\x4d\xad\xa5\x53\x11\xb2\x40\x02\xd9\x16\xba\xa3\xc6\x6f\x5f\xec\xcc\x3f\xf8\xbe\xff\x77\xd7\x59\xf3\x22\x24\xc5\x90\x33\x8e\xa9\xce\x6e\x0a\x28\x64\x0d\x2e\x17\xc7\x11\x85\xcc\x8e\x78\x5d\xea\x88\x42\x7e\xbe\x7d\xdc\xde\x1f\xed\xed\xb7\x7d\x0c\x56\x29\xa5\x00\x28\xd4\xbf\x50\x0d\x34\x65\xe3\xb8\xcc\xa8\x27\x1c\xd2\x54\x72\xb8\x5b\xdb\x0f\x07\x02\xac\x8e\x7d\x34\xd0\x90\x23\x42\xe2\x2d\x07\x32\xc4\x8e\x93\x47\xad\x0f\x04\x18\x13\xb1\x81\xe6\x95\x22\x6a\x8f\xa7\xb3\x90\x7b\x9b\xba\x92\xaf\xa9\x30\x5d\x77\xbf\x50\x3c\x9f\x00\x2e\xfd\xbd\xfb\xfa\x31\xf8\xfc\xc6\x63\x00\x77\x87\xff\x00\x00\x00\xff\xff\x8b\xf7\x92\x67\xcf\x00\x00\x00")
|
2015-11-30 19:24:39 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiGnumakefileBytes() ([]byte, error) {
|
2015-11-30 19:24:39 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiGnumakefile,
|
|
|
|
"ui/GNUmakefile",
|
2015-11-30 19:24:39 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiGnumakefile() (*asset, error) {
|
|
|
|
bytes, err := uiGnumakefileBytes()
|
2015-11-30 19:24:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/GNUmakefile", size: 207, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-13 21:40:16 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiGemfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8b\xb1\x0a\x83\x21\x0c\x06\x77\x9f\x22\xa4\x7b\xdd\xbb\x75\xea\x73\x58\xf9\x8c\x82\x41\x49\x74\xe8\xdb\x17\xf9\xff\xed\x8e\xe3\x1e\xf4\x26\x4f\x3a\x3b\xe8\x03\x2d\xad\x23\xf8\xd8\x96\x41\x5c\xd7\x9a\xfe\x8a\xd1\xf6\xf7\x27\x50\x7f\x0e\x13\x0e\x41\xa0\xc4\x5b\x7a\x2b\x0d\xc6\x97\x7a\x72\xbf\x71\x55\x9c\xc1\x52\x3e\xf5\x1f\x00\x00\xff\xff\x77\xdc\x49\x79\x5f\x00\x00\x00")
|
2017-04-13 21:40:16 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiGemfileBytes() ([]byte, error) {
|
2017-04-13 21:40:16 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiGemfile,
|
|
|
|
"ui/Gemfile",
|
2017-04-13 21:40:16 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiGemfile() (*asset, error) {
|
|
|
|
bytes, err := uiGemfileBytes()
|
2017-04-13 21:40:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/Gemfile", size: 95, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-13 21:40:16 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiGemfileLock = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x4e\xc2\x40\x10\x86\xef\xf3\x14\x73\x2c\x97\xe9\x6e\x01\x25\x4d\x68\xa2\x76\x55\x12\xa8\x44\x31\x9e\x69\x33\x2d\x25\x60\xc9\x6e\x6b\xe4\xe2\xb3\x9b\xa1\xac\x8d\xb7\xf6\xfb\x67\xe7\xff\x76\x9f\xcc\x0a\x10\x2d\x1f\x9b\x96\x63\xdc\xb5\xed\xc9\xc5\x61\x68\xbb\xfc\x5c\xf1\xd1\x51\x63\xab\x10\x10\xdd\x89\x0b\x17\x03\x22\x22\x7f\x73\xb1\x77\x18\x44\x34\x26\x35\xba\xa0\xbd\x6b\x3e\x31\xd0\x34\xa3\xa8\x07\x87\x3a\xff\x9a\x61\x30\x26\x7d\x43\x7a\x42\x7a\xda\x63\xcb\xa5\x8c\x29\xba\xfe\xbb\xad\x73\x32\x35\x21\xad\x7b\xd2\xee\x58\xaa\xed\xb6\x60\x8b\x81\x22\x1d\xd1\x35\xf9\x5b\xfa\x93\xa0\xdf\xab\x7c\x64\xb9\xbc\x7c\x75\xd5\xa1\x2e\x6b\x39\x1a\xd1\xed\x10\x7b\xe5\x64\x8e\x6a\xb0\xf6\xde\xc9\x1c\x45\x5d\x8d\x00\xd6\xcb\xbb\xcd\xe3\xcb\xeb\xea\x4d\x9e\xa4\xcb\xcf\x00\xa9\x59\x9b\x2c\x35\xd9\xc3\xc2\x08\x14\x63\xf8\xaf\x09\x43\x2d\xc0\xfd\x7b\x96\x2e\x4d\x8a\x1f\x8b\xcd\xb3\x94\x68\xb9\xc1\x14\x7e\x03\x00\x00\xff\xff\x8c\x61\x42\xd2\x65\x01\x00\x00")
|
2017-04-13 21:40:16 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiGemfileLockBytes() ([]byte, error) {
|
2017-04-13 21:40:16 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiGemfileLock,
|
|
|
|
"ui/Gemfile.lock",
|
2017-04-13 21:40:16 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiGemfileLock() (*asset, error) {
|
|
|
|
bytes, err := uiGemfileLockBytes()
|
2017-04-13 21:40:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/Gemfile.lock", size: 357, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\xdd\x8a\xdc\xcc\x11\xbd\xef\xa7\x28\xd8\x80\x63\x98\x91\xbe\x8b\x38\x7c\x2c\x84\xb0\x76\x42\x3c\x09\x98\xc5\xbb\x8b\x31\x26\x58\xad\xee\x92\x54\xde\x56\x97\xdc\x3f\x23\x4f\x9e\x3e\x54\xb7\x66\x76\x1c\x5f\xe4\x4e\xd2\x74\xd7\xcf\x39\x75\x4e\xcd\xcd\x0d\xbc\x63\x1f\xb3\x83\x4f\xd8\xc3\xd3\x41\xa9\xc7\x89\x22\x58\x0a\x68\x12\x87\x13\x18\xf6\x49\x93\x8f\x90\x26\xfc\xf9\x68\x73\x7e\xbd\x1c\xd1\xd0\x67\x72\x69\x4f\x5e\xbd\x7f\x7c\xbc\x87\x88\xe1\x88\x01\xd2\xa4\x53\x7d\x96\x28\xd7\xd1\x77\xd0\xe7\x04\xda\x4b\x9a\x79\x66\x0f\x57\xd7\x14\x45\x30\x7a\xd1\xbd\x43\xe0\xa1\x7c\x24\x3f\x02\xa5\x46\xa9\x43\x82\x1c\x31\xc2\x3f\xf5\x51\x3f\x98\x40\x8b\x04\xb1\xf0\xe5\xef\x73\x8f\xe1\xdf\x7f\x9c\x52\x5a\x6e\xdb\x16\xe5\xed\x5b\x6c\x0c\xcf\xaf\x21\x71\xc9\x91\x3d\x19\x9d\x10\x56\x4a\x93\x92\x96\xbe\x6c\x4d\xdc\xdd\x1f\xea\xc5\x78\xdb\xb6\xeb\xba\x36\xa6\x7c\x6f\x88\x5b\xbd\x50\x4b\xde\xe2\x8f\x66\x4a\xb3\x7b\xdd\xc0\xe3\x84\xd0\xeb\x48\x46\x0d\xa8\x53\x0e\x18\x81\x12\x2c\x81\x8f\x64\x31\x82\x0e\x78\xab\xd4\x1e\x1e\xa4\x64\x83\x70\x24\x5c\x1b\xb8\x03\x47\x31\x49\x2b\x27\xce\x01\x02\x8e\x14\x13\x06\xb4\xb5\x35\x83\x71\x27\x18\x53\x50\x13\x6a\x97\xa6\xd2\x91\x54\xe8\xd9\x16\xe0\xf0\x04\x21\x7b\x60\xdf\xa8\x3d\x7c\x60\xfb\xff\x03\x97\x9b\x25\xea\x25\x87\x84\xf0\xe4\x47\xc5\x1e\x50\x9b\x97\x2c\x5b\x52\x1e\x2e\x39\x25\xcd\xbf\xf0\xd4\x1e\xb5\xcb\x35\x57\x39\x9c\x17\xab\x13\x0a\x07\xaf\x22\xe8\x55\x87\x42\xcf\x9c\x5d\xa2\xc5\x21\x58\x9d\xb4\x41\x9f\x30\xc4\x1d\x44\x96\x9a\xc0\x68\x0f\x23\x26\xd0\xf0\x3d\x93\x79\x86\xd1\x71\xaf\x9d\xe2\xa3\x14\x85\x2b\xf4\x38\x70\x40\xb0\x81\x9c\x2b\x1c\xfb\xc4\x10\x17\x34\x34\x90\x29\x11\xf7\x5b\x48\x18\x38\x80\xc5\xa4\xc9\xa1\x55\x72\x39\x36\x32\xb2\x08\x4f\x87\x3a\x12\x91\x67\x94\x00\x18\xbc\x76\x90\xbd\x65\x93\x67\xb9\x6c\xeb\x70\xdd\xdd\x1f\xa2\x0c\x03\x2f\x89\x66\xfa\x0f\xaa\x05\xc3\xc0\x61\xd6\xde\x60\xed\x2f\xea\x9e\x1c\xa5\x53\xa3\xd4\xcd\xcd\x0d\xfc\x0d\x8f\xe8\x78\x91\x18\x4a\x1d\x66\x61\x19\xe5\x25\x96\xd3\x7d\x1e\x61\xa0\x1f\x95\x75\x58\xd1\x19\xc9\x2f\xbf\xa0\x37\x9c\x83\x1e\xd1\x96\xa2\x05\xd5\x4d\x37\x4a\x7d\xe6\xfc\xca\x39\xf0\x28\xec\xeb\x18\xb7\xe9\x5c\xc8\x21\xbc\x7b\x78\x80\x98\x4e\x0e\xe3\x84\x98\x62\x03\x07\x1f\x93\x76\xae\xca\xa8\xcc\x6d\x9f\xbd\x75\x18\x6e\x95\x02\x00\x30\x16\x32\xb5\xe5\xb1\xfe\xa0\xd4\x47\x74\xac\xad\x40\x59\xa3\xea\x44\xec\x37\xec\x2e\xdd\x6c\xd7\x67\xfd\x8c\xb0\xea\x64\x26\xa5\x36\x2d\xc4\x89\x96\x58\x52\x81\xfe\x49\x93\x97\x4e\xee\xee\x0f\xa5\x49\x71\x81\xb7\x27\xb0\x38\xe8\xec\xd2\x0e\xd6\x09\xbd\x12\xca\x65\x52\xe5\xa0\x1e\xd1\xa7\x9d\xc8\x83\x22\xf0\x30\x34\xf0\x9e\x57\x3c\x62\xd8\x01\x95\x81\x85\x45\xfa\xd7\xd0\xed\x33\xed\x2d\x85\x0e\x06\xa7\x47\x55\x93\xc3\xa2\xd3\x24\xe0\xfc\xaf\x6d\x9c\x2a\x80\x3d\x42\xf1\x87\xc4\xa0\x8d\xc1\x58\x5d\xea\xe9\x00\x47\xd2\xf2\x78\x6e\xe8\xba\x05\x6d\x6d\xc0\x18\xa5\x56\x32\xd3\xb9\xf4\x42\x41\xe7\xd8\x68\x37\x71\x4c\xb7\xbf\xbf\xf9\xed\xb7\x36\x53\xd7\x28\x75\xe7\x01\x7f\xe8\x79\xa9\x3e\x54\x2a\x11\x27\xd1\xde\xee\x60\x08\x3c\x03\xf9\x48\x16\x4b\xea\x2e\x53\xdb\x5d\x17\xba\x72\x76\x16\x7a\x3c\x73\x55\xeb\x29\xa8\xc0\xbe\x67\x4e\x31\x05\xbd\xc0\x7e\x2b\x6e\x5f\x86\xdd\x52\x80\x36\xcd\x4b\x0b\x1b\x28\xd0\x28\xf5\x56\x0c\x07\x12\xc6\x14\x8b\xa0\x7a\x2c\x20\xf7\x27\xe9\x48\xa8\x2e\xf9\xff\x2a\x07\x3a\xf8\x9e\x31\x9c\x60\xd1\x41\xcf\x98\xc4\x82\xb9\xc0\xa1\x97\xc5\x89\xff\x91\x98\x88\xfa\x34\xa1\x3f\x0f\x84\x04\xa8\x60\x09\x59\xaf\x22\x04\x94\x26\xd1\x5b\xb4\x75\xf2\x84\xab\x1c\x6b\x9b\xe4\x8d\xcb\x16\xad\xba\x1a\x27\xe9\x6d\xa0\x31\x87\x73\xf8\x5f\xfb\xad\x27\xf6\x03\x39\xfc\xcb\xd5\xcd\xaf\xf5\x7b\xf3\x2d\xb2\xaf\x9a\xfb\x88\x0e\x75\x14\x9b\x52\x5d\x99\x4f\x4b\x31\x75\x55\xe8\x5d\xd3\xb4\xcb\xf3\xd8\xae\xd8\x7f\xcd\xd4\xc1\xc0\xce\x62\x80\x95\xdc\x65\x13\x95\x1a\x25\x4b\x2c\x55\xc7\xa9\x90\x20\xc5\x57\x09\x2c\x8e\x4f\x92\x78\x53\xf8\x9d\x79\xf6\xbc\x3a\xb4\x63\xd1\xb5\xc8\x60\x04\x32\x5c\xc0\xcd\x11\xe5\x91\x8c\xac\x91\xca\x77\x59\x1b\x1f\x38\x7b\xb8\x0f\xfc\x0d\x4d\x7a\x59\x1c\x69\x42\xcf\xd9\x2f\xf5\xbb\x5c\x69\x13\x86\xb9\x8d\x98\x12\xf9\xb1\xfd\xd3\x9b\
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiReadmeMdBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiReadmeMd,
|
|
|
|
"ui/README.md",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiReadmeMd() (*asset, error) {
|
|
|
|
bytes, err := uiReadmeMdBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/README.md", size: 2596, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiDevelopment_configJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xce\x31\xaa\xc3\x30\x0c\xc6\xf1\xdd\xa7\x10\x1a\x1f\x2f\x2f\xbc\x35\x5b\xe8\x01\x7a\x04\xe3\xda\xa2\x31\x75\x6c\x23\x29\xe9\x50\x72\xf7\x12\x87\x74\xeb\xfa\xfb\xc3\x27\xbd\x0c\x00\x06\xa7\xce\x53\x56\x62\x1c\x00\x83\xff\xc7\xdf\x93\x6d\x88\x0d\x7b\x9d\x6b\x7f\xf0\x12\x4f\xfc\x3b\xe0\x56\x8a\x8a\xb2\xab\x38\x80\xf2\x42\x0d\x85\x78\x6d\x7b\x1f\x71\x3e\xd9\x2f\x97\xf6\x34\x3b\x51\x62\xab\xe5\x41\xb9\x45\x5a\x8f\x38\xa9\x56\xeb\x6a\xb4\x4c\x52\x4b\x16\xb2\x13\xb9\x40\x2c\x38\xc0\xfe\x3e\x00\x8e\xde\x93\x48\x77\x29\x59\xb9\xa4\x6e\x4c\xa9\x3c\xbb\x2b\xc7\x7b\x6c\x53\x3f\x68\x00\x36\xb3\x99\x77\x00\x00\x00\xff\xff\xaa\x8e\x73\xba\xee\x00\x00\x00")
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiDevelopment_configJsonBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiDevelopment_configJson,
|
|
|
|
"ui/development_config.json",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiDevelopment_configJson() (*asset, error) {
|
|
|
|
bytes, err := uiDevelopment_configJsonBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/development_config.json", size: 238, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x59\x77\xdb\x38\xb2\xf0\x7b\x7e\x45\x0d\xfb\xc1\x0f\x5f\x48\x4a\x5e\x62\xc7\x23\x6b\x4e\xb6\x9e\xce\x24\x9d\xee\x93\x38\x3d\x5f\x3f\xdd\x03\x91\x25\x11\x63\x0a\xe0\x00\xa0\x6c\xb5\x8e\xfe\xfb\x3d\x00\x48\x8a\x0b\xa8\xc5\x8e\x3d\xdd\x7d\xe7\xc1\x16\x17\xa0\x0a\x28\x14\x6a\x43\x01\x1c\xfd\xe5\xed\x4f\x6f\xae\x7f\xfd\xf9\x1d\x24\x6a\x9e\x8e\x9f\x8d\xca\x1f\x24\xf1\xf8\x19\xc0\x68\x8e\x8a\x40\x94\x10\x21\x51\x5d\x79\xb9\x9a\xfa\x17\xde\xe6\x45\xa2\x54\xe6\xe3\xbf\x73\xba\xb8\xf2\xfe\xbf\xff\xf5\x95\xff\x86\xcf\x33\xa2\xe8\x24\x45\x0f\x22\xce\x14\x32\x75\xe5\xbd\x7f\x77\x85\xf1\x0c\x6b\xf5\x18\x99\xe3\x95\xb7\xa0\x78\x9b\x71\xa1\x6a\x45\x6f\x69\xac\x92\xab\x18\x17\x34\x42\xdf\xdc\x3c\x07\xca\xa8\xa2\x24\xf5\x65\x44\x52\xbc\x1a\x04\xe7\xcf\x21\x97\x28\xcc\x3d\x99\xa4\x78\xc5\xb8\x05\xad\xa8\x4a\x71\xfc\x86\x33\x99\xa7\x30\x59\xc2\x0f\x44\x26\xf4\x0d\x17\xd9\x28\xb4\xaf\x74\xa1\x94\xb2\x1b\x10\x98\x5e\x79\x52\x2d\x53\x94\x09\xa2\xf2\x20\x11\x38\xd5\x4f\x88\xa2\x51\x38\xe1\x5c\x49\x25\x48\x16\xcc\x29\x0b\x22\x29\xbd\xbd\x6b\x12\x89\xae\x0a\x34\xe2\xcc\x03\xb5\xcc\xf0\xca\xa3\x73\x32\xc3\x30\x63\xb3\x56\xdd\x29\x59\xe8\x62\xfe\xc9\xf1\xdd\xc9\x71\x60\xde\x4b\xfa\x1b\xca\x2b\xcf\x3c\x79\x08\xc8\xe1\x8b\xbb\xe1\x8b\x06\x48\xf3\xc4\x1b\x3f\xd3\x30\x65\x24\x68\xa6\x0a\x50\x0a\xef\x54\xf8\x2f\xb2\x20\xf6\xa9\xc1\x0a\x10\x86\xf0\x26\x21\x6c\x86\xa0\x12\x2a\x61\x41\xd2\x1c\x41\x71\x58\xf2\x5c\xe8\xc1\xd3\x04\x4f\xb8\x54\x40\xa7\xfa\x19\x10\x81\xc0\xb8\x02\x91\x33\x46\xd9\xac\x84\xa1\x12\x84\xaf\xef\x81\x33\x73\x25\xc9\x1c\x6d\x2d\x22\x81\x94\x60\x28\x93\x8a\xb0\x08\x83\xb2\x12\x06\xb3\x00\x3c\xcd\x69\x97\x61\x38\x5f\x4a\x14\x0b\x14\x41\xc4\xe7\x97\x17\x67\x83\x81\x67\x8a\x2d\x48\xd9\x8c\x1f\x34\xbc\x2b\x38\x3a\xd2\x3d\x0b\x6d\x27\xc6\xcf\x9e\x8d\x42\xcb\xd1\xa3\x09\x8f\x97\xb6\xdb\x8c\x97\x6f\x35\x84\x51\x84\x4c\xa1\xb0\x37\x00\xa3\xe4\x78\xfc\x0f\xb2\x20\x5f\x2c\x6d\x3e\x6b\x1e\x17\x18\x8f\xc2\xe4\xb8\x2a\x92\x8d\x7f\x4e\x91\x48\x04\x64\x9a\x0d\xa1\x56\x9e\x32\x4b\x9a\x5b\x9c\xc0\x44\xf0\x5b\x89\x42\x93\x2b\x97\x08\x05\x7b\x7e\x7d\x1f\x8c\xc2\xac\xc0\x1d\x6e\x90\x8f\xc2\x4d\xbb\xf4\x6d\x4c\x17\x10\xa5\x44\xca\x2b\xef\x56\x90\x2c\x43\x51\x0c\x49\xfd\x8d\x9e\x3e\x84\xb2\xea\x5d\xfb\x6d\xea\xcf\x63\x7f\x78\x5c\xbd\x2d\xde\xd3\xf8\xca\x23\x59\x56\x7f\x1c\xc6\x74\x51\xc1\xd8\xdc\x14\x97\x1d\xc4\x59\x2e\x13\x6f\x5c\x15\xec\x2b\x36\xe5\x5c\xd5\x1a\xb7\xab\xf1\xfb\x74\xa0\xd5\xd6\x9e\xd6\x3a\x78\xfb\xce\x4f\x08\x8b\x53\x9c\x10\x21\x0b\x78\xab\x15\xcf\x55\x8a\x6a\xbd\x6e\x32\xcd\xee\xfa\x10\x13\x45\x7c\x85\xf3\x2c\x25\x0a\x7d\x2b\xd6\x50\x08\xee\x1a\x25\xc1\x6f\xb7\x8d\xcf\x05\x14\x17\x7c\x3a\x95\xa8\xfc\x63\x73\x2f\xe7\xfe\xd0\x5e\xdd\x49\xc7\x10\x16\x20\x74\xcb\x7c\xcb\x44\xb0\x40\xa1\x68\x44\xd2\xe2\xbe\x41\xb3\xd5\xea\x3b\x3a\x35\xd2\x56\xf0\x34\x45\x11\xcc\x79\x8c\x69\xa0\xc5\x45\x2e\xaf\xf1\x4e\x81\xa1\x41\x8d\xc8\x59\x89\x62\xc2\xd3\xd8\x1b\xff\x70\x7d\xfd\x33\x98\x0e\x42\xc4\x63\x84\xa9\xe0\xf3\x82\xa5\x2f\x61\xa4\x1f\x8d\x57\xab\x1e\xf8\xeb\x35\xf4\xbe\xd3\xb8\xd7\xeb\x51\x68\x20\x54\x13\xa3\x6c\x74\x48\xa7\x8d\x76\x8d\xb2\xf1\xb5\x96\x43\x54\x02\x61\x45\x73\x32\x32\x43\x98\x72\x61\x44\x4b\x31\xc9\xf4\xf4\xfb\xfa\x3e\x80\x5f\x79\x0e\x73\xb2\x84\x84\x2c\x10\x16\x54\x52\x85\x31\x10\xf8\xfa\xf9\x23\xa8\x84\x28\x0d\x27\xe5\x24\xa6\x6c\x06\x84\xd5\xf0\xe4\xec\x86\xf1\x5b\x06\x02\x25\xcf\x45\x84\xcf\x41\x1a\x99\x07\x11\x61\xa0\xc4\x12\x66\x5c\xd7\x99\x90\xe8\x46\x4f\x6f\x8d\x79\x44\x0a\x11\xfc\x9d\x37\x16\x9c\xab\x51\x48\xc6\x41\xab\x43\xa3\x6c\xfc\x93\x4a\x50\xdc\x52\x89\xcf\x21\xb3\x42\x44\xa0\x56\x85\x40\xd8\x12\x72\x86\x77\x19\x46\x0a\xe3\x5a\x25\x2a\x65\x8e\xb2\x94\x9d\x15\x1a\x2d\x17\xe5\x65\x18\xce\xa8\x4a\xf2\x89\x16\x8b\x61\xa2\xd5\x5e\xc4\x45\x16\x5a\x91\xe8\x8d\xff\x4e\xd5\x0f\xf9\xc4\x90\xa8\xdb\x9e\x1d\x73\xfe\x5b\xcc\x88\x38\x0a\x73\x46\x72\x95\x70\x41\x7f\xc3\xf8\xf7\x39\x37\xda\xac\xfe\x2a\x8a\x50\x4a\x78\x8b\x8c\x6a\xc1\x9f\x75\xe7\x11\x89\xd2\x6b\x7e\x83\xac\xcd\x9b\xbf\x6a\xd1\xff\xea\xcd\x47\x50\xfa\xed\xf3\x6a\x5e\x6c\xca\x17\x8c\xfe\x1c\x62\x8e
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiIndexHtmlBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiIndexHtml,
|
|
|
|
"ui/index.html",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiIndexHtml() (*asset, error) {
|
|
|
|
bytes, err := uiIndexHtmlBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/index.html", size: 30922, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsAppControllersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\x5b\x73\xdb\x36\x16\x7e\xf7\xaf\x38\xe5\xec\x94\xd2\x84\x4b\x65\x67\xfb\xb0\xe3\x8c\xa6\xeb\xd8\x4e\xeb\x26\x4d\x3d\x71\xda\x7d\xe8\xe4\x01\x26\x8e\x24\xc6\x10\xa0\x02\xa0\x64\x4d\xeb\xff\xbe\x83\x0b\x49\xf0\xa2\x6b\x1c\x6f\xa6\xdd\xa7\xc8\xe4\x01\x70\x70\x2e\xdf\xf9\x70\xc0\x9c\x2d\x16\xe9\xd9\x62\xc1\xf2\x8c\xe8\x5c\xf0\x73\xc1\xb5\x14\x8c\xa1\x84\x31\x5c\xce\x6f\x51\xa6\x3f\xdd\x7e\xc4\x4c\xd7\x2f\x52\xbc\xd7\xc8\xe9\xe0\xf7\x13\x80\x62\x41\x89\xc6\xf3\x42\x4a\xe4\xfa\x9a\xe8\xd9\x29\x4c\x0a\x9e\x99\x99\x06\x43\x30\x12\x00\x66\x05\x85\x7a\x10\x67\xb5\x58\x9c\x80\x9e\xe5\x2a\x9d\xb6\x9f\x0f\x87\x2f\x4e\x00\x1e\x52\x71\xab\x50\x2e\x51\xb5\xde\x9e\x3c\x0c\x5f\x9c\x9c\x98\x19\x2f\xb2\x1e\x55\xfb\x95\xe4\x88\x54\x9d\xc2\xaf\x11\xa9\xf7\x19\x7d\x48\x4e\x00\x46\x23\xf8\xcf\x0c\xf5\x0c\x25\x08\x09\x5c\x68\xd0\x33\x04\x2a\xc5\x82\x8a\x15\x87\x39\xf2\x02\x32\xc2\xe1\x16\x41\x21\xf2\x13\x80\x5c\x5d\xf8\xb7\xbf\xe4\x2a\xbf\x65\x78\x0a\x13\xc2\x14\x26\x27\x27\x00\x94\x68\x92\x21\xd7\x28\x4f\xbd\x42\x99\x98\x2f\x0a\x8d\x34\x25\x2c\x27\x66\x33\x82\x6b\xe4\x3a\x1e\x5a\xf9\xd1\x08\xde\xa1\x2e\x24\x57\x76\x5d\x2d\x34\x61\xc0\x0b\x33\x12\xc4\x04\x26\x24\x67\x39\x9f\x42\x36\xc3\xec\x4e\xa5\x76\x80\x57\x1a\x41\x4b\x24\x1a\x08\x5f\x03\x17\xfc\xef\x0b\xa2\x54\x2d\x0a\x44\x95\x83\xcb\x41\x76\xee\x73\xfb\xf6\x95\x7b\xd3\xe3\x29\x69\x95\x09\x3c\xc3\x05\x45\x15\x0f\x53\x89\xb4\xc8\x70\x50\x0d\x50\xc5\x3c\x01\xf3\xb2\x1c\x59\x8d\x55\xc5\x1c\x9e\xd9\x57\x6e\x06\xaf\x86\x5b\x39\xb6\xce\x05\x78\x48\xe0\xb9\xf7\xf3\x42\x8a\x05\x4a\xbd\xae\xd6\xb2\x86\x09\xb4\xbd\x76\x3b\x7b\x1a\x6d\xbd\x19\x0f\xd4\xb6\xf4\x4a\xe8\xcb\x59\x31\x27\x1c\x26\x42\xce\x89\xd6\x48\x61\x8e\x4a\x91\x29\x9a\x27\xf6\xfd\x6d\xa1\xb5\xe0\xa0\x34\xd1\x58\x4e\x61\x9d\xf7\xa3\x13\xec\xd9\xef\x92\x48\x68\x98\x13\xc6\xc1\xe6\xbb\x0e\x2e\xf5\x37\xe3\x1a\x1b\xdb\x34\xce\x9b\xda\x8c\xb3\x03\xf3\x09\x0c\x6a\xc1\x19\x29\x27\x2e\xcd\x03\xe3\xf1\x18\xb4\x2c\xba\x76\x6d\xe9\xf9\x0c\xe2\xf2\x49\xec\x6d\x0a\xc8\x14\x76\x86\x35\xd5\x34\xc3\xfc\x93\x72\xd8\xc9\x6e\x37\x34\xac\x79\xa3\x89\x2e\x54\x8f\x31\x8f\xdf\x5b\xe4\x77\x12\x6d\xdb\x49\xe4\xf5\x8e\xf6\xd7\x1b\x5e\x0a\xc1\x90\x70\xa3\x9a\x45\xa1\x0a\x4c\x60\x46\x94\xcd\xf4\x0d\x80\xd0\xd6\xbe\x03\x3e\xd3\xfe\xf8\x30\x71\x6d\x35\x20\xd6\x36\xea\xd4\xef\x62\x34\x82\xef\x73\x8a\x40\x38\x05\x35\x13\xab\x2e\x28\x5a\x31\x2d\xa6\x53\x16\x06\x6a\xae\x71\x3e\x2c\x0d\x61\x8d\xeb\x44\xae\xab\x6d\x77\xd0\xb3\xce\xb1\x72\xe5\x1f\x0a\xa5\x61\x66\x96\xef\x5f\xd5\xbc\x32\x93\x6c\x5d\xd7\x96\x9b\xee\x62\x89\xc3\xea\x72\x4d\xe3\x13\x57\x50\x5e\x2f\x5f\x12\x85\x07\xd6\xbe\x29\xea\x6b\x62\x4a\xd3\x6b\x5c\xbf\x13\x85\xee\xcb\xd9\x66\x98\xe5\xea\x9d\x10\x3a\x1e\x76\x62\xaa\x16\x91\x42\x98\xf9\xe2\x40\xc7\x1e\xa9\x45\xb9\xae\x93\x7b\x70\xa0\x29\x09\x57\xb9\x59\xfe\xbd\x78\x8b\x44\xa2\xf2\xfa\x05\x7a\xb9\x81\x21\xa2\x64\xe1\xa6\xcd\x0a\x35\x68\x78\x5d\x60\x1c\x08\xf5\x6a\x69\x84\x69\xd6\x23\x47\xb3\x78\xe8\x7f\x55\xd1\x1c\x0e\xd2\xe2\x0e\x39\x8c\x2d\x45\xb0\x62\x0a\xb5\xce\xf9\xd4\x44\xce\x1d\xf2\x0a\x89\x9c\x33\xfe\x96\x92\x8f\xe4\x7e\x50\xda\xae\x90\xec\x14\x06\x0e\x62\x7f\x96\x6c\x90\x09\xae\x0a\xf6\xbd\x50\xda\x20\xc7\x68\xf9\x8f\xd1\xdd\x72\x14\xc3\x33\x70\x9b\x36\x0f\xbf\xbd\xc3\xb5\x8a\x13\xa0\x59\xe2\xd6\x1e\x0e\x93\x32\x6e\xd6\x0b\x3c\x85\xf8\xbb\xcb\xf7\xb1\xb3\xfc\x30\xd5\x33\xe4\x75\x15\x31\x3b\xa8\x1d\x17\xec\x34\xb4\xbb\x8d\x83\x41\x7c\xb7\x4c\x4d\xe2\xc4\x89\x5f\xbb\xf4\xe6\x30\x35\x29\x5c\xcf\x29\x51\x2d\x04\x57\x01\xc8\x98\x80\x29\x9f\xa6\xca\xa2\x97\x85\xa2\x6f\x9e\x7f\x53\x0b\xed\xbf\xbc\x77\x94\x5f\xbf\x8c\xa7\x87\xd2\xae\xc1\x34\x3e\x65\xde\x08\x42\x1d\x36\xd4\xa9\xf2\x50\xb3\xae\xd7\xcb\x9b\x99\x58\x35\x12\xa5\x9d\x3b\x65\x8a\x38\x9f\xfd\x42\x58\x4e\x2d\xe3\x52\xe9\x8f\xf9\x7d\xce\x13\x68\x50\x32\x9a\x39\x26\x46\xb3\x0d\x94\x29\xaa\x75\x54\x29\xcd\x22\xeb\xb0\x4a\xcf\x90\x7d\x75\x51\xec\xdc\x70\x24\x74\x05\xf9\x0e\xd7\x30\x91\x62\x6e\xff\xe0\xb8\x32\x81\x3d\x17\x14\x59\x29\xac\x50\x83\xe0\xf6\xb5\x34\x66\x4c\x9d\x85\xec\x14\xaf\x71\xdd\x93\xdc\x4d\xb0\x
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppControllersJsBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsAppControllersJs,
|
|
|
|
"ui/javascripts/app/controllers.js",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppControllersJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsAppControllersJsBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/app/controllers.js", size: 16013, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsAppHelpersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x58\x6d\x8f\xdb\xb8\x11\xfe\xee\x5f\x31\x15\x8a\x93\x9c\xb5\x65\x67\x83\x5c\xda\xac\xed\x22\xe9\xa5\xbd\x05\xf2\x02\x5c\x7c\xe8\x87\xa2\x28\x68\x71\x24\xb1\xa1\x49\x1d\x49\xd9\xeb\xf4\xf2\xdf\x8b\x21\xf5\xe6\xb5\x37\xbb\x69\x0e\x0d\xd0\xfd\xb0\x96\x86\xe4\x70\x9e\x87\x33\x0f\xc7\x7e\xb5\xdd\xa0\x49\x7f\x64\x8a\x4b\xdc\x30\x63\xd3\x12\x65\x85\x26\x89\x2b\xa6\x50\xbe\x64\x26\x9e\x40\x5e\xab\xcc\x09\xad\x12\xeb\x98\xab\xed\x18\xfe\x3d\x02\xd8\x31\x03\xa5\x28\x4a\x29\x8a\xd2\xfd\x59\x32\x6b\xaf\x46\x23\x00\x91\x43\x33\x0d\x96\x4b\x88\x2a\x66\xad\x50\x45\x14\xd6\xc0\xad\x15\xb0\x84\x68\x53\x4c\x0b\x83\xa8\xa2\xab\x11\xc0\x27\x40\x69\xf1\x73\x73\xb5\x61\xaa\xc0\x30\x79\x04\x60\xd0\xd5\x46\x81\xc2\x3d\x0c\x30\xbc\x67\x39\xbe\x77\x46\xa8\x22\x89\x17\x5c\xec\x20\x23\x0f\xcb\xc8\x63\x9a\x6e\x98\x81\x18\x2e\x6e\xfb\xbf\x80\x38\x5a\x2d\x66\x5c\xec\x56\xf1\xf8\x6a\xf4\x69\x7c\x35\x1a\xdd\xc9\x8e\x14\xd6\xfd\x9f\x91\x43\x90\x88\x9b\x69\xa9\x8d\xf8\xa8\x95\x63\xf2\xab\x69\xb2\x68\xad\xd0\xea\x2d\xdb\xe2\x11\x55\xc1\xdc\x73\xa5\xd8\x16\x7b\x86\xc2\x68\x4a\xab\x60\x49\x44\x75\x0c\x29\x6f\x82\x78\x61\x2b\xa6\x56\x14\xdd\x60\xd3\x9f\x9d\x90\x36\x45\x9b\xb1\x0a\x5f\xdd\x54\x26\xb8\xe9\xdc\x5d\xff\x30\xa6\xe0\x17\xb3\xb0\xf6\x84\xd1\xaf\xf1\x4d\xa1\x1e\x79\xa7\x67\x58\xd8\x2d\x93\xf2\xbf\x0e\x33\x2c\x0e\x87\xf9\x90\xd3\x24\x00\x0f\x3d\x91\x37\xe8\xd8\x67\x4f\x64\x8b\x8e\x79\x36\x06\x19\x42\x36\xce\x1c\x8b\xbe\x10\xd2\x4b\x2c\xd9\x4e\x68\xe3\x81\xc1\xa6\x79\x6b\x72\xe8\xe4\xd8\xd7\xeb\xd7\xf0\xbb\xa3\x53\x6f\x62\xf1\x1f\x17\x77\x85\x34\x81\x2f\x0b\x6a\xbd\x7e\x1d\xe2\x59\xaf\x5f\x77\xa1\x3c\x94\x6a\xda\xf6\x5e\xaa\x59\x26\x6f\x27\x3e\x1d\xd1\x04\x04\x0f\xc8\x08\xb5\x3a\x4d\xf2\x66\x77\xc1\x4f\x52\xf4\xde\xb8\xee\x87\xaf\xda\x4c\x6d\xb2\xb3\x93\xc6\x5a\xca\xa9\xa1\x32\x07\xa5\xa7\x19\xb3\xf8\xd0\x53\x26\x34\xc3\x84\x1d\x07\x1a\x3d\x37\x77\x93\x93\x6b\xb3\x65\xee\xa7\x5a\xa2\x1d\x12\x64\xc8\xd0\xb3\xe3\x5f\xcf\xd3\x13\xbd\xd5\x10\x86\x39\xe6\x42\x21\x3f\xd5\xc8\x66\xa6\x9f\x35\x0c\x6a\x36\x83\xbf\x21\x28\x44\x0e\x4e\x03\xd7\xe0\x4a\x61\x61\x83\x19\xab\x2d\x82\xce\x41\xd7\x06\x0a\xa9\x37\x4c\x7a\x55\xb0\x15\xcb\x10\x2a\xa3\x2b\x34\x4e\xa0\x4d\x61\x5d\x22\x79\xb1\x68\x76\x22\xc3\x74\xcd\x0a\xfb\xb9\x92\xf3\xb3\xd6\xac\x78\x83\xd6\xb2\xe2\x28\x23\x1c\x2b\x06\x78\xe9\xcd\xc3\x55\xb5\x94\x67\x00\xd3\x78\x74\x0b\xca\x7b\x54\xdc\x02\xf3\x59\xa1\xb4\x13\xb9\xc8\x18\xb9\x26\x6c\xae\x44\xf8\xf9\x7a\xd4\xee\x16\xc6\x0f\xc9\x36\xc4\x31\x01\xe7\x64\xbf\xf9\x5e\x28\xae\xf7\xe9\xd0\x87\xf5\x95\x58\xab\x86\x62\xf8\xee\x3b\x38\x37\x2b\x95\xa8\x0a\x57\xc2\x0a\xe6\x6d\xd0\xbf\x3f\xeb\x6e\x9c\x22\xcb\xca\xa4\x43\x2f\x26\xb0\x6b\x57\x00\xec\x52\x2e\xec\x56\x58\x9b\xf8\x1c\x02\xf8\x34\x6e\xaf\x32\x7f\x49\x0c\xc1\x2d\x3d\xde\xb7\x03\xd3\x5f\x6e\x92\x56\x2e\x3c\x3a\x78\x0e\xf1\xa2\x5a\xc5\x17\x9d\xc1\x67\x69\xb5\x8a\x27\x7e\x9a\x64\x07\x5d\x3b\x9a\x55\x18\xbd\x97\x8d\x15\xf3\x1c\x33\x6f\xb5\x52\x70\x6c\xac\xee\x50\x79\x7f\x14\x42\xd6\x19\x9d\x7c\x4e\xff\xe8\xcd\x9f\x06\x00\xe5\x44\xa9\xf7\x9e\xf7\x61\xb8\x23\x38\x7a\x4d\x69\x52\xd2\x2d\x79\xc1\xf9\xc9\x8a\xf6\xf4\x7e\xa9\xb1\x46\x7a\xd9\x20\x64\x52\x5b\xe4\x23\x38\x7b\x06\xb0\x84\xbf\xff\xe3\xea\x8e\xc1\xb4\xaa\x6d\x99\x0c\x4d\xa4\x5e\x3e\x7d\xd6\x7a\xab\x0b\xc3\xaa\xf2\x10\x5e\xdf\xfd\xf0\xee\x39\x45\x02\xb6\x36\x08\x1e\x8c\xf6\x1f\x54\x27\x4d\xa9\x6c\xb5\x41\x08\xf9\xfe\x2f\x3b\x3d\xf4\xf9\xe5\x3a\x67\x6f\x74\x6d\xf1\xdd\x0e\x4d\x82\xb2\xbf\x55\x36\x75\x0e\x4b\x40\x99\x16\xe8\x5e\x38\x67\xc4\xa6\x76\x98\xc4\xa4\xe0\x53\xa5\x39\xc6\x41\x9a\xa6\x5e\xcb\xcf\x4f\xe3\xc2\x3a\xa6\xb2\x66\xea\xd6\x7a\xd5\xe6\x3a\xab\xb7\xa8\x1c\x2d\x78\x25\x91\x1e\x5f\x1e\xae\x79\x12\xf7\x01\x79\xff\x53\xa1\x72\x1d\x8f\x53\xa1\x14\x9a\x1f\xd7\x6f\x5e\xc3\x92\x62\xf2\x5c\xdc\x59\xbf\xbd\x8f\xbf\xd2\xff\xa3\xea\xed\x86\x26\x60\xc5\x47\x24\xa4\xe1\x4c\xd7\xc4\x93\xb0\x50\x17\xf2\x30\x81\x4d\xed\xe0\x3a\xde\xc2\x5e\x9b\x0f\x42\x15\xc0\x8c\xae\x15\x87\x4d\x5d\x58\xd8\x0b\x57\x0e\x64\x16\x98\xe2\xe0\x70\x5b\x49\xe6\x84\x2a\x82\xb7\x8a\x19\x67\x49\x99\xec\xae\x
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppHelpersJsBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsAppHelpersJs,
|
|
|
|
"ui/javascripts/app/helpers.js",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppHelpersJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsAppHelpersJsBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/app/helpers.js", size: 6062, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsAppMixinsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppMixinsJsBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsAppMixinsJs,
|
|
|
|
"ui/javascripts/app/mixins.js",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppMixinsJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsAppMixinsJsBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/app/mixins.js", size: 0, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsAppModelsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\x4b\x8f\xdb\xc8\x11\xbe\xeb\x57\xd4\xce\x85\x12\xac\x25\x3d\x41\x90\xc3\x4c\x94\x60\x3c\xce\x02\x5e\xef\xda\x86\xc7\x5e\x1f\x82\x00\xd3\x22\x4b\x62\x5b\xcd\x6e\xa2\xbb\x29\x99\xd9\x9d\xff\x1e\x54\x3f\x28\x52\xa2\x34\x13\xc4\xd9\x3c\xb0\x17\xdb\xea\x47\x3d\xbe\xaa\xfe\xaa\x8a\xce\xb2\x49\x96\xc1\x0d\xdc\x2a\x69\x1a\x01\x06\xf5\x96\xe7\x98\x4e\xb2\x6c\x72\x53\xd7\xe9\x9d\xff\x0d\x0b\xf8\x4b\xb5\x44\x9d\xbe\x5d\x7e\xc6\xdc\xa6\xf8\xc5\xa2\x2c\xa6\x3f\x4f\x00\xb2\xcc\xfd\x01\x1f\x4a\x04\xd9\xd0\x21\x50\x2b\x58\x31\x2e\xb8\x5c\x43\x5e\x62\xbe\x31\xb0\xe3\xb6\xe4\x12\x6c\x89\x7b\x0d\xe1\x6a\x38\x79\xeb\x0e\x5e\xc1\xaa\x91\xb9\xe5\x4a\x4e\x67\x40\xd2\x9d\xe8\x57\xab\xfe\x4d\xd8\x31\x03\x1a\x6d\xa3\x25\x16\xb0\xd2\xaa\x82\xfb\x6c\x7b\x99\x71\x69\x51\x4b\x26\xb2\x86\x67\xe1\xa8\xb9\x8f\x22\x6c\x89\x12\x76\x08\x25\xdb\x22\x30\x60\xeb\xb5\xc6\x35\xb3\x58\xc0\x96\x89\x06\x61\x57\xf2\xbc\xa4\x03\x39\x93\xf0\xb9\x31\x16\xd6\x9a\x2d\xdd\x6d\xbe\x82\xa9\x2d\xb9\x49\xd7\x68\xa7\x89\xb7\xf3\x56\x73\xcb\x73\x26\x92\x19\x7c\xb3\x58\x40\x23\x0b\x5c\x71\x89\x45\x34\x1a\x82\x81\x67\x6f\x3e\x83\xc3\xcd\x4f\x4c\x4b\x2e\xd7\xc9\x6c\x76\x1d\x0d\x7f\x6b\x4b\xd4\x3b\x6e\x70\x4e\xd6\x49\xc4\x02\xac\x82\x15\x17\x16\xb5\x43\x25\x2f\xb9\x28\x22\xce\xcb\x16\x96\xca\x96\x11\xd4\x28\xc4\x58\x66\xd1\xb8\x5f\x0f\x80\xc2\x60\x67\xe6\x96\xe9\x78\x77\x71\x64\x4e\x12\xcc\xd8\x7b\xe3\x8f\xa6\x5e\xfd\x8b\x76\x9a\xdc\x59\x66\x1b\x93\xcc\x21\xc9\x3b\xc7\xbc\x08\x81\x72\x6d\x4b\x72\x33\xc8\x00\x38\x73\x7b\x17\x3d\x1f\x5e\x0e\x06\x3c\x4c\x00\x1e\xd2\x5a\xab\x1a\xb5\x6d\xf7\xe6\xcd\x27\x27\x13\xb0\x66\xc6\x3c\x2d\x01\xc3\xc9\xff\xad\x04\x7c\xe7\x8d\x7e\x34\xff\x4e\xde\xfb\xb5\x12\xec\x84\x1d\xc9\x6c\x34\x0d\xea\x68\xde\x30\x0d\xfe\xc9\x2c\x58\x29\x5d\x31\x4b\xd8\x56\x68\x0c\x5b\x63\x2f\x5a\xca\x3b\xd5\x18\xd4\x01\x73\x8d\xb5\x46\x83\xd2\x1a\xda\xf1\x52\xf6\x79\x14\xfc\x8e\x7c\xa6\x74\xcc\x97\x14\xde\x3b\xa1\x06\xee\x2f\xe3\xda\x3d\xed\xdf\xff\x2e\x9e\xbe\x8f\x76\x39\x21\x3f\x7a\x5b\x46\x32\x6c\x18\xe0\x92\x99\xef\xfa\x9c\x98\xcc\x60\xb1\x58\xc0\x8a\x09\x83\x67\xe2\x3b\x48\x63\xc7\x2e\x49\x34\x2b\xb9\x7e\x52\x64\x56\x07\x5a\x49\x42\x58\x4b\x9e\x10\x01\xa9\x0a\x1c\x7b\x3f\xc7\x4c\xf8\x86\x4e\x86\xc7\xdd\x17\x17\xd6\x07\xf1\x7c\xa1\x94\x40\x26\x29\x14\xbb\x12\x29\x57\x09\x63\xa9\x2c\x05\x4b\x23\x30\x8d\x87\xc5\x66\xec\x9d\xc3\x87\x92\x1b\xe0\x86\x02\xef\x12\xdc\xa0\x85\x5c\x09\xa5\x61\xc9\xf2\xcd\x5a\xab\x46\x16\x06\x98\x2c\xc0\x28\x50\xb2\x63\x87\xc3\x68\x5c\x85\x42\x98\xab\xaa\x6e\x2c\x16\xe9\xfa\x08\xb9\x39\x3c\x1f\xfa\xf0\x1a\x5b\xaf\x97\xb2\xcf\xa7\x3d\x99\x6b\x4b\xad\x9a\x75\x09\x4c\x02\xd3\x9a\xb5\xe4\x23\x81\x04\x95\x2a\x50\xcc\x81\xa7\x08\xc6\x4b\x30\xc8\x74\x5e\xfa\x07\xe7\xab\xa6\x93\xf2\x1a\xdb\x23\x7b\x98\xe0\xcc\x4c\x93\x37\xac\x42\x82\xf2\x61\x76\x3d\x99\x1c\x14\x79\xc2\x39\x16\x78\xfa\xf7\x7f\xb0\xba\x9f\xa6\x07\x8d\x45\x93\xe3\xb4\xbb\x61\x9a\x6a\xee\x15\xce\x06\xd5\xcb\x38\xf2\xe8\x5c\x20\x21\xee\xd4\x1c\x22\xaf\x74\x55\x2c\xcb\xe0\x13\xc2\x96\xe3\xce\x93\x58\x28\x3a\x2e\xea\xb1\x7c\x01\x33\x03\x72\xdb\xe7\x6f\x54\xb4\x58\xf4\x8a\x1d\xfc\xf2\x0b\xf4\x37\xba\x3a\x06\x7f\xee\xca\x9e\x69\x2a\x78\x06\x97\x70\xd5\x5f\x09\x0f\x8a\x72\xe5\xf0\x19\xfc\xaa\xd5\xed\xab\xf1\xf3\x6f\xcc\xfc\x5f\xcb\xcc\xff\x4f\x5c\x3a\x7c\x07\xb1\xcd\x02\xe5\xed\xa4\x1a\x14\x0f\xcb\xa6\x0a\xd3\xcb\xb1\xa2\x40\x92\x71\x3f\x8d\x89\xec\x54\x99\x27\xde\x0a\xc7\x1f\xa7\x62\x55\x60\x32\xf3\x4c\xdc\x51\xf1\x06\xdb\xcc\x77\x7e\xca\x91\x6e\xe4\x63\xaa\x15\xe3\x74\xec\xd7\x7e\x62\x82\x17\x8c\x92\xd4\xa4\x3f\xf2\x2f\x5c\xce\xc1\xf3\x34\x84\x1d\xa4\xb8\xf8\xf2\x82\xd0\xdd\x29\xb8\xbf\x03\x82\x2f\x35\xd3\xed\x84\xc8\xb3\x93\x74\x15\x52\xcf\x39\xf1\x33\xf8\x57\x97\xe3\x15\x58\xdd\xa0\xcf\xad\x10\x84\x2e\x87\xf8\x0a\x56\x1c\x45\x01\xa6\x54\x8d\x28\xa2\x34\x84\xef\xef\xde\xbe\xd9\x4b\xc7\xef\x8d\x92\x57\xfe\x89\xcc\x8f\x24\x90\x89\x1b\x6c\x29\x97\xdc\xf9\x09\xd0\x4f\xe7\xc8\x11\x98\x58\xd5\x94\xd8\xa8\xb5\xd2\x86\x60\x22\xf8\xc7\x04\x7a\x54\x7b\x22\xdd\xc2\x53\x84\xfe\x44\x07\xbb\x37\xe3\x52\x8d\xac\x23\x76\x7
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppModelsJsBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsAppModelsJs,
|
|
|
|
"ui/javascripts/app/models.js",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppModelsJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsAppModelsJsBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/app/models.js", size: 7632, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsAppRouterJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xc1\x6e\x1a\x31\x10\xbd\xef\x57\x8c\xb6\x87\x85\x8a\x2e\x77\x22\x0e\x28\xca\xa1\x6a\xd4\x56\x4d\xd5\xbb\xb1\x07\x76\xca\x62\x5b\xf6\x18\x42\x22\xfe\xbd\xb2\xd9\x85\x5d\xd8\x34\x39\x44\x81\x37\x9e\xf7\xde\xbc\xc1\xde\x93\x56\x66\x5f\x2e\xac\x85\x39\x3c\x6c\x97\xe8\xe2\xe7\x9a\xa4\x60\x32\xba\x94\x0e\x05\xe3\xe8\x35\x03\x70\xc6\xf0\x43\x8d\x5b\xd4\x3c\x83\xfc\x93\xb0\x36\x9f\x64\x00\x32\x38\x87\x9a\x7f\x0a\xae\x66\x50\x14\xd9\x71\x7c\x97\x65\xb7\x44\xa4\x89\x49\xd4\xf4\x82\x2e\xb1\x69\xb1\xc5\x19\x14\x1e\x99\x49\xaf\x7d\x31\xc9\x32\x80\xcb\xa1\x19\xac\x82\x96\xb1\x73\x24\x8d\x66\x41\x1a\xdd\x04\xc4\x85\x70\x0c\x91\x05\xba\x50\xe9\x91\x47\x1d\x46\x58\x58\x5b\x3e\x35\x5f\xdb\x49\xc6\xe3\xbb\xd4\x47\x2b\x18\xc5\xfa\xba\xdb\x53\xb2\xd9\xa0\x2e\xc6\x30\x9f\xcf\x21\x68\x85\x2b\xd2\xa8\x5a\x29\x48\x84\x7e\xa0\x61\x02\x45\xd1\xf0\x1e\xb3\xf8\x97\x42\x88\xa7\x7f\x99\xc0\xe8\xca\xad\xb0\xa3\xf3\x40\x27\xbe\xe9\x14\x7e\x04\x07\x56\xc4\xf4\x40\x09\x16\x12\x35\xa3\x03\x87\xde\x04\x27\x11\x3c\xb2\x07\xae\x30\x65\xe5\xad\x90\x78\x6a\x5b\x19\x97\x60\xd4\x4c\x0e\xbb\x09\x64\x00\x5c\x91\x2f\x5b\x8a\x51\xae\x64\x3e\x81\x57\x9b\x96\x93\x4f\x67\x4a\xe6\xc7\x09\x5c\x39\x49\xa4\x4f\xe8\x76\x24\xd1\x83\x43\xeb\xd0\x47\x4f\x02\xa4\xd1\x3e\xd4\xe0\x4f\xb5\x74\xf4\x8a\xbf\x29\xf9\xa8\x02\xad\xcc\x19\x84\x9e\x58\x9b\x62\x54\xab\xcc\x1e\x84\x06\xd2\x8a\x76\xa4\x82\xe8\x8b\xb4\x32\x31\xbc\x51\xee\x2b\xb3\xef\xf1\x7f\x8e\x81\xe4\x70\x6c\x23\x6f\xfe\x4f\xa7\xf0\xdd\xa8\xe1\x11\xb4\x51\x83\xfe\x23\xde\x37\x7f\x42\x60\x28\xa6\xb7\xac\x9f\xc9\xdf\xf1\x3d\x7b\xd3\xf7\x37\x3c\x4c\xff\x88\x3a\x0c\x7a\xdc\xec\x7a\x2c\x9b\xdd\x1b\xb9\x76\xb5\x49\x2b\x7c\xee\xb5\x5d\x74\x93\xe2\x23\x79\x86\x0d\x1e\x7c\x09\xbf\x2b\xf2\x40\x1e\xb6\xc6\x21\xd4\xb4\xc1\x66\x3c\x7c\xfe\xd0\x32\x36\x78\xb8\xe2\x7e\x50\x14\xa3\xf7\x16\x25\xad\x48\x46\x99\x01\x26\x54\xc4\x37\x4c\xd3\x84\x0e\x45\xb4\xb8\x7f\xf4\x43\xe9\x08\x59\xf7\x17\x98\x80\xf7\x13\xba\xdd\x0e\xa9\xbe\x70\xd6\xd9\xb8\x07\x01\x56\xac\x11\xf0\xd9\xd6\x82\x34\xe9\x35\x70\x25\x38\xd9\x82\x4a\xec\x50\x17\x0c\x4b\x44\x1d\xaf\xed\x97\x60\xb3\x6b\xbd\x68\x4b\x91\x17\xcb\x1a\xd5\x8d\xdf\x73\xa1\x3b\xf1\x7f\x75\xe3\x03\xb0\xb8\x7f\x8c\xd9\xc2\x12\x23\x1c\x3c\x2a\x20\xaf\x0b\x6e\x09\x44\xe0\xca\x38\x7a\x41\x75\xe3\x26\xe8\x4b\xb1\xe7\xa6\x57\xb8\xc4\x70\x73\xed\x4f\xef\xdf\xd5\xb5\x6f\xc0\x66\x88\xa6\xb9\x33\x49\xe7\x95\xb3\x24\x37\xe8\x4a\xf8\xba\x82\x83\x09\x60\x74\x7d\x48\x31\x82\xd1\xcd\x33\x47\x0c\x7f\x83\x67\x70\xa8\xc8\xa1\x64\x9f\x0e\x72\xe5\x4c\x58\x57\x65\xf6\xb1\xdf\x7b\xf2\xf0\x2f\x00\x00\xff\xff\xd5\x34\x8c\x7a\xe4\x06\x00\x00")
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppRouterJsBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsAppRouterJs,
|
|
|
|
"ui/javascripts/app/router.js",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppRouterJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsAppRouterJsBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/app/router.js", size: 1764, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-13 21:40:16 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsAppRoutesJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x5b\x5d\x77\xdb\x36\xd2\xbe\xd7\xaf\x98\xea\xbc\x6f\x28\xd5\x0c\x69\xa7\xbd\x59\xab\x6a\x4f\x36\xe9\x6e\xb2\x69\xd3\x9c\x38\xcd\x4d\x4e\x2e\x20\x72\x24\xc2\xa2\x00\x06\x00\xa5\x68\x53\xff\xf7\x3d\xf8\x22\x41\x4a\xb2\x65\xc7\x69\xb3\xeb\x8b\x88\x24\x30\x83\xc1\x7c\x3c\x18\x0c\x90\x34\x1d\xa4\x29\x5c\xd4\x15\x8a\xac\x24\x52\x82\xe2\x30\x43\xa8\x25\xe6\x30\xdb\x02\x29\x4b\xe0\x73\x50\x05\xc2\x8a\x50\x06\x82\xd7\x0a\x25\xcc\xb0\xe4\x9b\x64\x90\xa6\x83\xc7\x55\x95\xfc\x9d\x48\x7c\xad\x1b\x60\x0a\x3f\xaf\x66\x28\x12\xf3\x96\xe0\x47\x85\x2c\x1f\x7d\x1a\x00\x08\xce\xd5\x0b\xdc\x9e\x43\x14\xc5\x03\x80\x8c\xb3\x1c\x99\xc4\xfc\x2d\xc5\xcd\x39\xcc\x49\x29\x31\x1e\x0c\x00\xd2\x14\x9e\x72\x16\x29\x10\x98\x71\x91\x43\x56\x10\x41\x32\x85\x42\x02\x65\x30\x13\x7c\x23\x51\x40\x41\xa5\xe2\x62\x6b\xfb\xcf\xb9\x30\xf2\x0d\x25\x12\x91\x15\x43\xf8\x50\xa3\xd8\x02\x55\xb8\x82\xd1\x9c\x96\x0a\xc5\x78\x00\xf6\xeb\x2b\x22\xc8\x4a\x9e\x83\x16\x09\xc0\x36\xfa\x37\x00\x81\x55\x49\x32\x3c\x07\x25\x6a\x34\xdf\xae\x06\x00\x57\x46\xb0\x05\xaa\x57\x44\x20\x53\x8f\x59\xfe\x4f\x41\x58\x5e\x99\xb7\x73\x98\xd7\x2c\x53\x94\xb3\xd1\x12\xb7\x63\xc7\x6a\x4d\x04\xd8\xf6\x17\xb8\x85\x29\xa8\x82\xca\xc4\xa9\x20\x76\x83\x01\x2c\x34\x9b\x57\x37\x76\xab\x88\x50\x12\xa6\xb0\xc4\x6d\x22\xab\x92\xaa\x51\x94\x46\xe3\xc9\xc0\x74\xa0\x73\x18\x99\x0e\x49\x89\x6c\xa1\x0a\xf8\x11\x4e\xc7\xcd\x84\x6c\x4b\xc5\xab\xd1\x78\xd2\x7e\x6a\xc6\xb3\xcd\x97\x9c\xb2\xd1\x30\x1d\x8e\xe1\x04\x86\xe9\x70\xe2\x26\x7e\x88\xfd\xd9\xb5\xec\x77\xe6\x74\xf3\x18\x02\x55\x2d\x58\xc8\xd4\xe8\xb5\x11\x34\xde\x65\x7d\xde\x1b\xc7\x77\xa1\xf2\x35\xe7\x21\x2d\x4c\xa7\x53\x88\xd2\xc8\x8e\x37\x69\xac\x29\x70\xc5\xd7\xf8\xb4\xae\x4a\x9a\x11\x85\x2f\x70\x2b\xbb\x96\x94\x31\xac\x88\xca\x0a\x14\x7e\xba\x69\x0a\xbf\x70\x5e\x01\x5f\xa3\xf5\x37\xdd\xcb\xb4\xe8\x87\x64\xce\xc5\xcf\x24\x2b\x46\x0d\x13\xed\x7f\x31\x50\x96\xe3\xc7\x56\x63\x5a\x9f\xba\x21\x59\xa0\x1a\x45\x2f\x70\x1b\x8d\x61\x3a\xed\x0f\x65\x06\x7b\x3e\x87\x0d\x02\x11\xa8\x1d\x9f\x00\x43\xa9\x30\x87\x39\x2f\x73\x14\x40\x58\x6e\x64\xb0\xaf\x2d\x11\x23\x2b\x74\xdc\x24\xf0\x5a\x40\xc5\x25\xd5\xe2\xc4\x6e\xca\x40\x55\xe3\x58\x46\x6e\xed\x51\x19\x8e\x8c\x9c\x31\x9c\x35\x86\xbc\xb2\x2a\x73\xef\xce\x46\x9a\xa2\x55\x22\x31\x13\x6d\xa2\x29\x4d\xe1\x77\x8d\x1a\x8a\x43\x49\xd9\x52\xff\xea\xfe\xa0\x0a\xa2\xcc\x3c\x18\x57\xc0\x67\x97\x98\x29\x19\x7b\x8a\x92\x2e\xd1\x99\x4b\x9a\x59\x05\x86\xb5\xda\xd5\xbc\xde\x70\x83\x1d\xfb\x42\xcd\xea\x74\x69\x4c\x0d\xc6\xc3\x3e\x35\x13\x34\xf1\xa4\x04\x61\x56\x07\x6f\xf8\x28\x5a\xae\x13\x59\xf0\x4d\x14\xc3\x70\xd8\x9b\x2b\x00\x96\x12\x3d\xbb\x44\x1a\xbd\x3c\x3c\x1b\x7b\x1f\x82\x3f\xfe\x80\xa5\x73\xa9\x30\x52\x8f\x1e\x51\x4b\xdd\x0c\x69\x07\xbb\x89\x12\x73\xaa\xfa\x94\x2d\x30\x0d\xb4\x79\x06\x16\xc1\xdf\x14\x68\xc1\xd9\xe0\x61\x56\x70\x2e\x29\x5b\x40\x4e\x14\xc9\x90\x69\x00\x8d\x41\x6d\x2b\x9a\x91\xb2\xdc\x5a\xdf\xa1\x42\x2a\x47\x53\x72\x92\x63\xde\x00\xfa\x73\xed\x0d\x1e\xd1\x3b\x08\x1f\x62\x7a\x9a\xc2\x6b\x54\x82\xe2\x1a\x0d\xc3\x92\x4a\xa5\x17\x8b\x60\xcc\x01\xc0\x8a\xe7\x58\x06\xb6\xab\x0c\x04\x7b\xa5\x39\xc7\xb2\xab\xc6\xff\xe9\xb0\xf8\xd7\xc5\x6f\x2f\x47\x19\x67\xb2\x2e\x9f\x71\xa9\xe0\x04\xa2\x74\x7d\x96\x66\x44\x91\x92\x2f\xd2\x80\x79\x34\x4e\x54\x81\xac\x0d\x39\xdd\x36\x0e\xd0\xdc\xb0\xd6\x1f\x27\x81\x33\x3b\xdf\x9d\x2b\x14\xbf\xf6\x44\x33\xa2\xc6\xd0\x5a\x21\x88\x7d\x1b\x8e\x9c\x95\x5b\x28\xc8\x5a\x3f\x61\x30\xd1\x18\x2e\xeb\x55\xe5\xfb\x4a\x25\x08\x5d\x14\x4a\x87\x00\x55\xc6\xad\x67\xdb\xca\x2c\xae\x05\xc2\xa2\xe4\x33\x52\xfa\xbe\x6b\x8a\x9b\x06\x6a\x8d\x00\x16\x1b\x2c\xde\x46\xd6\xfb\x02\xcc\xdd\xe3\x27\x12\xc5\x9a\x66\x28\xa3\xd8\x2a\xfb\xdd\xe9\xfb\xf1\x64\xd7\x4b\x8c\x8b\xd8\x50\x0b\x3c\x45\x2f\xf0\x02\x25\xaf\x45\x86\x32\x81\x37\x05\x95\xb0\x44\xac\xac\xac\x8a\x57\x30\x23\x42\x53\x7b\x2d\x51\xb6\x88\x81\x48\xd8\x60\x59\xea\x5f\xdd\xad\x42\xf1\x30\xcf\x40\xe0\x87\x1a\xa5\x92\x89\x71\xa2\xa7\xd9\x8d\x1e\x74\xbd\x6f\xe8\x55\x54\xf1\x25\x32\xc7\xc2\xe8\x45\xa2\x52\x94\x2d\x64\x62\x5a\x9a\x75\xd0\xfa\xa2\xb6\x37\x81\x4a\xf0\x15\x95\x08\x0
|
2017-04-13 21:40:16 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppRoutesJsBytes() ([]byte, error) {
|
2017-04-13 21:40:16 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsAppRoutesJs,
|
|
|
|
"ui/javascripts/app/routes.js",
|
2017-04-13 21:40:16 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppRoutesJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsAppRoutesJsBytes()
|
2017-04-13 21:40:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/app/routes.js", size: 13417, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2015-11-30 19:24:39 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsAppViewsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x31\x6f\xc2\x30\x10\x85\x77\xff\x8a\x1b\x90\xec\x48\xd4\xd9\x41\x1d\x28\x74\xa8\x40\x2c\x91\xd8\x8d\x73\x80\x85\xe3\x44\xb1\x81\x4a\x15\xff\xbd\x72\x0e\xd2\xd0\x4e\x46\xcd\x10\xe5\x9d\xfd\xbe\xdc\x3b\x1d\xcb\x73\x96\xe7\xb0\x98\xc7\x0f\x36\x6b\x1a\xb9\xd0\x1b\x83\x17\x78\x85\xf7\x6a\x8b\xad\x8c\x42\xe2\x67\x40\x57\x8a\x2f\x06\x00\x10\xb0\x6a\xac\x0a\xb8\x56\x15\x4e\x80\x97\x9a\x8f\xbb\xba\xb6\xca\xfb\x58\xf4\xb1\xda\xd6\x4d\x59\x5f\x9c\xe7\x63\x76\x3b\x35\xfa\x38\x81\xdd\xc9\xe9\x60\x6a\x27\x30\x23\x5a\x7c\xcc\x0e\xc4\x48\xa0\x0c\xaa\xdd\x63\xc8\xa4\xf1\x82\xcb\x1f\x42\x36\xb8\x0a\x30\x12\xfc\x64\xfb\xd3\x97\x0a\xdd\x89\x67\xf2\x60\x4a\x14\xd9\xb4\xbf\x77\x65\xf4\xbe\x66\x53\x46\xb9\x3e\x02\x56\x69\xc9\x4c\xc0\x8a\x13\x81\xa6\x54\x60\x7b\x36\x1a\x7d\x94\x11\x79\xd7\x69\x58\x7f\x73\xf1\x31\xb1\x87\xa4\xe2\x50\x5f\x9e\xa2\xf1\xbf\xac\x55\xad\x4a\xe3\xf6\xe9\x99\x73\x4b\xce\x87\xec\xeb\xba\xa4\xe0\xdd\x3f\x3a\x95\x46\x76\xd1\x32\x68\xb3\x43\xa4\xe7\x8d\x98\xdf\x94\xff\x4a\x1a\x73\x2e\x37\x04\x5e\x9e\x57\xc6\x87\x34\xe4\xf1\xdc\x8f\x0c\x66\xdd\x9a\x7b\x82\x91\x78\x53\x6d\x1a\x4f\x75\xb6\xad\x6a\x07\xd8\xf9\xaa\xb8\x33\x6d\x2a\xcd\x3e\xec\xdc\x4c\xdb\x27\xe6\xaf\xb4\x1d\x4c\xab\xc0\x10\x8c\xdb\xfb\xfb\xe6\x91\x4a\xdd\x60\x72\xdd\x7a\xfb\x0e\x00\x00\xff\xff\x3a\x82\xc8\xcd\x92\x04\x00\x00")
|
2015-11-30 19:24:39 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppViewsJsBytes() ([]byte, error) {
|
2015-11-30 19:24:39 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsAppViewsJs,
|
|
|
|
"ui/javascripts/app/views.js",
|
2015-11-30 19:24:39 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsAppViewsJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsAppViewsJsBytes()
|
2015-11-30 19:24:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/app/views.js", size: 1170, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2015-11-30 19:24:39 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsFixturesJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x51\x6f\xdb\x36\x10\x7e\xd7\xaf\x38\xe8\x45\x40\x61\x4b\xb6\x9f\x3a\xaf\x2d\x90\xb6\x1b\x96\x61\x48\x0b\x24\xc5\x1e\x86\xa0\xa0\xa5\x93\xc4\x86\x26\x0d\x92\xb2\x6b\x17\xfd\xef\x03\x49\x49\x96\x2d\xc9\x72\xd2\x36\xcd\x80\xbd\x24\x06\xc9\x3b\x1e\xef\xbe\xfb\xee\x4e\x51\xe4\x45\x11\x5c\x02\xe5\x1a\xb9\xa6\x82\x13\xc6\xb6\x40\x96\xc0\x85\x86\x42\x51\x9e\x01\x2e\x17\x28\xc7\x09\xd1\x04\x08\x4f\x40\xe7\x08\x29\xfd\xac\x0b\x89\x46\x94\x24\x64\xa5\x51\x86\x70\x19\x38\xa1\x58\xf0\x94\x26\xc8\xb5\x3d\xf9\x46\x70\x55\x30\xf8\x70\x09\x17\xef\x2f\x61\x43\x19\x83\x05\x42\x2c\x96\x2b\xa2\xe9\x82\x59\x15\x1b\xaa\x73\x51\x68\x20\xb0\x28\x78\x9c\x83\x48\x61\x23\x09\xcf\x18\xe5\xd9\xc8\xde\x49\x75\xa0\x40\xa2\xb5\xcd\xdc\x81\x5c\x14\x59\x0e\xc5\x2a\x21\x9a\xf2\xcc\x28\x11\xa9\xbd\x6f\x29\x12\x64\x0a\xb4\x80\x4f\x85\xd2\x34\xdd\xda\xd5\x42\xa1\x39\xa0\x8a\x38\x37\xb7\xd0\xcc\x5a\x20\x38\x72\x1d\x42\x86\xfa\xcf\xeb\x77\x57\x46\xc9\x33\x95\x8b\x82\x25\xcf\x8c\x8d\xee\x8e\xd0\x8b\x22\xcf\xdb\x50\x9e\x88\x4d\x58\x3e\x5b\xc1\x4b\xf8\xf2\xd5\xf3\x9c\xef\x6e\x72\x04\x22\x25\xd9\x82\x14\x85\xc6\x11\xd0\x10\x21\x2a\x68\xf4\x22\x89\x5f\x45\x0a\xe5\x9a\xc6\xa8\x46\xe0\x54\x83\x44\x5d\x48\x0e\x1f\x09\x63\x1f\xa1\xda\x35\x7a\x28\xb7\xa6\xbe\x7d\x63\xf4\x56\x37\x85\xd5\x09\x78\x09\xff\x78\x00\x00\x5f\xec\x5f\x00\xff\x8a\x2c\xd1\x9f\x83\xbf\x26\x99\x24\x5c\x8f\x63\x26\x8a\x64\x9c\x6b\xbd\xf2\x47\xd5\x99\x37\x39\xc6\x77\xca\x9f\x97\xb2\x4d\xf9\x03\x1d\x0a\x65\xfa\x07\x12\xa6\xf3\x5a\xd6\xee\x5f\x6b\xa2\x0b\x23\xef\xaf\x88\x32\x60\xf0\xeb\xdd\xaf\xa3\xd3\x2a\x53\x21\x4e\x6b\x8c\x25\xd5\x34\x26\xec\x7c\x95\x0b\xb2\xbb\xaf\x91\xe5\xaf\xdb\xda\x23\x57\x22\xc1\x43\x87\xf8\x5c\x24\x38\x9e\x4e\xc6\x93\xf1\x74\x3c\x9d\xfc\xd2\x50\x7e\xb4\x35\xab\x14\xdf\x7a\x0d\x73\x7b\x03\xa2\x72\x22\x71\xbc\x2c\x3e\xff\x88\x78\xdc\xdf\x7b\x83\x01\xb9\x77\x88\x9f\x5e\x3c\x6e\xf7\x49\x49\x15\x08\x8e\x40\x15\x28\x46\xb3\x5c\xb3\x2d\x2c\x85\x74\xd4\xc3\x68\x4c\x34\x26\x86\x25\x08\x63\x62\xe3\x76\x3e\x38\x16\x94\x24\x36\x3c\x18\x5a\x5e\xd4\x20\x71\x25\x51\x21\xd7\xca\xa6\xa7\xcd\xf1\x76\x7a\x47\x2f\xca\x5f\xaf\xe0\xf5\x87\x1b\xc7\x57\x9b\x9c\x68\xa0\x36\xb7\x5f\xff\xf6\xd7\xbb\xbf\xad\xbc\x16\xab\x31\xc3\x35\x32\xb8\xc3\x6d\x58\x5a\x7b\x2d\x46\xd5\x69\x20\xb1\x2e\x2c\xcf\x39\xa2\xc0\xa4\x22\x8e\x05\x82\xa2\x4b\xca\x88\x34\x76\x1b\x5d\x51\x4c\x34\x61\x22\xab\xac\xd8\x1b\x61\x94\x22\x4f\x56\x82\x72\x1d\xb6\xc9\xe4\x63\x5a\x30\x66\x48\xcc\x83\x4e\xfe\x98\x7b\x00\x95\x13\x1d\xb5\x51\xd5\x36\x10\x3f\xaf\x30\x36\x6e\x4c\xa5\x58\x5a\x83\x2e\xde\x5f\x86\x1e\x1c\x13\xd5\xb5\xbb\xf5\xbd\x90\xda\x9f\xc3\xf3\xc9\xe8\x68\xe3\x86\x64\x06\x01\xbc\x60\xec\x78\xeb\x1c\x8e\x2b\x8f\x5e\xbe\x1d\x3a\x78\x91\x24\x12\x95\x05\xe6\x74\x12\x4e\xc2\x69\xd8\x44\x97\x45\xa2\xd9\xeb\x83\xdf\x60\xf2\x1e\xd9\x7c\x94\x14\x4d\x2b\x0f\xb7\xae\x84\xb6\x29\x70\x2c\xd1\xce\xf5\x51\x57\x16\x5e\xa3\x4c\xc1\xe5\x21\x94\x32\x07\xe7\xac\xd9\xee\xde\x3e\x5a\xe9\x7b\x7a\x3b\x6f\x9b\xc4\x17\x45\x70\x01\x46\xe4\xbf\x13\xee\xd9\x50\xb8\x67\x4f\x20\xdc\x15\x6b\x3e\x6e\xb4\x67\xbd\xd1\xf6\x4a\xbe\xee\x28\x6c\x95\x73\x7e\x3c\x14\x3a\x8a\x69\x27\x12\x3a\xce\x3d\x32\x10\xfa\x2d\xb9\x8f\xd5\xa7\xa0\xf2\xae\xd0\xab\xc2\x78\xd4\x9f\x4d\x26\x20\xee\x1e\x04\xa4\xdf\x85\x30\x38\xd2\x39\xdb\xf6\x22\xa8\xa7\x65\xb8\x2f\x80\x1e\x8b\x2e\xbe\x33\x46\x9e\x70\x6d\xd8\x23\x20\x15\x62\x41\x24\x2c\xc8\xee\x41\x28\x78\x4d\x76\x43\x34\xd2\xd3\xe5\x0d\xd7\x8c\x9e\xee\xf1\x27\xba\xe2\xc9\x15\x52\x43\xad\x5e\x3d\x49\xd6\x5d\xa5\x11\xb7\x7d\x23\x61\xcc\x36\x56\xd5\xc2\xbe\x95\xb3\x2b\xed\xa1\x70\x08\xc7\xe5\x53\x7b\x71\x5c\xfa\xff\x10\xc9\x9d\xd4\x3f\xea\xda\x6e\xd4\xe1\x56\xa7\xff\x33\x67\x9f\x6f\x98\x54\x9a\x14\x76\xd2\xcd\xb3\x21\x37\xcf\x9e\x94\x9b\x1f\x30\x0e\x7a\xcd\xab\xbe\xba\x61\x0b\x6e\x72\x54\x08\x44\x22\xa4\x42\x9a\xa1\x45\x52\x5c\x53\x9e\x01\xe5\x09\x5d\xd3\xa4\x20\xcc\xc1\x37\x84\x6b\xb2\x44\x50\x5a\xc8\x2d\x10\x55\x7f\xfb\x18\x19\x2d\xe5\x68\x04\xf5\x68\x64\x26\x8d\x4f\x85\xd2\x56\xab\xd9\x4d\x70\x29\xc2\x23\xfc\x1f\xcc\x31\xc7\x98\x6e\x0e\x31\xd5\xf8\xb2
|
2015-11-30 19:24:39 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsFixturesJsBytes() ([]byte, error) {
|
2015-11-30 19:24:39 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsFixturesJs,
|
|
|
|
"ui/javascripts/fixtures.js",
|
2015-11-30 19:24:39 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsFixturesJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsFixturesJsBytes()
|
2015-11-30 19:24:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/fixtures.js", size: 6984, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2015-11-30 19:24:39 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsBase64MinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x57\xdd\x72\xdb\x36\x16\x7e\x15\x07\x33\xd1\x10\x2b\x48\x22\x29\x89\x96\x29\xc3\x1a\xdb\xb1\x76\xbd\xbb\xf9\xa9\xdd\xa4\x6d\x64\xc6\x43\x41\xa0\xcc\x94\x26\x15\x10\xb4\x9d\x48\x9c\xc9\x9b\xb4\x6f\xd0\xde\xf5\xb2\x33\xf1\x8b\x75\xf0\x43\x8a\x92\xe9\xa4\xd3\x1b\x0d\x71\xf0\xe1\x9c\xef\xe0\x1c\x7c\x80\x8c\x20\x8b\x09\x0f\x93\xd8\x98\x47\xc9\xd4\x8f\xe0\x12\x64\x29\xdd\x49\x39\x0b\x09\x07\xc3\x1b\x9f\xed\x5c\x1e\xf9\x29\x75\x7a\x58\x01\xda\x6a\x24\x67\x6e\x28\x4b\xc3\x24\xc6\xc0\x6e\x5b\xed\x5d\x85\x9e\x66\x41\x40\xd9\x30\x0c\x0c\xfe\x71\x41\x93\x60\xe7\x3a\x99\x65\x11\x7d\x82\x31\xc8\xe2\x19\x0d\xc2\x98\xce\x40\xa3\xa1\xac\x6d\x7a\xb7\x48\x18\x4f\xe1\x52\x2d\xc3\x8c\x7e\xc8\x42\x46\x0d\xa0\xc6\x00\xb6\x8f\xe4\x47\x2e\x5d\x3b\x3d\x72\xe5\xb3\x14\x83\xc3\xa3\xe3\x67\x27\xe3\x7f\xff\xe7\xf4\xbf\xff\xfb\xff\xf3\x17\x2f\x5f\x7d\x77\x76\xfe\xfd\xeb\x37\x3f\xfc\xf8\xd3\x5b\x7f\x4a\x66\x34\x98\x5f\x85\xef\x7f\x8e\xae\xe3\x64\xf1\x81\xa5\x3c\xbb\xb9\xbd\xfb\xf8\xc9\xb4\xec\x6e\xaf\xef\xec\x0e\xf6\x9a\x1d\x4d\xd5\xe9\x71\x7f\x8a\xcb\x1d\x98\x86\x31\x5c\x8a\x09\x8e\x97\xf9\x30\x48\x98\x21\x06\x21\x36\x51\x84\xa7\x61\xdc\x8e\x68\x3c\xe7\x57\xc3\x70\x3f\x1a\x86\xcd\x26\xe4\x13\x61\x14\x8c\x0e\xb9\x11\x42\x0f\x87\x43\x46\x79\xc6\xe2\x1d\x9e\x1b\x05\x57\x28\x23\x05\x2c\xb9\x3e\xbe\xf2\xd9\x71\x32\xa3\xf8\x9c\xb3\x30\x9e\xb7\xab\x36\x09\x22\xd3\xcb\x8c\x27\x15\x3e\x04\x2e\xc3\xc0\x20\x3a\xee\xbe\xad\xc8\x11\x82\x89\x8c\x2a\x16\x1e\x72\xc3\x84\x45\x58\x42\xf6\x2d\x7b\x30\x22\x2e\x21\xfb\xb6\xd9\x1b\x8c\xaa\x21\x0c\x6b\xcf\x5e\x11\x72\x70\x70\xe0\xc0\xe6\xe6\x84\x3d\x58\x11\xd2\x70\xba\xd0\xdd\xb0\xdb\x76\x4f\x2d\xb0\xec\x86\xd5\xaf\x5d\x24\xbc\x89\x85\x8f\x39\xcc\x69\x94\xd2\x82\xb5\xd3\xef\x77\x9d\xa6\xb1\x45\xbe\xd5\xef\xdb\x7b\x0e\xfc\x97\x65\xda\xbd\xad\x49\x0b\xb6\xfa\x4e\xd7\x5e\x27\xb8\x49\xaf\x67\x6a\x7a\x83\xc6\xee\x63\xec\x2c\xfb\x31\x7a\xdf\xa4\x9e\xcb\xa2\x30\xaa\x8a\xd2\x99\x5c\x64\xcf\x06\xa6\xd9\xba\xc8\x9e\x1d\x8d\xc7\x9e\x18\x1e\xab\xe1\x78\x3c\x1e\x7b\xab\xc9\xbb\x8b\x3b\x31\xbe\xdb\x1d\x7b\x9d\xb9\x5c\xbb\x59\xcd\x0c\x2e\x75\x1a\x59\x9b\xd1\x45\xe4\x13\x6a\x68\xef\x48\x97\x1e\xe6\x45\x23\xd0\x98\x88\x56\x59\xb7\x02\x21\xaa\xfa\x0b\x7f\x16\xd1\x18\x4f\x4c\x64\x23\xcb\x9b\x10\x52\xb4\xc7\xd3\xae\x87\x12\x36\xc3\xc2\xb2\xb1\xc1\xfb\xfb\x96\xb3\x32\xd6\xc0\x03\x6b\xb4\x85\xb1\xa0\x2b\x60\x83\x0d\x94\xbd\x8d\xb2\x05\x0a\xa9\x03\x38\x29\xda\xbb\x68\xff\x84\xcd\x64\x25\x20\x7a\x64\x46\xd6\x01\x29\xf6\x07\xd8\x1e\x01\x0c\xdc\x7a\xa8\xb3\x81\xb4\x1e\x43\x0a\x94\x57\x76\xbe\x9c\x7c\x9f\x84\xb1\x01\x80\xde\xc5\x29\x4f\xfc\x42\xb3\xc4\xf7\x68\x7d\xce\xcb\x4a\x54\xa6\x8d\x29\xcc\xdd\x1a\xc8\xb4\x2c\x56\x67\x72\x91\x5e\x9c\x7b\x4b\x0b\x75\xf3\xce\x1c\x95\x55\xd2\xf1\x8a\x9a\x29\xe5\x1a\x3d\xac\xbb\x91\xb5\x49\x12\xa7\x9c\x65\x84\x27\x0c\x63\x8d\xac\x1a\x47\x99\x1b\xd3\x5b\xad\xa1\x46\x06\x61\x9b\x27\x4a\x2e\x0c\x30\x95\xba\x0b\xaa\x2c\xd7\x2d\x25\x33\x10\x2d\x24\x16\x29\x3e\xdb\x2d\x94\xa1\x8c\x85\xa9\x1f\xd0\x62\xd1\x13\x3d\x1e\x69\xe6\x86\x8e\x94\x41\xe8\x3e\x34\x55\xb6\xa1\x79\xd1\xf1\x3a\x73\x54\x7a\xbe\x36\x4b\x1e\xd7\x26\xc6\xa0\x09\x46\xa0\x05\x5c\x70\x09\xf2\xca\x32\xdc\x99\xa3\xb2\x38\xca\xfd\xeb\xb3\xd3\xba\xf3\xa1\x63\x67\x88\xb3\xac\xd8\x5d\x46\x2f\xa7\x3c\xc9\xb0\xd8\x9e\x33\x3a\x3f\xb9\x5b\x18\x13\x30\xb9\xff\xdc\xba\xff\xc5\x9b\x7c\xf9\xdc\xfa\xf2\xa7\x07\x10\x98\xdc\xff\xda\xba\xff\xad\x30\x2c\xed\x5c\xda\x7e\x6f\xdd\xff\x51\xda\xba\x39\xf0\x74\xa7\xac\x00\x44\x60\x0e\x60\x71\xe8\x64\x80\xea\x91\x23\x70\x99\xde\x86\x9c\x5c\xc9\x81\x3e\x19\x70\x49\xfc\x94\xee\xf4\x5c\xb9\x6a\x81\x8d\xdd\x06\x79\x70\xe8\xc4\xa9\x1b\xac\x0c\xa7\xfb\x60\xce\x92\x73\x76\xed\x9c\x2d\xe6\x9c\x55\xcd\x4c\x17\xa2\x24\x08\x52\xca\x31\x59\xb4\xa4\x90\xd6\x6a\xa2\xa1\x40\xe2\xc0\x99\xb0\xa9\x94\xb5\x59\x87\x68\x58\xa6\xdd\x85\x4d\x2d\xaf\x32\xa1\xae\x5b\xeb\xd1\xea\x3f\x92\x5e\x7d\x0a\xd6\xa3\x29\xd8\x10\x0e\x67\x34\xf0\xb3\x88\xd7\x47\xea\x5a\xf5\x91\x6a\xbd\x59\xb0\x50\xe8\xcd\xaa\xd5\x1d\x5c\xdd\x3b\x48\x97\x78\xad\xb2\x33\xfa\x40\x65\xb5\xcc\x0a\x8d\xad\xd
|
2015-11-30 19:24:39 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsBase64MinJsBytes() ([]byte, error) {
|
2015-11-30 19:24:39 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsBase64MinJs,
|
|
|
|
"ui/javascripts/libs/base64.min.js",
|
2015-11-30 19:24:39 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsBase64MinJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsBase64MinJsBytes()
|
2015-11-30 19:24:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/base64.min.js", size: 3807, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2015-11-30 19:24:39 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsClassieJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x49\x6f\xdb\x3c\x10\xbd\xf3\x57\xbc\x18\x1f\x22\x79\x89\x78\xb7\xe1\xaf\x28\xda\xdc\xda\x1e\x72\x0e\x0a\xd0\xd2\x68\x69\x25\x52\x20\xa9\xb8\x69\xe3\xff\x5e\x90\xda\xe8\xc4\x29\x9a\x5e\x04\x91\x9c\x79\x6f\xe6\xcd\xc2\x57\x57\x0c\x2b\xa4\xb5\x30\xa6\x22\xdc\xf4\x7f\x28\xa9\x6e\x49\x23\xef\x64\x6a\x2b\x25\x8d\xb3\xc9\xb5\x6a\x70\x50\xf2\xa7\x42\x69\x6d\x6b\xb6\x9c\x17\x95\x2d\xbb\x43\x92\xaa\x86\x67\x94\x71\xff\xe8\x4c\x03\xc8\xa4\x14\x26\x06\xd5\xd4\x6c\x10\x35\x8f\x37\xfe\x3a\xc2\x12\x37\xff\xc3\xea\x8e\x78\x2e\x6a\x43\xa1\x83\xc8\xb2\xd0\x41\xd2\x71\x72\x0a\xcd\x34\x35\xea\x81\x42\xcb\x4e\x1e\x85\xb4\x94\x5d\x34\xb7\xaa\x28\x6a\xba\x14\x09\xc3\x8a\x33\xc6\x57\xdf\x4c\x59\x49\x8b\x83\x56\x47\x43\x7a\xeb\xa3\xdb\xc0\x58\x5d\xa5\x76\x3c\x75\x32\xa3\xbc\x3f\x38\x2f\xbe\x2a\x6a\x75\x10\x35\x32\xca\x2b\x49\x5b\xf8\x64\x3c\x5e\x3c\x89\x17\xe3\x58\xc9\x4c\x1d\xb1\xc4\x2f\xc6\xa2\xce\xd0\x00\x1a\xed\x18\xe3\xfc\x15\xc5\xff\x5a\x6e\x36\xba\xf4\x40\x77\x54\xc4\xfd\xdf\x17\xd1\x90\xe7\x04\x34\xd9\x4e\x4b\x48\x3a\xe2\x8e\x8a\xdb\x1f\x6d\xbc\x88\xbf\x3e\xdd\xdf\x9b\xf5\x72\x81\x75\x60\xbe\xc6\x22\x76\xd7\x4f\xff\x2d\x17\xcb\x1d\x3b\xcd\x01\x7e\xaa\x8c\x85\xe9\xda\x56\x69\x8b\x5c\xe9\x21\xec\x46\x48\x51\x50\x43\xd2\x3a\x4b\x51\xdb\x52\x75\x45\x09\xab\x70\x20\xe4\xa2\xd2\x1b\xd8\x92\x20\xda\x0a\xa6\x4b\xbf\x1b\x1c\x28\x15\x4e\x82\xca\xe2\xa8\x64\x64\x21\xd2\x94\x5a\x8b\xa6\xab\x6d\xd5\xd6\xd4\xe3\x92\x81\xb0\x50\x32\x25\xf6\x20\x34\x4a\x61\x3e\xb8\xeb\x0d\x44\x96\x0d\x7f\x7d\xfd\xfd\x61\xc7\x58\x95\x23\x46\x34\x45\x1a\xa1\x92\xc8\x54\xda\xb9\xc8\x92\xf1\xe7\xb6\xf6\x91\x0e\xa2\x8c\xa0\xd8\x07\xa5\xea\xdb\x23\x1d\x4c\x26\xe5\xdc\x75\x32\xa1\x27\xa9\x92\x56\x54\xd2\xc4\xce\x72\xc7\x80\x93\xfb\x8c\xb1\xfd\x11\xf0\x19\x92\x6f\xf6\x10\x24\x48\xeb\x2d\x38\xe3\x34\xcc\x50\x27\x46\xae\x17\xdf\x9a\x69\xd0\x44\x58\x26\x96\x8c\x8d\x03\xae\xbe\xa7\xde\x96\xb1\x2f\xcd\xd5\x18\x43\xf8\x3e\x5a\xe0\x39\xc3\xfe\xf9\xc5\x1a\x11\x22\xd7\xa9\x3b\xef\x70\xfa\x77\xb5\x2e\xe2\x27\x9a\xda\x5a\xa4\x14\x9f\xa7\xbf\xf1\xac\xb3\xa0\xf3\xa8\xf5\xdb\xe4\x45\x42\x8e\xcc\xf5\x6b\x2e\xb1\xc7\xa5\x8c\xdf\x9d\x45\xbc\x9d\x04\x74\x14\x79\x18\xb7\xa7\x73\x50\xe3\x66\xde\x7b\x70\xce\x91\x77\x75\x0d\x29\x1a\x32\x41\x65\xb7\xf3\x88\x04\x65\x99\xf1\x37\xe7\x5a\x6d\xc3\x83\x7b\x0b\xf2\xd9\x86\x87\x4d\xcf\x69\x4a\x37\xf5\x01\xe9\x0b\xbe\x4b\x54\xaf\xb0\x9c\x11\xb0\x53\xbf\x04\xad\x16\xd2\xb8\xdd\xd2\x4f\xb2\x7d\x6c\x49\xe5\xc3\x5a\xc5\x7e\xbf\x47\x34\x6a\x1f\xe1\xfa\x7a\x78\x48\x44\x93\x0d\xaa\x73\x8e\xf7\x9f\x3f\x32\x0c\x2f\xf1\xa4\x9b\x53\x12\xd3\x24\x70\x3e\xee\x77\xf4\x9b\x9b\x61\xd8\xce\xc9\x2c\xf4\xf0\xe7\x4b\x70\x5a\xce\xeb\x7b\xc7\x7e\x07\x00\x00\xff\xff\x7f\xb0\xbd\x4a\x2e\x07\x00\x00")
|
2015-11-30 19:24:39 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsClassieJsBytes() ([]byte, error) {
|
2015-11-30 19:24:39 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsClassieJs,
|
|
|
|
"ui/javascripts/libs/classie.js",
|
2015-11-30 19:24:39 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsClassieJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsClassieJsBytes()
|
2015-11-30 19:24:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/classie.js", size: 1838, mode: os.FileMode(509), modTime: time.Unix(1496161165, 0)}
|
2015-11-30 19:24:39 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsClassieMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
|
2015-11-30 19:24:39 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsClassieMinJsBytes() ([]byte, error) {
|
2015-11-30 19:24:39 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsClassieMinJs,
|
|
|
|
"ui/javascripts/libs/classie.min.js",
|
2015-11-30 19:24:39 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsClassieMinJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsClassieMinJsBytes()
|
2015-11-30 19:24:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/classie.min.js", size: 0, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-13 21:40:16 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsEmberDebugMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\xbd\x6b\x7b\xdb\x36\xd2\x00\xfa\x5d\xbf\x82\xe2\x76\x15\x62\x05\xd3\x76\xba\xcf\xbb\xef\x11\x83\xf5\x3a\x89\x93\xba\xcd\x6d\x93\x34\xdd\xae\xaa\xd7\x01\x49\x90\x62\x45\x91\x14\x49\xf9\x52\x49\xff\xfd\x3c\x18\x00\x24\x40\x51\x8e\xd3\xed\x9e\x93\x0f\xb1\x88\xeb\x00\x18\x0c\xe6\x86\xc1\xf1\x5f\x86\x03\xeb\x2f\xd6\x3f\xf2\x6b\x56\x5e\x27\xec\xc6\xb2\x2e\x96\x3e\x2b\xad\x23\xeb\x7b\x7a\x4d\x3f\x04\x65\x52\xd4\xd6\x79\x51\xa4\x49\x40\xeb\x24\xcf\xac\x17\x25\x5d\xb2\x9b\xbc\x5c\x40\xb5\x20\x2f\xee\xca\x24\x9e\xd7\xd6\xb3\xe6\xd7\xe3\x93\xd3\xd3\xa3\xc7\x27\xa7\x7f\xb5\x3e\x26\x69\xc8\xac\xcb\x2c\x70\x2d\x9a\x85\x56\x90\x67\x75\x99\xf8\xeb\x3a\x2f\x2b\x5e\x5b\xfb\xf7\x2e\x2f\x79\xeb\x95\xd1\xcc\xc9\xff\xf0\x66\x4e\xad\x0f\x75\x99\xfb\xa2\x9d\x07\x55\xfb\x5f\x51\x8d\x43\x2d\x7b\x3f\x4f\x53\x0b\xb2\x2b\xab\x64\x15\x2b\xaf\x59\x08\x4d\xfd\x23\x4d\x02\x96\x55\xcc\xb2\xac\x57\xe2\x57\x68\xad\xb3\x90\x95\xd6\xeb\xcb\x8f\x96\xcc\xec\xf4\xf9\x81\x31\x6b\x5e\xd7\x45\x35\x39\x3e\x2e\xe9\x8d\x1b\x27\xf5\x7c\xed\xbb\x41\xbe\x3c\x66\x7c\xea\x7e\xad\xc4\x5f\xf7\xd7\xea\x78\x49\xab\x9a\x95\xc7\xaf\x2e\x9f\x5d\xbc\xf9\x70\x01\x3d\x5e\xb3\xb2\xe2\xf3\x68\x59\xa7\xee\xdf\xdc\x93\x23\x9f\xd5\xd4\x3d\x1d\x07\x34\xa3\xe5\x9d\xfb\x6d\xf8\xbf\xa7\xff\xfb\x3f\x7f\xa3\x03\xeb\x2f\xc7\x03\x27\x5a\x67\x01\x1f\x9f\x83\x36\xd7\xb4\xb4\x6a\xfc\x01\x27\x14\x2f\x28\x7e\xee\xe9\x79\xcf\x49\x3d\x4f\x2a\x17\x16\x4e\xfb\xb9\xdd\x6e\x76\x9e\xcd\x87\x13\x25\x19\x0b\x6d\x42\x48\x7d\x57\xb0\x3c\xb2\x9e\x8f\x46\xce\x73\xb2\xd9\x21\x2f\x89\x9c\xfe\x12\xee\xd5\x55\x9a\xd3\x90\x95\xa2\x6b\x4a\x36\x3b\xbc\x24\x9b\x9d\x57\x93\xa6\xe7\x25\x8e\x70\x8a\x36\x74\xba\x9c\x91\x4d\xc8\x8a\x6a\x12\xe1\x80\xa6\xa9\x4f\x83\xc5\x24\xdd\xed\xbc\x05\x25\x09\x25\x1f\xda\x1a\x19\xda\xa8\xdf\x56\xe4\xf8\x68\xc3\xfb\x77\xed\x21\x21\xbe\x1b\xcc\x69\x79\x5e\x3b\x27\x08\x95\xac\x5e\x97\x99\xe5\x7b\x3e\xf1\xdd\xaa\x48\x93\xda\xb1\x8f\x6d\xe4\x45\x79\xe9\x70\x60\x02\x92\x69\xc9\x6e\xc5\xd7\xc9\x39\xc1\x47\xa7\x08\x53\x72\x82\x43\xe2\xbb\x29\xcb\xe2\x7a\xee\xd1\x27\xa1\x47\xc7\x63\x31\x86\x8a\xf8\x53\x3a\xf3\x6c\xd7\xe5\x03\xad\xce\x02\xb7\xc8\x0b\x07\x4d\x04\x00\xd5\x68\x14\xb8\xc5\xba\x9a\x3b\x15\xda\x49\x08\x02\xf7\xd7\x3c\xc9\xa0\x97\x5d\x12\x39\x4b\x77\x4e\xab\xb7\x37\xd9\xbb\x32\x2f\x58\x59\xdf\x39\x59\x03\xeb\x72\x9a\xcd\x3c\xfe\x1f\x9f\xa2\x24\x72\x86\x74\x9a\xcd\x50\x3d\x2f\xf3\x1b\xeb\xa2\x2c\xf3\xd2\xb1\x9f\xe5\xeb\x34\xb4\xb2\xbc\xb6\xa2\x24\x0b\xad\x65\x1e\xae\x53\x66\xd9\xe3\xac\x1d\x58\x4a\x78\x35\x3c\x58\x90\xd4\xe5\xf3\x89\x53\x92\xba\x6a\x46\x71\x48\xa6\x33\x3c\xc7\x01\x39\xc1\x3e\x59\xa8\x21\x06\x4f\x7c\x2f\x18\x8f\x91\xcd\x6e\x8b\xbc\xac\x2b\x3e\xb6\xc5\x34\x98\x9d\x85\x62\x34\x73\xbe\xce\x13\xf9\xf1\xc1\x89\x1c\x9e\x89\x10\xf2\x78\x27\xb4\x28\xd2\x3b\x87\xa3\x0c\x0e\x91\xa7\x8d\x85\xcc\xb7\xdb\x05\x5f\x40\xf7\x8a\xd1\xc5\x55\xc5\x58\x46\xa8\xd7\x62\x05\x5f\x6f\x8e\x33\x93\x1a\x97\x6c\xb5\x4e\x4a\x36\x49\x28\x2e\x59\x9c\x54\x75\x79\x37\xa1\xbb\x1d\x4b\x2b\x66\xd5\xa4\xad\xe2\x8a\x1a\x58\x21\x85\x96\x23\x9b\xd8\x21\x07\x79\xb5\x63\xf3\xd1\xfa\xeb\x32\x63\xa5\x8d\xa7\xda\xd7\xf1\xba\x4e\xd2\xca\xc6\x7a\x52\xc8\x22\x56\x96\x2c\xbc\xa2\x80\x55\x57\xab\x35\x5b\x33\x5e\x46\x4d\xc7\x0c\x37\xd8\x47\xf1\x12\x9b\x18\xc8\xf0\x0a\x6d\x60\xc7\x40\xbd\x37\x74\xc9\x2a\xc2\x3c\x48\xc9\x0b\x20\x2d\x64\x05\xfb\x48\x4f\xe2\x23\xa1\xeb\xb4\xfe\x27\xaf\xb3\xdd\x3a\x07\xf3\x08\x9b\x9e\xcc\x90\xa8\x9b\x64\x55\x4d\xb3\x80\x7d\xa8\x69\xb0\x20\xd3\x99\x48\xbd\x0a\x99\x9f\xaf\xb3\x80\xb1\x8a\x0c\x9a\x44\x8e\x37\x75\x9d\xb2\xb2\x22\xd3\xd9\xae\x81\x37\x75\x18\xda\x30\xd7\x67\x71\x92\x39\xc8\x63\xee\x15\xe5\xb4\x74\x9d\x91\x3b\xb7\x62\xf5\xc7\x64\xc9\xf2\x75\xad\x53\x06\xad\x48\xb6\x4e\x53\x8f\xb9\x2c\x0b\x1d\xb4\x43\x6d\xa3\x0b\x3e\x09\x58\x6c\xc5\x21\x73\xaf\x52\x5a\xb3\x92\x37\x55\x6e\xb7\xab\x27\x46\xc2\xc5\x6d\x91\x94\xac\x3a\xaf\x91\x91\x7c\x5f\xef\x5a\x29\x09\x40\x5f\x7b\x22\x2f\x74\x18\xda\x61\x1f\xe1\x03\x85\x56\x2d\xd0\xbc\x28\xec\xe9\x15\x19\x67\xec\xc6\x7a\x4e\x6b\x86\x7d\x5c\xe2\xc0\x63\x6e\xb9\xce\x7
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsEmberDebugMinJsBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsEmberDebugMinJs,
|
|
|
|
"ui/javascripts/libs/ember-debug.min.js",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsEmberDebugMinJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsEmberDebugMinJsBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/ember-debug.min.js", size: 353956, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsEmberValidationsMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x5b\x6b\x73\xdb\x38\x77\xfe\xde\x5f\x41\xa1\x79\xf5\x02\x11\x4c\xcb\x49\x77\xa6\x4b\x85\xab\x4d\xb2\x4e\x9b\xd9\xc4\xc9\x24\xbb\x99\x69\x25\x26\x43\x93\xb0\x85\x35\x05\xa8\x04\xe4\xd8\x2b\xf1\xbf\x77\x70\xe1\x9d\x94\x64\x67\x9d\x99\x6d\xbf\x24\x22\x80\x83\x73\x70\x2e\xcf\x39\xb8\xf8\xf8\xd8\x79\xc9\x57\xb7\x29\xbd\x5c\x48\xaf\xfc\xe9\x3c\x19\x9f\x3c\x75\x7e\xe1\xd1\xd5\x7f\x85\x69\x8c\x9d\x37\x6f\x5e\xba\x4e\xc8\x62\x27\xe2\x4c\xa6\xf4\x7c\x2d\x79\x2a\xdc\x7f\x19\x5c\xac\x59\x24\x29\x67\x10\x6d\x4e\x97\xe7\x24\x75\x3f\x85\x09\x8d\x43\xd5\x24\x7c\xd3\x72\x16\x2e\x89\x58\x85\x11\x71\xa3\x94\x84\x92\xc0\xcd\xa7\xd3\x0f\x1f\x5f\xbf\x3b\xf3\xc0\x89\x3b\x76\xc7\xee\x39\x91\xa1\xfb\x04\x64\x28\x83\x08\xef\x9a\xd0\x5d\x12\x21\xc2\x4b\x22\xfc\x4d\x4a\x58\x4c\x52\xaf\x18\x2d\xb1\x40\x1b\x7a\x01\x0d\xcd\xeb\x93\x7f\x67\x28\x25\x72\x9d\x32\xa7\x6c\x71\x25\x04\x24\x4d\x95\xe0\x60\xa4\x08\x26\xd7\x61\xea\x50\x9f\x91\xaf\xce\x07\x72\x79\x7a\xb3\x82\x60\xb3\x81\xee\xe3\x29\xca\x32\x80\x30\xf1\x01\x98\xd8\x59\xa8\x2b\x89\x90\x50\x2e\xa8\x70\x63\x72\x11\xae\x13\x29\x66\x32\x40\xc3\x21\x24\x3e\x75\xc9\x0d\x89\xda\x9d\xb3\x93\x00\xe1\x66\xab\x9b\x92\x55\x12\x46\x04\x52\x2c\x66\x24\x40\x19\xce\x3b\xbd\x0d\x65\x51\xb2\x16\x94\x33\x0f\x50\xe1\x30\x2e\x1d\xdd\x12\x93\xd8\xa1\xcc\x91\x0b\xe2\x24\x54\x48\x80\xc9\x4d\x75\x5c\x4a\x04\x49\xaf\x49\x0c\x30\x65\xd7\x4a\x5b\xba\xd5\xfe\x06\x38\xe2\xec\x82\xa6\x4b\xad\x42\x0f\xc4\x9c\x08\xf6\x4f\xe9\x2c\x43\x19\x2d\x9c\xcd\x26\x94\xc6\x9c\x24\xcb\x00\x0e\xa3\x88\xac\x24\x89\x3d\xb0\x5c\x0b\xe9\x9c\x13\x27\x6f\x01\x98\x2c\x57\xf2\xd6\x03\x51\xa8\xa8\xcf\x89\xa3\xbf\x01\x3e\x4f\x42\x76\x55\x69\xd6\xdf\x00\xaf\x94\x50\x4c\x96\x13\xd9\x76\xc9\xf9\x1b\xce\x2e\xb5\x84\x92\x73\x27\xe1\xec\xd2\x81\xcb\xf0\x86\x2e\xd7\x4b\x87\x0a\x67\xb3\x89\xf8\x9a\xc9\x2c\x73\xa2\x45\x98\x86\x91\x24\xa9\x40\x9a\xee\xe3\x82\xa7\xb2\x20\x14\xea\xcb\x81\x4b\xca\xf6\x50\x7e\x4d\x39\xbb\x7c\x43\xd8\xa5\x5c\x18\xe2\x05\x71\x74\x9b\x93\xe8\x46\x07\x8a\x05\x5f\x27\xb1\x12\xb2\x67\x0a\xc6\xe5\xf3\xb3\xb5\xf2\xa3\xc2\x2e\xa1\xc3\x74\x83\xe9\x64\xaf\x99\x24\x97\xaa\xbb\xd0\x1b\x73\xa8\x69\x03\xf8\x52\xbb\x7d\xfa\xdb\x22\x64\xe5\x00\xdb\xe8\xc8\x45\xc8\x4a\xbe\xb5\xc1\xef\xd2\xd3\xff\x59\x87\xc9\x6f\xbc\x87\x8a\xa7\x0e\x51\x03\x1c\xc9\xab\x33\x90\x26\x51\xd7\xa0\x84\x08\x51\x17\x48\xb5\xb4\xa4\xc9\x87\x75\x88\x52\x8e\xef\x91\x83\xcb\x45\x73\xd1\xba\xa9\xc5\x84\xc7\x15\x87\xe3\xb1\xf2\xb5\x6b\x52\xa1\x52\x5f\x00\xaf\xd3\xa4\xa2\x7d\xed\xdb\xce\xef\x1f\xde\x80\x2c\xdb\x0b\x1b\xa7\x3a\xe8\x2d\x1c\xbd\x3b\xff\x83\x44\xd2\x25\x37\x92\xb0\x18\x6e\xd6\xec\x8a\xf1\xaf\xec\x7d\xca\x57\x24\x95\xb7\x15\x44\x41\x1b\x1b\xfb\x3a\x82\x05\x91\x50\x62\x33\xc5\x32\xbc\x22\xcf\xd3\x34\xbc\x85\xc8\xc6\xf7\xa5\xea\x45\x59\x0b\xc2\x14\xc0\x48\xcb\xf8\x2d\xbd\xa1\xac\xc0\x40\x2a\xb4\x84\x5e\x65\xb0\x65\x37\xf6\x7d\xbf\x98\x14\x5c\x9b\x75\xf0\x54\x00\xe4\x46\x7c\xb9\x0a\x23\x09\x91\x7b\x41\x13\x49\xd2\x17\xb7\x10\xd8\x89\x00\x1e\x9c\x20\x43\x62\xfc\x1a\xa0\xcc\x5d\xd9\x55\x55\xa7\x71\x7f\x26\x61\xb4\x70\x73\x32\x84\xa9\x78\x6d\x61\xc3\xc8\xa9\x98\xac\x25\x89\x5d\xc6\x65\x39\x3d\xca\x10\x16\x7e\x05\x6f\xa9\x59\x1d\xf7\xa5\xe6\x4a\xd1\x44\xba\x29\x59\xf2\x6b\xf2\xee\x5c\xe3\x51\xaa\x10\x0e\x61\xe9\x56\x78\xaf\xd6\x62\x61\x0c\x60\x91\x9a\x0a\xa3\x48\x8e\xa6\x65\x7e\x58\xf2\x98\x24\x9e\xc4\xb9\xf8\x1e\x55\x20\x26\x09\x93\x2f\x28\x8b\xa9\x82\x0f\x3d\xc4\x05\x23\x9a\x21\x8f\xa3\x0c\x53\xbf\x6a\x38\x25\x98\xf0\xa5\x1b\x25\xa1\x10\xf4\xe2\x16\xa2\x49\x2d\x1b\x54\x9d\xa3\x22\x5d\xc2\xa3\x30\x99\x89\x60\xbb\xdd\x39\x4c\xad\x52\x92\x99\x08\x32\x4c\xac\x6d\xf5\x22\xde\xa7\xfc\xe6\x36\x77\x2c\x89\x37\x96\x84\x74\xd8\x58\xdb\xf7\x4b\x3e\x00\xa2\x0c\x7f\xe9\x1a\x6d\xdc\xa7\x74\x06\xab\x05\x80\x5c\xca\xae\xf9\x15\x81\xa0\x20\x03\xc8\xfd\x4a\xe5\x82\xaf\x25\xbc\xe6\x34\x76\xc6\x8d\x25\x7f\xf8\xf8\xe9\xbd\x1b\x26\x89\x72\x53\x97\x33\x08\x28\xa3\x12\x20\x5c\xae\xab\x69\xfe\x30\xa1\xa1\xa8\xf0\xcc\xd0\xa4\xad\x16\xed\xd4\x5d\x0e\x2e\xf1\x46\x71\xa8\xae\xc6\x2c\x5a\xac\x57\x24\x85\x36\
|
2017-04-13 21:40:16 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsEmberValidationsMinJsBytes() ([]byte, error) {
|
2017-04-13 21:40:16 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsEmberValidationsMinJs,
|
|
|
|
"ui/javascripts/libs/ember-validations.min.js",
|
2017-04-13 21:40:16 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsEmberValidationsMinJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsEmberValidationsMinJsBytes()
|
2017-04-13 21:40:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/ember-validations.min.js", size: 15159, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsEmberMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6b\x7b\xdb\x46\x92\x30\xfa\x7d\x7f\x05\x85\x93\x95\x89\x11\x44\x5b\x4e\x26\x33\x4b\x06\xc9\x2a\xb6\x9c\xd1\x1b\x5f\xb2\xb6\x93\x79\xf7\x70\xb8\x1c\x88\x68\x8a\x88\x41\x80\x01\x40\xdb\x5a\x0a\xbf\xe2\x7c\x3d\xbf\xee\xfc\x92\xf3\x74\x55\x5f\xaa\x2f\x00\x29\x5f\x66\xb2\xcf\xf3\xfa\x83\x45\x74\x57\xdf\xab\xab\xab\xab\xeb\x72\xff\x0f\x47\xff\x32\xf8\xc3\xe0\xdf\xcb\xb7\xac\x7a\x9b\xb1\x77\x83\xc1\xc5\xfa\x8a\x55\x83\xd3\xc1\xff\x4a\xde\x26\xaf\x16\x55\xb6\x69\x06\xe7\x9b\x4d\x9e\x2d\x92\x26\x2b\x8b\xc1\x93\x2a\x59\xb3\x77\x65\xf5\x06\x8a\x2d\xca\xcd\x4d\x95\x5d\xaf\x9a\xc1\x23\xf5\xeb\xe1\x83\xb3\xb3\xd3\x87\x0f\xce\xbe\x1a\xbc\xce\xf2\x94\x0d\x2e\x8b\xc5\x68\x90\x14\xe9\x60\x51\x16\x4d\x95\x5d\x6d\x9b\xb2\xaa\x79\x69\xf2\xef\xa7\xb2\xe2\xb5\xd7\x46\x35\x0f\xbe\xe6\xd5\x9c\x0d\x5e\x35\x55\x79\x85\xf5\x1c\x54\xec\xcf\x58\x8c\xf7\x5a\xb4\x7e\x9e\xe7\x03\xc8\xae\x07\x15\xab\x59\xf5\x96\xa5\x50\xd5\xbf\xe7\xd9\x82\x15\x35\x1b\x0c\x06\x4f\xf1\x57\x3a\xd8\x16\x29\xab\x06\xcf\x2e\x5f\x0f\x44\xa6\xd5\xe6\x2b\xc6\x06\xab\xa6\xd9\xd4\xe3\xfb\xf7\xab\xe4\xdd\xe8\x3a\x6b\x56\xdb\xab\xd1\xa2\x5c\xdf\x67\x7c\xea\x7e\xad\xf1\xef\xe8\xd7\xfa\xfe\x3a\xa9\x1b\x56\xdd\x7f\x7a\xf9\xe8\xe2\xf9\xab\x0b\x68\xf1\x2d\xab\x6a\x3e\x8f\x83\xc1\xd9\xe8\x4f\xa3\x07\xa7\x57\xac\x49\x46\x67\x27\x8b\xa4\x48\xaa\x9b\xd1\x97\xe9\x9f\xcf\xfe\xfc\xf5\x9f\x92\x7f\x19\xfc\xe1\xfe\xbf\x0c\x86\xcb\x6d\xb1\xe0\x03\x1c\x86\xbb\xb7\x49\x35\x48\xd9\x32\x2b\x58\x54\xb1\xdf\xb6\x59\xc5\x9e\x95\xe9\x36\x57\x5f\xf2\xef\xaf\x75\x04\x2b\x38\xa1\x85\x21\x25\x6e\x56\x59\x3d\xb2\x7f\xde\xde\xee\xda\x49\xb6\x1c\x36\x37\x1b\x56\x2e\x71\xf5\xe3\x38\x0e\xf8\x34\xf0\xd6\xd2\x40\x16\xdf\xb5\xad\x05\x37\x9a\xcf\xf3\x32\x49\xdd\x02\xbc\xb3\x15\xbb\xce\xea\xa6\xba\x89\x77\x6d\x54\x33\x56\xc4\xbb\x76\x82\x10\xb1\xea\x59\x91\xac\x59\x94\xb2\x4d\x1d\x2d\x92\x3c\xbf\x4a\x16\x6f\xc2\x9d\x2c\x37\xe5\x99\xb3\x78\xc7\xb3\xc7\x06\xcc\x58\xfe\x68\xdb\x89\x1a\x75\x2c\x7e\xc5\xc6\xec\x98\x4d\x85\xbb\x6c\x39\xe4\x7d\x19\xad\x92\xfa\xc5\xbb\xe2\xa7\xaa\xdc\xb0\xaa\xb9\xc1\x4c\xde\x74\xb3\xad\x8a\x01\x87\xc0\xd6\x5b\xfd\x33\xc6\x69\x3a\x32\xbb\x17\xee\x9a\x55\x55\xbe\x1b\x14\xec\xdd\xe0\xa2\xaa\xca\x6a\x18\x3c\x2a\xb7\x79\x3a\x28\xca\x66\xb0\xcc\x8a\x74\xb0\x86\x7e\x0c\x82\x13\x68\xa3\xe5\x33\xb3\x2e\xd3\xd8\xac\x06\xe6\x20\x5e\x97\xe9\xc8\x18\x28\xa4\xc8\x8f\xa8\x62\xd9\x32\x63\x69\x3c\x9d\x45\xec\xfd\xa6\xac\x9a\x7a\xb2\x2c\xab\x21\xaf\x31\x8b\x1f\x44\x79\xcc\xcb\x8e\x72\x56\x5c\x37\xab\x49\xf6\x4d\x3e\xc9\x4e\x4e\x60\xc4\x3c\x7d\x9a\xcd\xf8\x22\x89\x82\x01\x1f\x2b\xd4\x36\xda\x6c\xeb\xd5\x50\x24\xc7\xbb\x36\x6c\x59\x5e\x33\x33\xd7\x98\xd1\x61\xc5\xea\x32\x7f\xcb\x64\xad\x61\x18\xb6\x30\xaa\xb7\x49\xbe\x65\xb1\xec\xed\x28\xd9\x6c\xf2\x9b\x21\xc7\x33\xd9\xf1\x70\xe2\xcc\x6f\x2c\x1a\xbe\xbd\x85\xd2\x13\xb9\x5a\x03\xd9\xc8\x62\x95\xe5\x29\x0c\x02\x7e\x8d\x16\xab\xa4\x3a\x6f\x86\x0f\xc2\xa3\x38\x0e\x46\x81\x5a\x32\xc8\x85\x6e\x6c\x12\x3e\x10\x84\xae\x37\x79\xd6\x0c\x83\xfb\x41\x38\x11\x59\xac\x68\xbe\x4f\x6a\x16\xf3\xd6\x49\xf6\xa8\xe6\x7b\x7d\xf8\x20\x3a\x3d\x0b\xad\x49\x85\xfa\x9c\x59\x95\x2d\x61\xf6\x34\x9b\x71\xdc\x80\x04\xde\x2f\xde\x31\xdd\xd8\x68\x53\x6e\x86\x38\xaf\x03\x0a\x15\x84\x3b\x4e\x11\xb3\x62\xcb\x70\xd2\x69\x11\x3e\xef\x1c\x32\x6c\x5b\x31\x44\x92\xfb\x6b\x99\x15\xd0\x6f\xba\x01\x46\x73\x96\xbc\x99\xc3\x4e\x93\xc8\x35\xb1\x76\xe9\x0e\xf7\xdf\xd8\xa4\x23\x63\x4d\x41\xb0\xd8\x58\xfe\x68\xb1\x5f\x62\xd7\x9a\x95\x8d\x30\x75\xef\x06\xb4\x4a\x89\xcc\xb6\x0d\x87\xa1\x20\x07\xc3\x80\x23\xcc\xd5\xb6\x2a\x58\x15\x44\x53\xf2\x75\x7f\xdb\x64\x79\x1d\x44\x34\x29\x65\x4b\x56\x55\x2c\x9d\x27\x80\x29\xf3\xdf\xb6\x6c\xcb\x38\x8c\x44\xed\x59\xa4\xf6\xfc\x7c\x9e\xb2\x0d\x2b\x52\x56\x2c\x6e\xce\xe6\xf3\x88\x7e\x3f\x84\x6f\x51\x68\x3e\x0f\x77\xc1\xb6\x66\x83\xba\xa9\xb2\x45\x13\x00\xba\xfc\xcc\x1b\x8f\xad\x3a\xa6\x41\xca\x96\xc9\x36\x6f\x82\x19\x00\x3d\x16\xdd\x39\x87\x16\xff\x03\x3a\x13\x5b\xed\x8c\x7c\x40\x50\x1a\xd0\x2e\x9e\xce\x10\xff\xa2\x4d\xb9\xe1\x1f\x9b\x72\x13\xb1\x64\xb1\x8a\xa1\x07\x23\xfe\x33\xca\xea\x57
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsEmberMinJsBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsEmberMinJs,
|
|
|
|
"ui/javascripts/libs/ember.min.js",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsEmberMinJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsEmberMinJsBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/ember.min.js", size: 567544, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-13 21:40:16 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsHandlebars130MinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x7b\x9f\xdb\x36\xb2\x28\xf8\xbf\x3e\x05\x1b\x27\xab\x26\x22\xb4\x4c\x52\xea\x17\x69\xa4\xaf\x63\x77\xce\x78\x6f\x62\x7b\xed\x4c\xce\xee\x55\x33\x3e\x20\x09\x49\x3c\xcd\x26\x15\x91\xb2\xdd\x23\x71\x3e\xfb\xfe\xf0\x24\xf8\x50\xdb\x99\x99\xb3\x7b\xff\x91\x40\x3c\x0a\x40\xa1\x50\x55\x28\x00\x85\x4f\x64\x6b\xfd\x85\xe4\x49\x46\x23\xb2\x2d\xf1\x72\x97\xc7\x55\x5a\xe4\x36\xdc\xb3\x94\x47\x33\x42\x05\xad\xcc\x5e\xc3\x7d\xb5\x4e\xcb\x69\x59\x6d\xd3\x7c\x85\xd7\x75\x36\xdd\x6c\x8b\xaa\xa8\x1e\x37\x74\x5a\x15\x1f\x44\xb4\x51\x76\x4b\xab\xdd\x36\x07\x60\x62\x14\xab\x03\x11\x6b\x65\xb5\x0d\xd1\xa7\x26\x7b\x66\xd4\xb5\xb6\x89\x2a\x6d\x45\x0b\x12\x1e\x0e\x60\x4c\x1e\x36\x01\xa8\x59\xfb\x56\x78\x5f\xa3\x08\xef\xc1\x18\xf8\x32\x1e\x81\xe7\x2c\x9c\x55\x2c\xf8\x03\x0b\xae\x58\xf0\x14\x9c\xfa\x60\xfc\xc7\xae\xe0\xf1\xa7\x2c\xfe\xdf\xbe\x78\x97\xec\xe3\x3f\xc5\xc7\x85\x13\x80\x1a\x11\xfc\x6c\x31\x7e\xfe\x03\x38\xfd\xcf\xf0\xd9\x0a\xc5\xc6\x57\xb0\x9a\xd2\x2f\x15\xcd\x93\xa6\xa1\x04\x45\x70\xbf\x2c\xb6\x36\x6b\xcb\xbd\x95\xe6\x56\x04\xdf\x46\xff\x45\xe3\xca\x40\xc7\x9a\x94\x6f\x3f\xe7\xef\xb6\xc5\x86\x6e\xab\xc7\x69\x4c\xb2\xcc\x8e\xd0\x3d\x1c\x8f\x6d\xb2\xb8\x0f\x71\xb4\xb8\x0f\x61\x1d\x30\x10\x09\xee\x95\x56\xc8\x0c\x56\x0d\x5e\x13\x9e\x99\x1a\xed\xd0\x08\x56\x51\x00\x63\xcc\xca\x17\x4b\x8b\xd4\x01\xb5\x9f\x7d\x79\xc6\x2a\xfc\x6a\x99\x91\x2a\x34\x1e\x83\x45\xc1\x1b\x63\xfd\x24\xd3\x43\x96\x21\x11\x1d\x20\xb0\x86\xc1\x6a\x9a\x96\x2a\x11\x53\xde\xa8\x2f\xf8\xc5\x76\x4b\x1e\xa7\x69\xc9\xff\x0f\x87\x7e\x7d\x1c\xb6\x00\x6d\xb6\xf2\x46\xd7\xc7\x4b\xb6\x2b\xf3\x4f\xdc\x9a\x57\xc7\xd3\xf0\x17\x36\x16\x65\x4c\x36\xf4\xf6\xcb\x66\x4b\xcb\x92\x35\x40\xd7\x14\xc1\x7d\xba\xb4\x23\x2b\xcd\xcb\x8a\xe4\x31\x83\x9e\x41\x45\x42\x1a\x8b\x36\x0c\xd2\xa5\x7d\x12\x8d\xc7\xce\x09\xc6\x11\x54\x14\x1a\x44\x18\x80\x49\x24\x69\xf3\x24\x9e\x56\xb4\xac\xec\x08\xde\x44\x7e\x34\xdd\xd2\x4d\x46\x62\x6a\x13\xb4\x86\xa2\x41\xb7\x0f\x9b\xea\x71\x00\xab\x27\x44\x00\x26\x37\x27\x8e\xff\xc5\x26\x70\x3c\x76\x30\xc6\x64\x9a\xd1\x7c\x55\xad\x59\x2c\xeb\x93\x6c\xd6\xaa\xb6\x1f\x21\xda\x1c\x99\x6d\x2b\x46\x66\x0c\xbb\x24\x88\xc6\xe3\x68\xba\x4c\xb7\x65\xf5\x73\x9a\x53\x46\x42\xd8\xf8\x46\xab\x09\x06\xd6\x99\x05\x26\x64\x02\x7c\x30\x91\x49\x2f\x8b\x6c\xf7\x90\xc3\x40\x51\x6a\x8c\x6f\xb7\xdb\x62\x6b\x50\x59\x5c\xe4\x65\xb5\xdd\xc5\x55\xb1\x15\x28\x67\xd3\x14\x8d\x56\x10\x25\xd8\x09\x92\xe7\x6b\xd9\xec\x20\x99\x4c\x20\x4b\x5b\xac\x17\x49\x18\xe2\x58\xfc\x07\x64\x3c\xe6\x45\xa6\x59\x9a\xd3\x37\xbb\x87\x88\x6e\x31\x41\x3c\x26\xe6\x95\xe3\x76\x53\xf8\xe4\x5d\x63\x90\xd0\x32\xde\xa6\x1b\xde\xcf\x65\x9a\xd1\x37\xe4\x81\x5a\x0d\x0c\xeb\x81\x96\x25\x59\x51\x2b\x67\xf1\xb9\x88\x2b\x2b\x12\xdf\x83\x69\xb9\xc9\xd2\xca\x06\x16\x80\x81\xc1\x7c\x44\xcf\x6c\xd8\x62\x2d\x7f\x33\x58\x0b\x5a\x1b\xa8\x5d\xd9\x04\xdd\x4b\x56\xb6\xa6\xd9\x86\x6e\x4b\x4c\x0e\x87\x7d\x1d\xf0\xa8\x0d\xd9\x56\x29\xc9\x4a\x7c\xcf\xe3\x22\xde\x45\x58\xeb\xe2\x11\x1b\x6e\x32\xdd\xd2\x55\x5a\x56\x74\xfb\x17\x0e\xc1\x06\x02\xd2\x2f\x69\x59\xa6\xf9\x0a\x20\x93\x36\xd2\xa5\xed\x31\xa2\xd8\xae\x76\x0f\x34\xaf\x4a\x89\x56\x58\xad\xb7\xc5\x67\x2b\xa7\x9f\x2d\x6a\x03\x59\xd2\x12\x70\x7c\xeb\x94\x0f\xe7\x29\x80\x41\x0d\x83\x7e\x75\x51\x56\xc4\xf7\x7f\x39\x52\x27\x63\x34\x7b\x31\xe6\xf7\xd3\x34\xff\x44\xb7\x25\x35\x26\x25\xdc\xd7\x28\xc7\xf7\xd3\x65\x1e\x2c\xed\x88\x71\x88\x08\x8f\xa2\x86\x04\xa0\x42\xe4\x09\x23\xde\xe8\x26\x17\xb1\xfe\x89\xcb\x3e\x0f\x87\x7c\x97\x65\x2c\x3e\x96\xf1\x5f\xd8\x44\x71\x9e\x47\x8a\xca\x89\x42\xeb\x94\x92\x78\xcd\x5b\xe3\xab\xbc\x6c\xa2\x0e\x76\x88\x65\x35\xd1\xa6\xa8\xff\x9e\x11\x51\x8e\x62\x1c\xa9\x9e\x20\x8a\x1d\x54\x61\x00\x50\x12\x2c\xf9\x1c\xb3\x09\x26\xad\xe6\x47\xd3\x84\x54\x8c\x3c\x13\x9c\xdb\xe2\x03\xf2\x99\x3f\xcc\x85\x60\xba\xb4\xd9\x6c\x85\x6a\xae\xac\xf4\x94\x0d\xe8\xf3\x55\x40\x27\x13\x98\x30\x68\xd3\x34\x4f\xe8\x17\x4c\x51\x22\x08\x1b\x33\x04\xb1\xaf\x8c\x94\x15\xa6\xc6\x54\x3f\x73\x21\xaa\x26\xf8\xde\x26\x0b\x1a\xa2\x3d\x6b\x81\x9f\xd4\x30\xa0\x59\x49\x2d\x56\xcd\x8a\x09\x0e\x02\x49\x47\x52\xd8
|
2017-04-13 21:40:16 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsHandlebars130MinJsBytes() ([]byte, error) {
|
2017-04-13 21:40:16 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsHandlebars130MinJs,
|
|
|
|
"ui/javascripts/libs/handlebars-1.3.0.min.js",
|
2017-04-13 21:40:16 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsHandlebars130MinJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsHandlebars130MinJsBytes()
|
2017-04-13 21:40:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/handlebars-1.3.0.min.js", size: 42524, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-13 21:40:16 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsJquery1102MinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\x6b\x7f\xdb\x36\xb6\x28\x0e\xbf\xdf\x9f\xc2\xe4\xce\x66\x89\x08\xa6\xa5\xa4\x9d\xb3\x4b\x05\xe6\x49\x73\xed\x9e\xa4\xc9\x34\xe9\x74\x66\x28\x36\x3f\x5a\x82\x24\x36\x34\xa0\x92\x90\x2f\x35\x35\x9f\xfd\xf9\xad\x05\x80\x04\x29\x3a\xed\xf3\x3f\xe7\xc5\x79\x61\x8b\x04\x71\xc7\xc2\xc2\xba\xe3\xec\xa1\xf7\x1f\x27\x0f\x4f\x7e\xfd\xdb\x9e\x57\xb7\x27\xff\x93\x5f\xe5\x1f\x96\x55\xb1\x53\x27\x6f\x8a\x8b\x2a\xaf\x6e\x4f\xae\x66\xd1\x6c\x1a\x3d\x82\x4c\x5b\xa5\x76\xf1\xd9\xd9\xaf\xbf\x41\xde\x68\x29\x2f\xcf\xfe\xe3\xe4\x21\x7c\xf8\x5e\x2c\xcb\xfd\x8a\xd7\x27\x1f\x8a\xdf\x7f\x2f\x79\xf4\x6b\xed\x64\xaf\x31\xed\xd7\xda\x2d\xf0\x4c\xee\x6e\xab\x62\xb3\x55\x27\x8f\xa6\xd3\x6f\xe8\xc9\xa3\xe9\xec\xb1\xed\xc3\x4b\xb9\x17\xab\x5c\x15\x52\x50\xa8\x38\x3a\xc9\xc5\xea\x44\xaa\x2d\xaf\x4e\x96\x52\xa8\xaa\xb8\xd8\x2b\x59\x61\x0b\x3f\xf2\x92\xe7\x35\x5f\x9d\xec\xc5\x8a\x57\x27\x6a\xcb\x4f\xde\x7e\xff\xf1\xa4\x2c\x96\x5c\xd4\xfc\xb8\xcb\xb2\xda\x9c\x75\x1f\xe1\xfb\xf3\x5c\xf1\x18\x9b\x3f\x9d\xfe\xaf\xd3\xe9\xe3\x8f\xb3\xc7\xf1\xd7\xff\xfd\xaf\xff\x38\x79\x78\xf6\x1f\xde\x7a\x2f\x96\xd0\x8f\x90\x53\x45\xee\xec\xdb\x89\x08\x39\xb9\xbb\xca\xab\x13\xc5\x78\x54\x72\xb1\x51\x5b\x2a\xd8\x52\x45\xea\x76\xc7\x43\x4e\xe6\x15\x57\xfb\x4a\x9c\x2c\x55\x54\xd4\x3f\x17\x62\x25\xaf\x43\x4e\x12\x6f\x16\xcf\x18\x63\x3c\x12\x72\xc5\x3f\xde\xee\x78\x10\xa8\xc4\x9b\xc6\x7e\x5e\x55\xf9\xad\xcf\x18\x13\x4d\xe3\xdb\x56\x7c\x8f\x31\x11\x04\xe1\x94\x31\xa6\x9a\xc6\x17\xfb\xcb\x0b\x5e\xf9\x8c\x41\x23\x72\x7d\xa2\x82\x40\x9d\x4f\x83\x40\x9d\xce\x4e\x0a\x71\xc2\xc9\xa1\xed\x5f\xd5\xf5\xef\xb3\x4a\x79\xc6\xee\x0e\x4e\x97\x78\xbe\xdc\x86\x3c\xba\xcc\xd5\x72\x1b\xee\x14\x69\x9a\x34\xa3\xce\x48\x05\xb9\x53\xa9\xc8\x98\x37\x3d\x10\xaa\xba\x5a\x0b\xf8\x46\x2b\x5a\x90\xbb\x62\x1d\x2e\x55\x94\x2f\x97\x7c\xa7\x9e\xe7\x2a\x0f\x39\xd1\x0d\x4a\x9a\xd3\x1a\x66\x82\xdf\xec\x72\xb1\x92\x74\xef\x0c\x97\x96\x6c\x9f\x2c\x55\xb4\xcc\x97\x5b\x1e\x73\xba\x64\xfb\x84\xa7\x75\x16\xc3\xbf\x20\xa8\xe7\x50\x6d\x10\x94\xe9\x32\x0b\x82\xb0\x68\x1a\x78\x8a\x56\xb9\xca\x49\xd3\x54\x9e\x9e\x86\x5a\x55\x85\xd8\xf8\x9e\x9d\x06\x41\xec\xc8\x9a\x26\xb4\x35\x32\xa5\xa2\x9d\xdc\x85\xa4\x69\x96\x2a\xda\xec\x8b\xd5\x64\x12\xd7\x84\x42\x85\x4d\x13\xc2\x0f\xdb\x27\x77\x87\xf8\x4e\xc9\xff\xf9\xf0\xee\x87\x78\xa9\x22\x21\xe5\xee\x40\x68\xe8\xcb\x8b\x5f\xf9\x52\x75\x13\xdd\x5b\x94\x2e\x95\x40\x1f\x13\xac\x0a\xc7\xab\xb8\x58\x61\xcd\x54\x90\xb8\xed\xf9\xe0\x1b\xa6\x51\x41\x08\xcd\x19\xe6\x2d\x9a\x26\xcc\x31\xb5\x7d\x60\x77\x07\xf8\xac\x5f\x08\xc5\x81\x07\x41\x98\xa7\x38\x75\x97\xbc\x7c\x96\xd7\x3c\x14\x24\x63\x15\xa1\x76\x3e\xba\x7e\x25\xa1\x64\x79\x2a\x32\x2a\xf6\x65\xc9\x98\x0c\x02\x4c\x18\x16\x26\x24\x96\x2c\xa7\xf2\xd0\x2d\xb0\x04\x30\x87\xe5\xbf\x77\x79\x2b\x5a\x50\xe9\xae\x68\xce\xa4\xbb\xa2\x7b\x26\x13\x9e\x76\xcb\x9f\xc5\xdd\x33\xac\x6e\x9e\xee\x33\xac\x1e\x06\x54\x31\x91\x40\x42\x0c\xff\xf4\x60\xc9\x1d\x6e\x99\xa7\xb0\x1f\x42\x45\x12\xc5\x54\xb4\x94\x62\x99\x2b\xe8\xd0\x65\xbe\x0b\x15\x75\x07\x42\x48\xac\x00\xf8\xab\x44\xb1\x54\x65\x71\xa8\x58\x6f\x9c\x8a\x50\xc5\x4c\x0e\xf8\xae\xa2\x7a\x57\x16\x2a\xf4\x4f\x7c\x42\x68\xc1\x94\xd9\xbd\xf3\xb5\xac\xc2\x79\x71\x7a\x3a\x27\x2b\x5e\x72\xc5\x4f\xaa\x54\xa5\x45\x96\x41\xa7\x45\xe2\xd5\x61\x45\x62\x0f\xfb\xf6\xe2\x72\xa7\x6e\xdf\x21\x88\x84\x15\x31\xc0\x77\x08\x45\xd3\x84\xa6\x68\x3b\x1c\x5a\xeb\x01\x13\x00\x15\x3d\x4f\x25\xcf\x05\xce\x68\xca\x33\xea\x4d\x09\xcc\x4f\xbd\xdf\xed\x64\xa5\x22\x5d\xfc\x85\x9e\xad\xa6\xc9\x3d\x96\x47\xd7\x88\x3c\x12\xa7\x66\x9c\x2d\x06\x6b\x4b\x0e\xce\xda\xe5\x7a\x73\xe2\xe4\x56\x0c\x21\xa6\x8f\x6b\xf4\x02\x16\xcc\x87\x9e\x9d\xfa\x13\x11\x55\x7c\x57\xe6\x4b\x1e\x7e\x50\xd4\x3f\x7d\x30\xf3\x49\xa4\xe4\x1b\x79\xcd\x2b\x9c\x3a\x32\xc7\x9a\x78\xb4\xe1\xea\xa9\xd2\x48\x97\x87\xc5\x08\xc4\x55\xe4\x4e\x55\xb7\x77\x15\xf3\x55\xb5\xe7\x80\xc6\x2a\xc4\x6a\xeb\xbc\xac\xed\xeb\x2c\xf6\xa1\xcb\xfa\x0d\x9e\xe2\x49\x35\xf1\xf5\xeb\xa4\x8a\x5f\xa8\x48\xf1\x1a\x26\x14\x66\x69\x97\x57\x35\x87\x6d\x09\xb3\x5e\x1d\x96\x88\xa8\x24\xb9\x3b\x2c\x15\xce\xab\x19\xea\x8
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsJquery1102MinJsBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsJquery1102MinJs,
|
|
|
|
"ui/javascripts/libs/jquery-1.10.2.min.js",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsJquery1102MinJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsJquery1102MinJsBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/jquery-1.10.2.min.js", size: 94333, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsListViewMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7b\xed\x6e\xdc\xb6\xd2\xff\xf7\x5e\x85\x2c\x9c\xa3\x92\x59\x5a\x5e\xa7\xe7\x0d\xbb\x65\x8c\xc4\x49\xd0\xa0\x4d\x13\x34\xf9\x37\x0d\x0c\xc3\x90\xa5\xd9\x5d\x9e\x6a\x49\x81\xa4\x6c\xef\xf1\xee\x05\xfd\x6f\xe3\xb9\xb2\x07\x24\xf5\x42\xbd\xd9\x6e\xcf\x87\x07\x09\x60\x2d\x45\x72\x86\x33\xc3\x99\xdf\x0c\xa9\x93\x93\xe0\xa7\x44\xe9\x20\x15\xdb\x2d\xd3\x8b\x60\x7e\xbd\x5a\xfd\xfd\x3a\x0d\xd0\xf3\xf9\xe9\xdf\x8e\xe7\x7f\x3b\x7e\xfe\x8f\xe0\xf4\xf9\x62\xfe\x8f\xc5\xfc\x9f\xc1\xf1\xfc\xef\xf3\x39\xfe\xe6\x9b\x6f\x4e\x4e\x82\x73\x51\xec\x24\x5b\x6f\xf4\x22\xf8\x9f\xff\xff\x7c\x7e\xfa\xfc\xf8\xf9\xfc\xf4\xbb\xe0\x8d\x64\xbf\x07\xaf\xe4\x8e\x93\xe0\x6b\x52\x14\xc1\x3b\x9e\xc6\x24\x48\x78\x16\xa4\x82\x6b\xc9\xae\x4b\x2d\xa4\x8a\xbf\x39\x5a\x95\x3c\xd5\x4c\x70\x84\xef\xeb\xc7\x00\x10\x10\x8d\xef\x25\xe8\x52\xf2\x00\xa2\x48\x47\x11\xc4\x77\x94\x52\x1d\xdf\x99\xc7\x9d\x7d\xdc\x1d\x9a\x11\x1a\xe1\xfb\x9b\x44\x06\x9a\x70\x22\x97\x6f\xb6\xd7\x20\x63\xc6\x95\x96\xe5\x16\xb8\x46\xe1\x0d\x83\xdb\xb8\x2c\xb2\x44\xc3\xb9\xe0\x1a\xee\x74\x5c\x08\xc5\xcc\xd8\x37\x39\x98\x3e\x21\xd1\x1b\xa6\x88\xc7\x8e\xa6\x0c\xd9\xb6\x10\xaa\x2e\x98\x70\x6a\x5a\x9a\xb1\x44\xba\xdf\x57\x4d\x03\xb7\xcc\x22\x40\x9c\x48\xbc\xdf\x23\xc7\x8a\x2c\x79\xac\xd2\x0d\x64\x65\x0e\x28\x94\xc0\x33\x90\x15\xc1\x6a\x7c\x22\x81\xeb\x5f\x0d\x97\x49\x51\xe4\xbb\xcf\x32\xe1\x6a\x25\xe4\x96\x68\xc2\xe3\x3b\xc2\xe3\x1d\x26\x5d\x52\x94\x63\x7c\xb0\x6d\xf8\x60\x96\xce\xa8\xa3\xb5\x06\x5d\x09\x40\x81\x26\xee\xe9\x27\xa6\xf4\x3b\x0d\x5b\x43\xe0\x3d\xbb\x63\xbc\xea\x6b\x9f\xe3\x54\x42\xa2\x01\xdd\x33\xce\xf4\xc2\x17\x80\xa5\xa7\xca\x02\x24\xaa\xa8\x0b\x0e\x28\xcc\x58\xf6\x8e\x2b\x90\xba\x15\x1d\x3e\x90\x34\x4f\x94\xfa\x39\xd9\x82\x5a\x5c\x84\x60\xa6\x3f\xce\x99\xd2\xc7\x4c\xc3\xf6\xd8\xc8\x3f\xbc\x24\x0d\xf3\x0b\x5e\xe6\x39\x71\x0a\xf9\x58\xb7\x35\xa4\xa1\xa2\xdd\x2c\x15\x7a\x6b\xaf\x08\x23\x7c\x20\xfd\xb6\x85\x3e\xe0\x03\xc2\x64\xc2\xae\xf0\x3d\xc4\xb7\x2c\xcf\x3b\x0b\x30\x26\x35\x68\x44\xd8\x37\x2f\x3b\xb0\xbf\x70\x33\xae\xdf\xe6\x0f\x63\x95\x55\x32\x22\x48\x4e\x36\x4b\x46\xf9\xc0\xa2\x58\x14\xa1\xbc\x69\x4f\x9d\x71\x86\x95\xb8\xb5\x64\xeb\x35\xc8\x5f\x20\x2d\xa5\x62\x37\x90\xef\x50\x68\x18\x3d\xcf\x21\x91\xbf\x38\x33\xaa\xba\xe6\xc0\xd7\x7a\xf3\x72\xa5\xa1\x7a\xf1\xc2\x6b\x7e\x05\x2b\x21\xc1\xb5\x47\x91\xa5\x15\xa7\xed\x1c\x90\x9d\x6f\x58\x9e\x49\xe0\xb5\x9e\xaf\x52\xd3\x60\xcc\xa5\x9e\x82\x4e\x4c\x87\x49\x7e\x86\x44\x65\x4f\xae\xe9\x55\xb9\x5a\x59\x93\x11\x6e\x90\xb3\xf7\xcf\xa2\x6a\x17\x98\x54\xb3\x0d\xa9\xbc\x98\x93\x4d\x14\xd9\x97\x8c\xdf\x88\xdf\xc1\x5f\x3a\x90\xa3\x53\x4c\x58\xcc\x38\x07\xf9\xc3\xe7\xf7\x3f\x51\xe1\x9e\x3f\x69\xc9\xf8\xfa\xac\xf3\x0b\xe1\x85\x32\xa4\x64\x4f\xe2\x84\x35\xb2\x4d\xb8\xb3\x9c\xcf\x02\x85\x8c\xbf\xfe\xf0\x3e\xc4\x0f\x50\xd7\x86\x3a\x5e\xf8\xe4\xc3\xd0\x6d\x3d\xde\x6e\x3d\x22\x69\xbb\xf9\x14\xf5\x4d\xda\xfa\x27\x7a\x71\x49\x18\x85\xd8\xae\xdc\x09\x44\x2d\x2b\x47\xe7\x06\xbe\x94\x32\xd9\x7d\x14\xf9\x6e\xc5\xf2\x5c\xc5\x2b\x21\xdf\x24\xe9\x26\x4e\x93\x3c\x47\x8c\xf4\x27\x64\x34\x54\x76\xbd\x21\xa5\x7a\x57\x80\x58\x05\xb0\x64\x67\x3a\x2e\x4a\xb5\x41\x80\x17\x10\x27\x66\x42\xa4\xf1\x01\x13\x1d\xff\x5b\x30\x8e\x0c\xdf\xcb\xa1\x67\xa8\x38\xb7\x5e\x08\xee\x34\xf0\x0c\x4d\xb8\x0f\x72\xdf\xf1\xa5\x8b\xe1\x32\x07\x06\xfd\x34\xa7\xdc\x71\x8d\xbe\x2b\x3a\xa2\x14\xa2\x08\xc9\xde\xb4\x04\x30\x01\xb3\x0d\x99\x32\x53\x48\x91\xe7\xc6\xc2\xfd\x6e\xae\xcd\xf4\x6c\xdc\x25\x91\xe0\x08\xf9\xde\x6e\xe8\xa9\x3f\xf0\xb4\xef\xad\x99\xf1\x38\x15\xf1\xd7\x2c\x3b\xdf\x24\x7c\x0d\x0b\x37\x54\x5c\x2b\x90\x37\x20\x11\xf3\xf8\xf3\x59\xc0\x03\xcf\x64\x64\x05\x9e\xf1\xe8\xd6\x78\x96\xf5\x8e\x2a\x55\x72\x9d\xc3\x9f\xd5\xd3\x83\x3e\x7d\xe9\xd3\xff\x70\xfd\x6f\x48\xf5\x47\x29\xee\x76\x75\x44\xc0\x4b\xdb\x5d\x81\x46\x1d\x89\x57\xce\xd8\x74\xad\x14\x47\xe1\x40\x98\xfa\x95\x29\x76\x9d\xd7\xf2\x48\xc5\xb6\x28\x35\x64\xcd\xd8\xd8\xfe\x35\x7b\xd0\x63\xc8\xd9\xfe\xd1\x91\x9d\x73\xed\x51\x6a\x7a\x1b\xc3\x9d\x30\x37\xe6\x44\xc8\x29\xa0\x21\x4f\x95\x16\xcc\x0c\x4b\x7e\x44\xa9\xf1\xb4\xd5\x3e\x37\xf0\xc1\xae\x4c\
|
2017-04-13 21:40:16 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsListViewMinJsBytes() ([]byte, error) {
|
2017-04-13 21:40:16 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsListViewMinJs,
|
|
|
|
"ui/javascripts/libs/list-view.min.js",
|
2017-04-13 21:40:16 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsListViewMinJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsListViewMinJsBytes()
|
2017-04-13 21:40:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/list-view.min.js", size: 16877, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiJavascriptsLibsNotificationfxJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x57\xdd\x6e\xe3\x36\x16\xbe\x96\x9e\xe2\x4c\x6e\x64\x67\x1c\x39\x33\xd8\xdd\x0b\x27\x1e\x60\x37\x9b\x41\x0b\xcc\x4f\x81\xce\xdd\x60\x50\x50\xd4\x91\xc5\x09\x45\xaa\x24\x65\xc5\x8d\xfd\x56\x7d\x82\x3e\x59\x71\x28\x4a\x96\xec\x76\x32\xbd\x08\xa0\x90\xdf\xe1\xf9\xfb\xce\x47\x7a\x79\x79\x19\xc3\x25\x28\xed\x44\x21\x38\x73\x42\xab\xb7\x8f\xe9\x57\x0b\xdb\x57\xe9\x75\x7a\x4d\x7b\xa5\x73\xf5\x6a\xb9\x6c\xdb\x36\xe5\x3a\x37\xba\xb6\x29\xd7\x55\x0c\xde\xf0\x9d\xe0\xa8\x2c\xe6\xd0\xa8\x1c\x0d\xb8\x12\xe1\xfd\x8f\x9f\x40\x76\xcb\xe9\x89\xbd\xae\x51\x59\xdd\x18\x8e\xa9\x36\x9b\x65\x40\xd9\x65\x25\xdc\x55\x6f\x52\x97\x75\x38\xfb\x4e\xd7\x3b\x23\x36\xa5\x83\xd7\xd7\xaf\xfe\xb5\x80\xbb\xce\xfb\x37\x63\x5a\xc6\x37\x33\x28\x1a\xc5\x29\x93\x19\xb4\x42\xe5\xba\x85\x39\x3c\xc5\x71\x94\x34\x16\xc1\x3a\x23\xb8\x4b\x6e\xe2\x38\xda\x32\x03\xb9\xe6\xf7\x12\x2b\x58\x07\x68\x9a\x6b\xde\x54\xa8\xdc\xf0\x41\xdb\xa8\xdc\x22\x8e\xa2\xe5\x12\x98\x12\x95\xaf\x12\xa0\xca\x01\xb7\xa8\x1c\x28\x56\x61\x1c\x45\xb4\x75\xaf\xf2\x7b\x5a\xfb\xc0\x2a\x84\x35\x5c\xb4\x98\x3d\x08\xf7\xdf\xde\xe8\x5e\xe5\x17\xe4\x99\xaa\x1e\xc1\x25\xe0\xa3\xa3\x63\x74\xf6\x75\x88\x99\xd6\x97\x71\xd4\xff\x1b\x20\x33\x60\x0b\xc8\x7c\x1e\x51\x54\x68\x33\x03\x0a\xfe\x01\x77\x20\xd4\xb0\x1e\x89\x62\x06\x59\x5a\x32\xfb\xb1\x55\x3f\x19\x5d\xa3\x71\xbb\x99\x47\xcd\x7b\x48\xc4\x3e\x3f\xe0\xee\x0b\xac\x21\xf3\x1f\x37\xb4\x78\x88\xbb\x3f\x83\xae\x31\x0a\xd8\x4d\x1c\x1d\x46\x51\x7e\x98\x90\xe3\x6f\x23\x9d\xc2\x66\xa0\x6b\xfa\xb2\xc1\xb3\x2b\x85\x4d\xfb\xa5\xf5\x90\xd6\xd3\x61\x01\x93\xad\x39\x45\xd4\xef\x8e\x77\x16\x30\x81\xf8\xad\x5f\x84\x12\x6e\x36\xff\x76\xbc\xc1\x2c\x84\x3b\xdd\x4c\x6b\xa3\x9d\x76\xbb\x1a\x47\xb1\x3d\x75\xad\xc6\xae\xf1\xe0\x34\xb4\xa5\xe0\xa5\x27\xf7\x78\x50\xa0\x15\x52\x42\x86\xc0\xea\x1a\x55\x8e\x79\x67\x97\x63\xc1\x1a\xe9\x2c\x19\x92\xc9\xc0\xa8\x4c\xe7\xbb\x38\x8a\x5a\x43\x78\x03\xab\xe9\x4e\x20\x18\x59\x54\x68\x2d\xdb\x10\xa7\xc2\x17\xac\x20\xd9\xe9\x17\x49\xc0\x48\xb6\xd3\x8d\x03\x0a\x7b\x05\x1b\xa3\x5b\xb9\x67\xce\x31\x5e\x62\xbe\xcf\x98\xd9\x6b\x57\xa2\x89\xa3\x28\xe0\x56\x90\x78\x50\x6f\x8e\x45\x81\xdc\x59\x28\x74\x37\xb0\xb6\x46\x2e\x0a\x81\x79\x38\x78\xd5\xc1\x68\xdb\xdb\xf5\xcb\x60\x39\x93\xb8\xb7\x52\xe4\xb8\xdf\xa0\x12\xb8\xff\x8a\x52\xee\x8e\xf0\x3e\x8a\xc1\xa2\x90\xa2\xde\x67\xba\x51\x7c\x47\x9f\x47\xa4\x0f\x71\x80\x65\xfa\xd1\xd6\x42\x29\x34\x7b\xae\x8d\x42\x83\x8f\x35\x53\xf9\x5e\x6a\x96\x0b\xb5\xe1\xc2\x70\x89\x7b\x57\x36\x55\xe6\xbd\x9b\xee\xa0\x34\x4d\x89\x2c\x3e\x1d\xca\xd2\xef\xf5\x59\x52\xa7\x38\x2e\xa0\x65\x46\x09\xb5\x59\x00\x1a\xa3\xcd\x02\x6c\xc3\x39\x5a\xdb\x81\x7c\x07\x59\x9e\x03\x97\xcc\x5a\x50\xf6\x8a\x8a\x7a\x35\xd8\xf4\x0b\xde\x16\xb4\x19\x16\x8e\xa7\xd0\xbf\xe4\xdc\x43\x7a\xe7\xa2\xf0\x95\x6d\x2c\x92\xc4\xa0\x55\x7f\xfc\xee\x80\x4b\x6d\xf1\x9c\x45\xae\x44\x05\x2d\x82\xc1\x4a\x6f\x11\x84\x0b\x4a\x53\xb8\x20\xa8\x85\x96\x52\xb7\x42\x6d\xc0\x09\xaf\x34\xce\x49\x58\xc1\x7f\xae\xaf\xaf\x83\x3b\xce\xa4\xcc\x18\x7f\xa0\x78\xb4\xba\xf3\x7e\x56\x47\x19\x9c\xc3\x13\x84\xd9\x2e\x98\xb4\x78\x03\x87\x85\x47\x7e\xac\x51\x3d\x03\x8c\xa3\xc3\x58\xb1\x68\xe0\x26\x0a\xe0\x57\x04\x93\xe2\x37\x04\xa6\x72\xe0\x44\x00\xb0\xba\x42\x92\xa8\x67\xa7\xce\x4f\x30\xac\x27\x21\x84\x9c\x0c\x32\x87\xf0\xc3\xa7\xf7\xef\x48\xb4\x1b\xee\x1a\x83\xfd\xe0\x2b\x57\xc0\xfa\x38\x3f\x1d\x36\x28\xf5\x0c\x92\x5c\x6c\x93\x91\x4c\x28\x57\xa4\xbe\xc1\x41\x96\x13\x65\xaf\x32\xfd\x48\xcd\x4c\xe0\xe5\x44\x65\xd2\x30\x33\x2f\x21\xa1\xed\x8e\x5b\xe7\xa8\xc0\xb9\x80\xf2\x8c\x38\xc3\xd0\x2a\x85\x40\x4a\x4d\xb7\x0e\xd1\x9b\x9c\xdf\xe6\x62\xdb\xf1\x6d\x7d\xd1\x05\x72\xe5\xf7\x2e\xde\x24\x04\x1f\xa0\x2f\xd7\xd3\xf3\x82\x16\x9c\x62\x92\xdb\x65\x2e\xb6\xe7\xb6\xc9\xad\xad\x99\x1a\x39\xf2\xf4\xbb\x78\x73\xbb\xa4\xf5\x37\x23\xab\xa1\x46\xde\xd6\x17\x7c\x3d\x44\x4c\xcd\xf7\x74\xf4\x1a\x47\x9a\x46\x62\x05\x41\x3a\x7a\x8d\x3c\x4a\x88\x50\xbd\xe0\xa6\x41\xe8\x4e\xc4\xbf\x5f\x4e\x85\xb2\x68\xdc\xff\xb0\xd0\x06\x83\xd4\x2b\x57\x4c\xaf\x83\x01\x5c\x08\x63\xdd\x5d\x29\x64\x4e\x7d\x0d\x42\x2b\x6c\x25\xac\x0d\x93\x
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsNotificationfxJsBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiJavascriptsLibsNotificationfxJs,
|
|
|
|
"ui/javascripts/libs/notificationFx.js",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiJavascriptsLibsNotificationfxJs() (*asset, error) {
|
|
|
|
bytes, err := uiJavascriptsLibsNotificationfxJsBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/javascripts/libs/notificationFx.js", size: 3641, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-13 21:40:16 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiScriptsCompileRb = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\xc1\xce\x9b\x30\x10\x84\xef\x7e\x8a\x95\x7b\xf8\x41\x2a\x26\x69\xab\x9e\xd2\x6b\xde\xa0\xa7\x2a\xaa\x16\xb3\x34\x8b\x8c\xed\xd8\x26\x69\x95\xe4\xdd\x2b\x08\x8a\x2a\x15\x50\x2e\xff\x01\x0e\xcc\x37\xa3\xd9\xd5\x12\xe8\xd4\x73\x20\x78\xeb\x7f\x19\x6e\x98\xc2\x9b\x10\x7b\x36\xa4\x9c\x27\x9b\xc9\x98\x30\xb1\x2e\xd1\x7b\xc3\x1a\x13\x3b\xab\x3a\xb6\xaa\x8d\xf2\x23\xc8\x8b\xcc\xe1\x7a\x6b\xd8\xd0\x0d\x86\xb7\x4a\xa1\xb7\x1a\x13\x65\x9b\x1c\xee\x42\x18\xae\x22\x7c\x83\x1f\x02\x40\xb6\x78\xc6\xa8\x03\xfb\x14\xcb\xe1\x7b\xd9\x9e\x7a\x0a\x7f\x8a\xad\xda\x6e\xd4\xa7\x67\xe8\x2c\x7a\x44\x5b\x1b\xaa\x30\xc4\x62\xab\x3e\xab\xcd\x3a\x4d\x5d\x45\x61\x1d\xa9\x30\xd2\xd7\x2f\x2f\xc4\x14\x67\x34\x5c\x8f\x73\xc7\x75\xdc\x70\x4c\xc5\x99\xe9\xb2\x8e\x69\x83\x31\x32\x2d\x03\xd6\x25\x6e\xa6\x55\xef\x7f\x3f\xb8\x83\x10\xe8\xfd\xdc\x26\xd1\xfb\x32\xb8\x3e\x51\x98\x4d\x1c\xe4\xce\xd5\x64\xe2\xa2\x3c\xba\x97\x65\xed\x6c\x0a\xce\x18\x0a\xcb\xcc\x30\xf5\xb2\x7a\x24\xe3\x9f\xee\xc3\xe3\x28\x14\xa1\x3e\x42\xed\xe0\xd6\xc6\x9f\xe3\xfd\x08\x80\x57\xaf\x0e\x65\x3e\x5a\x9b\xc1\x04\xe0\xfb\x14\x41\x6a\x4c\xf0\xe1\x3a\xa5\xdd\xe5\xa8\x34\xb0\xdb\x3d\x52\x03\x61\x9d\x4d\x62\x2e\x00\xc8\xd6\x62\x78\x86\xb5\xbe\x43\x17\xd7\x79\x36\x34\xdf\xe7\xfb\xf4\x9b\xa9\x89\xca\xfe\x2f\xf8\x6f\xc3\xbf\x01\x00\x00\xff\xff\x70\xce\x5f\xde\x9f\x03\x00\x00")
|
2017-04-13 21:40:16 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiScriptsCompileRbBytes() ([]byte, error) {
|
2017-04-13 21:40:16 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiScriptsCompileRb,
|
|
|
|
"ui/scripts/compile.rb",
|
2017-04-13 21:40:16 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiScriptsCompileRb() (*asset, error) {
|
|
|
|
bytes, err := uiScriptsCompileRbBytes()
|
2017-04-13 21:40:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/scripts/compile.rb", size: 927, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2015-11-30 19:24:39 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiScriptsDistSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x5f\x6f\xd3\x30\x10\x7f\xf7\xa7\x38\xdc\x6a\x62\x88\xd8\xc0\x2b\x5d\xa5\xb1\x55\x30\x09\xb4\xa9\x85\x07\xb4\x4e\x93\x63\x5f\x1b\x13\xc7\xb6\x7c\xce\xba\xc2\xf8\xee\x28\x4d\xba\x15\x26\xf1\x66\xff\xfe\xdc\xe9\x77\x77\xa3\x17\xb2\xa5\x24\x4b\xeb\x25\xfa\x3b\x28\x15\x55\x8c\x30\x43\x81\x8c\x8d\xe0\x23\x66\xc8\x15\x42\x54\x09\x7d\x06\x63\x13\xea\x1c\xd2\x16\xc2\x0a\x36\x15\x26\x84\x5c\x59\x02\xd2\xc9\xc6\x0c\x96\x04\x5b\x5c\x7e\x9b\x9f\xcd\x4e\xf8\xf8\xd7\x87\xd3\xc5\xa7\xdb\xfe\x7b\xfd\xe6\xe6\x37\x67\x9b\xca\x3a\x84\x6b\x28\x2a\xe0\xe3\x9e\xe0\x70\x03\xef\xc1\x04\x78\xb4\xbd\x4c\xa8\x8c\xb3\xbe\x7e\xd2\x1c\xf3\x4e\xe2\x91\x9d\x5f\xcc\x3b\x05\x68\x03\xc5\x15\x74\x2f\x63\x93\x57\x0d\x1e\xd4\x3b\x96\x42\x70\x38\x3a\x82\xb8\x31\x70\xcc\xbb\x10\x67\x95\xf2\x6b\x04\xeb\x73\x80\x5c\xa9\x83\x18\x4c\x1b\xe0\xe3\xf3\x8b\x39\xef\xc3\x7a\x4c\x2a\xe3\x2e\x71\x56\x6b\x76\x3e\xbb\xfa\x7c\xf9\xfd\x84\x0b\x21\x63\xbd\x96\x1b\x2c\x6f\x5b\xcb\x19\x4b\x0d\x14\x69\x05\xe3\x9e\x67\x4d\x6d\x6c\x82\x22\x3e\x02\xac\x6c\xbd\x71\x08\xba\x42\x5d\xc3\x54\x1a\xbc\x93\xbe\x75\x0e\xde\x4d\x8f\xde\xc2\xc3\x03\x0c\xbc\xf5\x94\x95\x73\x7b\x39\xde\xa3\x06\x52\x44\x40\x79\xeb\x90\x64\xa9\x08\x05\xe9\x1d\xa0\xb2\xd5\x3d\xa0\x89\xd8\x5f\x96\xd4\x96\xdb\x61\x05\x24\x75\x68\xa2\x75\x28\x52\xb9\x8b\x1e\xe2\xb6\x0f\x6e\x30\xba\xb0\x65\x54\x85\x98\xa1\x20\x30\x21\xaf\x5d\x28\x99\x8e\x50\x24\xe8\x66\x20\xfb\x26\xfb\x14\xb2\xa3\xac\x37\x78\x2f\xaa\xdc\xb8\x27\x98\x8d\xe0\x8b\x5a\x5b\x3d\xb4\xb4\x7e\xcd\x08\x0d\x14\x33\x28\x10\xb8\x3c\x5d\x2c\x66\x5f\x17\xf2\xb5\x5c\xee\x9f\x60\x38\x14\xb6\x54\xf5\x63\x8d\xa7\xb2\x87\x56\x1a\x4d\x96\xb2\x0c\x66\x3b\x1d\x4d\x86\x8b\xa2\xa4\x4f\x96\x7c\x48\xaf\x62\x74\x56\xab\x6c\x83\x17\x8d\xf5\xe2\x07\x2d\xf9\x74\x22\x7b\xe9\x74\x32\x58\xff\xd3\x8b\x8d\x60\x8e\x4d\xb8\xeb\x37\x5c\x2a\x5d\xb7\x11\x56\xdd\x51\xae\x52\x68\x80\xd0\x74\xab\x7d\x6e\x2c\x55\xcd\x58\x6c\xa9\x32\x7b\xf2\xdf\xa5\xb2\x9f\x76\x37\x47\x21\x86\x2b\x11\x1d\x20\xe4\x2b\x16\x43\x34\xcf\xd4\x7f\x02\x00\x00\xff\xff\xd1\x99\xa3\xe7\x75\x03\x00\x00")
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiScriptsDistShBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiScriptsDistSh,
|
|
|
|
"ui/scripts/dist.sh",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiScriptsDistSh() (*asset, error) {
|
|
|
|
bytes, err := uiScriptsDistShBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/scripts/dist.sh", size: 885, mode: os.FileMode(509), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiStaticAndroidChrome192x192Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x9a\x55\x53\xdc\x0d\xb3\xc4\xff\xbb\xb8\xbb\x43\x70\x87\xa0\xc1\x65\x71\x0b\xee\xee\x12\x9c\xe0\xbe\x10\xdc\xdd\x9d\x20\xc1\x03\x09\x21\xb8\xbb\xbb\x6b\x70\x77\x87\x53\xcf\xf9\x00\x6f\x4d\xcd\x5c\xcc\x6d\x57\xf5\xaf\x2f\x3a\x52\x45\x49\x06\x0d\x99\x18\x19\x00\x00\x34\x39\x59\x49\x35\x00\x00\x3a\xff\x5b\x44\x78\x00\x00\xd4\x56\xed\x11\x00\x00\x80\xb5\x16\x53\x14\x03\x80\x9f\xf1\x28\x2f\xa6\x70\x00\x00\x50\x98\xcb\xaa\x29\x02\x80\x0f\x1d\x00\x40\x43\x00\xe0\x09\x00\x00\xe8\x01\x00\xb8\xb3\x03\xc0\x91\x09\x00\x08\x64\x00\x00\x81\x73\x4e\xb3\xaa\x10\x00\x00\xf0\x66\x0a\x32\x92\xc0\xfb\x7f\x53\xd0\x56\x96\x0c\x00\x00\x82\x9b\x9c\xa2\x14\xc2\x16\x0c\x39\xc0\x4c\x50\xf9\x9b\x9e\x1d\x00\xa4\x8e\xe5\x24\xc5\x34\xbc\x96\x4f\xdb\xbe\x24\xd0\xc8\x78\xd0\xdd\xad\x0a\xd7\xb4\x72\x1d\xb7\x37\x57\x3a\x71\x37\x83\x50\xa1\xfd\x1c\x36\x00\xcc\x28\x90\x01\xb2\x0e\xe3\x52\x40\x0f\xff\x17\xa1\x10\xfb\x85\xef\x68\x97\xf2\x0c\xdd\x93\x71\xca\x46\xcf\xa5\x24\x35\x8d\x53\x75\x1a\xc3\x56\xb1\x1e\x6f\xd4\x42\xef\x8b\x9c\x0b\xbf\xc1\x0e\xfa\x5e\x3b\xc6\xaa\x36\x0c\x1a\xf7\x93\x48\x65\xf3\x19\xf5\x79\x4c\xcc\x8c\xa1\x68\x3d\xd5\x0c\x35\x27\xd5\x79\x73\xf3\x35\x97\xeb\x48\x79\x55\x05\x9f\xd0\xba\x6b\xe0\xdb\x4b\xdb\x39\xe8\x66\x4a\x86\xdc\xff\x7f\x9c\x01\x07\xc4\x5f\x6b\xbc\xce\x2d\x5b\xb3\x3f\xd4\x85\x0f\x67\x08\x8c\xbc\x82\x1c\xee\x1b\x56\x91\x0e\x98\x21\x08\x36\xaa\x83\x2d\x87\x2b\x61\xdd\x1b\xda\x71\xeb\x85\xb5\x00\x2b\x05\x64\x53\x35\x5b\xd4\x37\x70\x41\x36\x42\xb7\x93\x03\xf6\xd5\xd8\x98\x51\x40\xc2\x18\xe4\xb7\x49\x7d\x31\xb8\xdf\x34\xa7\x7c\xee\x82\x99\xb1\x3f\xc3\x6f\xa5\x18\x70\xfe\x8a\x0e\x3c\x21\x4f\x31\x3d\x21\xd7\x81\xe2\x27\x7d\xe3\x13\xf7\x17\xcf\xad\x3b\xe0\x37\x6b\x31\x8d\x2e\x82\x4f\x84\xd1\x6d\x31\x2f\xb8\xde\x91\x00\x7f\x4b\x9b\x10\x41\x3d\x10\x38\x44\x44\xb6\xe9\xe7\x84\xcb\x64\xd9\xfd\xe2\xf9\x0b\x30\x16\x9a\xfb\x44\x3a\x03\x3d\xff\x86\x1b\xf2\x7e\xc2\xfc\x0d\xc1\x33\x07\xcc\x8d\xf9\x44\x11\x34\x20\x12\xeb\x15\x4f\x8b\x82\xf2\xa3\xbe\x80\x66\x44\x9c\x4f\x17\xdf\xac\x3e\xb4\xa7\x3e\x94\xba\x3e\xb4\x98\x4a\x0a\xeb\xb3\x98\x24\xb4\x37\x56\x79\x14\xb3\x81\x11\xda\x87\xc9\xc5\xda\xad\x81\xd3\x50\x2f\xa7\x23\x87\xf3\xe5\x07\xc3\x4a\x68\xab\x7d\xea\x55\x94\xa6\x52\x38\xeb\x58\xff\x68\x58\xd6\xa6\x3a\x70\xf1\x76\xe2\x60\xb4\x0b\x1c\x30\x7f\x63\x3b\x23\x84\xbb\xc0\x7a\xa1\x28\xdc\x87\xcb\xf6\x8a\x83\x1b\xea\xde\xd6\x11\x8b\x8a\xc3\xff\xde\x25\xa6\x49\x1a\xff\xc5\xc2\x69\xb0\xd7\x57\x92\x24\x1e\x09\x17\x0d\x07\x19\x26\xa3\x90\x0f\xac\x82\x09\x83\x05\x4a\x82\x82\x40\x40\x88\xed\x02\xb0\x88\xa9\x06\xdf\x09\x80\xe0\x80\x68\x50\x03\x21\x38\x97\x8a\x41\xb5\x17\x99\x27\x38\x46\xea\xa0\x5e\x6c\x51\x5c\xf7\xfb\xb5\x77\x5f\xf3\x6f\xe2\x4f\x04\xf8\x3b\x3e\x3e\xac\x66\x15\x3c\x56\xf8\x1a\x29\x5d\x2b\x2f\xb8\xdd\x95\xa8\xfe\x52\x50\x41\x08\x88\xaf\xeb\x3e\xee\x6e\x1d\x2b\xcf\x2b\x0b\x00\xc4\x07\x7b\xa7\x83\x6e\x27\x2f\x24\x95\xf2\x94\x7e\x74\x27\x46\x88\x9d\xa5\xb1\xfa\xa9\x14\xd8\xa0\x72\xa5\xf4\xa2\x8a\x93\x04\x76\xfc\x30\x49\x5d\x12\xff\xcd\xf1\x9d\x75\x14\xdf\x2d\xc8\x88\x71\xf8\x2e\xf4\xb6\xce\x7b\x57\x4b\xbe\xe5\x53\xf6\x2c\x57\x18\x04\x0d\x70\x4e\x09\xd6\x8e\x2b\x20\xea\xfe\xc4\xbc\x1a\x19\xe5\xac\xcf\x04\xe9\xb4\xc1\xd8\xc4\xf7\xb1\x76\x23\x80\xe2\x78\x01\x98\xf4\x5f\xbf\xbe\x4c\xea\xd9\x6c\xd8\x88\x35\xf3\x96\x26\x23\xe0\xe1\x90\xe3\x30\x10\x0f\xa0\x4a\x15\xf2\x04\x3b\x09\x12\x42\xa5\x38\x46\xf4\x33\xd6\xa6\x25\x7d\x44\xca\x74\xce\x59\xfb\x63\x31\xd8\x62\xcb\x1b\x0e\xeb\x74\xc1\x00\x0e\x53\xd4\x66\x2e\x23\xf1\x18\xaa\x67\x0a\xd5\xaa\x07\xf2\x26\xd1\xe5\xeb\x28\xc9\x02\x22\x06\x40\x05\x44\xa8\xeb\xf2\xbb\x58\x7c\xf2\xb3\x60\x61\x13\x26\x9e\x09\x8d\x97\xe7\x11\x10\x67\x90\xef\xc2\x8f\x39\x6b\x03\xc3\xd4\xd9\x8f\x6a\xb9\x05\xe5\x4d\x30\xdf\x65\xa3\x20\xbd\x9e\xba\x9a\x97\x54\xe6\x70\xf2\x21\x6f\x8d\x62\x06\x58\x4d\xf7\xff\x38\x43\x95\x6a\x72\xc0\x2d\x88\xdc\x7c\x46\xf6\x37\xc0\xe9\x1e\x48\xa7\x7a\x2e\x9b\x19\x4e\x46\x52\xf4\x92\xaf\x9f\x52\x15\x57\xbd\xe2\x39\x24\xb0\x35\x6f\x2c\x45\xba\xf9\x66\x3f\xf8\xd4\x77\xdb\x75\x45\x62\x4d\x2f\xcf\x05\x5f\x28\xd0
|
2015-11-30 19:24:39 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAndroidChrome192x192PngBytes() ([]byte, error) {
|
2015-11-30 19:24:39 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiStaticAndroidChrome192x192Png,
|
|
|
|
"ui/static/android-chrome-192x192.png",
|
2015-11-30 19:24:39 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAndroidChrome192x192Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAndroidChrome192x192PngBytes()
|
2015-11-30 19:24:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/static/android-chrome-192x192.png", size: 18250, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiStaticAndroidChrome512x512Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAndroidChrome512x512PngBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiStaticAndroidChrome512x512Png,
|
|
|
|
"ui/static/android-chrome-512x512.png",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAndroidChrome512x512Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAndroidChrome512x512PngBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/static/android-chrome-512x512.png", size: 58433, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiStaticAppleTouchIcon114x114Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xd8\x3c\x27\xc3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x72\x00\x00\x00\x72\x08\x06\x00\x00\x00\x8f\xdd\x85\x7d\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x79\x70\x1c\x57\x7a\x27\xf8\xfb\x5e\x66\x65\x9d\xa8\xc2\x7d\x11\x04\x08\x10\x04\xc1\x53\xa4\x28\x52\x14\x49\x91\x52\x5b\x52\x77\x4b\xb2\xa7\x2f\xb7\xa7\x7d\x6f\xc4\xba\x3d\x0e\x4f\x78\xc3\x31\x13\xe1\xd8\xd8\xf0\x4e\x78\x1d\xb3\xde\x0d\xaf\x63\xd7\x31\xe3\xe8\xe8\x9d\xe8\xe9\xb1\x3d\x3d\x3d\x76\x77\xbb\x65\x75\xdb\x56\x4b\x6c\x49\x2d\x91\x94\x78\x88\x27\x44\x82\x04\x08\x92\x00\x08\x80\x40\xa1\x50\xa8\xbb\xb2\xb2\xde\xb7\x7f\x54\x66\x56\x56\x22\xab\x00\x48\x6a\xcf\x7a\x63\x3f\x44\x21\x33\xdf\xf9\xbd\xef\xe5\xfb\xae\x77\x24\x01\x10\xd8\x3c\x48\x33\x9f\x75\xf5\x8a\x6b\x94\xef\x1f\xbb\xcc\x8d\xa4\xdd\x0c\x7c\x5c\x5c\x7f\x9a\x6d\xfc\xff\xe1\xff\x4b\xe0\xee\xd9\x46\xcf\x5e\x71\xc2\xe3\xde\x9d\xde\x7d\xdd\x6c\x1a\x2f\xd8\x0c\x2e\x1b\x79\xde\x08\x4e\x1b\xa5\xcd\x7a\xf9\xd7\x6b\xe3\x86\xea\x53\x1d\x81\xb2\x4e\xa2\x7a\x61\xf5\xd2\x3b\xcb\x72\x97\x5b\xaf\x2c\xeb\xd9\xc9\x7a\xdc\xe5\x79\xb1\xa4\xcd\xe0\xec\x2c\xd7\x8b\x1d\x59\xf1\xf5\xe2\x1a\x95\xeb\x55\x47\x23\xd8\x48\x67\x7a\xd1\xa2\x2e\x2e\x54\xa7\x90\x7f\xca\x50\x4f\x66\x6c\x56\x2e\xfd\xbf\x11\xbc\x5e\xe8\x0d\xb5\xe1\x93\x68\xe4\x7a\x6f\xf7\x3f\x35\xd8\x08\xb7\xda\x48\x1b\x37\x2b\x3e\x1a\x82\xea\x7a\xde\x28\x6b\x58\x2f\xad\x9b\x1d\x3a\xc1\x1d\xee\xc5\x3a\xeb\x5e\xdb\xdb\xdb\x45\x7b\x7b\x3b\xda\xdb\xdb\xd1\xda\xda\x8a\x58\x2c\x06\xbf\xdf\x2f\x88\xc8\x2a\x4b\x10\x11\x98\x19\xd6\xd5\xaa\xd7\x7c\x96\xcc\x8c\xd5\xd5\x55\x99\xcb\xe5\x10\x8f\xc7\xb1\xb2\xb2\x82\xa5\xa5\x25\xac\xae\xae\x42\x4a\xe9\xc4\xab\x11\xce\xce\xf0\x7a\xe9\xdd\xed\x76\xa7\xf3\xa2\x97\x57\x19\x8d\xe8\x02\x00\xc2\x8b\xb5\x7e\x5c\xd5\x78\x23\xc3\xbe\x51\x1d\x35\x71\xed\xed\xed\xd8\xb6\x6d\x1b\x7a\x7a\x7a\xd0\xd6\xd6\x26\x7c\x3e\x9f\x20\x22\x01\x86\x2a\x18\x5a\x48\x57\x22\x61\x5d\xe9\x8e\x16\x94\x5e\xbf\x21\x5a\x43\x25\xa5\x59\x33\x28\xa2\x30\xf9\x89\xa1\x32\xc1\x30\x04\xe7\x0b\xaa\x4c\x15\x7c\x32\x99\xf7\x95\x17\xd3\xfe\xf2\x42\xc6\x5f\x8e\x17\x7c\x32\xc3\x04\x03\x80\xc1\xcc\x32\x9f\xcf\xcb\x44\x22\x21\xef\xdf\xbf\x8f\x9b\x37\x6f\xfe\x34\xd9\xee\x47\x31\x43\x1a\x75\x2c\x68\x93\x08\x6c\x46\x98\x6f\x74\x64\xaf\x81\x96\x96\x16\xb1\x7b\xf7\x6e\x6c\xdb\xb6\x0d\xa1\x50\x48\x25\x22\x55\x91\x08\xc4\xf2\x6a\x77\x77\x5a\xdb\xdb\x9d\xf2\x1f\x6e\xcf\xfa\xf6\xb6\xe4\xd4\x11\xad\x2c\xba\x05\x23\x00\x8f\xc6\x13\x03\xf6\x78\xac\x6d\xa9\x94\x84\x4c\xc1\x27\x67\x97\x43\xa5\x3b\x4b\x11\xfd\xfa\x42\x54\xff\xe0\x51\x44\xbf\x99\xf6\x97\xe3\x2c\xa0\x33\xb3\x9e\x4e\xa7\xe5\xf8\xf8\x38\xa6\xa6\xa6\x90\x4a\xa5\xd6\x6b\xcf\x47\x6d\xf3\xc7\xa2\x95\x05\x56\xf3\xd6\xd3\x14\x37\x8a\xc0\x46\x90\xaa\x9b\x66\xf7\xee\xdd\x62\x74\x74\x14\x6d\x6d\x6d\x2a\x00\x55\x93\x22\xba\x75\xc5\x7f\x60\x68\x39\xf8\xe9\xbe\x55\xff\x89\xa6\x82\xba\x5b\x30\x42\x60\x02\x11\x1c\xbd\x64\xb6\x84\x1d\xf7\x00\x98\x01\xa2\x4a\x30\x99\x71\x8c\xda\x3e\x65\x32\x3b\x9c\x18\x65\x81\x64\x32\x58\xba\x3e\xdd\x52\x7c\xe7\x6e\x5b\xfe\x47\xf3\xd1\xe2\x78\x99\x38\xc7\xcc\xfa\xdc\xdc\x9c\xbc\x79\xf3\x26\x66\x66\x66\x50\x2e\x97\x1b\x69\x94\x1b\xa5\x5b\x23\x56\xb9\x61\x9a\x59\x71\xee\x8e\xac\xa7\xea\xaf\xcb\xa3\xd7\xc9\x07\xc7\xb3\x13\x01\x44\x22\x11\x3c\xf6\xd8\x63\x18\x1a\x1a\x12\x81\x40\x40\x55\x98\x22\x3d\x29\xff\xde\xdd\x8f\x42\x5f\x1c\x8a\x07\x5f\x0c\x18\x62\x1b\x98\x84\xd5\x4f\xe4\xe8\x05\xab\xa3\xec\xde\x31\xaf\x76\x7f\xda\x09\xac\x0c\xa8\xed\x64\x98\x1d\xe9\x2a\x8f\x2b\x25\x18\x19\x7f\x79\xfc\x4e\x47\xee\xd5\xf1\xae\xdc\xf7\xe3\xe1\xd2\x24\x13\x72\xd9\x6c\xd6\xb8\x72\xe5\x8a\xc5\x7a\x6b\xda\x52\xaf\x8d\x1e\x34\x84\xc7\x3d\x5c\x69\x37\x9a\x7f\xd3\xe6\xc7\x27\x2a\x33\xc2\xe1\x30\x0e\x1e\x3c\x88\x91\x91\x11\xa1\xaa\xaa\xe6\x2f\x51\xf3\xe8\x62\xf8\xc5\x7d\xf3\xe1\xff\xae\x35\xeb\x3b\x42\x80\x4a\xce\xde\xb1\xc1\xfd\x8c\x35\x1d\x59\x3f\x8f\x33\xdc\x2b\xcc\x8a\xe1\xca\x08\x26\x00\x20\x94\x89\x73\x0b\x51\xfd\xed\x6b\xbd\x99\x6f\xdc\x6d\xcb\x9d\x29\x2b\x48\xe9\xba\xae\x5f\xbc\x78\x11\xe3\xe3\xe3\x28\x97\xc
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAppleTouchIcon114x114PngBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiStaticAppleTouchIcon114x114Png,
|
|
|
|
"ui/static/apple-touch-icon-114x114.png",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAppleTouchIcon114x114Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAppleTouchIcon114x114PngBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/static/apple-touch-icon-114x114.png", size: 15576, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2017-04-25 20:54:03 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiStaticAppleTouchIcon120x120Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x7b\x3f\x84\xc0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x78\x00\x00\x00\x78\x08\x06\x00\x00\x00\x39\x64\x36\xd2\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x7b\x70\x1c\x47\x7a\x27\xf8\xfb\xb2\xaa\xab\xdf\x8d\x46\xa3\xf1\x06\x01\x10\x04\x01\xf0\x29\xbe\x44\x91\x1c\x8e\x44\x51\x8f\x95\x34\x1c\x4b\x96\x3c\x1e\xdb\xe7\x47\x78\xbc\x7b\x8e\xbb\x3d\x3b\x6e\xcf\xbb\xe1\x70\x5c\x38\x36\x1c\x0e\xc7\x86\xcf\xe1\xb8\xf0\xeb\x6e\x7c\xb3\xde\x59\xef\x7a\x66\x35\xb6\xc7\x33\x9a\xd1\xcb\x96\x34\xa2\x24\x4a\xe4\x90\xa2\xf8\x82\x40\x12\x04\x41\x10\x04\xf1\x6c\x00\xdd\x8d\x7e\x54\x57\x57\x65\xde\x1f\x5d\xd5\x5d\x5d\xa8\x6e\x00\x24\x35\xe3\xd9\xd8\x44\x34\xaa\x2a\x2b\x7f\x99\x59\x99\xf5\x3d\xf2\xfb\x32\xb3\x80\xff\x11\xfe\xbb\x0f\xcc\x71\xac\x17\xc7\x1c\x71\xce\x34\x6b\xc5\xaf\x37\xad\x5b\xb9\xb5\xc2\x83\xc2\xba\x3d\xdf\x4f\x3c\x96\x6c\x11\xdc\x3c\xe7\x2e\x09\x39\xdc\x0b\x75\xc3\xb8\x9d\xd7\xab\xb4\x3d\x0f\xb7\x32\x6b\x95\x7d\xaf\xd8\x7a\xf9\xd5\x4a\xb7\x9e\xba\xfc\x73\xc5\xd6\x0d\x6b\x51\xf5\x7a\xee\xd5\xca\xaf\x16\x7e\xbd\x6f\xf2\xfd\x62\x9d\x6f\x7f\xad\xe3\x4f\x34\x56\xae\x71\xc3\xde\xfb\xd6\x1b\xb4\x16\x35\xd6\x6a\x5c\xe7\x9b\xe4\x56\x96\x5b\xbc\x13\x53\x8b\x1a\xef\x05\xcb\xab\x93\xd7\xc4\xbb\x51\xc3\x4f\x22\xf6\xc7\x16\x36\xf2\xa2\xac\x75\xaf\xee\xfd\x48\x24\xc2\x00\x40\x92\xa4\xf5\x70\x91\x8d\x94\xf9\xcf\x1a\x6b\xc9\xe0\xb5\xe4\x2f\x1c\xf7\xe1\x12\xe7\x26\x73\x9d\x32\xa4\xd6\xfd\x7a\xa1\xae\xfc\x6f\x6a\x6a\x42\x3c\x1e\x87\xcf\xe7\x43\x73\x73\x33\x88\x08\xad\xad\xad\xe5\x32\xbc\x5e\x2f\x18\x63\x20\x22\x00\x80\xaa\xaa\xe0\x9c\x03\x00\xd7\x34\x0d\x4b\x4b\x4b\xc8\xe7\xf3\x48\xa5\x52\x58\x5e\x5e\x46\x3a\x9d\xc6\xca\xca\xca\xbd\xd4\x67\x3d\xe1\x47\x8e\xa5\x3a\xf7\x6a\x75\xcc\x83\x0e\x1b\xca\xbf\xb7\xb7\x97\x75\x74\x74\xa0\xa9\xa9\x09\xcd\xcd\xcd\x4c\x92\x24\xa0\x24\x6a\x18\x81\x18\x01\x32\x09\xc8\x32\x27\xc5\xa7\x33\x9f\x6c\x90\xc2\x04\xc9\x24\xc0\x04\x41\x37\x98\xd0\x0b\x32\x57\x35\x49\x68\x9c\x84\xc6\x09\x3a\x08\x5c\x08\xa1\x03\xe0\x42\x08\x5e\x2c\x16\xf9\xf4\xf4\x34\x12\x89\x04\x6e\xdf\xbe\x8d\xa5\xa5\xa5\x5a\x2f\xf6\x7a\x5f\xe2\x1f\x1b\x96\xdc\x22\x6d\xd7\x56\xa8\x95\x29\x5c\xd2\xb8\xc5\x39\xa9\xbc\x96\x8c\x71\xad\xe8\xae\x5d\xbb\x58\x4f\x4f\x0f\x5a\x5b\x5b\x99\xc9\x62\x65\xc6\xa1\x04\x8a\x52\x34\x96\x95\xbb\x9b\x72\x9e\xa1\x58\xce\x33\x18\x51\xe5\xde\xb0\x2a\x75\x04\x34\xa9\x45\x16\x14\x61\x1c\x01\x00\x8c\x4c\xc5\x44\x98\xba\x84\x20\x68\x9c\x44\x4e\x93\xc5\x52\x46\x31\xe6\x57\x7c\xfa\x64\xd2\xa7\x4f\x2c\x05\x8b\x57\x13\xc1\xe2\x68\xca\xa7\x4f\x17\x64\x91\x03\x41\x03\xc0\xf3\xf9\xbc\x7e\xe7\xce\x1d\xdc\xbd\x7b\x17\x37\x6e\xdc\x58\x6b\x44\x51\x2f\xfe\x47\x8e\xad\x47\xc1\xf6\xf0\x59\x53\xf1\xaa\xb0\x75\xeb\x56\xd6\xdf\xdf\x8f\xce\xce\x4e\x46\x44\x32\x81\x94\x90\x26\xc5\x3a\x52\xde\xdd\xdd\xcb\xde\xc7\xda\xd2\xca\xc1\x06\x55\x1e\x92\x39\xc5\x20\xc0\x2c\x16\x2c\x04\x40\x04\x40\x00\x02\x02\x00\xa1\x74\x29\x00\xa0\xcc\xaa\x2b\x09\x2b\x41\x94\x52\x69\x05\x99\x4f\x2d\x06\xf5\xe1\xbb\x0d\x85\x0f\xef\x44\xd5\x8f\xe6\xc2\xda\x58\x51\x16\x19\x00\x5a\x3e\x9f\xe7\x13\x13\x13\xfc\xfa\xf5\xeb\x98\x9f\x9f\xaf\x27\xb2\x36\x1a\x3e\x13\xac\xb3\x83\xeb\xc9\xd4\x8d\xa4\xb1\xdf\xdb\x50\x9e\x07\x0f\x1e\x64\xdb\xb6\x6d\x83\xd7\xeb\x95\x85\x10\xbe\x90\x26\xc5\xb7\x24\x02\xc7\xb6\x26\xfc\x5f\x6c\x5d\x51\x8e\x78\x0c\x8a\xa3\xc4\x8a\x4b\x41\xa0\xd4\x8d\x64\x5d\x10\x40\xb6\x53\x81\xf2\x75\xd5\x11\xd5\xe7\x42\x88\xd2\xab\x60\x4b\x63\x75\x78\x5e\xe1\xe3\x93\x51\xf5\x07\xa3\x2d\xb9\xef\x4f\x46\xd5\x4f\x0c\x09\x19\x21\x84\xbe\xb0\xb0\xa0\x5f\xbb\x76\x0d\xa3\xa3\xa3\x65\xb9\x8e\xda\xfa\x8b\xdb\x35\x1c\x69\x1f\x38\x76\xbd\x14\xfc\x99\x86\x68\x34\xca\xf6\xef\xdf\x8f\xbe\xbe\x3e\x46\x44\xb2\xc4\x11\xe9\x5e\xf6\xed\xdb\x3e\x1b\xfc\xf9\xde\x25\xdf\x73\x32\xa7\x38\x99\xbd\x25\x4a\x84\x68\x76\xa8\x49\x9b\xc2\xa4\x4c\xf3\x5e\x55\xa7\x11\xca\x3d\x2d\x04\x2a\x9d\xb8\x3a\x71\x39\xbf\x0a\x65\xdb\xd2\x08\x01\x41\xe0\x59\x85\x8f\x5e\x6f\xc9\xfe\xfd\x48\x5b\xf6\xef\x16\x03\xfa\x24\x08\xb9\x4c\x26\xa3\x0f\x0f\x0f\xe3\xda\xb5\x6b\xd0\x34\x6d\xa3\x54\x78\x3
|
2017-04-25 20:54:03 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAppleTouchIcon120x120PngBytes() ([]byte, error) {
|
2017-04-25 20:54:03 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiStaticAppleTouchIcon120x120Png,
|
|
|
|
"ui/static/apple-touch-icon-120x120.png",
|
2017-04-25 20:54:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAppleTouchIcon120x120Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAppleTouchIcon120x120PngBytes()
|
2017-04-25 20:54:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/static/apple-touch-icon-120x120.png", size: 16251, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
2015-11-30 19:24:39 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
var _uiStaticAppleTouchIcon144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe
|
2015-11-30 19:24:39 +00:00
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAppleTouchIcon144x144PngBytes() ([]byte, error) {
|
2015-11-30 19:24:39 +00:00
|
|
|
return bindataRead(
|
2017-06-12 17:57:02 +00:00
|
|
|
_uiStaticAppleTouchIcon144x144Png,
|
|
|
|
"ui/static/apple-touch-icon-144x144.png",
|
2015-11-30 19:24:39 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
func uiStaticAppleTouchIcon144x144Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAppleTouchIcon144x144PngBytes()
|
2015-11-30 19:24:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 17:57:02 +00:00
|
|
|
info := bindataFileInfo{name: "ui/static/apple-touch-icon-144x144.png", size: 20027, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticAppleTouchIcon152x152Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x4f\x40\xb0\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x98\x00\x00\x00\x98\x08\x06\x00\x00\x00\x18\xc2\x20\x21\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x79\x78\x1c\xc9\x75\x27\xf8\x7b\x91\x59\x59\x27\x0a\x40\xe1\x06\x01\x90\x04\x49\x80\x04\xd9\x68\x36\xd9\x27\x9b\xdd\x6c\xf5\x25\xb6\xa4\x56\x6b\x24\xb9\xbd\xb2\x65\x8d\xec\x59\x79\x76\x3f\xef\xee\xac\xd7\x3b\xab\xdd\xf5\x37\xf3\xed\x8c\x77\xd7\xdf\xec\x7c\xf3\xf9\xf3\xe7\xf1\xce\x6a\x34\x5a\xd9\xb2\x65\xc9\x96\x2c\x79\xd4\x2d\xb5\xfb\x52\x77\xb3\xef\x6e\xb2\x9b\xf7\x4d\x10\x04\x40\xdc\x28\x14\x0a\x75\x66\x65\xc6\xdb\x3f\xf2\xa8\xac\x44\x16\x0e\x1e\x1e\x7b\xbc\x81\xaf\x90\x99\x71\xbc\x7c\x11\xf1\xe2\xbd\x17\x2f\x5e\x44\x12\x00\x81\xda\x20\x03\xe2\x36\x92\x7e\xb3\xe1\x76\xc3\xbf\x15\xc1\xc1\x71\xa3\x6d\x15\x94\xff\x3f\x6b\x58\xc2\x13\x29\x51\x0b\x14\x9e\xab\x37\x0f\xea\x5c\xeb\xfd\x82\xd2\xfd\xf0\xd6\x82\x5f\x2f\xce\x9f\xb6\x5a\xfc\xad\x84\x15\x94\x16\x84\xbb\xf0\xc5\xfd\xbd\x83\x45\x58\x9b\x5b\xac\x87\xa3\xf8\x5f\x54\x2f\xff\x7a\x46\xc5\xdf\x05\x0e\xe6\x84\x8d\xe2\xba\x5a\xfd\xff\x3e\xc0\x5a\x11\x6e\xa6\xa3\xfd\x65\x83\x60\xdd\x2a\x42\x5a\xcf\xbb\xfe\x53\xc0\xfa\x7b\x1f\x84\xe7\x2a\x50\xdb\x98\x41\xf7\xfe\x38\x81\x60\x18\x5e\x31\xeb\x87\x5b\x0f\xe6\x6a\xb0\xfc\xef\xf4\x97\x93\x01\xf9\x6f\x27\x2c\x6f\xdc\x6a\xb0\xfc\xef\xff\xfb\x08\xeb\xef\x44\x58\x8b\xab\x6c\xa4\x22\xb7\x12\xd6\xff\x1f\xd6\x11\x6e\x46\x94\x05\x71\x1d\xff\x7d\x50\x5a\x3d\x38\x41\xb8\x6c\x74\x34\xd4\xcb\x7f\xab\x60\xad\x56\x76\xa3\x69\xff\xd9\xc3\x52\x7d\x09\xb2\x5e\x46\x5f\x9e\xf5\x74\x50\x50\x3e\x7f\x87\xd5\x53\x08\x57\x23\xe8\xb5\xde\xb1\x5a\xfe\x55\x61\x75\x75\x75\x09\x45\x51\xdc\x88\x8e\x8e\x0e\x1c\x3b\x76\x0c\x07\x0e\x1c\x70\xf3\xcf\xcd\xcd\xa1\x58\x2c\x0a\x00\x98\x98\x98\x90\x6d\x6d\x6d\x62\x6e\x6e\xce\x0f\x77\x35\xbc\xea\xb5\x49\xbd\xf6\xfa\x3b\x0d\x8b\xea\x14\x0c\x02\x54\x6f\x4a\xea\x2f\xe3\x47\x6e\x35\xd8\xeb\x81\xb5\x5a\xd8\x68\x7e\x00\xc0\xe0\xe0\xa0\x68\x6d\x6d\x45\x3c\x1e\x47\x73\x73\x33\x1a\x1a\x1a\x00\x40\x10\x11\x88\xdc\x26\xa9\x69\x3c\x66\x76\xd3\xec\x7b\xe9\xdc\x33\xb3\x04\x80\xeb\xd7\xaf\xc3\x34\x4d\x4c\x4d\x4d\x41\xd7\x75\x5c\xb8\x70\xa1\x5e\xdd\x36\x82\x77\xbd\xf6\xfd\x3b\x01\x6b\x3d\x66\x0a\x6f\xf0\x73\xb8\xd5\xcc\x13\xb7\xd2\xd8\x77\x23\xf0\x00\x40\xf6\xf6\xf6\x8a\xae\xae\x2e\x6c\xda\xb4\x09\x0d\x0d\x0d\x88\x44\x22\x2e\x17\x65\x66\x57\x34\x13\x91\x0a\x40\x80\x21\x42\x92\xd4\x90\x49\xaa\x22\x49\x25\x86\x4a\x20\x01\x00\x0c\x96\x92\x60\x18\x0a\xeb\x15\xc1\x86\x29\x58\x82\x60\xd8\x04\x26\x89\x48\x32\xb3\xb4\x89\x4f\x02\x90\xb9\x5c\x0e\xf3\xf3\xf3\x98\x9f\x9f\xc7\x47\x1f\x7d\x14\x54\x1f\xbf\xed\x31\xa8\x4d\xd6\xca\xfb\xb7\x16\x96\x9f\x83\xad\x27\xdc\x10\xd7\xf8\x1b\x80\xe5\x86\xbd\x7b\xf7\x8a\xae\xae\x2e\x74\x76\x76\x22\x14\x0a\x55\xf5\x3b\x86\x0a\x40\x53\x25\x69\x71\x5d\x49\x34\x17\xd4\x9e\xe6\xa2\xda\x9f\x28\xab\x3d\x8d\x45\xa5\xb7\xa1\xac\x76\x87\x4c\x6a\x0a\x99\x94\x0c\x49\x4a\x10\x3b\x04\x66\x35\x18\x13\x24\x03\x86\x29\xb8\x64\x08\xce\x55\x14\xce\x96\x42\x72\x7e\x39\x6c\x4c\x67\x23\xe6\xf8\x52\xc4\x18\x5d\x8a\x18\xa3\x99\x98\x31\x5d\x08\x99\x05\x49\xd0\x01\x18\x0e\x11\x12\x91\x2c\x14\x0a\x72\x7a\x7a\x1a\x57\xaf\x5e\xc5\x95\x2b\x57\x6e\x79\xdd\xff\xb6\x05\x87\xc0\xea\x89\xc0\x20\x31\xe6\xcd\x1f\x14\x17\xc4\x65\xfc\x14\xee\x2f\xe7\xcd\xe3\xcf\x5f\x8f\xab\xb9\xd7\x68\x34\x2a\xb6\x6d\xdb\x86\xc1\xc1\x41\xb4\xb4\xb4\x00\x96\x6e\x29\x00\xa8\x42\x22\xd2\x50\x56\x52\x6d\x39\x6d\x4b\xe7\xb2\xb6\xb7\x33\xab\xed\x6f\x2e\x84\x86\x22\x86\xe8\x11\x8c\x24\x98\x04\x08\x00\x33\x00\xb2\x6e\x6b\x86\x1d\x03\x4c\x20\xb2\xb3\x78\x03\x59\xc9\x8e\x54\xb5\x92\xd9\x30\x05\xd2\xf9\x90\x39\xb2\x90\xa8\x9c\x9d\x6e\xd0\x8f\x4d\x37\x94\x4f\xce\x27\x2a\x63\xc5\x90\xcc\xb1\x43\x74\xd6\x4f\x8e\x8d\x8d\xe1\xc2\x85\x0b\xb8\x7a\xf5\xea\x7a\xb8\x9b\xb7\xcd\xd6\xc3\x59\xfe\x93\xc3\xda\x28\x07\x5b\x8d\x48\xd6\x4b\x44\x41\x71\x37\xcc\xc9\x0e\x1f\x3e\x2c\xba\xba\xba\x1c\x4e\x65\x71\x28\x93\x62\x9d\x59\xad\xbf\x2f\x13\x39\xd0\x9b\x09\x3f\x94\xca\x87\xf6\x69\x26\x75\x02\xa4\x7a\x2b\x6c\x91\xd
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon152x152PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticAppleTouchIcon152x152Png,
|
|
|
|
"ui/static/apple-touch-icon-152x152.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon152x152Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAppleTouchIcon152x152PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/apple-touch-icon-152x152.png", size: 23769, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticAppleTouchIcon57x57Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x26\x14\xd9\xeb\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x39\x00\x00\x00\x39\x08\x06\x00\x00\x00\x8c\x18\x83\x85\x00\x00\x13\xed\x49\x44\x41\x54\x68\x81\xc5\x5b\x79\x6c\x5c\xc7\x79\xff\x66\xde\xdb\xfb\xe0\x5e\x5c\x2e\x97\x2b\x8a\xf7\x25\xea\x22\x25\x9a\x92\x65\x59\xb2\x6c\x59\x91\x64\xa5\xb1\xdc\xc4\x75\x1a\x07\xad\x13\x04\x81\x9b\x06\x49\x0a\x18\x41\x11\x04\x45\x10\xa4\x40\x11\x18\x41\x9b\xa3\x6d\xdc\x20\x71\x85\x34\xb5\x5b\xc7\xb1\x22\x59\xa2\x1d\x2b\xba\x4c\x4b\x34\x4d\x89\x14\xc5\x4b\xe4\xf2\x5e\xee\x7d\xbf\x7b\xa6\x7f\x2c\x77\xb9\xbb\x5c\x51\xa4\xac\xb8\x1f\xb1\x1c\xee\xbc\x99\x6f\xe6\x37\xc7\x77\x3e\x22\x00\xc0\x00\x40\x96\xcb\x2c\xe5\x7f\x2f\x7e\xb6\x16\x6d\xa4\xed\xfd\xf6\x5b\xab\x6d\x49\x1c\xd9\x8a\xb5\x06\xd8\xc8\xa4\xef\x07\xe0\x46\x69\xc3\x73\x45\xf7\xe8\xf4\x40\x48\xa7\xd3\x01\xcb\xb2\xa0\xd3\xe9\x40\x92\x24\x10\x04\x01\x04\x41\x00\x45\x51\xfe\xd4\x43\x03\x40\x06\xe4\x03\x25\x9b\xcd\x86\xdd\x6e\x37\x38\x9d\x4e\xec\xb0\xdb\x59\xa7\xce\x62\x36\xcb\x6a\x97\x56\xc2\x36\x96\x20\x2d\x41\x54\x16\x58\x1a\x4f\xab\x14\x7f\x40\x4e\x04\x83\xb1\xb0\x18\x08\x04\x64\x9f\xcf\x07\xb3\xb3\xb3\xe4\x41\xcf\x07\xe0\x01\x81\x34\x1a\x8d\xb8\xa9\xa9\x09\x9a\x1b\x9b\xb4\x4d\xe0\xd8\xb1\x39\xac\x7d\xbc\x2a\xae\x79\xd8\x91\x54\xb5\x6b\x65\xec\x02\x00\x0c\x80\x00\x51\x0a\x00\x08\x28\xa2\x00\x00\xa0\x20\x88\x47\xf5\xd2\x98\xcf\x24\xf6\xcf\x58\x85\x77\x27\xcd\xc9\x0b\x23\x73\x93\xe1\x91\x91\x11\xb2\xb0\xb0\xf0\xc0\x00\x7f\x2c\x90\x56\xab\x15\x77\x76\x76\xe2\xad\xae\xfa\xea\xed\x4b\xe6\x17\x5a\x97\xf4\xcf\x1a\x05\xa6\x6e\x19\x43\x01\x51\x00\x40\x28\xfb\x07\x00\xa5\x85\x83\x53\x04\xa0\x20\x48\x7a\xed\xdc\xdb\x83\x95\xa9\x57\x06\xe8\xc2\x85\x8f\x6e\x0c\x88\x13\x13\x13\x1f\x1b\x6c\x31\xc8\xac\xa4\x2d\xfe\x5e\x50\xaf\x56\xab\xf1\xee\xdd\xbb\x71\x57\x6d\x7b\xcd\xde\x59\xcb\x4b\x2d\x4b\x86\xbf\x64\x08\xd2\xe6\xc1\x29\x0d\x32\xf7\x9b\x2e\xb7\xc8\x43\x9d\x57\x52\x04\x10\x34\x48\x7d\xef\xd7\xc4\xbe\x7f\x1d\xe6\xdf\xbe\x7c\xe5\xb2\xb8\xb4\xb4\x94\x65\x95\x3f\x9f\x62\x79\x52\xfc\x8c\x00\x00\x46\x6b\x74\x28\xee\x08\x00\x00\x1e\x8f\x07\x1e\xdb\x7f\x40\xff\x48\xa8\xe2\x6f\xbb\x66\xcc\x2f\xa9\x14\x6c\xbe\x4b\xbf\x8d\x51\x31\x5e\x00\xa0\x88\xc2\x8c\x55\x78\xfb\xdd\x86\xf0\xb7\x2e\x8d\xf7\x8f\x5c\xbf\x7e\x1d\x08\x21\x1b\x56\x53\xcc\x32\xdb\xb5\x8e\x6d\xee\xd9\xee\xdd\xbb\xe1\xf8\xae\x83\x2d\xcf\x8c\xba\x5f\x6f\xf5\x1b\xbe\xc8\x50\xa4\xc9\xf5\x2e\xf1\xa1\x08\x80\x60\x20\x29\xb5\x92\x8a\xe9\xe5\x70\x4c\x27\x47\x53\x1a\x25\x29\x31\x54\x61\x09\x62\x31\x00\x46\x08\x56\xce\x71\x76\x24\x84\x00\x50\x66\xb7\x2d\x3c\xdb\xb0\x65\xc9\xf8\x79\x5d\x8d\xdd\x1b\x2b\x83\x5b\x73\x73\x73\x1b\xb9\x62\x04\x00\x10\xbb\x9e\x96\x18\x63\x38\x78\xf0\x20\x3e\x60\x6b\x3b\x7c\xec\x23\xfb\x2f\xb5\x32\xe3\xb8\x3b\x57\x0a\x3e\xb3\x38\x33\x69\xe7\x06\xe6\x2c\xc2\x87\x21\xbd\x34\x2c\x31\xd4\x0f\x00\x69\x40\x20\x03\xa5\x18\x00\x69\x31\x05\x8b\x99\x67\x1b\xdc\x71\xf5\xce\x9a\xb0\xae\xa3\x26\xac\x6d\x51\x2b\x58\x5d\x62\x6d\x81\x21\x60\x4c\x6a\x14\xa3\xd5\x6a\x2d\xbe\x4e\xf7\x9c\x3a\x00\x00\xbb\x9e\x4e\x87\x0f\x1f\x66\x1f\xd7\x36\x3f\xfb\xe4\xa0\xfd\xdf\x31\x05\x2d\x85\xd5\x92\x45\xc2\x54\x1c\xaa\x4c\x5d\xbd\xe9\x4e\xbe\x16\xd5\xc9\xbd\x14\xe8\x5c\x3c\x1e\x4f\x06\xbc\x01\x31\x16\x8b\x11\x8e\xe3\x40\x14\x45\x40\x08\x81\xc1\x60\x00\x93\xc9\x84\xed\x76\xfb\x3b\xa1\x72\xbb\x7e\xb8\x22\xe5\x54\x2b\xb8\xbd\xd9\xaf\x3f\xd9\x39\x6b\x3a\x52\xc6\xb3\xb6\x7c\xde\x97\xea\xa2\xff\x39\x6f\x16\x4e\x0f\x5e\x19\x24\x1b\x04\x09\x00\xeb\x90\xae\x87\x0e\x1d\x62\x0f\x9b\xdb\x3f\x7b\xf4\xb6\xfd\x17\x98\x22\xf5\xea\xab\x43\x61\xb8\x22\x7d\xed\x6a\x6d\xf4\xc7\x29\x0d\xb9\x18\x89\x44\x7c\x23\x23\x23\xa2\xd7\xeb\x85\x44\x22\x71\xcf\x09\xb1\x2c\x8b\xab\xab\xab\xa1\xa9\xa9\x09\x7b\x3c\x1e\x0b\x0b\x78\xdb\xd6\x45\xe3\x97\xf7\x78\xcb\xfe\x4c\x23\x63\xed\x58\x79\xfa\xda\xd9\xd6\xd0\x17\x3f\x1a\xf8\x68\xec\xfa\xf5\xeb\xf7\x25\x69\xd7\x04\xd9\xd1\xd1\x81\x8f\x37\xed\x7d\xec\xe4\x8d\xf2\x37\x59\x82\xf5\x79\x32\x01\x00\x00\xd2\x6a\x25\x79\xbe\x39\xfc\x93\x69\x2b\xff\x8b\x70\x24\xec\xfd\xe0\x83\x0f\xc4\
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon57x57PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticAppleTouchIcon57x57Png,
|
|
|
|
"ui/static/apple-touch-icon-57x57.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon57x57Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAppleTouchIcon57x57PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/apple-touch-icon-57x57.png", size: 5158, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticAppleTouchIcon60x60Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x15\x6d\xea\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\x00\x00\x15\x59\x49\x44\x41\x54\x68\x81\xed\x3a\x69\x6c\x9b\xc7\x95\x6f\x86\x1f\x3f\xde\xf7\x21\xea\xb0\x6e\x51\xb2\x2d\x3b\xb2\x2d\xdb\x8a\xe3\x23\x8e\xaf\xc4\xb1\xdd\x38\x45\x36\x69\xbb\x8b\xa2\x7b\x60\xb7\xc0\x02\xdd\x76\x17\xdb\x2d\xda\x6c\x51\x60\x8b\x6e\x51\x14\x45\xb6\xdb\x2d\xb6\xbb\x05\x9c\x4d\x8b\xd4\x75\xb1\x75\xea\xb8\x75\xed\xc8\x4e\x64\x39\xf2\x6d\x4b\xb2\x75\x59\x96\x28\x89\xa4\x28\x92\xa2\x78\x7e\x24\x3f\x7e\xdf\xcc\xfe\xe0\xa1\x4f\x34\x29\xc9\x4e\xba\x05\x8a\x3e\xe0\xe3\x7c\x9c\x99\x37\xf3\xde\x9b\xf7\xe6\xcd\x7b\xf3\x01\xfc\x11\xfe\x08\x7f\x50\x80\x72\x25\x06\x00\x92\x2b\x21\xf7\x5e\x0c\xd2\x3e\xc5\x7d\xb1\xb4\x23\x42\x08\x6c\x36\x1b\xd8\xed\x76\xb0\xd9\x6c\xd8\x60\x30\x60\xad\x5a\xc3\xa8\x19\x05\xab\x42\x72\x16\x21\x84\x53\x62\x86\x4f\x23\x91\x8f\xc6\x63\x42\x24\x1a\x11\xc2\xe1\x30\x99\x9b\x9b\x03\x9f\xcf\x07\x99\x4c\x86\x14\xcd\x2b\x05\x52\x54\x5f\x4c\xd3\xb2\xb8\x08\xca\x43\x31\xf2\x8a\x50\x5d\x5d\x8d\x9d\x4e\x27\x6e\xa8\xa9\x55\xd7\xa6\x75\x1b\xab\x23\x8a\x1d\xf6\x38\xbb\xc5\xcc\xc9\x9d\xda\xb4\xac\x4a\x2e\x22\x3d\x02\x60\x73\xdd\x05\x11\x03\x97\x60\x45\x7f\x58\x29\x4c\x04\xb5\xfc\x80\x57\xcf\xf7\xcd\xe8\x93\x1f\xba\xe6\xbd\xe1\x07\x0f\x1e\x08\x13\x13\x13\xc5\xcc\x7f\x64\x40\xf0\xa8\x14\x1e\x0b\x18\x86\x81\xb5\x6b\xd7\x42\xfb\xba\xf5\x6c\x1b\xb5\x75\xad\x9b\x53\x7f\xa6\x31\xa8\x3a\xac\x14\x70\x15\xca\x2b\x10\x85\x45\x5d\x5a\x02\xd9\x86\x7c\x33\x05\x0a\x22\x02\xce\x6b\x48\xf7\x0c\x57\x24\xde\x1e\x32\x44\xde\xbd\xff\x70\x34\x3c\x38\x38\x08\xb1\x58\xec\xa3\x90\x59\x80\xd5\xac\xb0\x54\x20\x05\xb5\x41\x08\x61\xa7\xd3\x09\xdb\xb7\x6e\x53\x3e\x15\xb3\xbc\xd4\x39\xa3\xfb\xa2\x35\x21\xef\x44\x74\xb9\x21\x21\xcf\xd9\x12\x28\x27\x8f\xa4\x5c\xf4\x0d\x54\xc5\x7f\x74\xa3\x32\xfc\xc3\xbb\xe3\x43\xfe\x5b\xb7\x6e\x41\x3a\x9d\x5e\x91\xa9\x95\xa6\x07\x28\xad\xbe\xe5\xec\x02\x0c\x06\x03\xde\xb3\x7b\x37\xb3\x45\x55\xb7\x63\xf7\x43\xd3\xb7\xed\x71\xf9\xb6\xd2\x43\xd3\x47\xab\x9f\x00\x52\x0c\xf1\x5d\xad\x8f\x7e\xf3\x9a\x31\x70\xe2\xf2\x87\xbd\xdc\xe4\xe4\xe4\x13\xab\xb9\x2c\x57\x96\xa2\x8c\x96\x6a\x6b\x6d\x6d\xc5\x87\xf7\x1d\x32\x1e\x0d\xd6\x7d\x6b\xef\xb8\xe9\xdf\xb4\x69\xd9\x9a\xc5\xd5\x41\x8b\x45\xb9\x95\x96\xb4\xa1\xbc\x4c\x10\x00\xa2\xd2\xf6\xa5\xdd\x19\x8a\xb4\xf5\x21\xe5\xe1\xa6\xb8\x6e\xb7\x72\x53\xcd\x75\x5e\x01\x41\xaf\xd7\xfb\x44\xd2\x7c\x2c\x1b\x7e\xfa\xe9\xa7\x61\x57\xd3\xa6\xf6\x17\x87\x2c\x6f\x5a\x13\x6c\x47\x96\xec\xbc\x1d\x66\xcb\x7c\x1d\x05\x00\x01\x53\xc1\xaf\xcb\x78\xe7\x74\xbc\x2b\xa4\xca\xb8\x13\x0a\x31\xc8\xcb\x68\x9c\x22\x4a\xe4\x22\x56\xab\x79\x6c\x36\x26\x99\x2a\x5b\x9c\xad\xaf\x8c\xb2\xb5\x4a\x01\x2b\x0b\x76\x0f\x14\x68\x6e\x3c\xe9\xdb\x8c\x31\xdd\x7b\x6a\xc3\xdc\x0b\x27\x4e\x9c\xe0\x04\x41\x78\x6c\x86\x19\x28\xbf\x13\x2f\x51\xe9\x03\x07\x0e\x30\x3b\xcc\xad\xbb\x8f\xde\xb5\xbe\xad\xce\xc8\xec\x8b\xbc\xe6\x09\x44\x80\x28\x00\xc1\x94\x4c\x9a\x53\x63\xc3\x15\x89\xf7\xa7\x4d\xa9\x4b\x3c\x43\xc7\x01\x20\x08\x00\x1c\x00\xf0\x89\x44\x82\x00\x00\x51\x68\x14\x98\x61\x18\x16\x00\xd4\x00\x60\xc4\x04\xea\x2b\xa3\x8a\xa7\xdb\xfc\xea\xe7\x9c\x7e\xf5\x66\x56\x40\x6c\x6e\x58\x00\x8a\x80\x22\x80\xa4\x9c\xc4\xcf\xb7\x86\xbe\x1f\x8b\xc5\x04\x51\x14\xcb\xf1\xf4\x88\x9b\x94\xd6\x95\xd2\xbb\x47\x6c\xf6\xc0\x81\x03\xcc\x2e\x63\xdb\xc1\x63\xf7\xac\x6f\xcb\x09\xd6\x97\x9a\x85\x22\x4a\x86\xed\xdc\xcd\x1b\xb5\xd1\xb7\xc2\x2a\xa1\x87\x50\xe2\xf6\xfb\xfd\xf1\x99\x99\x19\x21\x10\x08\x40\x28\x14\x02\x8e\xe3\x96\x8c\xab\x50\x28\xb0\xc1\x60\x00\x9b\xcd\x06\xd5\xd5\xd5\xb8\xba\xba\x5a\x2d\x67\xe4\x76\x85\x80\x3b\x3b\x3c\xda\x3f\xdb\xec\xd6\x3d\xc7\x8a\x58\x99\x95\x2d\x25\xef\x6c\x08\xfe\xcb\xa4\x91\x7b\xe3\xdd\x77\xdf\x0d\xfb\x7c\xbe\x27\xb2\xe3\x15\xb6\x54\x80\xae\xae\x2e\x7c\xa0\x61\xcb\xce\x97\xfb\xed\xef\xb0\x22\x32\x4a\x7c\x48\x61\x04\xbf\x36\xe3\xed\x76\x86\x7e\xe0\xd7\x66\x4e\x27\x53\x49\xd7\xbd\x7b\xf7\x52\x63\x63\x63\x90\x5b\xcd\x55\x83\x5c\x2e\xc7\x4d\x4d\x4d\xd0\xde\xde\xce\x9a\xcd\
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon60x60PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticAppleTouchIcon60x60Png,
|
|
|
|
"ui/static/apple-touch-icon-60x60.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon60x60Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAppleTouchIcon60x60PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/apple-touch-icon-60x60.png", size: 5522, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticAppleTouchIcon72x72Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x79\x1c\x86\xe3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x48\x00\x00\x00\x48\x08\x06\x00\x00\x00\x55\xed\xb3\x47\x00\x00\x1c\x40\x49\x44\x41\x54\x78\x9c\xed\x7c\x7b\x6c\x1b\x47\x9a\xe7\x57\xd5\xcd\x66\x93\xe2\x9b\x14\x45\x4a\xa4\x24\x4b\xd6\xc3\x7a\xd9\x52\x64\x2b\xc9\x38\x91\x9d\xd8\x8e\xe3\x38\xd9\x64\x32\x98\xdb\xcb\x2d\xb0\x7b\xbb\x59\x04\xb7\xb7\x87\x5d\xdc\x61\x71\x58\x2c\x16\xb3\x83\x60\xb0\x18\x1c\x82\x99\xbb\x60\x76\x2f\xb8\xc9\xe0\x66\x0f\x8b\x99\x9d\x64\x32\x4e\x72\x33\x4e\x3c\x4e\xe2\xc4\x8e\xfc\x94\x62\xcb\xb2\xac\x97\x25\x59\xa2\x24\x4a\xe2\xfb\xd1\x6c\xf6\xa3\xea\xfe\x10\x49\x91\x14\x29\xd1\x8f\xec\x2d\x0e\xf7\x09\x2d\x75\x57\xff\xfa\xfb\xaa\xaa\xab\xbe\xfa\xd5\x57\xd5\x42\x00\x80\xa1\x50\x48\x26\x8d\x14\xdd\x23\x45\x38\x9c\x97\x86\x8b\x30\xa5\x9e\xbb\x17\x4c\x39\x29\xce\xd3\xd7\x8e\x41\x15\x00\xff\xbf\xc0\xd7\x53\x49\x95\xe8\xfc\x17\x8f\x61\x2b\x78\xe8\x6b\x93\x9a\x9a\x1a\x30\x18\x0c\x98\x61\x18\xa8\xaa\xaa\x02\x00\x80\x44\x22\x01\x84\x10\x48\x26\x93\xe0\xf7\xfb\x09\xc6\x18\x08\x29\xe8\xdd\xdb\x75\xfb\x87\x8e\x61\x61\x6b\xad\xe5\xfb\x96\x72\x8a\xf2\xfd\x49\x39\x1f\x96\xd3\xa5\xd5\x6a\x71\x5d\x5d\x1d\xb8\xdd\x6e\xa8\xae\xae\xc6\x56\xab\x95\xe5\xb1\x86\xd7\xcb\x8c\x45\x27\x63\x07\x2f\x33\x16\x96\x00\x0f\x00\xa0\x60\x2a\x88\x1a\x12\x13\x34\x24\x90\xe2\xd4\x88\xa8\x48\x62\x24\x1a\x55\xfc\x7e\x3f\xf1\xfb\xfd\xb0\xb4\xb4\x04\x92\x24\x95\x2b\xf0\x4e\xbe\xe5\x9e\x31\x3b\xf9\xa0\xfb\x76\x78\x2c\xcb\x42\x63\x63\x23\xb4\xb5\xb5\x61\xb7\xcb\xcd\xd9\xd3\x5c\xbd\x37\xcc\x3f\xe9\x8e\x71\x03\xd5\x09\xae\xc7\x24\x32\x4d\x1a\x82\x4c\x00\xc0\x6e\x64\x63\xe3\x37\x05\xc8\xfe\x56\x64\x86\x46\x62\x5a\x65\x76\xdd\x28\x8f\x2d\x9b\xd2\x17\x7d\x96\xf4\x85\x00\x97\x5e\x58\xf1\xaf\x48\xd3\xd3\xd3\x64\x76\x76\x16\x54\x55\xdd\x21\x7b\x0f\x26\xe8\x61\x2b\x34\x18\x0c\xb8\xab\xab\x0b\xda\xda\xda\xb8\x1a\xb5\xaa\xb1\x7d\x4d\xff\xed\xd6\x75\xfd\x4b\x56\x81\xed\x42\xb4\xc2\x2e\x8d\x10\x00\xa5\x5b\x92\x29\x02\x25\xac\x57\x46\xa7\xaa\x85\xf7\x27\x9c\xc2\x2f\xfc\x38\x31\x3f\x39\x39\x29\xdd\xbc\x79\x13\x04\x41\x28\xd7\x4d\x1e\x48\x1e\x5a\x05\x69\xb5\x5a\xdc\xdf\xdf\x0f\xed\x6d\xed\xfc\xae\x98\xfe\xf1\x3e\x9f\xf1\x3f\xd4\x87\xf9\xe3\x08\x10\x07\x34\xcf\xd2\x4e\xe7\xf9\x7f\x4b\xe5\x36\x93\x4e\x31\x95\x16\x2c\xe2\x47\xc3\xde\xf8\x9b\x77\x4d\xc2\xd0\xe8\xcd\x9b\xe2\x95\x2b\x57\x8a\x5d\xc3\x76\xd7\x15\x61\x50\xde\x0d\x80\x42\x0e\x04\x25\xee\x95\x54\xd4\xde\xde\x8e\x07\x06\x06\xb8\x86\xb4\xb1\xff\xe0\xac\xe5\x3b\x75\x51\xee\x29\x44\x11\xa6\x08\x00\x01\x05\x0a\x28\x63\x68\xf3\x9c\x02\x05\x44\x11\x14\x63\x0a\xea\x8c\xe6\xa5\xa2\xac\x86\xc2\x8c\x53\xa0\x64\xc9\x9c\x3e\x7b\xbe\x29\xfa\xdd\xbb\x9a\xe8\xc8\x95\xab\x57\xa5\x89\x89\x89\xfc\x32\xe6\xfb\xcd\x4a\x7c\x6b\x01\x66\x3b\x1f\x54\x8e\xd0\xe5\xae\xf5\x7a\x3d\x1c\x3e\x7c\x18\x37\x3b\xbd\xae\x83\xb3\xe6\xbf\xee\xf0\x57\xfd\x21\xce\x8e\x8c\x14\x01\xa0\xfc\xe2\x94\x38\x2f\x8b\xc9\x93\x02\x4c\x19\xa1\x08\x08\xa2\xca\x2d\x57\xf2\xc7\x17\x9a\x22\xaf\xcf\xf8\x17\xd6\x3e\xfb\xec\x33\x22\x8a\x62\xb9\x27\x2a\xf6\xad\x0c\x94\xef\x66\xb4\x84\x92\x1c\xd6\xe3\xf1\xc0\x73\xcf\x3d\xc7\xed\x03\xf7\x91\x17\x6f\x56\xbf\xeb\x8d\xf2\x4f\x03\x20\x8c\x00\x01\xcd\xc2\x10\x82\x8d\xeb\x8d\x47\xb3\xe7\x85\x98\x4d\x63\xb4\xc0\x10\xca\xb8\x21\xb4\x71\x85\xb2\xcf\x6c\x1e\xf9\x18\x04\x08\xd7\x24\xb9\xfe\xb6\x35\xfd\x4b\x52\xad\x6e\xdc\xb6\xc7\x3b\x3f\x31\x31\x41\x69\x09\x5f\xb6\x4d\x99\xb7\x60\x58\x28\xcf\x01\xa0\xdc\xbd\x3d\x7b\xf6\xe0\x27\xbe\x71\x50\x7f\x60\xd1\xfc\xe7\x8f\xde\x35\xfd\x35\xa2\x88\x2b\xf9\x74\x7e\x7f\x81\x8d\x6e\x95\xd2\x10\x61\xc5\x94\x5e\x58\x35\xca\xf3\x41\xbd\xec\x8b\xf3\x8a\x5f\xd4\x90\xb0\x82\xa9\x04\x00\xc0\xaa\x88\xd7\xc9\x8c\xd5\x94\x66\x5c\xb6\xa4\xa6\xde\x15\xe7\x1a\xdd\x31\xce\xa3\x55\x30\xbf\x51\x21\x99\x02\x23\x54\xd4\xe0\x28\x50\x8a\xc0\x94\x66\x9b\x7a\x97\x8c\x7f\xb1\xd8\x29\x5e\x71\x3a\x9d\xb1\x95\x95\x95\x07\x72\xde\xd9\x51\xa5\x94\x03\xcb\x97\xdc\xfd\x03\x07\x0e\xe0\x47\xba\xf7\xd9\x8e\x4c\xda\x7e\xd0\xbe\xa6\xff\x3d\x94\xd7\x35\xb2\xe7\xb9\x3a\xc9\x94\x21\xa5\x21\xc2\xa4\
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon72x72PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticAppleTouchIcon72x72Png,
|
|
|
|
"ui/static/apple-touch-icon-72x72.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon72x72Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAppleTouchIcon72x72PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/apple-touch-icon-72x72.png", size: 7289, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticAppleTouchIcon76x76Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x5f\x1f\xa0\xe0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x4c\x00\x00\x00\x4c\x08\x06\x00\x00\x00\xc7\x97\x51\x2b\x00\x00\x1f\x26\x49\x44\x41\x54\x78\x9c\xed\x7c\x79\x70\x5b\xc7\x99\xe7\xaf\x1b\xef\x01\x0f\x07\x01\x10\x20\x48\xf0\xa6\x48\x8a\x14\x49\x89\xa2\x2e\x4b\xb6\x15\x5b\xbe\x64\x5b\x9a\xd8\x1e\x27\x93\xcd\x1e\x55\xa9\x6c\x65\x6a\xcf\xa9\xd9\x54\xca\x35\x7f\xa4\xb2\x53\x53\xbb\x99\xa9\xdd\xd4\x26\x95\x64\x77\x6a\xbc\x99\x4c\x36\x33\xc9\x78\x22\x27\x9e\xd8\x8e\x65\xc7\xd7\xc8\xb6\x4c\xdd\x12\x75\x92\xe2\x25\x8a\xa4\x48\x10\x04\x71\xe3\x01\x78\x47\xf7\xfe\x81\x83\x0f\x20\x40\x51\x87\x6b\xfe\xc9\xc7\x7a\x7c\xe8\xeb\xeb\xfe\xbe\xd7\xfd\xeb\xaf\xbf\xee\xf7\x08\x00\x8a\x55\x62\x65\xe1\x72\xba\x5d\xfa\x7a\x54\x5e\xb6\x1a\xaf\x8d\xd4\x71\x2f\xed\xb8\x27\x5e\xe4\x3e\x56\xfc\x3b\xfa\x1d\x6d\x8c\x3e\x8b\x1e\x57\x8d\x27\x05\x00\xb3\xd9\x7c\xaf\x75\xde\xcf\x36\xaf\xcb\xcb\x38\x24\x59\x85\xdf\x95\x70\xa7\x9c\x71\xb5\x3c\x6b\x2a\xa6\x94\xc2\xeb\xf5\xc2\xef\xf7\xc3\xeb\xf5\xc2\xeb\xf5\x52\x97\xcb\x45\x4d\x26\x93\x40\x41\xa8\xa0\x13\x33\xe5\x10\x00\x80\x51\x68\x1a\xe5\x0a\x03\x67\xd9\x6c\x56\x8b\xc7\xe3\x2c\x12\x89\xb0\x60\x30\x88\xa5\xa5\x25\x84\xc3\xe1\x4a\x75\x1b\xdb\x50\x2d\xbe\x62\xdb\x36\xca\xeb\x4e\x31\xec\x8e\xc1\x96\x52\x8a\xb6\xb6\x36\x74\x75\x75\xa1\xa9\xa9\x49\xa8\x31\xdb\x6c\x75\x29\xb1\xbb\x21\x61\xde\x5d\x97\x12\xb7\xb9\x65\xa1\xdb\x99\x15\x5a\x2c\x1a\x75\x0b\x3a\x71\x10\x40\x00\xc0\x38\xe1\x9a\x46\xb9\x9c\x16\x59\x28\x2e\xe9\xf3\x51\xab\x3a\xbe\x6c\x57\x2f\x2f\x39\x95\xb3\x2b\x36\x75\x26\x91\x4e\x65\xe6\xe6\xe6\xb4\xc9\xc9\x49\x2c\x2e\x2e\x82\x73\x7e\x27\xcd\xba\x6b\xfa\xcc\x40\xbf\xa6\xa6\x06\xfd\xfd\xfd\xe8\xe9\xe9\x11\xdc\x82\xcd\xd3\xb9\x62\x7d\xb2\x3b\x64\xfb\x7c\x73\xcc\xbc\xdf\xa2\xd1\x26\x02\x52\xb5\x2c\xcf\x37\xac\xfc\x9e\x4b\xe3\x4c\x16\xd9\xec\x5c\x6d\xe6\xd8\x64\x5d\xfa\xcd\x19\x4f\xe6\xe3\x88\x1c\x8f\x8f\x8d\x8d\x69\xd7\xae\x5d\x43\x36\x9b\xfd\x2c\xc4\x29\x52\xf5\x56\xdf\x25\xb9\x5c\x2e\xba\x73\xe7\x4e\x74\x75\x75\x49\x8d\x49\x69\x70\xfb\x82\xe3\x0f\xbb\x43\xd6\x17\x44\x9d\x7a\x6e\x5f\xda\xa8\x9a\x8d\xa4\x73\x64\x05\x16\x18\xab\x97\x8f\x5c\x6a\x4a\xfe\x38\x20\xca\xe3\xe3\xe3\xe3\xca\xf0\xf0\x30\xab\xc6\xe1\x5e\xa9\xbc\x75\x05\xdc\x5a\xef\xb7\x31\x2f\x8c\xf1\xfb\xf6\xed\xa3\xfd\xfd\xfd\xe6\xb6\xa4\x7d\xdf\xbe\x9b\xce\x97\x5a\xa3\x96\x67\xc8\x9a\x1e\x5c\xe8\x33\xeb\x35\x29\x97\x5e\x49\x7d\x25\x71\x86\x00\x03\x94\x69\x6f\xfa\xb5\x93\x1d\xf1\xff\xb5\x68\x91\xaf\x8c\x8c\x8c\x28\x17\x2e\x5c\xa8\xa6\xb8\x4a\xf2\x54\x4a\x5f\x93\xaf\x1a\xe8\xc3\x10\x87\x75\xf2\x30\x00\xb4\xad\xad\x0d\xfb\xf7\xef\x17\x9a\x4c\xae\xce\xcf\x4d\xbb\xff\xb4\x2b\x64\xfd\x22\x05\x11\x0a\x32\xdd\x8e\x56\x87\x1b\x2a\x75\xa2\xb5\x99\x2a\x8d\xd7\xfc\x9d\x11\x9e\xb9\xe6\x4f\xfd\xbf\xe1\x8e\xd8\x5f\xdc\x4a\x86\x16\x8e\x1d\x3b\xc6\x42\xa1\x50\x79\xdb\x37\x8a\xc5\x6b\xca\x98\x0c\x4d\xa9\x34\x16\x48\x85\xe6\x17\xc3\x94\x52\xf2\xe0\x83\x0f\xe2\xa1\x7d\x0f\x3a\xf6\x84\xbc\xff\xf6\xf0\xb5\xba\xbf\xab\x4f\x99\xf7\x10\x10\x5a\x10\x94\x80\x83\x10\x80\x20\x87\x5a\x84\x73\x10\x42\x8a\x8c\x09\x38\xc0\x09\x40\x56\x2b\xcb\xe5\xe7\x20\x9c\xe4\xee\x85\xb2\xe0\xf9\x74\x63\x3c\x5f\x0d\x13\x80\x72\x08\x0d\x09\xcb\xee\xbe\x25\xfb\x1f\xe8\x6e\xf1\x56\xdd\xce\xae\x29\x45\x51\xb4\x60\x30\x48\xf2\x42\x97\xcb\xc4\x50\x59\x76\xa3\x4e\x0a\x1d\x87\x98\xf2\x4a\xd8\xe8\x55\x50\x1a\x77\x38\x1c\xe4\xd9\x67\x9f\xa5\xfd\xcd\x5d\xad\x87\x47\xeb\xfe\xef\xd0\x2d\xc7\xd7\x4d\x9c\x58\x8b\x0f\x3b\x5f\x55\x5e\x17\x25\x1d\x85\x1b\x9a\xc7\x01\x26\x9b\x59\x3a\x6a\xd3\x56\x42\x76\x35\xb8\x62\x57\x97\xa3\x36\x6d\x25\x69\xd1\x13\xaa\xc0\x14\xc2\x89\x49\xe0\xb9\xde\x5a\xe9\xd1\x92\xfc\x3f\x4e\x56\xa7\x11\x0e\x40\xd4\x89\x73\x73\xc8\xf6\x62\x8d\x2a\xb8\x95\x41\xef\xb1\x99\x99\x19\x2d\x9d\x4e\xaf\x2b\xd3\x6d\xe4\x06\x00\x2e\x54\xd1\xec\xba\xe4\xf1\x78\xe8\xd3\x4f\x3f\x2d\x74\xc2\xb3\xfb\xf7\xce\xd7\xfd\xd4\x99\x11\xba\x0d\x0a\x00\xc0\xf3\x7d\x21\x17\x61\xac\x51\xa7\x9c\x05\x6a\x94\xf9\x9b\x9e\xcc\xd8\x82\x33\x3b\xb6\x62\x57\x27\x32\x22\x0b\x70\x20\x09\xf0\x0c\x07\x34\
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon76x76PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticAppleTouchIcon76x76Png,
|
|
|
|
"ui/static/apple-touch-icon-76x76.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIcon76x76Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAppleTouchIcon76x76PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/apple-touch-icon-76x76.png", size: 8031, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticAppleTouchIconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x99\x55\x50\xd4\x8f\xf7\xfe\xdf\xb0\x94\xc4\x4a\x0a\xea\x82\x4b\xc9\x52\xee\xd2\x0b\x48\x37\x88\xec\xd2\x08\xd2\x88\x0b\x12\x4b\x4a\x23\x8a\x48\x48\xb7\x20\x2d\x0d\xd2\x88\xb4\x20\x20\x25\xdd\xb5\x74\x4b\xf7\xf2\x9f\xcf\xe5\xff\xe2\x77\xf7\x9d\x33\x67\xe6\xdc\xbc\xe6\xcc\x9c\x8b\xf3\x3c\x33\x4f\x28\xea\xb9\x0a\x15\xf9\x03\x72\x00\x00\xa8\xd4\x54\x15\xb5\x01\x00\xa8\xfe\xaf\xc9\x08\x01\x00\xa8\x2c\x8f\xb1\x01\x00\x80\xc8\x56\x4e\x53\x0e\x00\x2a\xa2\x28\xae\x2d\x88\x01\x00\x80\x5a\xa9\x6a\x6b\x02\x80\xf7\x63\x00\x08\xfc\x00\x00\x97\x00\x00\x04\x6e\x00\x80\x3b\x02\x00\xb6\xcc\x01\x40\x22\x19\x00\x18\x9d\xd3\x1a\xd0\x4f\x01\x00\x20\xb1\xd4\x50\x51\x04\x6e\xff\xab\xcc\xa6\xfc\x38\x00\x00\x48\xdd\xd4\x34\x95\x48\x97\x40\x8f\x00\x5e\x1a\xf9\xf1\x20\x62\x00\x60\xc1\xab\x29\xca\xe9\xbe\x9d\xde\x4d\xf7\x7c\x0b\x59\xf7\x5b\x5f\x4f\x6f\x6e\xb2\x18\xba\xa7\xc8\x2a\x1b\x48\xa4\x1a\x0d\x7c\x21\xab\x08\xed\x4c\x84\xa1\xb5\xad\x55\xf4\xad\x35\x42\x39\x3b\xb9\xa5\x25\x23\xd3\x25\xd7\x59\xd6\x21\xc6\xcd\xe7\x43\x17\x15\x36\xab\x6f\x34\x12\x99\xb9\xb8\xb8\x62\x4d\x38\x8c\xf5\xb3\x5e\x8b\x68\x13\x49\xb2\xc6\x42\x09\x82\xa8\x80\xa1\xde\x53\x41\x49\xbf\xf9\xab\xf7\x3c\xf4\xef\x5e\xf6\x81\x5f\x09\x50\x38\x4b\x07\x10\xee\xef\x34\x0a\x5d\xcd\xd5\x5d\xcf\x9b\x11\x50\xcb\x77\x74\x58\x4b\xa0\x72\x24\xcd\xb5\xeb\x93\x71\x88\x9e\x4f\xdc\xe0\xb8\x88\xff\xd5\xb0\xa8\xec\x69\x5e\x16\x9d\xd5\x1e\x4e\xce\xde\x7d\xe7\x79\x68\x95\x20\x3b\x4c\xcd\x54\x0d\x4b\x0e\x57\x40\x7f\xcc\x8e\x80\x51\x2f\xc2\x5a\x05\x64\x2d\x0a\x3e\xcb\x3b\x70\xac\x65\xa2\x92\x88\x5d\x51\x05\xe9\xf2\xa5\x1c\xad\x02\x44\x4c\x37\xf4\xae\xbd\x41\x0c\xa4\xf4\x36\xe2\xbf\xc3\x72\xb0\x58\xe4\x63\x93\x50\x32\x10\x0d\xf6\x29\xab\xca\xb0\x4b\x90\xce\x30\x61\xbc\xb5\xa2\x6e\x66\x36\x74\xa4\xc1\xc0\x0a\xc8\x84\x41\x11\xb2\xcb\x05\x9f\xdb\xe7\xee\x35\x76\xc8\xc5\x8b\xf7\xd8\x3d\x32\xda\xe5\x24\x74\x9c\x75\x52\x29\x5d\x09\x9a\x20\x37\x54\x9d\x5f\x47\xe9\xaf\x50\xff\x32\x03\x57\xbe\xb4\xf2\x1d\x44\x2e\x30\x26\xfe\xa6\x23\x67\x97\x35\x1a\x5a\x27\x01\xe4\xb8\x09\x8f\x0c\x43\x95\x1c\x1b\x9a\x93\x4d\x4d\x95\xc5\x12\x69\x09\xce\xe4\x19\xfe\xc8\x53\x93\xd2\x5b\x63\x91\x89\xd2\xe2\xf1\xd2\x02\xad\xee\x51\xe1\xec\x02\xc1\x0c\xeb\x8b\xcd\x80\x82\x40\x54\x42\x09\x7f\x65\xad\xbe\xe1\x84\xde\x10\x15\x67\x72\x57\x43\xb4\xae\x60\x46\x27\xab\x02\x56\xf8\x37\xe4\xa1\xf9\xb4\xcf\x94\x50\xce\xb0\xb5\x76\x1d\x0d\x9b\x27\xea\xa1\xda\xf8\xf9\x1b\x07\x91\x53\xcd\x9a\xe3\x4a\xed\xd1\xe7\xf7\x6f\x3c\xdc\xcc\x4d\xc3\x14\x2c\x88\x6a\x5d\x91\x17\xe3\x4a\x6b\xa8\x0c\x24\x44\x08\x45\xa7\xd3\x96\x26\x3c\xa7\xbb\x36\x39\x64\x3e\xa3\xab\x41\x32\x4b\x26\x1a\xa5\x12\xeb\xf5\x18\xcc\xdd\x87\x20\xbd\xa2\x2d\xf7\xc8\xd3\xa2\xe2\xe5\x9e\xdf\xd8\xb3\x26\x01\x59\x07\x77\x35\x97\xce\xbb\xfb\xd0\x8d\xa1\x28\xc9\xfa\x36\xc0\x18\x8b\xf9\x4f\x0a\xe4\x79\xb1\x4e\x69\x51\x2d\x6e\x1f\xb7\x53\x02\xb3\xdf\xb8\x79\x8e\x06\x31\x4e\xed\x1a\x6f\xcf\x9e\x95\xe4\x1a\xc4\x0f\x4a\x86\xf6\x81\xb0\xdd\x43\x6e\xb8\x28\xa9\x03\x46\xc9\x1f\x5f\xb1\x30\x86\xbf\x94\xd9\x2c\x7d\xf6\xee\x6f\x9c\x9c\x17\x66\x2c\x31\x7c\x5f\x54\xe8\x34\xe5\xc2\x15\x96\x14\xbf\x35\xc1\x0f\x33\xba\xa6\x74\x7e\x1d\xbd\xae\xee\x26\x32\xdd\x71\x9e\xfb\x31\xeb\xe7\x44\x61\xb4\x29\xd2\x00\x2f\x82\xe9\x62\x61\xd1\xdb\xf7\xef\xde\x76\x55\x8c\x4a\x32\x26\x54\x9b\xbb\x39\x1d\x83\xa0\xba\x0e\x31\x67\x6d\xee\x03\x33\xa9\x28\x95\xac\xfd\xd7\xe4\x68\x88\x4b\xc4\xe7\x9b\x32\xa1\xcb\x37\x21\x48\x5a\xa1\x06\xb8\x17\x41\x74\xb2\x9f\x55\xe9\x3e\x85\x43\xe2\x1a\x10\x74\x6f\x8f\x4f\xc7\x1c\x17\x48\x36\x23\x0e\xb9\x54\x93\x74\xcd\x0d\xf8\xfa\x04\x3e\xaa\x10\x2f\xde\x74\xb7\xcc\xd5\xcf\x8e\x61\x2d\xf7\xf3\x5e\xef\x31\x7d\x34\x92\x5e\xf9\xd3\x4d\xb3\xd0\x61\x78\x0e\xce\x70\x76\xa3\xb9\x8f\x26\xb0\x75\xc7\x38\xe9\xbc\xa5\x3a\xa5\x08\x2e\xda\x00\x1f\x71\x2f\x97\xed\x60\x05\x77\x05\xc9\x48\x47\x4f\x8e\x50\x05\x3f\x7d\xf2\x94\x20\x32\x5b\x9f\xb6\x06\x9d\xfc\x45\x79\x97\xde\x2e\x1f\xf5\x30\x38\x96\x29\xc8\x0a\x20\x46\xc5\x66\xc1\x78\x31\x4b\x37\xbf\x66\x88\xe0\xf9\xc8\x60\x9a\x4c\x28\xeb\x85\xaf\x9a\xae\x03\xba\x47\x4c\x1a\x63\x
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIconPngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticAppleTouchIconPng,
|
|
|
|
"ui/static/apple-touch-icon.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticAppleTouchIconPng() (*asset, error) {
|
|
|
|
bytes, err := uiStaticAppleTouchIconPngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/apple-touch-icon.png", size: 8285, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticBaseCssMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x1c\xc7\x72\xdb\x4a\xf2\xee\xaf\x70\xe9\x2a\xd4\xa3\x72\x30\x4f\x3d\x83\x01\x30\x04\x21\x09\xce\xf2\xd6\xd6\x16\x95\x08\x52\x4c\x62\x14\xb5\xb5\xff\xbe\x35\xb9\x01\x0c\x2d\xd9\xcf\xfb\xca\x6f\x4b\x37\xa9\x27\x75\x9a\x4e\xd3\xe0\xbf\xdf\x6c\x2d\x6f\xa7\xb3\xde\x78\xb4\xf5\xee\xed\x7e\xf0\x66\x6b\xd8\x99\x4c\x7a\xa3\xee\x6c\xeb\xdd\xdb\x2d\x00\x80\x80\x03\xa4\x4d\x06\x34\x0c\x66\x04\x60\x46\x02\x06\x40\x83\x2f\x00\x5f\x04\x74\x40\x83\x0f\x00\x1f\x04\x90\x89\xa9\x5c\x00\xef\x82\x14\x20\x0d\x18\x5d\x91\x21\x51\xd0\x26\x84\x53\x52\xd0\x80\x02\x30\x31\x85\x99\x29\xf9\x90\x04\xe7\x00\x2b\xd2\x64\xe1\x45\x11\xca\x8d\xd5\x6e\x31\x40\xdc\x64\xec\x62\x40\x82\x7b\x02\x70\x4f\x02\x16\xe5\x5c\x62\xf1\x40\xc4\xc0\x23\x0d\x6e\x01\x6e\x03\x16\x9d\x23\xf0\xd9\x92\x06\xd7\x00\xd7\x01\x8b\x32\x04\x6e\xcf\x69\xd0\x01\xe8\x04\x2c\x4a\x11\xb8\x35\xa2\xc1\x27\x80\x4f\x01\x8b\xb8\x03\x03\x7b\xa2\x02\xab\xbc\xc9\x81\xb6\xf4\x29\x96\x42\x0e\x74\x4a\x34\xfe\x02\x78\x2e\x90\x6b\x32\x88\x8f\x49\x90\x03\x7c\x10\x13\xda\xe5\xf1\xf3\x26\x07\x76\x23\xf0\xca\x9b\x99\xd8\x52\x53\xdf\xfe\xa2\x89\x6f\x42\xf8\x69\x12\x22\x66\xeb\x09\xdf\x14\x7b\xce\x9b\x2c\xec\x34\x48\xd0\x25\x00\x5d\x12\x30\x3a\x21\xb9\x82\x37\x21\x5c\x90\x91\x14\xc8\xa5\x58\xf9\xfe\x7b\xf2\xd8\x25\x66\xbb\x26\x84\x47\x62\x59\x0a\x90\x89\x29\x91\x99\xd2\xc0\x22\xbb\xa7\x05\x95\xcc\x1f\x92\xd2\x3e\x13\x8a\x26\x2d\xc4\x24\x26\x85\x05\xd4\xf0\x5e\x1c\x2f\x10\x11\xb0\x27\x52\x93\x2a\xd0\xc2\x70\x90\x3e\x52\x84\xd4\x1e\x1d\xc9\x2d\x6e\xc5\x9c\xaf\x68\x33\xb3\x6e\x44\xfc\x27\x08\xce\x30\xc1\x79\xab\x59\x0d\x7a\x6b\xb7\x1d\x86\x23\x2a\xb6\x90\xec\x00\xc7\xc6\x69\x98\x6b\x2e\x85\xb3\xf0\x10\x0b\x35\xd5\x92\xf8\xe6\xc7\xbd\xc2\xe4\x26\x40\x3c\x22\x88\x9b\x95\x45\x62\x7c\x42\x82\x4c\x4a\x12\x68\x62\x70\x2c\x98\x63\x24\x6b\x17\x14\xcd\xb8\x04\xb8\x2c\x1f\xdb\x27\x1a\x18\xa5\x97\x5a\x29\xe8\x59\x9f\xda\xdb\x41\x19\x0f\x7a\x14\xa0\x4b\x9b\x2c\x0c\x47\xa1\xd6\x5b\x4a\x11\x18\x06\xa1\xe6\x1f\x05\x04\xa6\xfd\x50\xdf\x0e\x1a\x22\x30\x3b\x35\xb7\x83\x46\x0e\x0c\x6c\x12\x06\x0f\x44\x08\x89\x0b\x21\x09\x54\x14\xa6\xb9\xbe\x32\x7d\xa7\xa9\x02\x2c\x8d\x05\x07\x7a\x4c\xaa\x54\x71\x4c\x55\xa4\x55\x9a\xb1\xb4\x41\xfc\x07\xa8\x5d\x05\xf4\xa9\x26\x03\xee\x14\x34\xfa\xa8\x45\xcf\xd9\xa7\x7d\x23\xd5\xe8\xdb\xad\x9e\xc8\x3a\x8f\x44\x93\x8b\x31\x19\x10\x74\x92\x06\xb2\x6f\xc1\x1e\x11\x52\xcd\x84\x54\x2b\x27\x66\xe2\xc4\x8a\x36\x66\x3e\x7d\xcf\xa4\xce\xbc\x04\xc8\x81\x4f\x48\x70\x42\xf4\x56\x17\x68\x7b\x4d\x64\x3c\x27\x52\x12\x97\x62\xfc\xbd\x16\x0f\xde\xf4\xae\xaa\xc5\x99\x47\x8b\x33\x74\x03\xa3\x06\xf9\xa2\xd8\x95\xb1\x2e\x5d\xd6\x18\xcb\x20\x5d\x6e\x90\xc7\xad\x86\x3d\x7e\x57\x1a\x8f\xd4\x8a\x63\x4d\x9d\x3c\xf6\xa9\x15\xc8\x01\xf5\x49\x84\x0d\xc8\x73\xdc\xaf\xb1\x4f\x5c\xb3\x5f\xcc\x9e\x69\x68\xd9\x33\x0b\x7d\xec\xe1\x4b\xe5\xa2\x2e\x05\xd5\xef\xfd\xec\x19\x4b\xfb\x94\x09\xfb\xe4\xa3\x43\x1f\xf5\x44\xbf\x18\x96\xec\x89\x55\x82\xe9\x12\x9b\x9a\x9b\xe5\xc0\x46\x8a\x3b\x52\x51\xda\xfe\xf1\x23\x02\xd0\x11\xe3\x1f\xab\x8a\xc4\x80\x1f\x92\xa0\x47\xf4\xd5\xbc\x40\x5c\x31\xf2\xfb\x2a\xac\x51\x86\x61\xe1\x20\x42\xde\x98\x0e\xa3\x3c\x38\x20\x00\x7b\x44\x0d\x59\x8b\x73\x8f\x07\xfa\x51\xdf\xda\x9c\x1e\x1e\x28\xa2\xc2\x5a\x9d\x2e\x1e\x68\xb0\x63\x6b\x77\xb6\x99\x1d\x60\x10\x8f\x42\x89\x72\x47\xa0\xf7\x31\x18\x4a\xcf\x54\x32\x92\x5c\xb3\x5a\x5e\x68\x8a\x08\xa0\x00\x54\xad\x5a\x38\x9e\x56\x86\x25\x9f\x2a\x30\x06\x7c\x4a\x24\x06\x33\xa2\x8d\x84\x8f\x53\x2f\xe1\x9e\xd0\x33\x67\xff\x0c\xac\x64\x75\xb4\xd7\x89\x35\x97\xaf\xc5\x84\xcf\x3e\x3a\xe3\x43\x22\x09\x19\x12\x75\xd3\xdc\x59\x3a\xda\xa0\x77\x25\x13\x7c\x0e\x70\x64\x38\xd8\x91\x31\x4a\x38\x49\xbe\x3a\x51\xae\x93\x3c\x58\x11\x80\x85\xe0\xff\x63\x72\x6a\x42\x2b\xba\xc2\x03\xcb\xe4\xd8\x38\x78\xba\xc0\x03\xf3\xe4\xd0\x84\x57\x74\x86\x07\xa6\xc9\x93\x15\xe5\x03\x1a\x00\xba\x4f\x8d\xdd\x3f\x8c\x73\x1d\x05\x71\xb6\x88\x0f\xa9\x34\x7f\x5d\xa2\x2e\xa6\x9e\xf3\x18\x73\x3b\xe7\x44\xcc\x59\x49\xcd\xcd\xc2\xc3\xa4\x8f\x34\xf2\x28\xb1\xda\x22\x86\x9c\x46\x1e\xe0\x81\xfd\xc4\x69\xe4\x1e\x1e\xd8\x4d\x9c\x46\xee\xe0\x81\
|
|
|
|
|
|
|
|
func uiStaticBaseCssMapBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticBaseCssMap,
|
|
|
|
"ui/static/base.css.map",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticBaseCssMap() (*asset, error) {
|
|
|
|
bytes, err := uiStaticBaseCssMapBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/base.css.map", size: 18908, mode: os.FileMode(436), modTime: time.Unix(1496947000, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticBootstrapMinCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5d\x8f\xe3\x38\x92\xe0\xfb\xfc\x0a\x4d\x35\x0a\xdd\xd5\x65\xa9\xe5\xcf\xf4\x07\x3a\x31\x7b\xb3\x8b\xbb\x01\x76\xf6\xe5\xe6\x61\x81\x9e\x3a\x40\x96\x68\x5b\xd3\xb2\xa4\x95\xe4\xac\xac\xf6\xfa\xbf\x1f\xf8\x1d\x24\x83\x92\xec\xca\x6a\xdc\x01\x33\x89\xe9\xca\x64\x04\x83\xc1\x88\x20\x23\x48\x91\xc1\x9f\x7e\xfc\xe3\x1f\x82\x1f\x83\xff\x51\x55\x5d\xdb\x35\x49\x1d\xbc\xcc\xa3\x69\x34\x0d\x7e\x38\x75\x5d\xbd\xfd\xe9\xa7\x23\xe9\xf6\x12\x16\xa5\xd5\xf9\x03\xc5\xfe\x73\x55\x7f\x69\xf2\xe3\xa9\x0b\x66\xf1\x74\x1a\xce\xe2\xe9\x22\xf8\xdb\xe7\xbc\xeb\x48\x33\x09\xfe\x52\xa6\x11\x45\xfa\xf7\x3c\x25\x65\x4b\xb2\xe0\x52\x66\xa4\x09\xfe\xfa\x97\xbf\x71\xa2\x2d\xa5\x9a\x77\xa7\xcb\x9e\xd2\xfb\xa9\xfb\xbc\x6f\x7f\x52\x4d\xfc\xb4\x2f\xaa\xfd\x4f\xe7\xa4\xed\x48\xf3\xd3\xbf\xff\xe5\xcf\xff\xf6\x1f\xff\xfb\xdf\x68\x93\x3f\xfd\xe1\x0f\x3f\xfd\xf8\xc7\xa0\xac\x9a\x73\x52\xe4\xbf\x91\x28\x6d\x5b\xca\x6a\x1c\xc5\xc1\x7f\x33\xda\xa2\xb9\xe0\xbf\x83\x63\xde\x45\x79\xf5\x93\xc2\x0d\x7e\xfc\xe9\xd4\x9d\x8b\xeb\xa1\x2a\xbb\xf0\x90\x9c\xf3\xe2\xcb\xb6\x4d\xca\x36\x6c\x49\x93\x1f\x76\xe1\xb9\x0d\x3b\xf2\xda\x85\x6d\xfe\x1b\x09\x93\xec\x1f\x97\xb6\xdb\x4e\xe3\xf8\xfd\x2e\xfc\x4c\xf6\xbf\xe6\x1d\x0e\xbd\xed\xab\xec\xcb\xf5\x9c\x34\xc7\xbc\xdc\xc6\xb7\xa4\xe9\xf2\xb4\x20\x93\xa4\xcd\x33\x32\xc9\x48\x97\xe4\x45\x3b\x39\xe4\xc7\x34\xa9\xbb\xbc\x2a\xe9\xaf\x97\x86\x4c\x0e\x55\x45\xa5\x74\x22\x49\x46\xff\x39\x36\xd5\xa5\x9e\x9c\x93\xbc\x9c\x94\xc9\xcb\xa4\x25\x29\x43\x6e\x2f\xe7\x73\xd2\x7c\xb9\x66\x79\x5b\x17\xc9\x97\xed\xbe\xa8\xd2\x5f\x6f\xc9\x25\xcb\xab\x49\x9a\x94\x2f\x49\x3b\xa9\x9b\xea\xd8\x90\xb6\x9d\xbc\xe4\x19\xa9\x14\x66\x5e\x16\x79\x49\x42\x56\x61\xf7\x42\x28\x57\x49\x11\x26\x45\x7e\x2c\xb7\xfb\xa4\x25\x14\xca\x09\x6d\xcb\xaa\xfb\xe1\x97\xb4\x2a\xbb\xa6\x2a\xda\x4f\x1f\x14\x89\xb2\x2a\xc9\xee\x44\xa8\x7e\xb7\xf1\xed\x97\x53\x9e\x65\xa4\xfc\x34\xe9\xc8\xb9\x2e\x92\x8e\x18\x78\xb7\xe4\xba\x4f\xd2\x5f\x69\x37\xca\x6c\x1b\x07\xf1\x2d\xd9\x26\x69\x97\xbf\x90\x49\xb2\x3d\x55\x2f\xa4\xb9\x56\x97\x8e\x36\x4a\x65\xb4\xdf\x37\xbf\x74\x79\x57\x90\x4f\xd7\x7d\xd5\x64\xa4\x09\xf7\x55\xd7\x55\xe7\xed\xb4\x7e\x0d\xb2\xaa\xeb\x48\x76\xdb\x4f\xda\xae\xa9\xca\x23\x57\xd7\x67\xce\xc6\x53\x1c\xdf\xb2\x43\xc9\xcb\xda\xee\x4b\x41\xb6\x79\x97\x14\x79\x7a\x3b\x4d\x45\x61\xfe\x1b\xd9\xce\xc8\x79\x27\x34\x12\xad\x9e\xc8\x39\x88\x6f\xe7\xa4\xf9\x15\xb2\xf8\xdd\xe1\x10\xef\xd2\xaa\xa8\x9a\xed\x77\x71\x1c\xdf\xda\x73\x52\x14\x80\xc4\x3a\x7e\x7f\x6b\x2f\xfb\x49\x7b\xa9\x41\xe9\xd3\xf2\xfd\x8e\xc9\x55\x8a\x65\x57\x57\x6d\x4e\x55\xb5\x6d\x48\x91\xd0\xfe\x7a\x85\x4d\x29\x75\x55\xbd\x0d\xa3\x25\x39\x53\xda\x57\xd1\xe9\x30\x9a\xd1\x92\xfc\x7c\x14\xd2\xd8\xc6\xb7\xf6\xe5\xc8\xf4\xb2\x6d\xaa\xaa\xfb\x70\xa5\x02\x3c\x14\xd5\xe7\x2d\x57\xc2\x8d\x1b\x91\xb4\xba\x29\x39\x07\x8b\xb8\x7e\xbd\x9d\x9a\x6b\x78\xae\x7e\x0b\xf7\xd5\x2b\xe5\x37\x2f\x8f\x5b\xaa\x57\x52\x76\xb4\x68\xe7\x29\x56\x2a\xae\x1b\xa2\x5b\x4a\x2e\x5d\x75\x4b\xab\x8c\x4c\x7e\xdd\x67\x93\xba\x21\x93\x36\x39\xd7\xc6\xe0\x39\x57\x65\xd5\xd6\x49\x4a\x26\xea\xb7\x9d\x96\xd5\x94\x9c\x6f\xfb\x4b\xd7\x55\xe5\x24\x2f\xeb\x4b\x37\xa9\xea\x8e\x9b\x79\x4b\x0a\x92\x76\x13\x3a\x9c\x92\x86\x24\x57\xae\x86\xbc\x3c\x91\x26\xef\x18\x05\xf5\x87\x1a\x57\x9c\x92\x66\xef\x25\x6f\xf3\x7d\x41\x64\x0b\x9c\xe4\x95\x8d\xd0\xae\x49\xca\xf6\x50\x35\x67\x6e\x99\x02\x83\x0e\xfd\x80\x31\xf2\x4b\xf7\xa5\x26\x3f\xf3\xe2\x4f\x13\x50\xd4\x90\x96\x74\x46\x49\x7b\xd9\x9f\xf3\xee\xd3\x55\xce\x00\x49\x5d\x93\xa4\x49\xca\x94\x6c\x79\xfd\x5d\x7a\x69\xda\xaa\xd9\xd6\x55\x5e\x76\xa4\x11\x8d\xfd\x92\xe5\x6d\xb2\x2f\x48\xf6\x09\x36\xab\x0a\xaf\xa2\x52\x46\x0e\xc9\xa5\xe8\x44\xa5\xed\x96\xe9\xee\x50\xa5\x97\x36\xcc\xcb\x92\x34\x9c\x13\xb7\x5c\x99\xc9\xae\x4e\xb2\x8c\xaa\x33\xbe\x31\xd4\x2b\xb4\x4d\x3e\xef\xdd\x40\x6f\xd2\x13\x49\x7f\xdd\x57\xaf\x66\xa7\x93\x2c\xaf\xe8\x38\x54\xb6\xa1\x86\xe4\xab\x4d\x9f\xd7\x28\x2f\xe7\x3d\x69\x3e\x6d\xb7\x52\x2a\x8c\xa9\xb0\xad\xf3\x32\x84\x0a\xf7\x60\x57\x97\xce\xc4\xbe\x0a\x86\x99\xc5\x41\xe1\x93\xa4\x49\x4f\xa8\xf0\xa9\x9e\x0f\x39\x29\xb2\x5d\x9f
|
|
|
|
|
|
|
|
func uiStaticBootstrapMinCssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticBootstrapMinCss,
|
|
|
|
"ui/static/bootstrap.min.css",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticBootstrapMinCss() (*asset, error) {
|
|
|
|
bytes, err := uiStaticBootstrapMinCssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/bootstrap.min.css", size: 90287, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticConsulLogoPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61\x97\x1a\x
|
|
|
|
|
|
|
|
func uiStaticConsulLogoPngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticConsulLogoPng,
|
|
|
|
"ui/static/consul-logo.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticConsulLogoPng() (*asset, error) {
|
|
|
|
bytes, err := uiStaticConsulLogoPngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/consul-logo.png", size: 58433, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticFavicon128Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\x
|
|
|
|
|
|
|
|
func uiStaticFavicon128PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticFavicon128Png,
|
|
|
|
"ui/static/favicon-128.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticFavicon128Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticFavicon128PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/favicon-128.png", size: 11154, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticFavicon16x16Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00")
|
|
|
|
|
|
|
|
func uiStaticFavicon16x16PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticFavicon16x16Png,
|
|
|
|
"ui/static/favicon-16x16.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticFavicon16x16Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticFavicon16x16PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/favicon-16x16.png", size: 821, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticFavicon196x196Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x33\x40\xcc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\xc4\x00\x00\x00\xc4\x08\x06\x00\x00\x00\xc0\xa6\x8e\x6b\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\x79\x70\x1c\xc9\x79\x2f\xf8\xfb\xb2\xab\xab\x0f\x34\x1a\x0d\x10\x00\x41\x00\x3c\x40\x82\xe7\xf0\x1e\x0e\x87\xa4\x24\x8a\xe6\x68\x34\x1a\xcd\xe8\xb2\xa5\x99\xb1\xf6\xf9\x59\xf2\xc1\x75\xec\x0b\xaf\xd7\xe1\xb5\x23\x14\x2f\x1c\x1b\x1b\xbb\x2f\x76\xbd\x11\xf6\x86\xe3\xc5\x5b\xbf\x08\xaf\xec\x90\xe4\xd0\x61\xeb\xd6\xe8\x9e\xd1\x9c\x1a\x6a\x0e\xce\x90\x43\x72\x86\x37\x41\x10\x04\x01\x10\x67\xa3\xd1\xe8\xae\xae\xca\xdc\x3f\xaa\xb2\x2a\x2b\xbb\xaa\xbb\xc1\xa1\xe2\xd9\x9b\x11\x40\x57\xe5\xfd\x65\x7e\x77\x1e\x05\x44\x07\xe6\xfd\x21\xe2\x37\x2a\xaf\xfe\xac\xc7\xe9\x65\xe3\xea\x6a\x25\x44\xb5\xd7\x28\xcf\xbd\xac\xbf\x95\xb6\x9b\xd5\xad\x8f\x47\x23\x18\x9a\x8d\x67\x54\x59\xbd\x8d\x38\x18\xa2\xe6\xa5\x51\x3f\xa3\xfa\x11\xd7\x87\x66\x7d\xfd\x37\x03\xc3\x7b\x41\xa4\x7b\x5d\xe7\xdd\x20\x7b\xdc\xe0\xae\xb4\xbd\xbb\xa9\x67\xa5\xc8\xf2\xaf\x3d\xbc\x97\xb1\xfc\xd7\x12\x56\x0c\x83\x11\x93\x51\x7d\xe6\x31\x71\x4c\xf9\xd5\xe3\xa0\x3d\xc7\xd5\xab\x77\x8e\x47\x3c\x47\xb5\x13\x55\x5f\xb3\xbe\xeb\x7d\x51\xf3\x46\xd5\x19\xd5\xb7\x66\xfd\x95\xed\x70\x2d\x5d\x1f\xa3\x46\x75\xea\xf1\xcd\xc6\x3a\xae\xee\x46\xf5\x37\x0b\x2b\x19\xe3\x56\xda\xfe\xb7\x0a\xc3\x8a\x42\x1c\x01\x35\x6b\x3c\x4a\x15\x6b\x24\xda\x5a\xa5\xf2\x28\x31\x1a\xf7\xdb\xa8\x2f\x71\x7d\x6b\xa5\xde\x95\xd4\xdf\x4a\xde\x46\x6d\xc6\x85\xa8\x72\x71\xf5\xb4\x22\x85\x5b\xed\x4f\xa3\x36\xfe\x2d\xc1\xb0\xa2\x4e\xb5\xda\x70\x2b\xf5\xc6\xd5\x11\xd7\xc1\x56\xcb\x34\xcb\x13\x17\xd7\x0c\xa9\xf5\x7e\x35\x22\xf2\xa8\xb8\x56\xe0\x8e\x8b\x6b\x16\x5a\x19\xaf\x46\x79\xef\x45\xdb\xf7\xaa\x9e\x7f\x2d\x30\x34\xcd\xd8\x0a\x35\x35\xaa\xb8\x55\xee\xd0\x4a\x5d\x51\x79\xee\x25\xc1\x36\xeb\xc7\xdd\xc0\x10\x57\x4f\x2b\xed\xb5\x1a\x56\x52\x76\xa5\xed\xb4\x32\xbe\x77\x5b\xf7\xdd\x96\xfd\xb5\xc0\xb0\x12\x04\xd7\x27\x58\xe7\xae\x7a\x3c\x22\x9e\xf5\xb8\xb8\xf7\xb8\xf6\xa2\xea\x69\x45\x34\xc7\x95\x69\x96\x3f\xae\x4f\x51\x30\x36\xaa\xbb\x51\x1d\xcd\x60\x8b\x6a\xaf\x51\x5f\xa2\xca\xc7\xf5\x21\xea\xf9\x6e\xc6\xb3\x19\x7c\xff\x26\x60\x30\xd0\xd8\xf0\x6d\x14\xdf\xc8\x60\x6d\x64\x1c\xab\xf1\x32\x4e\x35\x68\xd4\x7c\x51\xf5\x46\xd5\x13\x17\xe2\xf2\x45\x19\xbb\x8d\xf2\xc7\xf5\x29\xca\x78\x6e\x34\x16\x51\xfd\x63\xa8\x37\xe8\xf4\x7e\xb5\x12\xa2\xc6\x46\x0d\x6a\x5a\x2b\x9c\x55\xd6\xa7\xcf\x4b\x54\x3d\x51\x06\xe9\xbf\x59\x18\xa2\x28\x07\x11\x71\xad\x74\x20\x2e\x34\xe3\xbc\x8d\xb8\x68\x5c\x5c\xb3\x76\x5a\x69\xbb\xd5\x32\x71\x93\xfd\xeb\x6e\xbb\xd5\xb4\x56\xea\xb9\x5b\x18\x64\x7c\xdc\x1c\xfc\xff\x15\x86\xd8\x4a\x5a\x6d\x2c\xaa\xe1\xa8\xb4\x56\xda\x59\x49\x5b\xad\xd4\xd3\x6a\xbb\x51\xe2\x5b\x7f\x6f\x65\xc0\x01\x00\x86\x61\xd4\xe5\xbd\xef\xbe\xfb\x58\xa3\xf7\xa8\x32\x31\x6d\x35\x7a\x6f\x25\xcf\xdd\x94\x69\xa5\x2f\x77\x5b\xee\x5f\x05\x0c\x84\x7a\xf1\xd1\x48\x6c\xb5\x9a\x37\x2a\x5f\xa3\xce\xb4\xba\x86\xd1\xca\xba\x47\xab\xed\x35\xeb\x67\xb3\x7a\xea\xc2\xb1\x63\xc7\x58\x22\x91\x00\x00\x74\x76\x76\xa2\xab\xab\x6b\x25\xc5\x23\xc3\xe8\xe8\x28\x6a\xb5\x1a\x9e\x7d\xf6\x59\x3e\x3c\x3c\xcc\xae\x5c\xb9\x12\xd5\xc7\x66\xbf\x7a\x58\x69\xb9\x56\xe6\xba\xd9\xbc\xe8\xf9\xff\x55\xc2\x40\x0d\x32\xeb\xcf\x32\x34\x5b\x4c\x6a\x86\x6c\xea\xc0\x45\xd5\xad\xc7\xe9\xf1\x71\x3a\x60\x54\x3f\xe2\xb8\x43\xb3\x81\x54\xdb\xd4\xfb\x8f\x03\x07\x0e\xb0\x9e\x9e\x1e\x74\x75\x75\xc1\x34\x4d\x24\x93\x49\x08\x21\x02\x2e\x43\xc4\x84\x10\x00\xc0\x88\xc8\xef\xa3\x10\x02\x44\x24\x7f\x99\xf7\xcb\x65\xbc\xda\x3f\x2d\x2d\x64\xb7\x70\xce\xb1\xbc\xbc\x0c\x00\xb8\x7e\xfd\x3a\x2c\xcb\xc2\x1b\x6f\xbc\xc1\xd3\xe9\x34\xab\x54\x2a\x8d\x16\xbf\x9a\x31\x91\x46\x63\x11\x85\x03\xad\x94\x69\x34\x1f\xef\xa5\x9e\x5f\x0b\x0c\xa1\x59\x68\xd2\x70\x2b\x79\x5a\x91\x16\x7a\x67\xe2\xf2\x35\xe3\xce\x51\x84\xd5\xa8\xed\xb8\xf6\x1b\xf6\x6f\xf3\xe6\xcd\x6c\xe3\xc6\x8d\xc8\xe7\xf3\xe8\xec\xec\x54\xf3\x48\x84\x66\x5e\x1c\xf3\xe2\x98\x12\x67\x90\x00\x4b\xd9\xcc\x48\xd9\xcc\x34\x6d\x32\x13\x82\x0c\x26\x60\x30\x41\x06\x04\x20\x08\x9c\x93\x
|
|
|
|
|
|
|
|
func uiStaticFavicon196x196PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticFavicon196x196Png,
|
|
|
|
"ui/static/favicon-196x196.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticFavicon196x196Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticFavicon196x196PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/favicon-196x196.png", size: 37174, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticFavicon32x32Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x1b\x08\xe4\xf7\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x07\xe2\x49\x44\x41\x54\x58\x85\xc5\x57\x7d\x6c\x53\xd7\x15\x3f\xf7\xbe\xe7\xe7\xef\x60\x3b\x01\xc7\xd8\xc4\x49\xec\x1a\xc7\x01\x4a\x02\x49\xa1\x59\x4b\x80\xb6\x34\x10\x4d\x81\xa9\x15\x43\xeb\x90\xd6\xb5\x9d\xa6\x6a\x12\x74\x0c\xa1\xa9\x63\x52\xa5\x69\x1d\xab\xb4\xae\x45\xa2\xea\xb4\xb5\xf4\x03\x28\xd0\x0f\x0a\xac\x45\x0d\xe4\x83\x26\x5d\xf9\x70\x4a\x82\xb3\x38\xae\xed\x24\x4e\x1c\xc7\x4e\xec\x38\xef\x39\x2f\xcf\xef\xbd\xbb\x3f\x5a\x67\x21\x24\x05\x86\xb6\xfd\xfe\xba\xba\xe7\xbe\xf3\xfb\xdd\x73\xcf\x3d\xe7\x3e\x80\xff\x33\xd0\x9d\x7e\xa0\x56\xab\xb1\xc9\x64\x02\x8d\x46\x03\x4a\xa5\x12\x0b\x82\x00\x99\x4c\x46\x4e\x26\x93\xc0\x71\x9c\xfc\x5f\x11\xa0\xd3\xe9\xf0\x32\x57\x99\x66\xbd\xc1\xf3\xd0\x72\x62\xde\xb8\x90\x63\x56\xe8\xa6\x28\x9b\x42\x42\x2a\x11\x13\x81\x55\x4a\x43\xa3\xda\x6c\x57\x37\x95\xb8\x70\x3e\xdd\xfd\xc9\x57\xfe\xeb\xe9\xf1\xf1\xf1\xdb\x12\xf3\x9d\x02\x94\x4a\x25\x7e\xb0\x72\x4d\xc1\x0e\xf5\xea\xe7\xee\x8d\xe5\xfd\x54\x25\x62\xd3\xad\x1c\x0a\x58\x66\x7d\x66\xee\xf0\x51\xb1\xe3\xc5\x46\xef\xe7\x91\x5b\x45\x65\x5e\x01\x36\x9b\x0d\x3f\x53\xbe\x65\xfb\xe6\x88\xe5\x65\xb5\x48\x15\xcc\xb4\x11\x20\x20\x21\x90\xb3\x94\x2c\x28\x64\x44\x53\x32\xa2\xd1\x2c\x57\x02\x25\xb3\xe7\x6d\xf1\xbd\x07\x3a\x4f\x1e\x8a\x46\xa3\xf3\x8a\xa0\xe7\x9a\x2c\x73\xbb\x99\x7d\x96\xfa\x03\xab\xc2\x79\xbf\xc8\x39\x96\x81\x40\x28\x9f\xbf\xe6\x5f\x98\x39\x1b\xc9\xe3\x5b\x47\xa4\x74\x78\x92\xe7\x79\x25\xa3\x64\xcc\x8a\xbc\x22\xeb\x84\xaa\xe6\x9e\xb8\xa6\xde\x31\xaa\x5e\x49\x11\x84\x19\x09\xeb\xcc\xa2\x66\xbd\xd9\x6c\xfe\x4b\x34\x1a\x15\x6e\x3b\x02\x4e\xa7\x93\x7e\xc1\xb6\xed\xe0\xbd\x51\xfd\xd3\xb9\xb9\x3e\x23\xef\xbb\x50\x3a\xb6\xff\xf2\x70\xcf\xb9\xde\xde\x5e\x36\x1a\x8d\x82\x28\x8a\x37\xec\xca\x6a\xb5\x62\xa7\xd3\xa9\x59\x65\x73\x6f\x58\x1f\xca\xdf\xaf\xce\x62\xdd\x21\xab\x6f\xe3\x07\x1f\x7f\x34\x24\x49\xd2\xbc\x11\xb8\x41\x40\x7e\x7e\x3e\xfe\xed\xea\x1f\xed\xde\x10\xce\x3f\x80\x00\x01\x01\x02\x6d\x25\xe3\x87\x4f\x33\xbd\x7b\x9a\x5b\x5a\x12\xa9\x54\xea\x96\x89\xa5\xd7\xeb\xf1\xf7\x6a\x6a\x0c\x66\x43\x81\xe1\xe4\x99\x8f\xc2\x13\x13\x13\x32\x45\x51\xd8\xe1\x70\x60\x84\x10\x04\x02\x01\x79\xa6\xa0\x1b\x04\x3c\x5d\xb7\xbd\xf2\xd9\x90\xa7\x9d\x26\x88\x21\x40\xa0\xc9\x99\x7a\xf5\x68\xfa\xd2\xde\xd6\xd6\xd6\xcc\xad\x88\xbf\x0b\x5b\x6b\xeb\x8a\x9e\x4b\x55\xfd\x1d\x13\xa0\xff\x5c\xd0\xb1\xe5\x68\xe3\xa9\x40\xce\x86\x73\x83\xb2\xb2\x32\xba\x21\x59\x7a\x80\x26\x88\x01\x00\xe8\xb4\x70\x67\x4f\x64\xbc\xfb\xee\x96\x1c\x00\x60\xad\xc1\xf5\x90\x69\x52\xe1\x31\xf0\x0a\xd7\x7d\xda\xd2\xcd\x33\x6d\xd3\x49\xf8\xb0\xa3\x6a\x8d\xbd\x57\xb5\x01\x00\x80\x65\xa4\xd4\x99\x82\xfe\x5d\xad\x1f\xde\x3d\x39\x00\xc0\x15\x18\xfc\xcc\xb1\x48\x7d\x11\x13\x44\x5f\xa1\x87\xcf\xde\x24\xc0\x62\xb1\xe0\xb5\x5c\xe1\x93\xb9\x8c\xbf\xb2\x24\xfd\x46\xcb\xa5\xb6\xc0\xec\x44\xfb\x4f\xc0\x30\x0c\x3e\xd7\xdc\x18\x19\x28\x1b\xda\x84\x10\x82\x60\x7b\x90\xd7\x6a\xb5\x38\x57\x1f\x68\x00\x00\xbb\xdd\xce\x94\x8c\xaa\x1f\x01\x00\x90\x11\x91\xbf\x54\xc7\xfe\xd6\xd7\xd7\x37\x2f\x39\xc3\x30\xd8\xe1\x70\x60\xa3\x36\x4f\x95\xe4\xd2\x7c\x20\x10\x90\xb3\xd9\xec\x4d\xeb\x97\x79\xca\x55\xbb\x16\x3f\xba\x8f\x26\x48\x75\x70\xf4\xc2\x0b\x2a\x85\x92\x79\xd9\xf5\xe3\x57\x44\x4c\x32\x7f\x1c\x3d\xb7\xf7\xea\xb5\x8e\x0c\x0d\x00\x50\x6a\x5c\x5c\xa4\x4f\x52\x8b\x01\x00\x46\x74\x42\xe0\x9f\x43\xc1\xc0\x6c\x67\x39\x18\x8d\x46\xbc\x63\xf5\x23\x0d\xf7\x84\xa9\x97\x14\x31\x52\x2c\xa8\x51\xd0\xbf\x7e\xc5\xae\x23\x5f\x7e\x7a\x7a\xf6\x2d\xf9\xa1\xb3\x76\xdb\xda\x1e\xc3\x6f\x00\x00\x76\xb8\x1e\x18\xc4\x04\xe1\x65\xbd\xba\x9f\x00\x00\x6c\x75\xd7\xb4\x5e\xbd\xd6\xf1\x1e\x0d\x00\x50\xa4\x30\xb9\x72\xe1\x4f\x68\xb3\xbe\xf8\x60\x9c\x9f\x4f\x40\x5d\x75\xed\x8a\xb2\x6e\x7c\x04\x13\xc2\x00\x00\x28\x27\x49\x69\x79\x0f\x3e\xbe\xa9\x7a\xdd\xaa\x33\x6d\x8d\xbe\xed\x55\x9b\x56\x7b\x90\xb9\xfa\xd4\xc4\x57\xef\x26\xd4\x42\x44\xa0\x64\x1e\xcb\x88\x8e\xab\x85\xfe\x29\x2c\xa5\x27\x15\x0b\x58\x11\x13\x61\x40
|
|
|
|
|
|
|
|
func uiStaticFavicon32x32PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticFavicon32x32Png,
|
|
|
|
"ui/static/favicon-32x32.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticFavicon32x32Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticFavicon32x32PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/favicon-32x32.png", size: 2075, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticFavicon96x96Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xbb\x27\x44\xd8\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x60\x00\x00\x00\x60\x08\x06\x00\x00\x00\xe2\x98\x77\x38\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x79\x70\x1c\xd7\x99\xdf\xef\xbd\xee\x99\xe9\xb9\x0f\xcc\x00\x83\xc1\x00\x18\xe2\x22\x00\xf1\x00\x6f\x52\x92\x25\x48\xa6\x68\x51\xa2\x69\x59\xd6\xae\xb5\x8e\x77\x1d\xbb\xca\x49\x65\x8f\x6c\x5c\xa9\x4d\xe2\x4a\x25\xae\xad\xc4\xe5\x4a\x39\xc9\x46\xbb\xde\xec\xa6\x9c\x2d\x5f\x6b\xaf\xe5\x95\x25\xaf\x24\xeb\xa4\x64\x91\x92\x45\x90\x22\x41\x88\x24\x48\x10\x04\x71\x0c\x0e\x0e\x06\x83\x99\x9e\xbb\xbb\xa7\xe7\xbd\xfc\x81\x19\x60\x00\x02\x24\x40\x02\x94\x76\xe3\xaf\xaa\xd1\xbf\x19\xbc\xf9\xde\xfd\xeb\xef\x7d\xef\x68\xe0\x37\xf2\xb1\x10\xba\x02\xde\x68\xfd\xeb\x85\xff\xd1\x0b\xad\xb8\xb0\x4a\x8c\x35\xe2\xb5\xea\xff\xff\x02\x8b\xb8\x51\x36\xba\xb5\xfe\xa6\x07\xfc\x46\x3e\x3e\x42\x4a\x77\x0a\x80\x2d\xb9\xa3\x84\x2b\xff\xbf\x34\x2c\xd6\x1b\x4b\x92\x04\xaf\xd7\x0b\x9f\xcf\x07\xaf\xd7\x0b\xbb\xdd\x0e\xbb\xdd\x4e\x45\x51\xa4\x82\x20\x80\x73\x4e\x01\x80\x10\x42\x39\xe7\x20\x84\xb0\xf2\x5d\x55\x55\x96\xcf\xe7\x91\x4a\xa5\x98\x2c\xcb\x98\x99\x99\xc1\xb5\x6b\xd7\x2a\xf3\xb5\x52\x5e\x3e\x32\x5c\x59\x01\x1f\x89\x50\x4a\xe1\xf7\xfb\x11\x0c\x06\xd1\xd8\xd8\x48\xdd\x6e\x37\x05\x87\x28\x32\x22\xd9\x54\xc1\xeb\xce\x8b\x4d\x76\x45\x6c\x70\x28\x42\xa3\xa4\x53\x8f\xb9\x20\xb8\xc4\x22\x91\x28\x87\x91\x13\xe8\x45\xca\x15\x45\x64\xa9\xbc\x81\xc5\xb3\xa6\xe2\xf5\x94\xa4\x8f\xca\x92\x3e\x9a\x34\xeb\x53\x9a\xc0\x73\x20\xd0\xf2\xf9\x3c\x0b\x87\xc3\x2c\x1c\x0e\xe3\xfa\xf5\xeb\x50\x14\x65\xc3\x1a\xd0\x5a\xf1\xd2\x1e\x70\xd7\xc4\xe3\xf1\xd0\x96\x96\x16\xb4\xb5\xb5\x51\xb3\xd9\x2c\x1a\x18\xb5\xd5\xa4\x8d\xed\x0d\x09\xd3\x03\x81\x94\x69\x5f\x55\xd6\xb0\x4d\x2a\xd0\x00\x01\x31\x92\x5b\xe8\x2a\xf5\x80\x79\x0c\x02\x56\x10\x78\x4c\x36\xeb\x03\xd7\xed\xda\x99\x09\xb7\x72\x7c\xd2\xa9\xf6\xe6\x0c\x2c\xae\x17\x75\x6d\x74\x74\x94\x5d\xbd\x7a\x15\xe3\xe3\xe3\x77\x35\xcf\xcb\xc9\x72\x3d\x60\xa3\xa8\x06\x84\x10\xba\x69\xd3\x26\x6c\xd9\xb2\x05\xd5\xd5\xd5\xa2\x08\x6a\x6b\x48\x48\x7b\xdb\x66\x2c\x9f\x0d\xc5\xa5\x43\xe6\x02\x6d\x20\x20\x94\x57\x24\x6c\x55\x78\x49\x05\x2c\xc5\x1c\x1c\x3a\xe5\xf1\x88\x43\x7b\xef\x8a\x2f\xf7\x0f\x43\xbe\xfc\x1b\x8a\x81\xc5\x53\xa9\x94\x76\xf9\xf2\x65\xd6\xdf\xdf\x0f\x5d\xd7\xd7\x23\x8f\x77\xd4\x03\x36\x4c\x08\x21\x68\x6d\x6d\xc5\x8e\x1d\x3b\xa8\xd3\xe1\x34\xda\x55\x21\xb0\xe5\xba\xf5\xe9\xce\x69\xeb\x3f\xb3\xa9\x42\x3b\xe1\xb7\x6a\xe3\xeb\x27\x9c\x00\x3a\x65\xf1\x21\x6f\xfe\xf9\xf3\x81\xcc\xf7\x22\x0e\xed\x62\x5e\x55\x72\x03\x03\x03\xec\xf4\xe9\xd3\xff\xf4\x28\xa8\xae\xae\x8e\xee\xdd\xbb\x17\x5e\xaf\x57\x72\x29\x86\xd0\x9e\xb0\xfd\x5f\x6d\x8e\x5a\xbe\x60\x60\xd4\xb3\x5e\x71\xdc\xaa\x07\xac\x84\x19\xb8\x36\xe5\x54\x8f\x7d\xd0\x90\x7e\x66\xcc\xad\xf4\xe4\x95\x7c\xae\xaf\xaf\x8f\x5d\xb8\x70\xe1\xae\x51\xd3\x86\x52\xd0\x83\x0f\x3e\x48\x5b\x5b\x5b\x8d\x96\xa2\x58\xbd\x77\xcc\xf1\x07\x5b\xaf\x5b\xff\x85\xc8\xa8\x6b\x4d\xf4\xb2\x1a\x7c\x9b\x15\x50\xc6\x20\xd0\xc3\x6e\xf5\x95\xf7\x36\xc9\xdf\x9c\xb1\x15\x2e\xce\xc6\x67\x95\x13\x27\x4e\x60\x66\x66\xa6\xb2\x4c\x36\xa4\x07\x08\xa5\x0f\x95\x1c\x40\x2a\x3e\x2f\xfd\x7e\x55\xb8\xb1\xb1\x11\x47\x8f\x1e\x15\x6a\x6b\xfc\xf6\x2d\xd3\xb6\xa7\x3e\xdd\xef\xfd\x61\x7d\x42\x7a\x8c\x72\x22\x81\x60\xae\xf4\xca\xa1\xef\x10\x2f\x24\xf6\xf6\xff\x12\x10\xea\xca\x8b\x9b\xef\x99\xb6\xfe\xae\xa5\x40\xed\xc9\x1a\xf1\x72\x53\x7b\x6b\xce\x60\x30\xb0\xa9\xa9\x29\x60\x1d\xdb\xca\x52\xbc\xee\xe4\x7b\xdf\x7d\xf7\xd1\xce\xce\x4e\xa3\x43\x15\x9b\x3e\x39\xe8\xfe\x66\x63\x42\x3a\x0a\x80\x92\x52\xbc\x1c\x1c\xeb\x8d\xd7\xbb\x78\x92\x92\x7e\xe9\xed\xd6\xc4\x9f\x8c\xb9\x95\x13\xd7\x23\xd7\x73\x2f\xbd\xf4\xd2\x86\x51\x52\xb9\x07\x50\x2c\x34\x26\x5e\xf1\xf9\x66\xb8\xfc\x3b\x0e\x00\x76\xbb\x9d\x1e\x3e\x7c\x98\x6c\xda\xb4\xc9\xd2\x32\x6b\x79\xec\xe8\x45\xef\xdf\x7a\xb3\xc6\xbd\x04\x84\x60\xa1\xa8\x70\x3b\x18\xe0\x60\x04\x4c\x31\xb0\x7c\x4a\x2a\x26\x53\x92\x2e\xa7\xa4\x62\x32\x6b\x2c\x66\x54\x03\x53\x19\xe1\x8c\x70\x50\xca\x4b\x15\x7d\x5b\xfd\x76\x01\x4b\x3a\xf5\xb5\xcd\x58
|
|
|
|
|
|
|
|
func uiStaticFavicon96x96PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticFavicon96x96Png,
|
|
|
|
"ui/static/favicon-96x96.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticFavicon96x96Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticFavicon96x96PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/favicon-96x96.png", size: 10171, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x50\x93\xd7\xba\x3f\xfc\x1a\xd3\x48\x29\x07\xa8\xa5\xd4\x5a\x04\x44\x84\x00\xe1\x16\x62\x08\x21\x24\x10\x20\xdc\x62\x80\x00\x81\x04\x08\x49\x48\x56\x20\xdc\x21\x84\x10\xee\xd1\x5a\x6b\xbd\x15\x2f\x6d\xad\xf5\xd2\x6d\x6d\x6b\xdd\xd6\x5a\xab\x6e\xb7\x5a\x8e\xb5\x6a\xbb\xad\x5a\x4b\x9d\x4e\xbf\x4e\x87\xd3\xd3\xe9\xde\xd3\xe9\x78\x3c\x4e\x8f\xc3\xf1\x30\xbe\xdf\x3c\x6f\xf2\x62\x08\x09\x06\xd4\xb6\xfb\x3f\xfb\x99\x59\xb3\xde\x24\xef\xba\x3c\xcf\x7a\xd6\xef\x79\x9e\xb5\xd6\xfb\x06\xc3\xe6\x61\x8f\x61\xfe\xfe\x90\x87\x62\x75\x54\x0c\x93\x61\x18\xb6\x68\x91\xed\xf3\xda\xc7\x31\xec\x0c\x15\xc3\x42\x43\x6d\x9f\xdf\xf1\xc7\x30\x91\x2f\x86\x25\x24\xd8\x3f\x2f\xc7\xb0\x1b\xc1\x18\x96\x9e\x6e\xfb\x4c\x17\x62\xd8\xf6\x2c\x0c\xa3\x63\x18\xe6\x8f\x61\x58\x28\x66\xfb\x7e\x36\xf4\xd8\x63\x8f\x51\x82\x82\x82\x68\x91\x91\x91\xbe\xcb\x96\x2d\xf3\x5e\xb8\x70\x21\xc5\x93\x72\x8f\x3f\xfe\x38\x25\x73\x45\x21\xb7\x43\xf0\xe6\xfe\x3e\xe6\xd9\x1f\x87\x62\x2e\xdf\x1e\x8c\xfd\xfc\x96\x85\x73\xec\x92\x9a\x3f\x60\x5c\x16\xb6\xdc\xd7\x5d\xd9\xa7\x9f\x0e\xa4\x35\x08\x86\x37\x5b\xe9\x5f\x4d\x0c\x45\x5f\xb9\xd1\x92\xf4\xd6\xfe\xaa\xd8\x35\x56\x75\xfc\xa6\xf5\x96\xa4\x93\xe7\xac\x91\x5f\xe3\x3d\x9c\xe3\xe7\x9f\x7a\xea\xa9\x69\x7d\x79\xe2\x89\x27\x28\x4d\xfc\x57\xb6\xc3\x3d\x75\xcc\x57\xb7\x07\x3f\x1b\xe6\xef\xf8\xfb\x82\x05\x0b\x28\xa9\x91\x12\xae\x20\xaa\x24\x1d\x78\x8b\x88\x88\xf0\xa1\xd1\x68\x93\xf5\xe4\xb3\xab\x72\xa1\xac\x8e\x35\xbc\x1e\xee\x9d\x89\xc7\xa4\x68\x5e\xf8\x20\xe3\xd2\x2d\x76\x74\x3a\x9d\x6c\xdb\x9c\x72\xe4\x54\x7f\xc2\xa7\xdf\x05\x3e\xbd\xc8\x6b\xa6\xb2\xf3\xe6\xcd\xa3\x44\x46\xd0\xbd\xf2\x63\x90\x2c\x7c\x59\x04\xdc\x4b\x89\x08\xa7\xfb\x5b\xa3\xae\x8d\xab\x56\xac\x1d\x74\xbc\x97\x1e\x1e\xb3\xb8\x84\xdb\x64\xcd\xe1\xc8\xa4\x5e\x5e\x5e\x14\xe8\x57\x62\x14\x27\xb4\x97\x75\xfa\x1b\x75\x61\xbb\xa8\x27\xf9\xc4\xd5\xd8\x88\xa4\x20\x76\x54\x06\x63\x55\xe4\x75\x3c\x2f\x5e\x2d\x25\xcb\x52\xa9\x54\x4a\x25\xdb\x7a\x50\xbe\x64\x3b\x2e\x0f\xde\x36\xb1\x32\x5b\xc6\x32\xa5\xef\x3f\x50\x92\x59\xcb\xab\x8c\x5b\xd5\x9b\x14\x9d\x1a\xa4\x8c\x7b\xd1\xfa\xcc\x53\x8b\x7d\x58\xf4\xf4\x68\x28\x9f\x9f\xa0\x99\x2c\x3f\x7f\xfe\x7c\x4a\x45\xe2\xe0\x01\xa2\xfc\x92\x6d\x78\x26\x77\x65\x42\xeb\x8a\xfd\xfb\x64\x99\x7a\x7e\xbb\xf0\x8d\x57\x73\xf8\x92\x88\x86\x8c\x97\xd7\x2d\x79\x2e\xc4\x37\x2c\x34\xdc\xc7\x4a\xbf\x36\xae\xe5\xbe\x64\x75\xec\xff\x73\xcf\x84\x06\x66\xd3\x35\x16\x4e\x44\xbe\x18\xfa\x03\xdf\x45\x04\xc7\x2e\xee\x59\x71\xf2\x6c\x89\x40\xc7\xef\x4b\xfa\xf8\x52\x44\x48\xec\x22\x18\x07\x13\xfb\xf0\xb1\xfe\xc4\x4f\xbe\x0f\x09\x0e\xf5\x9e\x49\x7e\x44\xbd\x8b\x9f\xf3\x92\xf3\x8c\xc8\xf1\x5e\x41\x4c\x31\x0f\xc6\xaf\x21\x6d\xdb\x56\x3f\x3f\x3f\xea\x4c\xe5\xe3\x97\x27\x87\x0e\xc6\x7c\xf1\x73\xe2\xf2\xd4\x70\x47\x79\xd5\xb2\x36\xac\x86\x3a\x5a\xd3\x76\xbd\x19\x1f\xc3\x5c\x0c\x32\x27\x7f\x0f\x0c\x0c\xa4\x4a\x52\x6b\xc4\x12\x6e\x8d\x08\xc6\xd0\xae\x83\x53\xf4\xc4\xdb\xdb\x9b\xa2\x4c\x5a\x63\xb1\xd2\xbf\xba\x33\x18\xf3\xc5\xad\x2e\xfe\x81\xa3\x8d\xe9\x5b\x36\xb7\x65\xec\xdc\xd1\xc3\x3e\x79\x0d\xea\xee\x66\x1f\x3b\x3b\xd3\x5c\x82\xba\x13\xc2\x78\x74\x94\xb8\x6d\xb8\x3f\xf1\x93\xd1\xa1\xe8\x2b\x37\x07\x19\x97\xfe\x61\x66\x7d\x74\xaa\x28\xa6\x0d\x05\x2c\x0c\x9c\x51\xbf\x1c\x09\xe6\x62\x40\x40\x00\xc5\xdf\xdf\x9f\x02\xe4\xee\x3e\x1c\xc7\xb0\x71\x01\x86\x8d\xf9\x61\xd8\x05\x1c\xc3\xae\xfc\x1f\x86\xed\xc6\x31\x6c\xd7\xff\x60\xd8\xa9\x6a\x0c\x3b\x55\x86\x61\xbb\xff\xc7\xf6\x1d\xfc\x06\xf7\xdc\xf4\xb3\x95\x81\xb2\x30\x09\x16\x61\x18\x96\xe0\x19\xce\x50\x5c\x5c\x3b\xe6\x14\xd0\x3d\xe8\x3b\xcc\x53\xc7\xef\x3d\xb8\x76\x57\x3f\x16\x14\x14\x44\x4d\x17\x64\x04\xd5\xac\x6c\x91\xb6\x14\xae\xb7\xb4\x17\x6c\x5d\xd7\x26\xd9\x3c\xa8\x93\x58\x54\x79\xd9\x62\x7a\x44\x44\x04\x0d\xda\xf5\xa0\xef\x53\x52\x60\x60\x20\xa5\xb4\xa0\x9a\x63\x12\xee\x3b\x38\xc8\xb8\xf4\xeb\xaa\x88\xaf\x71\x98\x4b\xb6\xdc\x76\x6d\x8d\xba\x76\xa7\x3b\xf5\xf0\x79\x75\x61\x87\x6c\xf9\xf2\xe5\x34\x57\xf5\xb8\xea\x3f\x83\x11\xeb\xdd\x9a\x3f\xbc\x6e\x28\xea\xea\xb8\xd5\x5e\xa7\x95\xfe\xd5\x78\x7f\xe2\xd9\x6b\x3d\xec\xbf\x9c\xe9\x65\x9d\xb9\x38\
|
|
|
|
|
|
|
|
func uiStaticFaviconIcoBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticFaviconIco,
|
|
|
|
"ui/static/favicon.ico",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticFaviconIco() (*asset, error) {
|
|
|
|
bytes, err := uiStaticFaviconIcoBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/favicon.ico", size: 34494, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticFaviconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00")
|
|
|
|
|
|
|
|
func uiStaticFaviconPngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticFaviconPng,
|
|
|
|
"ui/static/favicon.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticFaviconPng() (*asset, error) {
|
|
|
|
bytes, err := uiStaticFaviconPngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/favicon.png", size: 821, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticLoadingCylonPinkSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xd3\xcf\x6b\xdb\x30\x14\x07\xf0\x7b\xfe\x8a\xc7\xdb\x65\xbb\xd8\xb2\xe2\x05\xb3\x58\x81\x6d\x97\x5d\xb2\xc3\x56\x72\x57\xec\x17\x5b\xd4\x96\x84\xf4\x6c\x27\xfd\xeb\x8b\xdd\x1f\x94\x52\xe8\x2d\xed\x41\x42\x42\x7c\xbf\x48\x1f\x50\x19\xc7\x06\xce\x7d\x67\xa3\xc2\x96\xd9\xff\x48\xd3\x69\x9a\x92\x69\x9d\xb8\xd0\xa4\x52\x08\x91\xc6\xb1\x41\x18\x0d\x4d\xbf\xdc\x59\xa1\x80\x2c\x87\xb5\x84\xac\x40\x98\x4c\xcd\xad\xc2\xb5\x44\x68\xc9\x34\x2d\x2b\xcc\x11\x4e\xa6\xeb\x14\x7e\xa9\x37\x85\x3e\x4a\x04\x1f\x28\x52\x18\xe9\x67\xf4\x54\xf1\x3f\xcd\xc6\x29\xb4\xce\x12\xee\x56\x00\xa5\xd7\xdc\x82\xf3\xba\x32\x7c\x51\x28\x92\x02\x81\x83\xb6\xf1\xe4\x42\xaf\x70\x59\x76\x9a\xe9\xab\x00\xf1\x0d\xa1\x56\xb8\x97\xf3\x0d\x0e\x59\x01\x7f\x36\x70\xc8\xf2\xbb\xa5\x07\xa0\xd4\xd6\xf4\x9a\xe9\xe6\x29\x0d\x9a\x39\x98\xe3\xc0\xf4\x57\xf7\xf4\xd8\x35\x1f\x20\xf0\xc5\xd3\x8b\x72\x84\x51\x77\x03\xc5\xf9\x75\x62\x0b\x32\x9f\x67\x01\x02\xa1\x1e\x82\x42\x19\x11\x8e\xd4\x18\xab\x50\x20\x04\xf2\xa4\xf9\xb7\x1b\x2c\x2b\x34\xb6\xa6\x93\xb1\x66\xee\xb8\xa5\xcb\x7f\xdf\x19\xbb\xf4\x24\x12\x1e\x46\x0e\x22\x29\xb6\xaf\xf6\x08\x95\xee\xaa\xbd\xab\x49\x61\x5c\x32\x08\xe9\xc2\x91\xce\x1e\x6f\xc2\x7c\x7f\x17\x46\x3c\xc3\x14\xd7\x87\x49\xb2\xf8\x71\x36\xf2\xb3\xe3\xc8\x6b\xe1\x94\xf3\x77\xdd\xad\xee\x03\x00\x00\xff\xff\x70\xd5\x10\x78\xd7\x03\x00\x00")
|
|
|
|
|
|
|
|
func uiStaticLoadingCylonPinkSvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticLoadingCylonPinkSvg,
|
|
|
|
"ui/static/loading-cylon-pink.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticLoadingCylonPinkSvg() (*asset, error) {
|
|
|
|
bytes, err := uiStaticLoadingCylonPinkSvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/loading-cylon-pink.svg", size: 983, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticMstile144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe0\x83\xf
|
|
|
|
|
|
|
|
func uiStaticMstile144x144PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticMstile144x144Png,
|
|
|
|
"ui/static/mstile-144x144.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticMstile144x144Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticMstile144x144PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/mstile-144x144.png", size: 20027, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticMstile150x150Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2b\x40\xd4\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x01\x0e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\x78\xb1\xf9\xa5\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xd4\xbd\x69\x90\x24\xc7\x75\x26\xf8\xb9\x67\x64\x64\x56\x56\x56\x76\x76\xdd\x7d\x1f\xec\x1b\x40\xa3\x01\x36\x71\x11\x60\x13\x4d\x11\xa4\x00\x88\x12\x48\xd1\x48\x89\x43\xea\x22\x60\xab\x5d\x1b\x1b\x1b\xb3\x5d\x93\xc9\xd6\xc6\xf4\x63\x77\x6c\x6d\x7f\xec\xef\xb5\x05\x45\xdd\xd4\x90\x5a\x91\x14\x25\x82\x04\x41\x02\x24\x0e\x02\x20\xae\x06\x40\xa0\x81\xbe\x0b\x8d\x3e\xaa\xeb\x3e\xb2\xb2\xb2\x32\x23\xdc\xf7\x47\x84\x47\x7a\xbc\x74\xf7\x88\x6a\x60\x66\x77\xdd\xac\x2a\x23\xdc\x9f\x3f\x7f\xfe\xc2\xfd\x5d\xee\xe1\x01\x00\x3c\xfe\xd3\x93\x9e\xc7\x49\x3e\x85\x31\xd5\xa7\xc9\x56\x6e\x6a\xc7\xd4\xae\x0b\x5f\x56\xfb\x26\xbc\x94\x6e\x5b\x1f\x5d\xf4\xe6\xa1\x8b\xd6\x33\xfd\xe5\xc5\x9d\x45\x9f\xeb\x39\xae\xe7\x59\xe5\x69\xdf\x46\xff\x07\xf9\xa5\xf8\xf3\xb4\x49\x61\xb2\xf0\xe7\x19\x5b\xb6\x36\x5d\xf8\x5d\x30\x36\xba\xf3\xe2\xcb\x83\xe3\x7a\xe9\x36\xb5\x6b\x2a\x33\xa6\xeb\x1d\x5c\x79\x1e\x38\xc5\x9f\x37\xb9\x26\x60\x1e\x5a\xfe\x6b\x25\x13\x93\x5d\x70\xa6\xeb\xf5\x0a\xac\xac\x01\x90\x55\xdf\x05\x93\x97\x9f\x79\xda\xcc\x3b\xa1\xaf\xa7\x9d\xac\x3a\x59\x7d\xcf\x3b\xe9\x6c\x6d\xad\x77\xe2\xe6\x4d\xd7\xc3\x4f\x13\x7c\x16\xdf\x6c\x63\xee\x7a\xf1\xf6\xe0\x58\x8f\xc4\xf9\x30\x06\xae\xad\x6c\xbd\x82\x66\xbd\xed\xba\x04\xdc\xf5\xe0\x33\x95\xad\x97\x1f\x79\x06\xbf\x0d\xf6\xc3\xa2\xdd\x06\x9b\x45\xa7\xa9\xdc\x25\x14\xae\x47\xc8\xb8\xda\xb4\x95\xe7\x6d\xd3\xa5\xf4\x5c\x6d\xaf\xe7\x39\x5c\xcf\x7c\x59\x2f\x8e\xeb\x15\xaa\xb6\x7c\x6b\x3f\x3d\x02\x28\x2c\xc0\xea\x5a\x60\xfd\x0c\x16\x96\x3c\xbd\x8e\xb0\x94\x9b\xf0\x9a\xea\xda\xda\x57\x65\xfa\x2f\x6d\x2f\x6f\x9b\x80\x99\x27\xae\x94\x87\x7e\x13\x6f\x29\xdd\x59\xb0\xfa\xaf\xa9\x5d\x1b\x1e\xbd\xde\xf5\x3c\x63\xfa\x7c\x6d\x03\x59\x10\x38\x53\xff\x28\x1d\x9c\xe4\xb9\x78\x92\x05\xa7\x3f\x5b\x3a\x16\x40\x60\x6d\xf4\x50\x38\xda\x47\x57\x3b\xae\x71\x60\x2a\xa7\x34\xaa\xeb\x0f\xc2\x03\xda\xb7\xac\x3a\xa6\xf9\x90\xa2\x93\x93\x3f\x53\x5a\x8f\x86\x75\x49\xf9\xf5\x68\x89\x3c\xf9\x59\x34\xe5\x69\x33\x0f\x0e\x13\x2d\xb6\x36\xb2\x26\xdd\xf5\xf0\x38\x4f\x5a\x8f\x66\x31\x5d\x67\xe5\xb9\xda\x70\xf1\x24\x8f\x10\xba\x1e\xad\xe8\x1a\x67\x79\x68\xb0\xc1\xe4\x79\xae\xeb\xe9\x5b\x5e\x5c\x59\xf4\x5d\x0f\x6c\xde\x31\xb5\x5e\xfe\x71\xa6\x15\x98\xa4\x0f\x60\x97\x98\xae\x32\x57\x3e\x25\xc4\x94\x97\x27\x5f\x4f\x79\x24\xbc\x29\xad\x47\x4b\xbb\xca\x6c\x6d\xdb\xfa\x60\xab\x93\xa5\x85\x5c\x74\x9a\x2c\x07\x7a\x9f\xa5\x3d\x6d\x70\x7a\xca\x83\xcf\xf5\x9c\x4d\x78\x4c\xf9\x79\xeb\xb8\xc6\x87\xab\xbf\x36\xbe\x51\x5c\xb6\xe7\x6a\xe2\x43\x16\x2e\x64\xc0\x9a\xac\xa1\xf5\xf0\xc3\x35\x0e\x68\x3d\x17\xad\x2e\xfa\x8c\x84\xe5\x91\xbe\x59\xbf\xea\x3a\x8f\x56\xe3\x86\x32\x9a\x77\xbd\x52\x33\x8f\x96\xc9\x5b\x96\xb7\xcf\xf4\xd7\xa5\x65\x4c\x5a\xda\xd5\xa6\x0d\x26\x4f\x3b\x59\x34\xdb\xda\xb4\xe1\xb7\x3d\x2b\x13\x6d\x36\x7c\xae\xe7\xe5\xea\x53\x9e\x76\x5d\xed\xbb\xf0\xe4\xa5\xd9\x35\x46\x5d\xcf\x24\xcf\x33\x30\xd1\x66\x82\x75\xf1\xcb\x86\xcb\x35\xaf\xd6\xd5\x37\x0f\x66\x69\xe5\xf2\xf9\x60\xb8\xd7\x61\x75\x5f\x8c\x4a\xb6\xbc\xfe\xb4\xcd\xff\xcc\xab\xc9\x04\x7a\xdb\xb5\xf5\x8f\x5e\xbb\x7c\x4e\xda\x0f\x4a\x8b\x0e\x6b\xab\x63\x6a\xd7\xd6\x1f\x8a\x47\x2f\xa7\xfd\xb2\xf1\xd4\xe6\x97\xbb\x9e\xbb\x89\x4f\x34\x51\x3e\xd8\x68\x31\xf5\xc5\xa6\xed\x4c\xcf\xd9\xf6\x7c\xf3\x26\x13\xfd\xb6\xf1\xe4\x6a\x57\x95\xbb\x9e\xa5\x80\xb9\xcf\xb4\x6d\x93\x65\x41\xcb\xb3\x78\x60\xba\xa6\x34\x51\xba\xe9\xbd\x69\x5c\x65\x59\x22\x00\x20\x6c\x12\x90\x4e\x24\x1b\x41\xb6\x4e\x51\x01\x42\xcb\xf5\x32\x4a\xb0\x0e\x67\x6b\xc3\x04\x6f\xa2\xc1\x44\xa7\x4b\x3a\xbb\xfa\xee\x62\x6c\xd6\x64\xb7\xb5\xb5\xde\x32\xd3\x03\xd7\xdb\xb4\x09\x41\x93\xd0\xcf\x9a\x94\x2e\x61\x45\xfb\xeb\x9a\x40\x26\x21\x45\x71\x0b\xf4\xe2\xa5\x89\xb6\x91\xa5\x65\x75\xba\x4d\xf7\x79\x04\x1c\xa5\xd1\x25\xf4\x4c\xb4\xd2\x76\x6d\xfd\xb3\x09\x7a\x97\x90\xd4\x71\x52\xfa\x6c\x34\xd2\xfe\xeb\xf5\x75\x5a\xb2\x04\xab\xb1\x03\x26\x69\x96\x67\x12\x64\x31\xd2\x36\xe0\x4d\x38\xb
|
|
|
|
|
|
|
|
func uiStaticMstile150x150PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticMstile150x150Png,
|
|
|
|
"ui/static/mstile-150x150.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticMstile150x150Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticMstile150x150PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/mstile-150x150.png", size: 64646, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticMstile310x150Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2a\x40\xd5\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\xae\x0e\x9c\x74\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xc4\xbd\xe9\x93\x25\x47\x75\x37\xfc\xcb\xba\x75\x97\xde\x7b\x7a\x7a\x7a\x46\xb3\x6b\x24\x84\x18\x09\x10\x20\x84\x8c\x81\x87\xc5\x38\xfc\x86\x03\xfc\x12\xc6\x38\xde\xf0\x27\xff\x61\xf6\x27\x47\xd8\x01\x26\xde\xb0\x43\xc6\x5b\x18\xb0\x10\x18\xa4\x07\x61\xd0\xc2\x68\xa6\x35\x9a\x7d\xed\xe9\xe9\xe9\xf5\xae\x99\xef\x87\x5b\x59\x75\xea\xdc\x73\x32\xf3\x8e\xf0\xf3\xe6\x44\xcf\xad\xca\x3a\x79\xf2\x64\xe6\xc9\x73\x7e\xb9\x54\x96\xc1\xff\xd9\x90\x01\xb0\xff\x3f\xa4\xcf\x00\xd8\x66\xb3\x99\xfd\xe5\x5f\xfe\xa5\xbf\xcf\x00\xe4\x00\x5a\xc5\x6f\x07\xc0\x6c\x7b\x90\xcd\x9f\xd9\xec\x3c\xfb\xd2\xf5\x85\xff\x67\x65\xaf\xf9\x87\x19\x4c\xcb\x39\x00\x66\xcc\xc8\x00\x80\x03\x9c\x71\x80\x33\x80\x29\x1f\xc1\x39\x07\x03\x03\x67\xc6\x34\x3e\x81\xbf\x35\x05\x1f\x07\x96\xb6\xba\xad\x78\x17\xa9\x4c\xc1\xdd\x39\x07\x63\x8a\x9c\x5c\xc1\x9e\xe4\x0d\xce\x1b\x80\x29\x1f\x8e\xe3\x4d\x45\x2d\xde\xf7\x72\xb7\x7f\x6b\xa9\x77\xf1\x17\x67\xb6\x5f\xbd\x37\xdf\xbf\xe9\x0c\x76\x81\xda\xdf\x3e\xf9\xeb\x03\xe8\x16\xbf\x7d\x8c\xdb\x65\x58\xfc\x5a\x00\x78\xe3\x8d\x37\xec\xaf\x7e\xf5\x2b\x14\xf7\xa1\xb6\xcb\x08\x0d\x18\x1d\x7d\xc6\x7f\x25\xde\x3c\x9f\x0c\x72\x90\x64\xd2\xe4\x48\x91\x01\xc2\xbd\x16\xb8\xbc\x21\x99\x78\x39\xb4\x7a\x92\xca\x20\xd5\x13\xcd\x2b\xc6\x3b\x54\x6e\xce\x8f\x87\xd4\x36\x08\xc9\x1d\xab\x0f\xa9\x4c\x9a\x0e\xf1\x38\xca\x83\xd3\xa4\xe6\x19\xaa\x53\x9e\x8e\xf3\x4e\xd1\x3d\x5e\x6f\xd3\xe8\x35\xa5\x97\xfa\x47\xa8\x1f\x69\x7d\x68\x5a\xdd\xd3\xe2\x78\x9a\xff\xa3\xbc\x9f\x78\xe2\x89\xec\x1b\xdf\xf8\x46\xf9\xdc\x39\x97\x19\x63\x72\xe7\x5c\x0e\x20\x37\xc6\xe4\x00\x5a\x9d\x41\x36\x7b\xfa\x61\xfb\xf8\xf9\x3b\x73\x9f\x3f\xba\xdb\xfa\x46\x7b\xd0\xf8\x44\x06\xcc\x7a\xe6\xc4\x2d\x54\x11\x20\xb6\x9c\x05\x4a\xef\xdc\xd8\x3e\xbb\xe2\xc2\xc1\x75\x07\x0d\x77\x6d\xa7\x3d\xfc\xe1\xfa\xda\xc1\x3f\xfc\x76\x6d\xef\xda\x76\x7b\xb4\xeb\x32\xf4\x9d\x73\x43\x63\x4c\xdf\x39\x67\x8d\x31\xd4\xc6\xda\xe1\x70\x88\xbf\xfe\xeb\xbf\x8e\xf5\x83\x69\xf4\x19\x0a\x7d\xac\x5f\x4d\x63\xc7\x52\xfa\x79\xd0\x66\x34\x94\x87\xff\x53\xc1\xc5\x49\xc4\x90\x15\x69\xa5\xf4\x99\x10\xcf\xe3\xcc\xc2\xc2\x82\xf9\xf6\xb7\xbf\x8d\x66\xb3\xe9\x41\x4b\x06\xa0\x89\x71\x1d\xb4\x01\xb4\x33\x8b\xce\xda\x6e\xf3\xc4\xf3\x77\xe7\xfe\xd7\xda\x6e\xeb\xeb\x0d\x67\x96\x00\x03\x53\x2a\xa2\x83\x29\x01\x87\x47\x32\x63\xa0\x60\x0c\x00\x33\x8e\x35\x06\x65\x1a\x53\xa0\x96\xf1\xf3\xb1\xc2\xc2\x98\x0a\x54\xb8\x82\xb7\xa1\x80\xc3\x54\x69\xca\x7c\x4c\xa9\xf9\x06\x55\x9a\x4a\x8e\x3a\x6f\x63\x48\xe7\x00\xc6\x32\xc2\xc1\x71\xde\x05\x50\xea\xe5\x76\xff\xd6\x62\xff\xe2\x7f\x9f\xd8\x7d\xfd\xee\x42\xef\xba\x35\xd8\x81\xd1\x41\x8b\x73\xae\x0b\xa0\x5f\x74\xa4\x11\x18\x68\xf9\xf9\xcf\x7f\x6e\xdf\x79\xe7\x1d\x58\x6b\x49\x21\x4a\xd1\xe9\x9f\x6f\x57\xde\x09\x4a\xbc\x57\xfc\x59\xc6\x83\xd2\xf2\x78\xc3\xd2\x39\x72\x4d\x79\x79\x1d\xc9\x58\x5a\x2e\x07\xcf\x87\x76\x34\xc7\xd2\xf3\xce\x27\x95\x99\xd2\x18\xe1\x9a\xd6\x0d\xe7\x2d\xd5\x13\xaf\x4b\x40\xae\x53\x28\x69\x6d\x80\x9e\xb6\x0f\xad\x37\x4a\x4b\xeb\x96\x96\x85\xb7\x95\x83\x5c\x4f\x9e\x9e\xeb\x02\xe9\x25\xb5\x3e\x4d\x65\x93\xe4\xa7\xfc\x80\x7a\x9b\x49\xed\xc0\xdb\x92\xc6\x6b\x79\xf2\xfc\x79\x9b\x69\x6d\xc7\xeb\x90\xca\x4d\x79\xd3\x74\xbc\x1e\x52\xf4\x9a\xca\xc2\xc1\x19\xd7\x69\x9a\x86\xeb\x27\x95\xc5\x61\x92\x37\x2d\x37\x6f\x43\x5e\x4f\xd4\x26\xd3\x72\xd0\xf4\xbc\x9d\xa4\xfa\xe1\xf9\x69\x75\xef\xeb\xaf\x2c\xc3\x99\x33\x67\xcc\x57\xbf\xfa\x55\x34\x1a\x8d\xcc\x18\x53\x82\x16\x8c\x01\x4b\xcb\x18\xd3\x04\xd0\x5e\xd9\xcb\x0f\x9d\xbf\x33\xf7\xfc\xf9\x3b\xf3\xff\xf7\xea\x5e\xeb\x5b\xed\x61\xf6\x8c\x81\x99\xe1\x19\x4e\xd4\x92\xa9\xdf\x7a\xa1\xe9\x20\x14\xa8\x06\x95\xa6\x30\xd4\xc6\x20\x6f\x38\xb3\xd4\x19\x36\x9e\x5e\xea\x36\x4e\xcd\xf6\xf3\xcd\xbd\xf6\x68\xb7\x9b\xdb\x91\x35\x70\xc6\x98\x6a\xe0\x0a\x38\xe7\xc6\x5c\xb3\x2c\x73\xe7\xcf\x9f\x37\xbf\xfd\xed\x6f\x61\xc7\xc6\x96\xea\xbc\xff\xf5\x75\x4a\xdb\x85\xd7\x1f\x20\xb7\x1f\xef\xc3\x3
|
|
|
|
|
|
|
|
func uiStaticMstile310x150PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticMstile310x150Png,
|
|
|
|
"ui/static/mstile-310x150.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticMstile310x150Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticMstile310x150PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/mstile-310x150.png", size: 112362, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticMstile310x310Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x23\x40\xdc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x02\x2e\x08\x06\x00\x00\x00\x98\x4a\x83\xdf\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\xfb\x93\x25\xc7\x55\x3f\x78\x32\xab\x6e\xdd\xdb\xb7\x7b\x7a\x7a\x5a\x33\xa3\xb1\xa4\x19\x8d\x85\x2c\xc9\x46\x18\x61\x19\x6c\x8c\xbe\x0b\x18\xaf\xe1\xbb\x66\x59\x08\x82\x30\x8f\x20\x02\x47\x20\xfd\x51\xb2\x03\xfc\x03\x01\xf8\x07\xf8\x81\x0d\xff\xc0\x06\x0f\x47\x7c\xc1\xf1\x35\xeb\xd7\x1a\xfc\xc0\x36\xb2\x24\x8f\x47\xd2\xa8\xd5\xd3\xd3\xd3\x7d\xfb\x3e\xaa\x32\xf7\x87\xaa\xac\x3a\x79\xea\xe4\xab\xee\xed\xb1\x77\x53\x31\xea\xaa\xac\x93\xe7\x9c\x7c\x9d\xf3\xa9\x93\x59\x79\x01\xea\x24\x81\x4f\x32\xf2\xaf\x8f\x07\xe5\x67\xfe\x71\x79\x1c\x5f\x70\x94\xe1\xf4\x74\xf1\xf4\xd5\xcf\xf7\x7c\x9d\xe4\xaa\x4b\xec\xb3\x14\x19\x9b\x48\xa9\xbc\x5c\x7d\x30\xb4\x4e\x5c\x3f\xa4\xc8\x70\xf1\x0c\x3d\x0b\x8d\xfd\x18\x5e\x29\x72\x31\x8d\x6b\x5c\xfb\xe6\xd9\xba\xf2\x53\xdb\x6e\x9d\x76\x18\x9a\x5c\x63\x68\xd3\xb2\x63\xc6\xea\xba\x73\x74\xa8\x1e\x43\xf2\xcf\x2b\x6d\x4a\xde\x50\x3e\x3f\x6e\xf9\x9b\x96\xf7\xa0\xfa\xf5\x27\x69\x7c\x6f\x5c\x4e\x08\x7c\x84\x1c\x92\xcf\xd8\x86\x14\x0b\x19\x6e\x4c\x13\x03\x9a\x86\x00\xad\x14\xc3\x1c\xdb\x06\xbe\xb4\x69\x47\x70\x5e\x93\x71\x28\xd8\x48\xe1\x31\xd4\x31\xbb\xf4\xd8\x44\x5b\x84\xea\x73\x5e\x40\xd7\x27\xd3\xa7\xcb\x3a\x3c\xe8\xb3\x75\x78\x0e\x01\x57\xeb\x38\xb2\x07\x05\x1e\x62\x9f\xc7\x94\xdd\x04\x8f\xd8\xfc\xf3\xd0\x23\x75\xfc\xbb\x7c\xcb\xba\xe5\x63\x93\xcb\xbf\xa4\x94\x4f\x2d\x77\x9e\x7d\x7c\x1e\xbc\x63\x9f\x0f\x91\xf7\xc0\x80\x6a\x08\x15\xc5\x18\xf5\x18\x19\x2e\x70\x93\x0a\x00\x7c\x13\x23\x64\x58\xb9\x49\xb8\xae\x23\xde\x44\x99\x07\x8d\xc6\x1f\xd8\xe0\x5a\x93\xb7\xab\x3f\x87\x3a\xe5\xd8\x76\x1e\x02\xc0\x5d\xfc\x87\xf4\xed\x10\x30\x3c\x84\x87\x8b\xee\x3c\x0c\x5e\xe8\x45\xe2\x41\xcd\x81\x75\xd2\x4f\x92\x2e\x00\xeb\x83\xb9\x4d\xbd\x3c\x3c\x28\x79\x43\xe5\xae\x2b\x2b\xe6\x39\xf5\x71\xeb\xf0\x1c\x4a\xbb\x09\x19\xae\xb6\x4d\x7d\x69\x49\xf1\xd3\x49\xc9\xd5\xc8\xa9\x08\x9b\xe3\x1b\x02\x26\x21\xe7\x32\x04\x10\xb9\x64\xd1\x7c\x1f\xff\xd8\x4e\x7b\x50\x29\x76\x00\x6d\xda\x01\xa4\x38\xf8\x21\xfc\x63\xe5\xad\x4b\x9b\x5a\x6e\x13\x20\x75\xc8\xb8\x4a\xd5\x2d\x16\x58\xf9\x78\x0f\x9d\x63\xb1\x69\x88\x31\xa4\xf9\x31\xe3\x39\x96\x6f\x2c\x88\x8d\x95\xef\x93\xb9\xae\xfd\x5c\xe7\xf9\xba\xb2\x52\xe7\x74\x2c\x8f\x21\x7e\x61\xa8\x1e\xb1\x73\x70\x9d\x31\x4a\xcb\x85\xc6\x93\xcf\x6e\xaf\x9b\xd6\x99\x9f\xa9\x75\x4e\xf5\xcf\x3e\x7e\x6b\xd9\x64\xca\x9c\x2a\xe6\xba\xf7\x31\xa7\xf4\xa1\x67\xa1\x81\x96\xe2\x0c\x42\x7c\x62\x0c\xd6\x10\x39\x9b\x4e\xa9\x7a\x9e\x87\xcc\xa1\xc6\xc5\x65\x10\x36\x6d\xcc\x7d\xe3\x28\xd5\x90\x70\x65\x36\x09\x76\x42\x6d\x95\x0a\x62\xce\x73\x4c\xa6\xf2\x8e\x31\x4c\x31\x36\x81\x33\x8a\x43\xfa\x60\x48\xdf\x73\xe5\x5d\x3a\xfb\xe6\x49\x2c\x7d\xea\x1c\x49\x6d\x9f\x18\x9d\x62\xed\x76\xac\x4e\x9b\x6c\x57\xd7\x1c\x71\xf9\x25\xaa\x93\x4f\x8e\x8b\x96\xd3\x35\x96\x9e\xa3\x49\x29\x07\x01\x9a\x98\xf1\x14\xab\x5f\x48\xf6\x3a\xfa\xbb\xf8\xc4\xd4\x6d\x23\x76\x2d\x85\x81\x6b\x30\xb9\x1a\x34\x34\x71\x5d\xc6\xdc\x37\x69\x7d\x93\x3a\xc4\xdb\x25\x8f\x5e\x73\x3a\x70\x29\x66\x70\xa6\x94\x09\xd1\xc5\x18\xc6\x75\x53\x2a\xcf\x50\xdf\x70\xbc\x63\x8c\x07\xce\xf7\x19\xb7\xd8\x76\x0a\xd1\xc4\xea\xe3\xe2\xed\x1b\xe7\x3e\x1e\xdc\xdc\x19\x22\xd3\x77\xef\x9b\x33\x1c\x5d\x28\xf9\xf4\x8c\x31\x7c\x31\xfc\x52\xe8\x63\xfb\x72\x68\xdd\x7e\x5c\x69\x93\xba\xa4\xf6\x47\x4a\x1b\xa7\xf0\x4f\x75\x5a\x43\xda\x20\xa5\x9f\xd7\xb1\xc7\x9b\xa0\x5d\x27\x85\xec\xad\xab\x0c\x2e\x7b\x9e\xe9\x81\xb6\x59\xc8\xc1\x87\x04\xc7\x38\x2e\xae\x9c\xaf\x6c\x08\xc4\xb8\x74\x48\x35\xce\x31\x80\xc6\x55\x6e\x68\xd9\x94\xb4\x29\xe3\x10\xd3\xaf\x31\xed\xba\xe9\xc1\x7f\x1e\x20\xcc\x97\x9f\x32\xf1\x43\xbc\x62\xef\x5d\x3c\x42\x00\x28\xf4\x2c\x26\x85\x40\x94\x8f\x76\x28\x0d\xa6\xdb\xd4\x78\x89\x19\x27\x43\xe5\x6c\x9a\xb7\xab\xcf\x62\x41\x6a\x0a\x7f\x97\xcc\x75\xd3\x50\x3b\x9a\xc2\xcf\x77\x3d\x94\x37\xbe\x3f\xcf\x31\xe8\xca\xdf\xc4\x18\x34\xf7\x29\x7e\x2b\xd5\xae\xfb\xae\x87\xa6\xd0\xb8\x4c\x2e\xec\xa3\x0d\x01\x0e\x9f\x7
|
|
|
|
|
|
|
|
func uiStaticMstile310x310PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticMstile310x310Png,
|
|
|
|
"ui/static/mstile-310x310.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticMstile310x310Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticMstile310x310PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/mstile-310x310.png", size: 201893, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticMstile70x70Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\
|
|
|
|
|
|
|
|
func uiStaticMstile70x70PngBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticMstile70x70Png,
|
|
|
|
"ui/static/mstile-70x70.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticMstile70x70Png() (*asset, error) {
|
|
|
|
bytes, err := uiStaticMstile70x70PngBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/mstile-70x70.png", size: 11154, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStaticSafariPinnedTabSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x56\x5d\x6f\x1c\xc9\x0d\x7c\x9f\x5f\x51\xd9\xbc\xe4\x00\xb7\xb6\x49\xf6\x67\x60\xf9\x90\xb3\x8d\x43\x80\x38\x31\x6c\xe7\x82\x7b\xdc\x48\x73\xd2\x22\xab\x0f\xec\x0e\x24\x27\xbf\x3e\x28\xf6\x48\x97\xc8\x67\x18\x9a\xd9\x9e\xee\x26\x59\x2c\x16\xf9\xfa\xfb\xaf\x37\x07\x3c\xcc\xc7\xd3\xfe\xee\xf6\x7c\x23\x67\x71\x83\xd3\xb2\xbb\xbd\xdc\x1d\xee\x6e\xe7\xf3\xcd\xed\xdd\xe6\xfb\x37\xd3\xeb\xdf\xbd\xfb\xdb\xdb\x2f\x3f\x7f\x7c\x8f\xd3\xc3\x15\x3e\xfe\xfd\x87\xbf\xfc\xf9\x2d\x36\x61\xbb\xfd\x87\xbd\xdd\x6e\xdf\x7d\x79\x87\xcf\x3f\xfd\x08\x8d\x51\x62\x8f\x69\xbb\x7d\xff\xd7\xcd\x84\xcd\xf5\xb2\xdc\xff\x71\xbb\x7d\x7c\x7c\x3c\x7b\xb4\xb3\xbb\xe3\xd5\xf6\xcb\xa7\x2d\x37\x6d\x3f\xbd\x7f\x1b\x3e\xff\xf4\x63\x78\x3e\xf1\xee\xcb\xbb\xed\xe9\xe1\x4a\xe2\xd9\xe5\x72\xb9\x79\x33\xbd\xa6\x9d\xff\xf7\xea\xeb\xcd\xe1\xf6\x74\xfe\x1b\x97\x6a\x8c\x91\x87\x37\x13\x1e\xf7\x97\xcb\xf5\xf9\x46\xca\x59\xf4\x7f\xf7\xcb\x06\xd7\xf3\xfe\xea\x7a\x79\xb1\xf8\xb0\x9f\x1f\x7f\xb8\xfb\x7a\xbe\x89\x88\x78\xfe\xf2\xeb\xdb\x66\xc2\xfd\x71\x3e\xcd\xc7\x87\xf9\x4f\xa7\xfb\xf9\x62\xf9\xb4\x5b\xf6\x77\xe7\x9b\xaf\x1f\xf6\x97\x3f\x7f\xd8\x5f\xe2\x66\x9e\x17\xfa\x79\x33\x2f\xbb\xcb\xdd\xb2\x7b\x33\xbd\x3d\xce\xbb\x65\xbe\xc4\x3f\xff\x8d\xfb\xbb\xe5\xb8\xbb\x98\x21\x67\x22\xaf\xf0\x78\xdc\x2f\xcb\x7c\xcb\x0f\x1f\xe7\x65\x3e\xe2\xf3\x7c\xd8\xdf\x5e\xcd\x47\x07\x2c\x68\x14\x9b\x5e\x6f\x7f\xbd\xe8\xf5\x15\x96\xe3\xee\xf6\xf4\xcb\xdd\xf1\xe6\x7c\xe3\xaf\x87\xdd\x32\xff\x21\xae\xbe\xbd\x7a\xf6\xf2\x3b\x9c\x2e\x76\x87\xf1\xc5\xa2\xc5\x57\xe1\xe9\xed\xbb\xcd\xf4\xcb\xfe\x70\x38\xdf\xfc\x7e\x8d\x07\xa7\xe5\x78\xf7\x2f\x4f\xe8\xed\x4c\xc7\xef\x77\xcb\x35\x2e\xcf\x37\x1f\x34\xe5\x8a\x1c\x35\xe1\x22\x08\xf8\x3f\x45\x84\x8c\xd0\x2a\x42\x43\x48\x15\xc1\x10\x7a\xf2\x5f\x12\x33\xff\x20\x88\x20\x28\x42\xd2\x29\x54\x84\x1a\xc7\xaa\x56\x84\x84\x90\x2b\x42\x47\x28\x79\xec\x6b\xbe\x55\x0b\x42\x19\xb7\x77\x84\x9c\xfd\x21\x9d\x26\x0a\x82\xa6\x38\x85\xc2\x4b\xc7\x87\xac\x08\xd2\x10\x0a\x6f\xe5\x11\x43\x50\x41\xb0\xca\x53\x5c\xcd\x92\x78\x6c\xbd\xcb\x0a\x3d\x30\x84\x52\xa6\x20\xb1\xf2\x85\xbe\x0c\x6b\x36\x1c\xa9\x1e\x1f\x77\x33\xa8\x8c\x50\x69\x81\xab\x31\x22\x34\x9a\xb2\x4e\x3b\x8a\x60\xb1\x4e\x41\x69\xd6\xc3\x5d\x03\x30\x19\xa6\x12\xd7\x33\x01\x69\x8d\xab\x09\x21\x65\x7e\xef\x8c\xbb\xa5\xb1\xb3\x29\x42\xcb\x3c\x29\x93\x23\x68\xb1\x38\x16\xdc\xdf\x11\x12\x2f\xa0\x1b\x74\xbe\x23\xf4\x3c\x82\xf6\x3b\xb9\xb3\xf4\x61\x5a\x18\x3a\xcd\x8a\x41\x64\x0a\x39\x66\x98\x5f\x43\xc0\x15\x74\xb1\x28\xfc\x5a\x03\xaf\x12\xa9\x60\x94\xf4\x8f\xa1\x27\x81\xd2\x1b\x83\xae\x9b\x98\x36\x9b\x3a\x03\xab\x11\x42\x5f\xac\x55\xa8\x32\x23\x2d\x22\xf7\x42\xef\x33\x24\xba\x1b\xb1\x0b\x9a\x0d\x73\xc4\xae\x14\x38\x02\x35\xb9\x2b\x13\x8d\x67\xe8\xe0\x07\x19\xa0\x09\x42\x9b\xa9\x42\x18\x4d\x8e\x20\xb8\xb0\xe6\xd9\x20\x3b\x34\x22\x8f\xd8\x35\xf1\x4a\x81\x49\x9f\x42\x15\xd0\x0b\x03\xef\x6f\x28\x4e\x3c\x88\xe7\xa6\x20\x91\x02\x1a\x51\x4a\x65\x68\x42\xfb\x29\xa2\x22\x77\x02\x21\x0d\x86\xec\x98\xd4\x3c\x49\x61\xdc\x05\x99\xe7\x51\x04\x92\x91\x12\x08\x8a\x42\x2b\x24\x29\x0f\x4b\x45\x23\x5e\x92\x90\x0c\x8e\x6b\x44\x4e\x90\x02\x89\x09\x56\x26\xe9\x05\xb5\xc3\x68\xb4\x1a\x72\x6a\xb0\xa8\x38\xf0\x99\x1c\xfd\x26\xb8\x08\x96\x90\x06\x38\xc4\xaa\x46\x30\xff\x09\x84\x1e\x1e\x8c\xe8\x14\x3d\x23\x0c\x47\x48\x0a\xa1\x6f\xac\x83\x4a\x20\x89\xb5\xad\x09\x74\x7e\x56\xcf\xbc\x3c\xd5\x5d\x1f\x4f\x67\xb6\xe4\x89\xdf\x74\x50\x21\xd8\x5a\x81\x46\x0e\x09\x51\xb3\x4c\x43\x55\x46\x05\x80\xde\xf9\x69\xd6\xab\x3a\xaf\xe2\xa8\x48\x8d\x79\x0a\x44\xdb\xeb\xcb\x6b\x4c\x56\x9e\x5a\x19\xa5\x9f\x5a\x81\xaf\x15\x46\x63\x1d\x23\xa5\x23\x99\x5c\xb1\x75\x45\xe2\xc4\x4d\xe6\x9b\xda\xba\xf4\xb4\x2b\x8d\x1f\x25\x3b\x01\x35\x93\xc0\x59\x98\x1b\xaa\x86\x47\xb9\x52\x3b\x21\xcb\x14\xa4\x1b\xaa\x79\xdc\xee\x9d\x6f\xe1\x25\xc5\xbd\xf3\x9d\x63\x87\x52\xc0\x23\x37\xa5\x0e\xe5\xed\x25\x66\x64\x86\x59\x9d\xe8\xc3\xba\x0b\x59\x81\x32\x2a\xc6\x98\xe8\x8e\x45\x4f\x2a\x91\x4c\x55\x79\x79\xa1\x87\x51\x91\x63\x45\x8a\x0d\x3d\x0b\x1a\x1d\x55\xb3\x49\x44\x50\x23\x8c\x84\x6b\x15\x2c\x7a\x3e\x1b\x9b\x49\
|
|
|
|
|
|
|
|
func uiStaticSafariPinnedTabSvgBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStaticSafariPinnedTabSvg,
|
|
|
|
"ui/static/safari-pinned-tab.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStaticSafariPinnedTabSvg() (*asset, error) {
|
|
|
|
bytes, err := uiStaticSafariPinnedTabSvgBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/static/safari-pinned-tab.svg", size: 3798, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyleGuideHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x1a\x5d\x6f\xdb\x38\xf2\x3d\xbf\x62\xce\xf7\x70\x5d\x20\x92\x6c\x27\xb9\xbd\x73\x55\x03\x69\x52\xec\x06\x9b\xb6\x41\xed\xb4\xb8\x47\x5a\x1c\x5b\x84\x29\x52\x4b\x52\x76\xfc\xef\x0f\x24\x65\x47\xb2\xa4\x7c\x35\xfd\xd8\x6d\x5f\x12\x86\x1c\xce\x0c\xe7\x7b\x46\x89\xff\x71\xfe\xfe\x6c\xfa\xbf\xab\x37\x90\x9a\x8c\x8f\x0f\xe2\xed\x2f\x24\x74\x7c\x00\x10\x67\x68\x08\x24\x29\x51\x1a\xcd\xab\x5e\x61\xe6\xc1\x7f\x7a\xee\xc0\x30\xc3\x71\x7c\x26\x85\x2e\x38\x7c\xc2\x19\x5c\x5f\xc0\xc4\x6c\x38\xc2\x6f\x05\xa3\x18\x47\x1e\xc0\x82\x72\x26\x96\xa0\x90\xbf\xea\x69\x0b\xa0\x53\x44\xd3\x83\x54\xe1\xdc\xee\x10\xc3\x92\x68\x26\xa5\xd1\x46\x91\x3c\xcc\x98\x08\x13\xad\x7b\x0f\xbe\x49\x34\x96\x17\xe2\xc8\xb3\x1d\xcf\x24\xdd\xb8\xfb\x94\xad\x20\xe1\x44\xeb\x57\xbd\x44\x0a\x43\x98\x40\xe5\x30\xef\x9f\xf1\x20\xa3\xc1\xa0\x0f\xe5\x4a\xce\xe7\x1a\x4d\x30\x28\x61\xeb\xd0\x4a\xae\x77\xfb\xed\x78\x86\x95\x73\x80\x38\x1d\xde\x25\xa7\x74\x58\x03\xce\xc7\xd3\x94\x69\x60\x1a\xdc\x93\x61\x61\xa1\x60\x2e\x15\x98\x14\x21\x26\xe5\xeb\x53\x63\x72\x3d\x8a\xa2\xf5\x7a\x1d\x26\x0e\x79\xc8\x64\xaf\xa4\x13\x47\x64\x5c\xd2\x0a\xe1\x53\x8a\x02\x72\xa9\x35\x9b\x71\x3c\xac\x90\x02\x60\xe6\x5f\x1a\x66\xa8\x0d\x18\x09\x73\xc9\xb9\x5c\x83\xb1\xd4\x3d\xd1\x4c\x52\x36\xdf\x30\xb1\x70\xa4\xaf\x2f\xc2\x38\xca\xf7\x78\x9d\xc8\x0c\x41\x21\xd1\x52\x58\xb8\x19\xa6\x4c\x50\x48\x52\xc9\x12\xd4\xa3\x1a\xb1\xb8\xe0\xe3\xda\x86\xd3\xef\xf8\x4c\x72\xa9\x74\x08\xaf\x15\x5b\xa4\xc6\x2a\x40\x2a\x0d\x6b\x54\x68\xd1\x68\x14\x96\x37\xe2\x58\xb3\x42\x40\xa2\x37\x7b\x58\x00\x7a\x3a\x21\xc2\x32\xd0\x03\x39\x07\x26\xe6\x52\x65\xc4\x30\x29\xc2\x38\xe2\xac\x8d\xea\x85\x95\x19\xac\x19\xe7\x40\x92\x44\x66\x39\x11\x1b\xc8\xa4\x36\xd0\x23\x89\xbd\xa9\x7b\x87\x60\x2c\x7d\x20\x0a\x41\x1b\xc6\x79\x83\x6c\x8e\x82\x32\xb1\xe8\xa2\x71\x49\x36\xb2\x30\x21\x4c\x53\x04\xee\xd6\x9e\xe0\x0c\x21\x57\x2c\x23\x8a\xf1\x0d\x0c\xed\x8b\x8b\xcc\x31\x63\x52\x2b\xe8\x06\x19\x6b\xd4\xa8\x80\x18\xa7\x06\x23\x73\x27\x08\x41\x56\x6c\xd1\xfe\xc8\x9a\x9a\xe2\x88\xb2\xd5\xce\x8c\xfd\x1f\xcf\x60\xd4\x50\x1a\xf6\xef\x8e\xb9\x7d\x2b\xf6\xa7\xea\x6e\x2e\x6a\xcb\x5b\xce\x1e\xeb\xb4\x96\xaf\x56\xc6\xeb\x4f\xea\xb8\xec\x3c\x5e\x67\x76\x65\x64\x3e\x23\xaa\x8a\xad\xeb\xd6\xf6\x52\x8b\x48\xb6\xfe\xf9\xcf\xde\xb8\x7a\xd3\xc8\x3c\x98\x29\x22\x68\x6f\xec\x5f\x6a\x5d\xb4\x4e\xa7\xa6\x9a\x4e\xda\x3b\x86\x8f\x1a\xb4\x1d\xf5\x12\x7a\x66\x04\xcc\x8c\x08\xbc\xa1\x6d\x7a\xb7\x5c\x4d\x50\xad\xac\x73\x76\x31\xf0\x74\xfa\x4d\xea\x14\xe7\xa4\xe0\xa6\x42\xfd\x9d\xa4\x5f\x82\xf4\xc3\x88\xff\x81\x9b\xe8\x23\xe1\x05\x7e\x9e\xf0\x2b\xf9\x61\xc7\xd1\x76\x51\x1e\xf4\x1f\xc4\xe1\x9a\x28\x1f\xb4\x76\x1c\x9e\x40\x92\x62\xb2\xd4\x30\x27\x8c\xbb\xd0\xf2\x55\xac\x84\x2a\x99\x53\xb9\xee\x92\x5b\x03\x03\x40\xa1\x03\x24\xda\x04\x83\x96\xb3\x58\xe7\x44\xec\x18\x22\x0a\x8d\x35\x7a\xbb\xd9\xc2\xcb\xbd\xa6\xb0\xb7\x51\x15\xc0\x33\x04\x8f\xb6\x8c\xff\x94\xe8\xf8\xef\x96\x8c\x6f\x13\x59\x23\xbd\x57\x83\xa2\xcb\x89\x5b\x44\x9c\x69\x13\x14\xc2\x25\x7d\xba\x27\xf3\xb8\x25\xc1\x58\x1e\x1c\xf0\xab\xde\x9a\x51\x93\x8e\xe0\xd7\x93\xfc\xe6\x25\xa4\x68\xf3\xe8\xf6\x2f\xca\x74\xce\xc9\x66\xc4\x04\x67\x02\x83\x19\x97\xc9\xf2\x65\x6f\xa7\xff\x45\x90\x33\xb1\xdc\xc6\xa4\xe7\x23\x51\xa5\xc0\x2d\x70\x37\x9d\x66\xf6\x7c\xde\xd7\x56\x59\x51\x48\xbf\x39\x0f\x52\x11\xb1\xc0\x6f\xce\x06\x25\x6a\x19\x2c\x14\xa2\xf8\xb2\xda\xef\x26\xf1\x35\x5f\xbb\x50\x64\xf3\x35\xac\xbc\x93\x4e\xb3\x44\xab\x56\xc3\xdb\xf8\xf5\xb8\x08\x63\x4b\x2f\x26\x16\xf7\xc6\x98\x74\xb0\x05\x85\x41\x1c\xa5\x83\x0e\x3c\x30\x6c\x22\x3a\xda\x1d\x1e\xc5\x51\x7a\x54\x3f\x3c\xde\x1d\x1e\xc7\x51\x7a\x5c\x3f\x3c\xd9\x1d\x9e\xc4\x51\x7a\xb2\xd7\x36\x5c\x11\x45\x16\x8a\xe4\x29\x18\xbc\x31\x21\x94\xed\x51\x46\x96\xa8\x81\x19\xd0\x2c\xcb\xb9\xef\x7a\x74\x59\xaf\x80\x91\x35\x89\x2a\x5c\x30\x6d\xd0\xb5\x45\x99\x46\xbe\x42\x0d\x44\x50\xdb\x2d\x50\xa6\x13\xb9\x42\x05\xd2\xa4\x58\xc1\xb0\x62\x04\x48\x0d\xc9\xf9\xbb\x09\x48\x05\xbf\x4f\xa7\x57\xc0\x84\x41\x35\x27\x09\x86\xf0\x61\x8b\x1b\x6f\x0c\x2a\x41\xf8\x2d\x0e\x5d\x24\x29\x10\x5d\xc3\x32\x21\x64\x02\xb9\x92\x2b\x4
|
|
|
|
|
|
|
|
func uiStyleGuideHtmlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyleGuideHtml,
|
|
|
|
"ui/style-guide.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyleGuideHtml() (*asset, error) {
|
|
|
|
bytes, err := uiStyleGuideHtmlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/style-guide.html", size: 10835, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyles_buttonsScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xc1\x6e\xdb\x30\x0c\xbd\xe7\x2b\x04\x2c\x1b\x5a\xa0\x0a\xd2\x74\x2d\x3a\xe7\x32\x60\x7f\xb1\x9b\x22\x31\x36\x11\x87\x12\x28\xb9\x4e\x37\xe4\xdf\x07\xc9\x76\xec\x24\x5e\xba\x6e\x39\xad\x40\x11\x43\x24\x1f\xf9\xde\x93\x0d\xce\x56\x81\xc4\xcf\x89\x10\x42\x04\xd8\x05\x19\x58\x91\x5f\x5b\xde\x66\xa2\x72\x0e\x58\x2b\x0f\xcb\x14\x5e\x5b\x0a\xb2\x06\xcc\x8b\x90\x89\xa7\xf9\x7c\x70\xea\xf1\x07\x64\xe2\x7e\xe1\x76\xcd\xe1\xca\xb2\x01\x96\x35\x9a\x50\x64\xe2\x70\xac\x6d\x69\x39\x13\xd3\x9c\xd5\x6b\x73\xf2\x15\x49\x97\x95\x01\x91\xda\x62\x40\x4b\x37\x2b\xa5\x37\x39\xdb\x8a\x8c\x4c\x05\x62\xb6\xf0\x02\x94\x07\x89\x24\x6d\x15\x6e\x2f\x94\x36\x7d\xdf\x5b\x76\x29\xdf\x56\xa1\x44\x82\x4c\x90\x25\x38\x3a\x92\x2d\x9d\xba\xc0\xd0\x46\xd2\xa3\xf4\x4e\xe9\x54\x50\xb3\x72\x6d\xc9\x0b\xf0\xba\xb4\x75\x26\x0a\x34\x06\x68\xd9\x0b\xde\x87\xa0\x2c\xd1\x79\xf4\x4d\x50\xd6\xb0\xda\xe0\x91\x21\xe9\xb1\x54\x01\xbe\xdf\xcc\x6f\x97\x93\x94\xf6\x29\x2b\x22\x42\x6b\xe1\x40\x65\xa3\x78\x03\x74\x93\xc4\xbe\x13\xf7\xf3\x8f\x2d\xa1\xe4\xcf\x89\xc4\x99\x28\xa3\xad\x5d\xba\xec\xe3\x77\xe2\xb1\x2b\xdc\x77\x0d\xd7\x56\x57\x7e\xd0\x70\x44\xa2\xcb\x32\x5d\x28\x5a\xd9\x9d\xf4\x85\x32\x51\x8f\x3e\xd2\xb5\x9e\x29\x1d\xf0\x05\xce\x7b\x5f\xb5\xc9\x2a\x90\x74\x8c\x5b\xc5\xaf\xe7\xb2\x4e\x1d\xd2\x46\x46\x71\x2f\xc9\x99\x9c\x72\x8a\x81\xc2\xb0\x6d\xbc\x9d\xe9\x7d\x10\xde\x96\x68\x1a\xb0\xd6\xc8\x71\x33\xc7\xe1\xa7\xc9\x2e\xd9\x54\x0f\x53\x4f\xbc\x8f\x09\xa7\xde\xef\xcf\xc9\xd6\x8a\x09\x29\x1f\x21\x6b\x59\x51\x0e\x72\xad\x0c\x98\x6b\xf0\x3d\xc6\x7b\x37\xef\xc3\x2d\x1d\xe2\xdc\x89\xc5\x97\x21\xc1\x11\x1d\x8e\xd3\x4f\xf5\x38\x17\xc4\x57\x5a\x83\xf7\x23\x82\xe4\x0c\x40\x57\xb3\x7f\x88\xf6\xf7\x62\x34\x28\x9d\x16\x9f\xdf\xd0\xa2\xef\xf9\x07\x37\xc3\x44\xdd\x46\x3e\x2e\x53\xbe\xce\x7d\xe0\x7f\xbb\x06\x1c\x19\x3f\x3c\xbf\xc1\x98\xc7\x4c\x6f\xa9\xfe\xee\xbb\xf2\xff\xbc\xed\x7d\xbb\xe4\x28\xd9\x33\xae\x03\x28\xa4\x02\x18\xc3\xf2\x8d\x89\xc6\xd3\xce\x08\x7f\xd0\x5a\x5f\x7e\xd1\xb6\x48\x38\x98\x64\xb8\x4c\xcc\xbb\xad\x21\xfe\x39\x65\x0c\x52\x9e\x89\xe7\xee\xf4\x08\xa6\x44\x1f\xde\x05\xf3\xe0\x76\xe2\xd1\xed\xba\xdf\x3e\x63\xab\x38\x47\x92\xdc\x6c\x39\x47\xa1\x76\xb9\x60\x65\xb0\xf2\x09\xe2\x30\xc9\x7e\x32\x99\x05\xeb\x56\xaa\x31\x33\xce\x34\x43\x6d\xbb\xc5\x6a\x8b\xd4\xed\x42\x8f\x87\x79\x8a\x76\x93\x7a\x38\x00\x1d\xa6\x7b\x72\x3b\xd1\xae\x57\xfe\xa5\xff\x2c\x77\x15\x8b\x01\xa7\x35\x96\x65\x26\x74\xc5\xf1\xf2\x7d\x8b\xee\x74\x43\xc5\xff\xfd\xe4\x57\x00\x00\x00\xff\xff\x50\xc7\x86\x48\xdf\x09\x00\x00")
|
|
|
|
|
|
|
|
func uiStyles_buttonsScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyles_buttonsScss,
|
|
|
|
"ui/styles/_buttons.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyles_buttonsScss() (*asset, error) {
|
|
|
|
bytes, err := uiStyles_buttonsScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/_buttons.scss", size: 2527, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyles_formsScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\xb1\x6e\x83\x30\x10\x86\x77\x9e\xe2\x86\x2a\x4a\x06\x23\x92\x2a\x1d\x60\xe9\x73\x74\x33\xf6\x01\x56\x88\x8d\xce\xa6\xa1\xad\xf2\xee\x95\x31\x69\xdc\x28\xa4\x42\xf5\x90\xe1\x72\xf7\xff\xdf\xfd\x3a\xd2\xca\xd0\x91\xd5\x64\xfa\x0e\xbe\x12\x00\x80\x50\x11\x46\x3b\x32\xed\x54\xf3\xef\x55\x69\xd1\xf6\x12\xc1\x11\xd7\x56\x39\x65\xf4\xba\x34\x24\x91\x98\x30\xad\x21\x48\x77\x16\x90\x5b\x64\x4a\x33\xd3\xbb\x4d\xf1\xc7\xe8\xc0\x6c\xc3\xa5\x39\x2d\x1e\x7c\xe8\xf9\x33\xbb\xfa\xb5\x08\x3b\x2a\xad\xa2\x6d\xfc\xab\x8c\x76\xcc\xaa\x4f\xcc\x61\xbb\xeb\x86\xab\xed\x39\x09\xbf\x49\xd0\x79\xe7\xad\x92\xd1\xec\x5c\x42\xfe\xc5\x74\x39\x3c\xd5\x84\xa8\x59\xc5\x25\xca\xe2\xa6\xef\xb2\x7e\x0e\x19\x64\xb0\xef\x86\x99\xee\x7b\x30\xdc\x61\xe4\xbb\x4a\x6d\x2f\x04\x5a\x7b\xc3\xf2\x88\x73\x09\xeb\x32\xde\x2b\x73\xc4\x1d\x30\x91\xc8\xd0\xff\x20\x09\xe5\x22\xc4\x99\xfe\xf3\xfd\x78\x53\xa5\xbb\xde\x85\xcf\x81\x71\x29\x8d\x8e\x88\x4a\x2e\x0e\xfe\x1f\x2d\xa3\xc8\xf8\x07\xbb\xd6\x8b\x49\xeb\x9c\x24\x0e\x07\xc7\x09\xf9\xbd\xf5\x1a\x54\x75\xe3\x72\xd8\x3e\x67\x97\xab\x63\x27\x2c\x0f\xca\xb1\xf1\xce\xfd\x48\x1e\x4e\xbe\xe5\x0e\xdf\xd6\xd9\xa6\xf0\x9a\x93\x56\x83\xe2\x50\x9a\x61\x12\xf3\x46\xf1\x58\xdf\x75\x48\x82\x5b\x0c\xc2\xe3\x8d\x9f\x26\xc3\x97\x2c\x8b\xaa\xb7\x97\x1f\x2f\x15\x2a\x47\x4e\xb5\xd2\xac\xc5\xca\xe5\xb0\x1b\x61\xc7\xfa\x98\x52\x94\xcc\xd4\x47\xc1\x65\x7f\x11\xf4\x41\x7c\x07\x00\x00\xff\xff\xfe\x44\x03\x04\x60\x04\x00\x00")
|
|
|
|
|
|
|
|
func uiStyles_formsScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyles_formsScss,
|
|
|
|
"ui/styles/_forms.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyles_formsScss() (*asset, error) {
|
|
|
|
bytes, err := uiStyles_formsScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/_forms.scss", size: 1120, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyles_listsScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdd\x6e\xe3\x2c\x10\xbd\xcf\x53\x8c\xf4\x7d\xad\x5a\x29\x44\x4e\xfa\xb3\x15\xb9\xd9\x57\xc1\x66\x1a\xa3\x10\x40\x80\x9b\xb4\xab\xbc\xfb\xca\x0e\x89\x31\x90\x46\xbd\xda\xde\xb4\x65\x86\x99\x73\xce\xfc\xe0\x85\x14\xce\x93\x8d\xd5\x9d\x21\xc2\xe3\x0e\xfe\xcc\x00\x00\x0c\xe3\x5c\xa8\x0d\x85\x6a\x3d\xfc\x5f\x6b\xcb\xd1\x92\xbd\xe0\xbe\xa5\xb0\x32\x87\xc9\x71\xad\xbd\xd7\xbb\x6b\x56\xcb\xb8\xe8\x5c\x74\xbe\x63\x76\x23\x54\xb8\x45\x61\xf9\x92\x18\xbc\x36\xf1\xe9\x6f\xa1\x1a\xd9\x71\x04\x6f\x99\x72\xc2\x0b\xad\x1e\x6a\xd6\x6c\x7b\xd0\x8a\x93\x46\x4b\x6d\x61\xf1\xe4\x00\x99\x43\x22\x14\xd1\x9d\x7f\x5c\xcf\x86\xbb\x29\x3d\xd2\x22\xeb\x89\xcd\x83\x45\x28\x29\x14\x06\xd2\x23\x04\x0a\xcb\xca\x1c\x06\x0c\xe3\x5f\xeb\x8b\xd3\xa8\x8e\x39\x40\xef\x13\x7e\x9f\x3c\x8e\x71\xea\x2c\x41\xb8\x4b\x24\xbe\xfb\x21\xc0\x18\x76\x60\x42\xe1\xff\x8d\x65\x9f\xe3\xe9\xbb\x56\x9e\x38\xf1\x85\x14\x96\x4f\xc5\x1c\x39\xbd\x28\xdf\xa4\x44\x43\x11\xc0\x69\x29\x38\xfc\x87\x88\xe5\xdc\x84\x33\xbb\x45\x1b\x24\x1c\xf2\x84\xb8\xa4\x45\x69\xd0\x46\xe1\x07\x84\x52\x33\x4f\xc1\x8a\x4d\xeb\xd7\x53\x4b\x8f\x7d\x8f\xbd\x81\xc2\x6b\x55\x4d\xad\x93\x9c\xf2\xca\xed\xc0\xfc\x39\x16\xea\x98\x6b\x50\xb3\x18\x55\xe8\xc4\x65\x55\xdd\x8d\xb7\xda\x80\x63\x55\x25\x2a\xde\x9f\x42\x48\xa1\xb6\xb4\xd5\x1f\x13\x7e\x4d\x67\x5d\x0f\xd2\x68\xa1\x7c\xaf\xc9\x45\xd7\xa4\x03\x29\x0c\x0c\x50\x3d\x9c\xf8\x8c\xf6\x39\xbc\xdd\x3d\x96\x12\x36\x5a\x71\x54\x0e\xf9\xbf\x4e\x3d\xcf\x8e\xf3\x06\x9a\x14\x6b\xcc\xb0\x4e\x26\xe7\xd2\x68\x93\x82\xc5\x83\x3d\x18\xb2\xa2\x3c\x57\x93\xe3\xfb\x05\xd7\x5d\x2d\x91\x24\xd3\x13\x5f\x79\x49\x7a\x62\x56\xec\xba\x5f\x7d\xd7\x8d\x8d\xac\xd8\x2e\x8d\x17\xb7\xd9\x64\xcc\x21\x1a\xd7\x01\xfa\xeb\x04\x63\xff\xe3\x0c\x53\x49\xb8\xa1\xff\x5a\xe1\x91\x38\xc3\x1a\xa4\xa0\xf4\xde\x32\xb3\xce\x9c\xfa\x72\xbf\x4b\xbd\xa7\xd0\x0a\xce\x51\xe5\x1e\x1e\x0f\x9e\x8c\x6e\x28\xa5\x30\x4e\xb8\xdc\x71\xc7\x0e\xe7\xed\xfb\xf4\x72\x97\xdb\xc3\x84\xf6\x3b\x27\x37\x72\xe1\x8c\x64\x9f\xf4\xb4\xaa\x48\x2d\x75\xb3\xcd\xbd\xce\x42\xd8\x50\xaf\x54\xa8\x63\x22\xcc\x8e\x49\x59\x50\xe6\x9c\x0c\x7e\x94\xed\x2d\xcd\x06\x69\x69\x56\x25\x8f\xb8\xb2\x45\x87\x5b\x1b\xe8\x58\x6a\xaf\xc5\x0e\x3d\xe3\xcc\xb3\x84\xde\x85\x5a\x81\xd3\xb7\x48\xae\x56\xe7\x3b\x78\x11\xa0\x4e\x2e\x5c\x57\x27\x68\xa4\x28\xa8\x9f\x3e\xeb\x85\x60\x10\x3d\x82\xd5\x0f\x48\xdc\x92\x72\x6c\x63\xd6\x79\x9d\x8c\xd1\x3d\xa5\x64\x8f\xf5\x56\x78\xe2\x1a\xab\xa5\x9c\xae\xf3\x4c\x61\xa5\x15\xe6\xd5\x3c\x87\x60\xc6\x20\xb3\x4c\x9d\x86\x2f\xf5\x3c\xde\x78\x46\x48\xab\xad\xf8\xd2\xca\x33\x99\xbf\x28\xab\xc9\x83\x5d\x2c\xdc\x79\x3d\x4d\x1f\x9f\xb0\x01\xed\xd9\x16\x3d\x41\x61\x2f\xb3\xc6\x8b\x8f\x78\x37\x15\xbf\x7b\xa2\x65\x0c\x8b\xa5\x83\x7e\x88\x98\x7d\x5c\x5f\x5b\xd7\x46\xa8\x6d\xbc\xff\xce\x2c\xe7\xb7\x08\x5f\x45\x90\x7d\x79\x95\x50\x40\xf1\x99\x0a\x68\x32\xfd\x8f\xb3\xbf\x01\x00\x00\xff\xff\x11\x68\xbc\x29\x87\x0a\x00\x00")
|
|
|
|
|
|
|
|
func uiStyles_listsScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyles_listsScss,
|
|
|
|
"ui/styles/_lists.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyles_listsScss() (*asset, error) {
|
|
|
|
bytes, err := uiStyles_listsScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/_lists.scss", size: 2695, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyles_mixinsScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x72\xc8\xcd\xac\xc8\xcc\x53\x28\x29\x4a\xcc\x2b\xce\x2c\xc9\xcc\xcf\xd3\x50\x41\xb0\x35\x15\xaa\xb9\x14\x14\x74\xcb\x53\x93\xb2\x33\x4b\x74\x11\xe2\x56\x0a\x48\x8a\xac\xb9\x14\x40\x40\x37\x37\xbf\x8a\x80\x12\x05\xdd\xdc\x62\x42\x4a\x14\x74\xf3\x09\x2a\x51\x50\x50\xc0\xa9\xa4\x96\x0b\x10\x00\x00\xff\xff\x84\x62\xbe\x59\xd2\x00\x00\x00")
|
|
|
|
|
|
|
|
func uiStyles_mixinsScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyles_mixinsScss,
|
|
|
|
"ui/styles/_mixins.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyles_mixinsScss() (*asset, error) {
|
|
|
|
bytes, err := uiStyles_mixinsScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/_mixins.scss", size: 210, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyles_navScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xed\x6e\xa3\x30\x10\xfc\xef\xa7\x58\xe9\x3e\x9a\x48\x35\x82\x9e\x7a\xd2\x91\x3f\xf7\x2a\x06\x6f\x89\x55\xb3\x6b\x2d\xf6\x25\x77\x15\xef\x7e\x2a\x81\xc4\x94\xc6\x3f\x10\xec\xec\x0c\x33\xeb\x55\x45\xe4\xa0\x1b\x31\x64\xe1\x4d\x01\x00\xf4\x46\x3a\x47\x3a\x72\xa8\xe1\xa9\x0c\xe7\xc3\x54\x6d\x4c\xfb\xda\x09\x27\xb2\x35\x44\x31\x34\x04\x23\x48\x11\x92\xf8\xdd\x43\xcb\x34\x24\xaf\x3d\x77\x5c\x04\xea\x1e\xf6\x50\x02\xb1\x16\x0c\x68\xe2\x47\xbe\x1e\xdc\x3f\xac\xe1\x47\x19\xce\xd3\xe3\x82\x9f\x9c\x8d\xc7\x3a\x2b\x1c\xd1\x75\xc7\xb8\x54\x46\xa5\x26\xa7\x8d\x91\xd9\x66\x30\xd6\x3a\xea\x72\xca\x5c\xba\x58\xaf\x36\xe5\x86\x63\xe4\x3e\x47\xe6\xa8\x0b\x70\x4b\xdb\x3b\xd2\x8b\x81\x5f\xcf\xd7\x19\xb0\x58\x94\x9b\x4e\x38\xc3\x17\x44\x84\x81\xbd\xb3\x07\x35\xf5\x14\x4d\xa4\xd9\xe1\xfd\x61\x2e\xbf\x98\x43\x57\xe5\x15\x19\x6f\x2a\xda\x0a\x07\xcb\xa7\x5c\x6e\x26\x98\x14\x79\xd5\x9f\x7c\xb1\x74\xeb\x1e\x29\x65\x14\xef\xe0\x4d\x5d\xbf\xde\x8f\xc9\xd0\xe5\x44\x3c\x47\x3d\xdd\xeb\x0b\x4b\x5f\x43\x0a\x01\xa5\x35\x03\x1e\x36\xad\x2f\x4c\x51\x9f\xe6\xe1\xfc\x2c\xcb\x3b\x1d\x97\x5b\xae\x9e\xf2\xcc\xcb\x69\xd9\xb3\xd4\xf0\xb5\x13\xf3\x77\x8b\xfe\x76\xd4\xfa\x64\xf1\xb2\x67\x2e\x3a\xa6\x5d\xb6\x3e\x13\x19\x8a\x6a\x00\x34\x03\x6a\x47\x9a\x53\xdc\x1f\xd4\x46\xe7\x7b\x7d\xe4\x3f\x28\x9f\xa4\xcd\x3c\x58\x23\xaf\x48\xbb\xc9\xca\x23\x54\xe5\xb7\xfd\xd6\x10\xac\xf7\x77\x66\xfa\xf7\x09\x2c\x54\x7d\xc3\x1f\xe1\xf9\x33\x91\x71\x6d\x70\x54\xeb\xb7\x51\xa9\x51\xfd\x0f\x00\x00\xff\xff\x0d\x13\x8d\x56\x8d\x03\x00\x00")
|
|
|
|
|
|
|
|
func uiStyles_navScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyles_navScss,
|
|
|
|
"ui/styles/_nav.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyles_navScss() (*asset, error) {
|
|
|
|
bytes, err := uiStyles_navScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/_nav.scss", size: 909, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyles_notificationsScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x9c\xdf\x8e\xa3\x38\x16\xc6\xef\xf3\x14\xa8\x57\xad\xa9\x6e\x05\xfa\xd8\xe6\x7f\x6b\xa4\xb9\x59\xed\x03\xec\xe5\x6a\x57\x22\x89\x49\x50\x13\x88\x80\x54\xa5\x67\x54\xef\xbe\x32\x9c\xa4\x08\x50\xb1\x0b\x3c\x73\x33\x2e\xb5\xba\x0b\x62\xbe\xf3\xb3\x7d\xf8\x62\xd3\x47\x38\x45\x6d\x6f\xca\x8b\xf5\xc7\xca\xb2\x2c\xeb\x54\xd6\x59\x93\x95\x45\x6c\xa5\xd9\x85\xef\xbe\xb7\x27\x37\xc9\xf6\xc7\xbe\x2a\xcf\xc5\x2e\xb6\xf2\x6c\x7f\x68\x78\xf1\xb4\xc9\x93\xed\x8f\xb5\xe5\xc2\xe7\x2f\x5d\xa3\x53\xb2\xdb\x65\xc5\x3e\xb6\x28\x9c\x2e\xdd\xa9\x3c\x2b\xb8\x7d\xe0\xe2\x8a\xd8\x22\x8e\xdb\x9d\xfd\xdd\xce\x8a\x1d\xbf\xc4\x16\x01\x80\xee\xd4\x31\x2b\xec\x97\x6c\xd7\x1c\x62\xcb\x85\xdb\xe5\xa7\x32\x2b\x1a\x5e\xd9\xfc\x99\x17\x4d\x1d\x5b\x45\x59\xf0\xee\x93\x6d\x99\x97\x55\x6c\x55\xfb\x4d\xf2\x44\x3d\x58\x53\x8f\xac\xa9\xe7\xad\xc1\x89\x3c\xc4\x49\xcb\xa2\xb1\x5f\x30\x76\x70\x0d\xd4\x9e\xad\xb3\xdf\x79\x6c\x11\xef\x1a\xa7\x3c\x25\xdb\xac\xf9\x19\x5b\xe0\x84\xdf\x57\xaf\xab\x15\x0e\x89\xf8\xa7\x3e\x94\x2f\xb7\xa1\xb9\xc7\x49\xce\x4d\xd9\x6f\x6e\x25\xd8\x10\xe9\xb2\xe2\xc0\xab\xac\x19\xc5\x08\xde\x03\xec\x4b\xc5\x87\xf2\x99\x57\xeb\xde\x89\xb4\xdc\x9e\x6b\x8c\x70\x53\x23\x77\x57\x9d\xf0\xe3\x63\x52\xed\xb3\x22\xb6\x60\xaa\x37\xeb\xfe\x89\xe7\xac\xce\x36\x39\x57\xe9\xe1\x36\x2f\xeb\x6b\x43\x9c\xab\xb7\x99\xbe\x4e\x32\xed\x4d\xde\x35\x91\x92\x4d\x5d\xe6\xe7\x06\xa7\xae\xea\x1a\xba\xd7\x76\x4d\x79\xea\x1d\x89\x4e\xa7\x79\xf9\x12\x5b\x87\x6c\xb7\xe3\x05\xb6\xe1\x97\xa6\x4d\x9a\xa2\x69\xb3\xe6\x33\x66\xc1\xb9\xaa\xc5\x40\x23\x76\x77\xd2\x7e\xe1\x9b\x1f\x59\x63\x8b\x9c\x4d\x93\x2d\xef\xba\x98\xe5\xed\x70\xf5\x45\x1f\x36\xe8\xf7\xb9\x3f\x15\xdd\x89\xbb\xa9\x38\x37\x22\xcd\xaf\xd9\x79\x77\x61\xbc\xe1\x69\x59\xf1\xfe\xa5\x71\x92\x36\xbc\xba\x25\x4a\xd1\xb4\x7d\xfa\xe5\x97\xc7\x83\x86\xe3\xcd\x86\xc3\xed\x5f\x87\xa2\x1d\x45\xef\x7a\x94\xf3\xb4\xe9\x1d\xf6\x6f\xdf\x97\x43\xd6\x0c\x31\xdb\xfe\x4d\xc1\xe2\x07\x7d\xe4\xbe\xd6\x3f\xd2\x34\x9d\xee\x31\x36\xbe\xce\x45\x53\x25\x45\x9d\x96\xd5\x31\xb6\xda\x5f\xf3\xa4\xe1\x4f\xb6\x07\x9f\xd7\xe2\xaf\x2f\x56\x55\x36\xe2\x8c\xeb\xed\xf8\x1e\x6f\xdf\x0f\x5e\x72\x0f\xd1\x07\xfe\x20\x83\x3d\x03\xc2\xee\x51\xac\xbe\x7d\xb5\xfe\x55\x95\x2f\xb9\x5d\x37\x3f\x73\x6e\x15\x65\x93\xa5\xd9\x36\x11\xb3\x5a\x5b\x5f\xbf\x75\x9c\x7b\xd1\x02\x01\xdb\xa9\x63\x6f\x9e\xd9\xce\xdd\xdb\xf1\x31\xb9\x5c\xad\x91\xbd\x59\xe3\xa6\xac\x76\xbc\xb2\xab\x64\x97\x9d\xeb\xd8\x6a\xad\xec\xb5\xaf\x3d\x61\x05\x13\x8e\xcc\xda\xab\xfe\xb3\xcd\x93\xba\xfe\xdf\xaf\x9f\x8a\xda\xe6\x69\xca\xb7\x8d\xfd\xe9\xbf\x37\x29\xf1\xcb\x21\xdb\xf1\x35\xb6\xfb\xfa\xeb\x27\xeb\x61\xc3\xc1\xc0\x27\x45\x76\x6c\xbb\x6f\xef\xb2\x8a\x6f\xbb\xf4\xae\xf8\x33\xaf\x6a\xcc\xee\xc7\x2d\x70\x50\xff\x9d\x0b\xe9\xaf\xdf\xda\x3e\x62\xf0\x3a\x7f\x0b\xd7\x1b\x46\x1c\x88\xbb\x46\x0f\xb3\xfd\x71\x4b\xa5\xf4\xef\x4b\x0c\xbe\x37\xc6\x03\x51\x24\x47\x1e\xb7\xdd\x6e\x7b\xf5\xcf\x3c\xa9\x9b\x6c\x3b\x1c\x8c\x47\xad\x26\x06\xf7\x5c\x25\xdd\xc8\x91\x7a\x34\xac\xa3\xcf\xc6\xd7\x37\xd9\x31\x2b\xf6\x76\x7a\x2e\x70\x02\x44\xaa\x24\xd5\x50\xea\xdd\x66\xaf\xab\xd5\x6f\x57\xd5\x1f\xfc\x67\x5a\x25\x47\x5e\x8f\xe8\x71\x48\xe0\xb3\xf5\xc7\xd4\x9d\x79\x4c\x9a\x2a\xbb\xb0\xdd\x13\x59\x5b\xd0\xfb\x33\x79\x68\x8b\xf5\xc3\xed\xd4\x97\xef\x96\x36\xa1\xd7\x16\x92\x38\xbe\xf8\x09\xa4\xac\x4e\x44\x23\xc6\x54\x02\x05\x2c\x72\xa8\x1f\x82\x27\xc5\x5e\xa8\xd9\xf5\x80\x39\xac\xfd\x51\xe8\x81\x1f\x85\x91\x4a\x34\x8f\x12\x27\xa4\x9e\xab\xd2\x83\x45\x9a\x5d\x0f\x3c\x39\x7a\x00\x11\x28\xcd\x32\x73\xc5\x40\x11\xa2\x80\xbe\x4c\xb3\x43\xf7\x95\xd3\xc7\xa5\xcc\x53\x09\x46\x49\xe8\x30\xca\x42\x39\xff\x12\xc5\x8e\x3e\x54\x4e\x1d\x4a\xc0\x57\x0a\x46\x28\x73\x68\x14\xba\x0a\xfc\xcb\x34\xf1\xf6\x95\x9b\x8c\x03\x21\xf1\x03\xa5\x14\x0d\x1c\x2f\xa2\x01\x93\xa3\x2f\x92\x44\x72\x75\xe7\x01\xa2\x38\x4e\xae\x13\x50\x16\x10\x05\xfe\x05\x8a\x88\xaf\x6a\x3b\xe0\x44\x11\x78\x2a\x83\x45\x88\x43\x68\x10\xb9\x32\xfc\x65\x8a\x88\x2f\xf5\x1c\x70\xa2\xd0\x0d\x42\x85\x28\xd4\x75\x42\x9f\xb1\x48\x81\x7b\x81\x22\x72\xab\x1a\x8e\x08\x16\x10\x15\x67\x66\xe0\xb8\xe0\x81\x34\
|
|
|
|
|
|
|
|
func uiStyles_notificationsScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyles_notificationsScss,
|
|
|
|
"ui/styles/_notifications.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyles_notificationsScss() (*asset, error) {
|
|
|
|
bytes, err := uiStyles_notificationsScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/_notifications.scss", size: 24674, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyles_panelsScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\xdd\x4e\xe3\x3c\x10\xbd\xef\x53\xcc\xc5\xc7\x27\x90\x36\x55\x02\x14\x90\x91\x56\xfb\x2a\x6e\xe2\x36\x56\x5c\xdb\xb2\x27\xd0\xb2\xea\xbb\xaf\x12\xbb\x5b\xff\x24\xa5\xcb\xc5\x4a\xeb\x0b\x44\xe3\xf9\x39\x73\xe6\xcc\x24\x4b\x4d\x25\x13\xf0\x73\x01\x00\xb0\x56\xa6\x61\xa6\x78\xe7\x0d\xb6\x04\xee\xf5\xfe\x35\x7c\x5c\x2b\xa1\x0c\x81\xff\xb6\x86\x1e\x8a\x35\xad\xbb\xad\x51\xbd\x6c\x9c\xcd\x0f\x2e\x6b\xd1\x37\x0c\xd0\x50\x69\x39\x72\x25\x6f\xcf\x36\xce\x17\x96\x0f\x16\x18\xb5\xac\xe0\xb2\x50\x3d\xde\xbd\x2e\x46\x5f\x87\xa1\x68\x19\x6d\xb8\xdc\x7a\x2c\xc3\xd1\xb4\x19\x9e\x10\xa8\x4a\xbd\x87\xe7\x13\x9e\x11\x53\x12\x9b\xb8\xc4\x9a\x1a\x26\x31\x30\x9b\xae\xe8\xda\xaa\x8e\x0e\x60\xfb\xe8\x21\x22\x47\xc1\xa6\x00\x3e\xea\xbd\x03\x39\xfc\x13\xa5\xd9\x28\x89\x85\xe5\x1f\x8c\xc0\x7d\x19\x5e\x44\x89\x05\xdf\xb6\x38\x73\xd7\x50\xd3\x31\x93\x01\x37\xb4\xe1\xbd\x25\xf0\x10\x06\x55\x9a\xd6\x1c\x0f\x04\xca\xe5\x8b\x67\x77\x38\x76\x47\x85\x08\x70\x27\xc0\xaa\xc7\x30\xc6\x70\x90\xed\xb1\x18\x19\xdd\x28\xb3\x23\xd0\x6b\xcd\x4c\x4d\x2d\x7b\xcd\x63\xbc\xb3\x01\x3c\x81\xe7\xb2\x8c\x6f\x77\xd4\x6c\xb9\x2c\x04\xdb\x20\x81\x55\x9a\xc2\x73\x57\xa0\xd2\x49\x67\x8e\x8b\x33\xf2\xa5\x54\xc5\x90\x37\x02\x9f\xa2\x93\x4a\xb2\xc8\xfd\xb7\xb7\x6b\x9b\x54\xc8\x92\xea\x3d\xb6\x31\x79\x06\x6d\x23\x14\x45\x02\x26\x6e\x4a\x56\xf0\x53\x5a\xf0\xa5\x96\x5e\xa4\xfc\xb8\x08\xeb\x6e\x1f\xae\x91\xdb\x49\x6d\xe5\xdf\x57\xdb\xd7\x75\x35\x2f\x89\x7f\xb9\x6b\x01\xe8\xb5\x6a\x0e\x53\x1d\xf3\x0b\x0c\xb2\x45\xa6\xff\x84\xbe\x13\xd4\x71\x00\xc6\x1f\x29\x9a\xe1\xb4\xab\x0b\x31\xef\xf3\x0a\xc0\xad\xb8\xba\x65\x75\x77\xc1\xf3\x69\xda\xf3\x7f\x5f\xf9\x30\x8a\x89\xf7\x69\xc4\xd7\x0a\x51\xed\x08\x54\xab\x4f\xe9\xa3\x26\x88\xe1\xd7\x76\x55\x96\x37\x67\xb7\xd6\xf7\x31\xd6\xf7\x75\xef\x9f\xca\x82\xe0\x92\x51\x73\x17\xed\xf7\x53\x09\x82\xcb\x90\x00\x2f\x7d\x87\x3e\x7b\x87\x64\xbe\x16\x03\xdf\x3e\x1d\x0b\x27\x5d\x02\x89\xf8\x04\x4f\xec\x2e\xd8\x9e\x31\x65\x57\xc7\x8c\xd5\x98\xd4\xa2\x55\x86\x7f\x28\x89\x54\xe4\xfc\xc6\x4c\xfa\x31\x1a\x46\x34\x27\x7d\x15\x99\xfa\x71\x34\xee\xae\x8a\xee\x1a\x6e\xb5\xa0\x07\x02\x6b\xa1\xea\x6e\x92\x32\xdb\x2a\x83\x9f\xf1\x5d\xce\xf2\x2d\x3b\xd2\xaa\x37\x16\x0a\xa6\xee\x8d\x1d\x06\x44\x2b\x2e\x31\xda\x62\xd9\xe7\xc2\x38\xe8\x4c\xde\xa6\x2f\xfe\x6f\xf0\x72\x93\xaa\x83\xd6\xc8\xdf\xc2\x5d\xf4\x7d\xf6\x93\x05\xf2\x2f\x0b\xcd\x65\x37\xb9\xe7\x26\x35\x1b\xf8\xe6\x7a\x9d\x8d\x9e\xee\xce\x78\x8e\xbe\x36\x1c\xf3\xdc\x65\x25\xb9\xbf\xc7\xc5\xaf\x00\x00\x00\xff\xff\x73\xd8\xba\x40\x4e\x0a\x00\x00")
|
|
|
|
|
|
|
|
func uiStyles_panelsScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyles_panelsScss,
|
|
|
|
"ui/styles/_panels.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyles_panelsScss() (*asset, error) {
|
|
|
|
bytes, err := uiStyles_panelsScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/_panels.scss", size: 2638, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyles_typeScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xdd\x8e\xdb\x20\x10\x85\xef\xfd\x14\x73\xd1\x56\xbb\x92\x89\x92\x34\xbb\x95\xec\x9b\xbe\x0a\x98\x59\x83\x8c\x19\x0b\x70\xb3\xdb\x2a\xef\x5e\xf1\xe3\xd4\x49\x9d\x36\x17\x91\xcc\x9c\x73\xe6\xc0\x27\x48\x7e\xc0\xaf\x0a\x00\x80\x9d\x51\x0c\x3a\xb0\x37\xb2\x81\xf9\x91\x28\x28\x6d\xfb\x86\xdb\xa0\xb9\xd1\xdc\xa3\x6c\x93\x2e\xcf\xf5\x4f\x6c\xe0\xf0\x3a\xbd\xe7\xc3\x8e\x0c\xb9\x06\x3e\x05\x7c\x0f\x2c\x7d\xb4\xd5\xa5\xaa\x78\xc9\x5e\xc6\x93\xb6\xc3\x2a\xe5\x8c\xba\x57\xa1\x81\xd7\xfd\x3e\x9f\x7e\xd7\xb6\x33\xb3\x44\x08\x8e\x5b\xaf\x83\x26\xfb\x94\xbc\xb0\x3b\x7a\x40\xee\x91\x69\xcb\x68\x0e\xcf\x6d\x95\x0c\x5f\x1a\x45\x3f\xd0\x95\x35\xf1\x97\x1a\x48\xec\xc8\xf1\x68\x6f\xc0\x92\xc5\xf6\x3a\x2e\x4d\x24\x77\x03\xda\xa7\x54\xa8\x86\xc3\xfe\xf3\x73\x96\x5c\x4a\xec\xce\xcf\x22\x18\x5c\xe5\x16\xa3\xb6\x0a\x9d\x0e\x65\xfd\x76\x85\xed\x1b\xe7\xf8\xfc\x7f\xa9\xaa\x8e\x24\x6e\xbc\x0e\x8b\xcd\xb2\x41\xf0\x6e\xe8\x1d\xcd\x56\xb2\x45\xd1\x3b\xfe\xc1\xfe\x9c\xa7\x37\xde\x29\x34\x13\x13\x86\xba\xa1\xe4\xad\x09\x9d\xee\x09\xa5\x08\x13\xdf\x3d\xb9\xfd\xc8\x8d\xb9\xeb\x11\x25\x69\xa8\x0e\x35\xa8\x63\x0d\xea\x6b\x0d\xea\x54\x83\x7a\xd9\x50\xa6\xc6\x98\x79\x5f\x05\x89\x42\x82\xf8\x46\x6e\x6c\x60\x9e\x26\x74\x1d\xf7\xb8\x41\xff\xdb\x42\xff\x41\x45\x75\xda\x09\x87\x5c\x76\x6e\x1e\x85\x2f\x0b\x26\x2e\xa5\xb6\x3d\x13\x14\x02\x8d\x0d\xbc\x2c\xf7\xfc\xcf\x66\xfe\x37\xd2\x9b\x7d\x57\x3e\x93\x5b\xf0\x3c\xe0\x70\xd3\xf9\xac\x74\xf8\xe7\xdd\xd6\x4c\x8e\xb1\x6b\x24\x27\xc8\xc8\x35\xb3\x1b\x57\x14\xa4\x52\x0f\xe8\xfc\x0e\x00\x00\xff\xff\x78\xe5\x88\x25\xbb\x03\x00\x00")
|
|
|
|
|
|
|
|
func uiStyles_typeScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyles_typeScss,
|
|
|
|
"ui/styles/_type.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyles_typeScss() (*asset, error) {
|
|
|
|
bytes, err := uiStyles_typeScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/_type.scss", size: 955, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStyles_variablesScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\xd1\x8e\xab\x20\x10\x86\xef\x79\x0a\x92\xf1\x24\x3d\x49\x8d\x46\x41\xe5\x78\x75\xda\xb4\x4f\xb0\x2f\x40\x05\x6c\xa3\x81\x86\xda\xec\xf6\xed\x37\x50\x5b\xbb\x15\x97\xb9\x83\x8f\x7f\xfe\x99\x81\x24\xc1\x5b\xd3\x1b\x7b\x41\x28\x6a\x2d\xbf\xc5\xfd\xa9\x3d\x0e\xff\xf0\xdb\xf2\xbb\x52\xaf\x1c\xb2\xc6\x34\xfd\xf3\xb7\x46\xd1\xa1\xe7\x4d\x37\x43\xfd\x82\x8c\xb8\xa8\x47\x51\xc1\x6d\x27\xed\x3b\x0a\x94\xd2\x91\x08\xab\x60\x28\xcb\xb2\xfe\xd5\x18\xb0\xdc\xc5\x03\x3a\xf0\xa6\x6b\xad\xb9\x6a\xf1\x4a\xc2\xae\x70\x51\xa3\xc8\x4a\xb1\x90\x0a\x83\x10\x44\xd2\xea\x0e\x79\xc7\x01\x12\x1a\x4a\x28\x91\x2f\xd0\xbc\x2c\x0c\x87\x34\x6f\x88\x2b\x7e\xe0\x7a\x31\x9d\x4a\x55\x2a\x5d\xfd\x8d\xd1\x97\x6b\x1f\x87\xda\x00\x2c\x75\x31\x41\xca\x98\x41\xda\x9f\x2c\x88\x52\x10\xe1\xfa\x74\x3e\xe9\x6e\xc1\x39\x88\x22\x2b\xab\x7c\x84\x16\x4c\x3d\xa6\x3c\x09\xad\x71\x76\x9f\xb5\x3f\x8a\x83\x77\x41\x31\x95\x2b\x9f\xff\x6a\xcf\xbd\x0c\x3a\x80\x82\x11\xc6\xf8\x13\x0a\x3a\x98\xf2\x4f\x42\xef\x0e\x42\xb7\x41\x95\x2a\x57\xcc\x3f\x02\x29\x75\xac\xb8\x98\xcf\x19\x36\x9b\x7d\x5a\xd1\x27\x14\xec\x13\x54\xc5\x86\xd0\x72\x9c\x6f\x50\x07\x63\x77\x56\xa3\xe8\xf3\x78\x1a\x64\x98\xf1\x0f\x43\xaf\x3c\xb1\xc6\x99\xf7\x6f\x2c\xd7\x6d\x98\x87\xfd\xfe\xff\x96\xee\x6a\x84\x92\x04\x7f\xdc\xce\x12\x45\x83\xfc\x1a\xe2\xc6\xfd\xcc\xb9\x47\xff\x6d\xbe\x03\x00\x00\xff\xff\x07\x06\x50\x8c\xb9\x03\x00\x00")
|
|
|
|
|
|
|
|
func uiStyles_variablesScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStyles_variablesScss,
|
|
|
|
"ui/styles/_variables.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStyles_variablesScss() (*asset, error) {
|
|
|
|
bytes, err := uiStyles_variablesScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/_variables.scss", size: 953, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiStylesBaseScss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xc9\x72\xe3\x36\x10\xbd\xeb\x2b\x3a\x53\x93\x6d\x32\xa0\xb5\xd8\x2e\x0f\x7d\x99\x4b\x0e\xb9\xe7\x07\x40\xa2\x49\xa2\x04\xa2\x51\x00\x28\x89\x99\xf2\xbf\xa7\x00\x70\x11\xb5\x78\xac\x1b\x1b\xfd\x5e\x3f\xf4\x06\x7d\x97\xad\x21\xeb\xe1\x53\x2b\x4f\x52\xbb\x4f\xaf\xab\xc9\x72\xe0\x56\xf2\x42\xe1\xc2\xe8\x7b\x83\xe7\xdf\x86\x6b\x54\x0b\x0f\xcd\x0f\xe7\x9f\x45\xe7\x3d\x2d\x89\x95\x74\x7e\x61\xa8\xc8\xb6\x4b\x0e\xf2\xb2\x92\x25\xf7\x32\x41\x57\x8d\x6f\xd5\x57\x28\x48\xf4\xf0\x63\x05\xd0\xa0\xac\x1b\x9f\xc3\x66\xbd\xfe\xf5\x75\xf5\xb6\x5a\x65\x47\xcb\x8d\x41\x1b\x4f\x5b\xa9\xd9\xd2\x63\x46\xf0\xce\x13\xfc\x92\xe2\x70\xed\x5f\xe1\xe1\x0b\xfc\xdb\x48\x07\x4a\x6a\x04\xae\x05\xf8\x06\x41\xe3\xc9\x0f\x16\x8b\xa0\xc9\x83\xc6\x12\x9d\xe3\xb6\x87\x4e\x2b\x74\x0e\x7a\xea\x40\x23\x0a\xf8\xe7\xef\x67\x70\x9d\x89\xc2\xbf\x3c\x5c\x89\x03\x68\xb9\xad\xa5\xce\x61\x9d\x82\xb3\xe7\xb5\x39\xc5\xb8\x21\x52\x41\xde\x53\x3b\xf8\x80\x74\x43\xf8\x9a\x7b\x79\x40\x38\x70\xd5\x21\x50\x15\xad\x15\x91\x47\xfb\xbb\x1b\x02\x84\x60\xe1\xe6\xc9\xfc\x15\x32\xd3\xb9\x66\x91\x9d\x29\x50\x3a\x6a\x3b\xe7\xa1\xc0\xc8\xe5\x78\x8b\x23\x0f\x77\x30\x90\x0c\x94\xdf\x5b\x14\x92\xc3\x1f\x21\x8f\x47\x29\x7c\x93\xc3\x66\xb3\x5d\x9b\xd3\x9f\xf0\x03\x1e\x1e\xe0\x2f\xd8\xad\x57\x00\x59\x49\xda\x73\xa9\x87\xac\x03\x4c\xbe\xeb\x10\x78\x05\xf0\x76\x8f\x6d\xbb\xfe\x38\xdb\xf6\xa7\x6c\x8f\xbb\x97\x73\xb6\x97\xf7\xd8\x1e\x17\x6c\x7c\x38\x4d\x4d\x9a\xf3\x32\x66\x3d\xd9\xc2\x8f\x3a\x1f\xba\x20\x07\x4d\x1a\x5f\xa3\x39\xe2\xb2\xa2\xab\x2a\xb4\xcc\xb5\x5c\xa9\x45\xce\x9f\x22\xfd\x6d\xa1\xdf\xbe\x6d\xa2\xce\xa0\xaf\x20\x2b\xd0\x32\x85\x95\x1f\x35\xcc\x96\x1c\x36\xe6\x04\x9f\x6b\xcb\x7b\x56\xf0\x72\x5f\x5b\xea\xb4\x00\x47\x4a\x8a\xa4\x22\x33\x5c\x08\x14\x2c\x81\x46\xc1\xc1\x28\x75\x3d\x70\xec\x86\x9b\x06\xcd\x49\xf7\x88\xb2\x41\x2b\x6b\xa5\x10\x2a\xdd\x76\x04\xda\x74\x89\xdd\x78\x89\x4c\x13\x1b\x5a\x33\xc5\x98\x7a\x39\x1d\x1f\xd0\x7a\x59\x72\xc5\x4a\xd4\x7e\xca\x75\x72\x62\x9e\x4c\x0e\x43\xf5\x82\xb3\xf3\xb2\xdc\xf7\xcc\x95\x96\x86\xa4\x01\x44\x9f\xcd\xd3\x28\xd4\x90\x93\x61\xe6\x73\x48\xce\x97\x56\x76\xc4\x62\x2f\x3d\x3b\x3f\xa5\x03\xda\x4a\xd1\x31\x87\xc4\x9c\x82\x59\x3a\x0e\x21\x7e\xcb\x4a\x52\x64\x51\x9c\xd5\x75\x4e\x2a\x8b\x87\x39\x7c\x56\x31\x27\x46\xea\xfd\xa2\xce\x31\xbf\x13\x76\x51\xa3\xad\x39\xa5\x92\x5c\x55\x2a\x4a\x58\x65\x45\x1d\xf9\x46\xec\x75\xcc\x14\xed\x2d\xb9\xce\x02\xee\x03\xce\x45\x0e\x30\xb2\x5c\xd7\x78\x1f\x92\xce\x59\xc5\x05\x8a\x09\x54\x5b\x44\x7d\x1f\x13\x8f\x2f\x20\x82\xdb\xfd\xc7\x70\xc1\x73\x82\x9d\xe5\xee\xda\xdf\xa2\xb8\x12\xc6\xfb\xf7\xf8\x79\x9f\xf2\x74\x91\xb5\x0f\xc0\x2e\xaa\x93\x85\x59\x27\xcd\x0a\x7e\xfd\x66\x3c\x0d\x83\x33\x4e\x45\x6a\xd2\x0b\x63\x5a\xdc\xa3\x3d\x30\x62\x5b\x84\xde\x90\xce\xb3\x83\xc4\xd4\x7e\x73\x73\x86\xdd\x1f\xf1\x53\x33\x5b\x54\x71\xcb\xcf\x6f\xc4\x44\xba\xbb\x45\x2a\x3d\xb6\x33\xf3\xcc\xc3\x0b\x47\xaa\xf3\x91\x67\x5c\x73\xd3\xbb\x98\x66\x22\x3c\xe3\x77\xf4\x8c\x97\x7e\x19\x17\xe3\x7d\x29\x4a\x1a\x36\x12\x44\x36\x21\x9d\x51\xbc\xcf\xa1\x50\x54\xc6\xb9\x99\xf9\x1b\x29\x04\xea\xa8\xa9\x91\x1e\x99\x33\xbc\x8c\x8b\x34\xbc\xd4\xc1\xec\xf1\xe4\xd9\xec\x8f\x4a\x49\xe3\xa4\x4b\xb1\x04\x31\x45\x35\x25\xcd\x86\x97\xd2\xf7\x39\xac\xb3\xe7\x33\x81\xb1\x2a\x6c\x37\xaa\xf3\xd4\x52\x6d\xb9\x69\x7a\xc8\xce\x76\x66\x6a\x8a\x4a\x2a\x75\xbb\x11\x16\x38\x7e\x92\x6e\x81\x98\xd7\xbe\xf3\x96\xf6\x78\xd1\x83\xf3\x01\x13\xdc\x35\xdc\xda\x90\x8c\x47\x78\xbc\x62\x4e\x8b\xe3\x43\xdc\x61\x7c\xd0\x5e\x31\x18\x92\x7a\x7c\x2a\x6e\x03\x16\x17\x5d\x0c\xf0\x82\x28\x3c\x68\xc3\xdf\x9d\x0b\x36\xfb\xae\x77\xde\x84\x62\xfd\x54\xc1\x90\x8f\xa1\x11\xb7\xa9\x3c\x0b\xca\xb0\xbb\x6f\xc6\x5f\x8e\xf7\x35\x26\x74\xcc\x98\x42\xd2\x9e\x39\xf9\x1f\x86\x27\x7d\x7c\x3d\x62\x47\x71\x5d\x36\x61\xea\x9d\xe7\x36\xf2\xfc\x1f\x00\x00\xff\xff\xea\xe6\x68\x4e\xe2\x0a\x00\x00")
|
|
|
|
|
|
|
|
func uiStylesBaseScssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiStylesBaseScss,
|
|
|
|
"ui/styles/base.scss",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiStylesBaseScss() (*asset, error) {
|
|
|
|
bytes, err := uiStylesBaseScssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/styles/base.scss", size: 2786, mode: os.FileMode(436), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiTestsRunnerCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xc1\x8a\x83\x30\x10\x86\xef\x79\x8a\x01\xd9\xa3\xe0\xb2\xee\xb2\x89\x4f\x13\x93\xa9\x19\xaa\x19\x49\xc6\x2a\x16\xdf\xbd\x44\x7b\xe9\x6d\xfe\xef\x83\xe1\xab\x70\xea\x31\xd5\x82\x59\x28\x0e\xb5\xe3\x28\x96\x22\x26\x78\x2a\x80\x99\x33\x09\x71\x34\x60\xfb\xcc\xe3\x22\xd8\x29\x80\x9e\x45\x78\x32\xd0\x94\x91\x68\x08\xf2\xbe\x57\xf2\x12\x0c\xfc\xb5\xcd\xbc\x95\x1d\xf0\x92\x3f\xff\xed\x05\xf8\x81\xe9\x36\xf2\x6a\xc0\x2e\xc2\x85\xec\x35\x45\x8f\x9b\x01\xad\xb5\xbe\x9e\x27\x8f\xc9\xc0\xf7\xbc\x41\xe6\x91\x3c\x54\xce\xb9\xd3\x58\x77\x1f\x12\x2f\xd1\x1b\x58\x03\x09\x76\xa0\x0e\xf5\xd9\x7f\x56\xef\x5c\xea\x7e\x9b\xaf\x4e\x1d\xaf\x00\x00\x00\xff\xff\xfe\x38\x10\x2b\xdf\x00\x00\x00")
|
|
|
|
|
|
|
|
func uiTestsRunnerCssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiTestsRunnerCss,
|
|
|
|
"ui/tests/runner.css",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiTestsRunnerCss() (*asset, error) {
|
|
|
|
bytes, err := uiTestsRunnerCssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/tests/runner.css", size: 223, mode: os.FileMode(509), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiTestsRunnerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x41\x4e\xeb\x40\x0c\x86\xf7\x39\x85\xdf\x6c\x9a\xe8\x29\x13\xc2\xba\x53\x8e\xc0\x19\xc2\x8c\x43\x0c\xa9\x07\x6c\x27\x29\x42\xdc\x1d\x85\x2e\x90\x42\xa9\xc4\xc6\x92\xe5\xef\xff\xac\x9f\x7a\x28\x17\xe2\x94\x17\x3f\xe6\xd8\x19\x65\xf6\x8a\x9d\xc4\xc1\x13\x27\x3c\xdd\xf7\xa5\xbb\x33\x54\x73\x15\xfc\x0b\x01\xea\xb6\x82\xf7\x02\x20\xe5\x38\x1d\x91\xcd\x2f\x42\x86\x65\x01\x00\xb0\xdb\x27\x9a\x81\x52\x70\xaf\x13\x93\xb9\xc3\xbe\x49\x34\x1f\x76\xf0\xff\xd2\xb9\xee\xe9\x64\x93\xe0\xef\x18\x1e\x1f\x50\xea\xf5\x39\xf1\x63\x1d\x33\x5b\x47\x8c\xe2\xbe\x51\x80\xcb\xf0\x4f\xe7\x66\x1d\x89\x9f\x41\x70\x0c\x4e\xed\x6d\x44\x1d\x10\xcd\xc1\x20\xd8\x07\xb7\x3a\xb4\x91\x89\x19\xc5\x47\x55\xf7\xa7\xdc\x8c\x9c\xb2\x34\xe7\x8a\xad\x6f\x6f\xfd\xcd\x56\xa2\x51\xe8\xc5\x40\x25\x5e\x0b\x3d\xe9\xda\xe2\xcc\x5e\x0d\x7f\xcd\x0d\x5e\x00\x54\xc5\x47\xf1\x19\x00\x00\xff\xff\x6f\xcc\x42\xcc\xde\x01\x00\x00")
|
|
|
|
|
|
|
|
func uiTestsRunnerJsBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiTestsRunnerJs,
|
|
|
|
"ui/tests/runner.js",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiTestsRunnerJs() (*asset, error) {
|
|
|
|
bytes, err := uiTestsRunnerJsBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/tests/runner.js", size: 478, mode: os.FileMode(509), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiTestsTestsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x96\x4b\x6f\xe3\x36\x10\x80\xef\xfa\x15\x03\xb6\x80\x24\x44\x91\x1a\x14\xbd\x38\x08\x8a\x45\xba\x8b\x3e\x80\xed\x23\xd9\xf6\x50\xf4\xc0\x50\x63\x8b\x6b\x79\xa8\x92\x94\x1c\xa3\xc8\x7f\x2f\x86\x96\x14\xc5\x76\xbc\x69\xb2\x45\xd1\xbd\x25\x33\x9c\x99\x6f\x9e\x72\x51\x80\x26\x30\xb6\x44\x0b\xde\x80\x43\x04\x5f\x21\xc8\xa6\x01\xdb\x12\x69\x5a\x80\x26\xa7\xcb\xad\xf8\xe7\x77\xa4\x7d\x50\xa0\x8d\x5e\x35\x4d\x6e\x8d\xf1\xaf\x6b\x5c\x21\x79\xb8\x80\xf8\x33\x5c\xdd\xa0\x3d\xf5\xe8\xbc\xa6\x45\x7c\x1e\x45\x45\x01\x97\x66\xb5\x32\x04\x2c\x04\x87\xbe\x6d\x82\x65\xf8\xeb\x8d\xb1\xd7\xdb\xb7\x49\x7a\x1e\xc4\x9a\xde\xa3\xf2\x2c\xfc\x16\xeb\x06\xad\x63\x05\x7b\x61\x11\x88\xb9\xbe\xf5\xad\x45\x27\x72\xf8\x0d\xa1\x31\x4d\x5b\x4b\x1f\xd8\x1c\xc2\x8d\x74\x58\x02\x87\xaa\x70\xa4\x57\x86\x5c\x5b\xb3\x87\x5e\xb1\x92\xaa\xd2\x84\xb0\xae\xd0\x22\x6c\x4c\xcb\x4f\x83\x86\x09\x5d\x1e\x75\xd2\xc2\x10\x07\x2e\xe0\xaf\x08\xa0\x54\x33\x10\xa5\x3a\x13\x59\x04\x40\xa6\xc4\x19\x50\x5b\xd7\xfc\x9f\x43\xdb\x69\x35\x11\x2c\x71\x33\x03\x31\x97\x4b\x0c\xaf\x3b\x59\xb7\xc8\x02\x63\x6e\xa4\x15\xd1\x5d\x14\xad\x4c\xd9\xd6\x98\x88\xef\xc8\xe3\xc2\x4a\xaf\xfb\xea\x38\x91\x85\x68\xa1\x34\x33\x98\xb7\xa4\x58\x97\xa4\x41\x0a\x50\x14\x70\x83\x73\x63\x11\x50\xaa\x2a\x98\x64\x80\xe4\x5a\x3b\x36\xad\xd6\x6a\xeb\x4f\x3b\xb0\x28\xcb\x0d\x37\xd5\xb6\x94\x07\x07\xaf\xb9\x3b\xb9\x6d\x29\x79\xd5\x34\x19\x70\xbd\x65\xd9\x49\x52\xf8\x0b\xca\x52\x13\x3a\xc7\xd5\xee\x63\x7d\xa3\x9d\x32\x1d\xcf\x45\x85\x43\x9a\x59\xc8\x1e\x24\x95\x50\x2a\xd0\x34\x37\x13\xc7\x9f\xe7\x0b\xf4\xdf\x5f\xfd\xf8\x36\x89\x8b\xee\xac\x50\xd2\xcb\xda\x2c\x8a\x52\x7a\xa9\x90\x3c\x5a\x17\xa7\xb9\xaf\x90\x92\x31\x35\xd6\x0d\xe9\xc1\x58\xf5\xbc\x54\x70\x01\xac\xfb\xfd\x8b\x3f\x82\xee\x6e\xd7\x30\x1d\x6c\x0e\x86\xd6\x1c\x8d\x64\x5d\xb4\xba\x60\x60\xf7\x75\xa9\x2e\x62\x38\x99\x46\x38\x8e\x32\x81\x09\x19\x8f\x38\xf9\x5b\x53\x62\xff\xe8\x2e\x3d\x7f\x29\x5d\x5f\xd7\x17\x01\xf6\x3e\xa6\x8c\x72\xb5\xcf\x78\x3e\x34\xf6\xd2\x22\x2f\x8d\x04\x1e\x52\x9e\xd7\x07\x3d\x94\xef\xe5\x6d\x32\x44\x69\x6d\x3d\x83\x44\x30\xf5\xb2\x2b\xc4\x14\x70\x89\x1b\x38\x81\xf8\x10\x78\xd6\x5b\xfb\x4d\x83\x33\x88\x7f\x7a\x77\x1d\x0f\x22\x26\x9c\xdd\x3f\x0e\xdb\xd1\xf3\x45\x00\x77\x19\x4f\x9f\x47\x69\x4b\xb3\xa6\xc3\x2b\x60\xd1\xa1\xdf\x9b\x77\xe7\x39\xa5\x1b\xf4\x6b\x44\xba\xdf\x8f\x60\x14\x0e\x15\x5b\x25\xa1\x06\x77\x11\xd7\x22\x62\x75\x22\x86\xfa\x8b\x6c\x37\x58\xa7\x9d\xf6\x89\x28\x44\xca\x4c\x92\xca\xeb\x87\x2d\xee\x89\xcc\x32\x99\x6b\x2a\x13\x21\x67\xca\x90\x97\x9a\x5c\x12\x5f\xf5\x5e\xe3\x54\xa4\x79\x25\xdd\x65\x2d\x9d\x4b\x62\xa9\xbc\xee\x30\x4e\x33\x10\x95\x5e\x54\xb5\x5e\x54\xde\x0d\xab\xe5\xf8\x10\x93\xec\x44\xdf\x28\xfc\xb3\x95\x75\xef\x3b\xdf\xde\xd5\x5a\x3b\x7f\xaa\x3d\xae\x4e\x3b\x8d\x6b\x91\xe6\x35\xd2\xc2\x57\x19\x9c\x65\x20\x2c\x52\x89\xd6\x81\xa1\x71\x5b\x07\x57\x23\xe3\x41\x3f\x90\x93\x5c\xe1\x84\x5e\x9c\xec\xcf\xd6\x89\xe0\x5c\x32\x10\xad\xc3\x11\x19\xd8\xf0\x99\x41\x1a\xe9\x1c\x7f\x23\xb6\x5e\x5d\x65\xd6\x0e\x7a\x19\xa8\x0a\xd5\x12\xa8\x5d\x6d\x7d\x73\xbb\x0e\xb4\xec\xaa\x32\xeb\x63\x6d\x63\xd3\xa2\x80\x37\xda\x3a\x0f\x0c\xc2\x05\x66\xaa\x08\x40\xd5\x5a\x2d\x93\xf8\x11\xd4\xf0\xff\xc2\x9a\xb6\x09\xd2\x78\x7b\x14\x3f\xe9\x11\xd8\x49\xf9\x09\xcc\x5b\xe9\x27\x36\x6a\x13\xdf\xd5\x97\xc7\x39\x47\xcc\xad\xc3\x43\x9c\xd3\xfe\x55\x5f\x89\x34\xf7\x78\xeb\x13\xb6\xe1\x8f\x08\xdf\x9c\xde\x38\x7c\x62\x38\x8b\x03\x14\x79\x23\x09\xeb\x53\xaf\x7d\xfd\x58\xe5\x82\xf9\x0e\x4f\x90\xdd\xc3\xec\xec\x10\xf5\xf1\x8f\x2e\xcf\x76\x49\x1e\x4c\x75\xe0\xe6\x38\xcf\xd8\x88\xd1\xf6\x83\xa3\x15\xe8\x3e\xe2\x2e\xb0\xbf\x8f\x30\xa0\x0f\xcb\x3c\xbc\xd9\xad\xf4\x3f\x0e\xe1\x26\x97\x62\xea\x77\x3c\x0a\x8f\x1d\xc2\x50\xa6\xa7\x5c\xc1\xe3\x8d\xfc\x2f\xaf\xe4\xd3\x67\xe2\x7f\x7c\x22\xff\x95\xf1\x0b\xc7\xf1\xa5\xa3\xf7\xfc\x8f\xf0\xb2\x7b\xc6\xd0\xfd\x80\x9b\xe2\x57\xfe\xc5\xf7\xcc\x0b\xf2\xc0\xfe\x83\xd5\x5f\x76\xc7\x66\x65\xbf\x9b\x8f\x8d\xc9\x12\x37\xfb\xe5\xdd\x31\x7f\xa4\x65\xe1\x37\xf2\xde\xc1\x60\xe9\xfe\x65\xfe\x3b\x00\x00\xff\xff\x97\xc2\x04\x55\x8a\x0f\x00\x00")
|
|
|
|
|
|
|
|
func uiTestsTestsJsBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiTestsTestsJs,
|
|
|
|
"ui/tests/tests.js",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiTestsTestsJs() (*asset, error) {
|
|
|
|
bytes, err := uiTestsTestsJsBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/tests/tests.js", size: 3978, mode: os.FileMode(509), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiTestsVendorQunit1120Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x57\x6d\x6f\xdb\x36\x10\xfe\x1c\xfd\x8a\x43\xfb\x65\x0b\x2c\x59\x76\xde\x1a\x19\x18\xd0\x65\x0e\xba\x61\x1b\xd6\x97\xfd\x00\x4a\x3a\x59\x6c\x68\x52\x25\xa9\x38\x69\x90\xff\x3e\x1c\x25\xd9\x7a\x75\xb2\x1a\x4d\x6d\x91\xc7\xbb\xe3\x73\x0f\x1f\x9e\xe6\xa7\xa7\x1e\x9c\xc2\xc7\x7f\x25\xb7\x70\xbf\x08\x16\xcb\x20\x04\x1f\xde\xc3\x1f\xec\x9e\x7d\x4e\x34\x2f\x2c\xb8\xb9\x2f\x68\x2c\x97\x1b\xb8\xd5\x6c\x8b\x3b\xa5\xef\x3c\x70\x2b\x73\x6b\x8b\x68\x3e\xff\x56\x4a\x6e\xbf\x9a\x20\x51\xdb\x7a\xe2\x46\x15\x8f\x9a\x6f\x72\x0b\xcb\x70\xb1\x84\xaf\x1f\x4b\xd4\x8f\x70\xab\x4a\x99\x32\xcb\x95\x04\x26\x53\x50\x36\x47\x0d\x89\x92\x56\xf3\xb8\xb4\x4a\x1b\x5a\xfa\x09\x05\x32\x83\x29\x94\x32\x45\x0d\x36\x47\xf8\xeb\xf7\x2f\x20\x78\x82\xd2\x60\xd0\x0a\xfb\xf5\x1b\x79\x0d\x94\xde\xcc\xeb\x59\x0f\x4e\xe7\x9e\x37\x3f\x3d\x85\x5b\x25\x2d\xdc\xb2\x2d\x17\x8f\x2e\xd6\x67\xfe\x1d\x8d\x9b\x7d\xeb\xb2\xf5\x2d\x1a\x6b\x66\x50\x3f\xe5\xc8\x52\xd4\xfb\xc7\x98\x49\xd9\x7a\x24\x5b\x5d\xd2\x90\x6f\x95\x12\x31\x3b\x4c\x95\x06\xf5\xfb\x0d\x4a\xdb\x35\x46\x53\x0a\x0b\x4f\xde\x49\xa6\xa4\xf5\x33\x97\x47\x04\x6f\x3e\xa0\xb8\x47\xcb\x13\x06\x7f\x63\x89\xf0\x27\x21\xf4\x66\xd6\x1a\xa7\x61\x7f\x38\xec\xcc\xdf\xcc\xe0\x86\x09\x1e\x6b\x3e\x83\xfd\xcc\x0c\xde\x6b\xce\xc4\x0c\x0c\x93\xc6\x37\xa8\x79\xb6\xf2\x9e\x3b\xbb\xfc\x81\xcc\x3b\x43\x06\x04\x87\x27\x70\x3b\x31\xfc\x3b\x46\x60\xb6\x4c\x88\x15\x3c\x77\xb0\x1c\x31\x41\x4d\x46\x55\x41\x3e\xa1\x41\xfb\xc3\x15\x78\x55\xb2\x5b\x95\x96\x02\x33\x2e\x2c\x6a\xc2\x7e\xcb\xf4\x86\xcb\x08\xc2\x95\x77\x52\xb0\x34\xe5\x72\xe3\x1e\x9a\x94\x3e\xb8\x90\xed\x94\xaa\x24\x68\xed\xc1\x3e\xb8\xc0\x2d\x84\xf5\xf7\x02\xb7\x2b\xcf\x3b\x49\x94\x50\x3a\x82\xb7\xef\x2e\xaf\xaf\xd9\xf9\xca\x3b\x89\x59\x72\xb7\xd1\x44\x6f\xbf\x99\x0b\xd3\xb3\xb3\xf3\x6b\xb2\x6e\xc1\xb2\x20\x2f\x2b\xef\x44\x70\x89\x7e\x8e\x54\xe8\xa8\x72\x5a\x59\xed\xea\x21\xa9\xf4\x96\x09\x5a\x1c\x2b\x9d\xa2\xf6\x35\x4b\x79\x69\x22\xb8\x28\x1e\xdc\x5f\xe8\x76\xe5\x6f\xd5\x77\xff\xb8\xc5\x0e\xe3\x3b\xc2\xb3\x32\xb2\xaa\xf0\xdd\xb9\x6c\x9b\x8f\x9b\x09\xcc\x7a\x56\xcf\x7d\x9c\x18\x21\x65\xf1\xc1\xfa\x29\x26\x4a\xbb\x93\x4d\xb9\x4b\x5c\x1d\x30\x4a\x96\x49\x92\x2e\xc6\x56\x47\xb9\xba\x47\x3d\x1b\x0c\x67\x2a\x29\x0d\xb9\x6e\x5c\x64\xd9\x0b\xa4\x06\xc1\x62\x14\xb4\x24\xe5\xa6\x10\xec\x31\x02\x2e\x1d\xc6\xb1\x50\xc9\x5d\xa7\xfe\x50\x17\x34\x70\xb0\x1f\xbc\x56\x8c\x23\x1f\x4d\x5d\x7a\x9b\x1e\x09\x3b\x4d\x94\xa5\xab\x69\xb3\x81\x8b\xf5\xd5\x79\xf8\xeb\x38\x4f\x10\x09\x2d\x42\x22\x13\x6a\x17\x41\xce\xd3\x14\x65\x3b\xf0\x9e\xfc\xc7\xe2\xd5\xc4\x1a\x09\xb0\x8c\xdf\x2d\x58\xb6\xea\xc1\x59\xd5\xcd\xe4\x2c\xa5\xa0\x7a\x13\xb3\x9f\xc2\x19\xd4\xff\x82\x8b\x9f\x61\x59\x3c\xb8\xbf\x45\x17\x85\xf6\x21\xf3\x49\xbb\x19\xaf\x61\xcb\x84\x62\x36\x02\x47\x2f\xb7\x82\xce\x18\xdd\x1c\x26\x82\x7f\x98\x31\xf3\x5b\xc6\xc5\x40\x00\x68\xa5\xe0\xc6\xfa\xc6\x3e\x0a\xf4\x0b\x65\x78\x45\x23\x2e\x0d\x4f\xb1\x5f\x80\x4a\x8c\x3a\x30\x9c\x13\x0c\x15\x18\xee\xf7\x1e\x8a\x8a\xcb\xb1\xb2\x56\x6d\x23\xda\x07\x18\x25\x78\xda\x00\xf0\x7f\xa2\x06\x39\x4f\xb1\x60\x86\xc2\x07\xf4\xdd\x55\xc8\xce\x34\x71\x84\x2e\xcb\x0e\x1d\xab\x43\x31\xb2\x17\x63\xb5\x92\x1b\xc7\xf6\x52\x1b\xaa\x4f\xa1\xb8\xb4\xa8\x47\xad\xd9\x90\x02\x23\x47\x6d\xea\x4c\x3e\x0f\xfd\xf5\xce\x60\x6b\x62\x70\x0a\xc3\x30\x1c\xcd\x89\x36\x6c\xf9\x16\x87\x1c\x38\x19\xb9\x10\xc8\x43\x50\x79\x60\xc6\xa0\xb6\x3e\xd5\xe1\x20\xd7\xa4\x3d\x87\x9d\xf5\xb7\x3a\x4a\x70\x57\xce\x31\xa5\x9c\x56\xc8\xa1\xe4\xf5\x95\xae\xce\x31\x51\x42\xb0\x82\xda\x91\x97\xab\x69\x59\x2c\x1c\x0a\xb5\xcb\x66\x6d\x04\xcd\xaf\x55\x77\x97\xc1\xb2\x2b\x41\xb5\x9b\x7c\x2f\xab\x4c\xf0\x8d\x3c\xc0\x79\x8f\x9a\xee\x7c\xd1\x8c\x5b\x55\x8c\x4a\xdb\x48\x9d\xac\xdb\xc0\xa8\x83\xbe\x69\xa1\xb1\x7f\x7b\xee\x72\x6e\xd1\x37\x05\x4b\x30\xa2\x79\x7f\xa7\x19\x85\xde\x29\x9d\xba\xdf\x11\xc4\x1a\xd9\x9d\x4f\x03\x43\x8f\x69\xa5\xcd\x63\xe2\x17\x66\xcb\xb8\x7d\x5b\x9c\x5d\x9d\x63\x98\x1c\xa3\x70\xd7\x35\x97\x66\xc2\x75\x96\x25\x2c\x61\x6d\x11\x26\xfe\x1e\xf1\x3b\x3f\xad\xf5\x0a\x6e\x54\x29\x47\x7a\x15\x88\x83\xa4\x9a\x19\xff\x3c\x41\x1d\x
|
|
|
|
|
|
|
|
func uiTestsVendorQunit1120CssBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiTestsVendorQunit1120Css,
|
|
|
|
"ui/tests/vendor/qunit-1.12.0.css",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiTestsVendorQunit1120Css() (*asset, error) {
|
|
|
|
bytes, err := uiTestsVendorQunit1120CssBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/tests/vendor/qunit-1.12.0.css", size: 4668, mode: os.FileMode(509), modTime: time.Unix(1496161165, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _uiTestsVendorQunit1120Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xdb\x76\x1b\x39\x92\x28\xfa\x4c\x7e\x45\x38\xbb\x97\x4d\x5a\x29\x52\x72\x75\xef\xee\xa6\x24\xbb\x5d\xbe\x4c\xbb\x77\x5d\xbc\x6d\xd7\xcc\x83\xac\x6e\x83\x4c\x90\x84\x95\x04\x58\x89\xa4\x64\x8e\xa5\xbf\x38\xeb\x3c\xed\x1f\x38\xdf\x71\xfe\x64\x7f\xc9\x59\x88\xc0\x35\x33\x49\xd9\x55\xd5\x33\x2f\x67\x2e\x65\x31\x71\x0b\x04\x02\x81\x40\xdc\x30\x7e\xf8\xb0\x0f\x0f\xe1\x7f\xfd\x24\x45\x0d\x57\xc7\xa3\xe3\x47\xa3\x23\x38\x84\xa7\xf0\x77\x76\xc5\xde\xce\x2a\xb1\xae\x01\xcb\xde\x71\x5d\x0b\xb9\x80\x97\x15\x5b\xf1\x6b\x55\x5d\xf6\x01\x5b\x2e\xeb\x7a\x3d\x19\x8f\x7f\xde\x48\x51\x7f\xd4\xa3\x99\x5a\xd9\x82\x67\x6a\xbd\xad\xc4\x62\x59\xc3\xa3\xa3\xe3\x6f\xe0\xe3\xff\xda\xf0\x6a\x0b\x2f\xd5\x46\x16\xac\x16\x4a\x02\x93\x05\xa8\x7a\xc9\x2b\x98\x29\x59\x57\x62\xba\xa9\x55\xa5\x4d\xd3\x37\xbc\xe4\x4c\xf3\x02\x36\xb2\xe0\x15\xd4\x4b\x0e\xdf\xbf\x7a\x07\xa5\x98\x71\xa9\xf9\xc8\x0d\xab\x27\xe3\xf1\xc7\x9f\x4d\xb7\x23\x55\x2d\xc6\xb6\x78\xdc\x87\x87\xe3\x7e\x7f\x30\xdf\xc8\x99\x19\x67\x00\xd7\x42\x16\xea\x1a\x86\xf0\xb9\xdf\xbf\x62\x15\x4d\x36\xef\xf7\x98\xd6\xbc\x32\x7f\xcc\x94\x9c\x8b\x45\xde\xef\x29\xf9\xa2\xaa\x54\xf5\x52\xbe\xae\xf8\x55\xde\xef\xd5\x5c\xd7\xaf\x0a\x38\x83\xa3\xbc\xdf\x9b\x8b\x92\xff\xc0\x56\x1c\xce\x60\xa0\xd5\xa6\x9a\xf1\x97\x95\x5a\xbd\xad\xd9\xec\xb2\xae\xd8\x8c\x0f\xe0\x08\x86\x70\x73\x03\x59\x06\xc3\x51\xc5\xd7\xa5\xf9\x38\x1e\x4c\xde\x17\x07\xc3\x83\xf7\xc3\x27\xe3\x1c\xb2\x2c\x2a\x19\x1d\xbc\x1f\xd3\x37\x33\x94\x7a\x5b\x57\x06\xc1\x67\xf0\xe3\xf4\x23\x9f\xd5\xa3\x75\xa5\x6a\x55\x6f\xd7\x7c\xe4\xca\xf2\x7e\x6f\xc9\xf4\x8f\xd7\xb2\xab\x12\x95\xbc\xae\xd4\x9a\x57\xf5\x36\xef\xf7\xc6\x63\xf8\x9f\x9c\xaf\x81\x41\xa9\x66\xac\x84\x8a\xcf\x79\xc5\xe5\x8c\x43\xad\xe0\x39\xab\x39\x0c\xfe\xed\x6f\x87\x8f\xfe\xfc\xcd\xb0\xdf\xc3\x9f\x67\x16\x53\x23\xf3\x2b\xef\xf7\x34\xaf\xdf\x89\x15\x57\x9b\x3a\x14\x85\x6f\x79\xbf\x57\xf0\xb9\x90\xdc\xe0\xe7\x73\xbf\x17\x55\x9f\x80\x81\x48\xcd\xdb\x8d\xe0\xde\xd9\x19\x64\x66\x59\xb1\x65\x96\x63\x3b\xad\x85\x92\x6f\x6b\x55\xb1\x05\x9f\x40\x58\xb9\x21\xf6\xdb\x33\x6b\xf6\x09\xce\x20\x43\x22\x3b\x34\x8b\x72\xa8\x11\x21\xd9\x89\x29\xaf\xab\x2d\x55\x6c\x74\x65\xc6\x7d\x55\xf3\xd5\x00\x3e\xe5\xf0\x09\x86\x27\x5d\x75\x2a\xbe\x52\x57\xdc\x56\x73\x75\x2a\x5e\x6f\x2a\x09\x75\xb5\xe1\xf8\xe1\x16\x66\xac\x9e\x2d\x07\xc0\xc1\xc2\xe4\xaa\xcc\x59\xa9\x6d\x9d\x7e\xaf\x77\x3b\x18\x0e\xfb\xbd\x5b\x83\xfc\x87\x0f\xfb\x3d\x78\x08\xaf\x2b\x75\x25\x0a\xae\x81\x81\x54\xd5\x8a\x95\xe2\x3f\x79\x01\xdc\x50\x19\xd0\x1c\x72\x98\xa9\xaa\xe2\x33\xdc\x5d\x4c\x82\xd0\x7a\xc3\xb1\xed\xb5\xa8\x97\xf0\xea\x05\xfc\x09\x06\x66\xaf\xac\x2b\xa1\xaa\x21\x5c\x2f\x79\xc5\x01\xe9\xb4\x83\x44\x40\x68\x6c\x2b\x55\x0d\x6b\xa4\x85\x72\x0b\x62\xb5\x2e\xf9\x8a\xcb\x9a\x17\xa6\x10\x2b\x7c\x8b\x1b\x4c\x49\xb7\x81\xb9\xfe\xe3\x68\x21\xea\xe5\x66\x6a\xf6\xf0\xf8\x77\x9f\x8e\xff\x38\x3a\x3e\x1e\xfd\x61\xf4\x07\xdf\xe4\xaf\x6b\x56\xb1\x15\x7c\xa6\x91\x6e\x10\x84\x5b\x9a\x0b\x95\x5b\x9c\xd8\x0a\xb6\x08\x56\x5c\x6b\xb6\xc0\x29\x8d\xfb\x3d\xfc\xe6\x49\x3d\x6c\x52\xaa\x4b\xd8\x35\x0b\x2e\xd9\x8a\xe7\xae\xad\x21\x93\x46\x4b\xfc\xe5\xa7\x3d\xc0\x85\x13\x73\xb0\x1d\xd1\xd7\x91\xde\x4c\x09\xc9\x03\x38\xca\xe1\x4f\x30\x84\x33\x43\x7f\xe7\x0a\x37\x4f\xe6\x16\x53\xd2\xae\xa6\x2e\xf1\xc7\x93\xe8\x47\x34\x08\x4c\x20\xc3\x69\x13\xe1\x59\xe8\x7c\x53\xf7\xfb\x49\xfa\xbb\xd1\x01\xb5\x45\x58\x71\xac\xfb\xf7\xdd\x34\x9b\xc4\x85\xc5\x07\x90\x4d\x20\x83\x03\x57\xc9\x12\x24\x2f\x35\x87\xd0\x49\x47\xcb\x56\xc5\x1d\xa3\x74\xf4\x9b\x94\xc7\x33\x46\x22\x8f\xea\xd8\x2a\x11\xce\x4d\xb5\xdb\x74\x0f\x7c\xcf\x2e\x71\x03\xcc\x4a\x25\x39\xa8\xb9\xa1\x72\x5a\x01\xd8\x68\xb3\x9a\x4a\x96\x5b\x78\x5a\x55\x6c\x0b\xaa\xb2\x9c\x0d\x98\x86\x29\xd3\x66\xe9\xe1\x21\x9e\x15\x33\xb5\x16\x5c\x83\xba\xb2\x47\x82\xba\x96\xc0\xe5\x66\xc5\x2b\x36\x2d\xb9\xa5\xf6\x5a\x70\x3d\x6a\x51\x2c\x75\x79\x6b\x46\x4d\x29\xd5\x15\xfc\xc0\xaf\x1d\x48\xb8\xeb\x10\x22\x37\x48\xe8\x19\x06\x15\x9f\x6d\x2a\x2d\xae\x78\xb9\x1d\x8e\x2c\x49\x53\xc3\x7f\x67\xe5\x86\xeb\x84\xa6\xd5\xf4\xa3\x45\xf6\x78\x0c\xff\x56\x6d\x64\x0d\x47\xa
|
|
|
|
|
|
|
|
func uiTestsVendorQunit1120JsBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_uiTestsVendorQunit1120Js,
|
|
|
|
"ui/tests/vendor/qunit-1.12.0.js",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func uiTestsVendorQunit1120Js() (*asset, error) {
|
|
|
|
bytes, err := uiTestsVendorQunit1120JsBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "ui/tests/vendor/qunit-1.12.0.js", size: 58796, mode: os.FileMode(509), modTime: time.Unix(1496161165, 0)}
|
2015-11-30 19:24:39 +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){
|
2017-06-12 17:57:02 +00:00
|
|
|
"ui/GNUmakefile": uiGnumakefile,
|
|
|
|
"ui/Gemfile": uiGemfile,
|
|
|
|
"ui/Gemfile.lock": uiGemfileLock,
|
|
|
|
"ui/README.md": uiReadmeMd,
|
|
|
|
"ui/development_config.json": uiDevelopment_configJson,
|
|
|
|
"ui/index.html": uiIndexHtml,
|
|
|
|
"ui/javascripts/app/controllers.js": uiJavascriptsAppControllersJs,
|
|
|
|
"ui/javascripts/app/helpers.js": uiJavascriptsAppHelpersJs,
|
|
|
|
"ui/javascripts/app/mixins.js": uiJavascriptsAppMixinsJs,
|
|
|
|
"ui/javascripts/app/models.js": uiJavascriptsAppModelsJs,
|
|
|
|
"ui/javascripts/app/router.js": uiJavascriptsAppRouterJs,
|
|
|
|
"ui/javascripts/app/routes.js": uiJavascriptsAppRoutesJs,
|
|
|
|
"ui/javascripts/app/views.js": uiJavascriptsAppViewsJs,
|
|
|
|
"ui/javascripts/fixtures.js": uiJavascriptsFixturesJs,
|
|
|
|
"ui/javascripts/libs/base64.min.js": uiJavascriptsLibsBase64MinJs,
|
|
|
|
"ui/javascripts/libs/classie.js": uiJavascriptsLibsClassieJs,
|
|
|
|
"ui/javascripts/libs/classie.min.js": uiJavascriptsLibsClassieMinJs,
|
|
|
|
"ui/javascripts/libs/ember-debug.min.js": uiJavascriptsLibsEmberDebugMinJs,
|
|
|
|
"ui/javascripts/libs/ember-validations.min.js": uiJavascriptsLibsEmberValidationsMinJs,
|
|
|
|
"ui/javascripts/libs/ember.min.js": uiJavascriptsLibsEmberMinJs,
|
|
|
|
"ui/javascripts/libs/handlebars-1.3.0.min.js": uiJavascriptsLibsHandlebars130MinJs,
|
|
|
|
"ui/javascripts/libs/jquery-1.10.2.min.js": uiJavascriptsLibsJquery1102MinJs,
|
|
|
|
"ui/javascripts/libs/list-view.min.js": uiJavascriptsLibsListViewMinJs,
|
|
|
|
"ui/javascripts/libs/notificationFx.js": uiJavascriptsLibsNotificationfxJs,
|
|
|
|
"ui/scripts/compile.rb": uiScriptsCompileRb,
|
|
|
|
"ui/scripts/dist.sh": uiScriptsDistSh,
|
|
|
|
"ui/static/android-chrome-192x192.png": uiStaticAndroidChrome192x192Png,
|
|
|
|
"ui/static/android-chrome-512x512.png": uiStaticAndroidChrome512x512Png,
|
|
|
|
"ui/static/apple-touch-icon-114x114.png": uiStaticAppleTouchIcon114x114Png,
|
|
|
|
"ui/static/apple-touch-icon-120x120.png": uiStaticAppleTouchIcon120x120Png,
|
|
|
|
"ui/static/apple-touch-icon-144x144.png": uiStaticAppleTouchIcon144x144Png,
|
|
|
|
"ui/static/apple-touch-icon-152x152.png": uiStaticAppleTouchIcon152x152Png,
|
|
|
|
"ui/static/apple-touch-icon-57x57.png": uiStaticAppleTouchIcon57x57Png,
|
|
|
|
"ui/static/apple-touch-icon-60x60.png": uiStaticAppleTouchIcon60x60Png,
|
|
|
|
"ui/static/apple-touch-icon-72x72.png": uiStaticAppleTouchIcon72x72Png,
|
|
|
|
"ui/static/apple-touch-icon-76x76.png": uiStaticAppleTouchIcon76x76Png,
|
|
|
|
"ui/static/apple-touch-icon.png": uiStaticAppleTouchIconPng,
|
|
|
|
"ui/static/base.css.map": uiStaticBaseCssMap,
|
|
|
|
"ui/static/bootstrap.min.css": uiStaticBootstrapMinCss,
|
|
|
|
"ui/static/consul-logo.png": uiStaticConsulLogoPng,
|
|
|
|
"ui/static/favicon-128.png": uiStaticFavicon128Png,
|
|
|
|
"ui/static/favicon-16x16.png": uiStaticFavicon16x16Png,
|
|
|
|
"ui/static/favicon-196x196.png": uiStaticFavicon196x196Png,
|
|
|
|
"ui/static/favicon-32x32.png": uiStaticFavicon32x32Png,
|
|
|
|
"ui/static/favicon-96x96.png": uiStaticFavicon96x96Png,
|
|
|
|
"ui/static/favicon.ico": uiStaticFaviconIco,
|
|
|
|
"ui/static/favicon.png": uiStaticFaviconPng,
|
|
|
|
"ui/static/loading-cylon-pink.svg": uiStaticLoadingCylonPinkSvg,
|
|
|
|
"ui/static/mstile-144x144.png": uiStaticMstile144x144Png,
|
|
|
|
"ui/static/mstile-150x150.png": uiStaticMstile150x150Png,
|
|
|
|
"ui/static/mstile-310x150.png": uiStaticMstile310x150Png,
|
|
|
|
"ui/static/mstile-310x310.png": uiStaticMstile310x310Png,
|
|
|
|
"ui/static/mstile-70x70.png": uiStaticMstile70x70Png,
|
|
|
|
"ui/static/safari-pinned-tab.svg": uiStaticSafariPinnedTabSvg,
|
|
|
|
"ui/style-guide.html": uiStyleGuideHtml,
|
|
|
|
"ui/styles/_buttons.scss": uiStyles_buttonsScss,
|
|
|
|
"ui/styles/_forms.scss": uiStyles_formsScss,
|
|
|
|
"ui/styles/_lists.scss": uiStyles_listsScss,
|
|
|
|
"ui/styles/_mixins.scss": uiStyles_mixinsScss,
|
|
|
|
"ui/styles/_nav.scss": uiStyles_navScss,
|
|
|
|
"ui/styles/_notifications.scss": uiStyles_notificationsScss,
|
|
|
|
"ui/styles/_panels.scss": uiStyles_panelsScss,
|
|
|
|
"ui/styles/_type.scss": uiStyles_typeScss,
|
|
|
|
"ui/styles/_variables.scss": uiStyles_variablesScss,
|
|
|
|
"ui/styles/base.scss": uiStylesBaseScss,
|
|
|
|
"ui/tests/runner.css": uiTestsRunnerCss,
|
|
|
|
"ui/tests/runner.js": uiTestsRunnerJs,
|
|
|
|
"ui/tests/tests.js": uiTestsTestsJs,
|
|
|
|
"ui/tests/vendor/qunit-1.12.0.css": uiTestsVendorQunit1120Css,
|
|
|
|
"ui/tests/vendor/qunit-1.12.0.js": uiTestsVendorQunit1120Js,
|
2015-11-30 19:24:39 +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{
|
2017-06-12 17:57:02 +00:00
|
|
|
"ui": &bintree{nil, map[string]*bintree{
|
|
|
|
"GNUmakefile": &bintree{uiGnumakefile, map[string]*bintree{}},
|
|
|
|
"Gemfile": &bintree{uiGemfile, map[string]*bintree{}},
|
|
|
|
"Gemfile.lock": &bintree{uiGemfileLock, map[string]*bintree{}},
|
|
|
|
"README.md": &bintree{uiReadmeMd, map[string]*bintree{}},
|
|
|
|
"development_config.json": &bintree{uiDevelopment_configJson, map[string]*bintree{}},
|
|
|
|
"index.html": &bintree{uiIndexHtml, map[string]*bintree{}},
|
|
|
|
"javascripts": &bintree{nil, map[string]*bintree{
|
|
|
|
"app": &bintree{nil, map[string]*bintree{
|
|
|
|
"controllers.js": &bintree{uiJavascriptsAppControllersJs, map[string]*bintree{}},
|
|
|
|
"helpers.js": &bintree{uiJavascriptsAppHelpersJs, map[string]*bintree{}},
|
|
|
|
"mixins.js": &bintree{uiJavascriptsAppMixinsJs, map[string]*bintree{}},
|
|
|
|
"models.js": &bintree{uiJavascriptsAppModelsJs, map[string]*bintree{}},
|
|
|
|
"router.js": &bintree{uiJavascriptsAppRouterJs, map[string]*bintree{}},
|
|
|
|
"routes.js": &bintree{uiJavascriptsAppRoutesJs, map[string]*bintree{}},
|
|
|
|
"views.js": &bintree{uiJavascriptsAppViewsJs, map[string]*bintree{}},
|
|
|
|
}},
|
|
|
|
"fixtures.js": &bintree{uiJavascriptsFixturesJs, map[string]*bintree{}},
|
|
|
|
"libs": &bintree{nil, map[string]*bintree{
|
|
|
|
"base64.min.js": &bintree{uiJavascriptsLibsBase64MinJs, map[string]*bintree{}},
|
|
|
|
"classie.js": &bintree{uiJavascriptsLibsClassieJs, map[string]*bintree{}},
|
|
|
|
"classie.min.js": &bintree{uiJavascriptsLibsClassieMinJs, map[string]*bintree{}},
|
|
|
|
"ember-debug.min.js": &bintree{uiJavascriptsLibsEmberDebugMinJs, map[string]*bintree{}},
|
|
|
|
"ember-validations.min.js": &bintree{uiJavascriptsLibsEmberValidationsMinJs, map[string]*bintree{}},
|
|
|
|
"ember.min.js": &bintree{uiJavascriptsLibsEmberMinJs, map[string]*bintree{}},
|
|
|
|
"handlebars-1.3.0.min.js": &bintree{uiJavascriptsLibsHandlebars130MinJs, map[string]*bintree{}},
|
|
|
|
"jquery-1.10.2.min.js": &bintree{uiJavascriptsLibsJquery1102MinJs, map[string]*bintree{}},
|
|
|
|
"list-view.min.js": &bintree{uiJavascriptsLibsListViewMinJs, map[string]*bintree{}},
|
|
|
|
"notificationFx.js": &bintree{uiJavascriptsLibsNotificationfxJs, map[string]*bintree{}},
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
"scripts": &bintree{nil, map[string]*bintree{
|
|
|
|
"compile.rb": &bintree{uiScriptsCompileRb, map[string]*bintree{}},
|
|
|
|
"dist.sh": &bintree{uiScriptsDistSh, map[string]*bintree{}},
|
|
|
|
}},
|
2015-11-30 19:24:39 +00:00
|
|
|
"static": &bintree{nil, map[string]*bintree{
|
2017-06-12 17:57:02 +00:00
|
|
|
"android-chrome-192x192.png": &bintree{uiStaticAndroidChrome192x192Png, map[string]*bintree{}},
|
|
|
|
"android-chrome-512x512.png": &bintree{uiStaticAndroidChrome512x512Png, map[string]*bintree{}},
|
|
|
|
"apple-touch-icon-114x114.png": &bintree{uiStaticAppleTouchIcon114x114Png, map[string]*bintree{}},
|
|
|
|
"apple-touch-icon-120x120.png": &bintree{uiStaticAppleTouchIcon120x120Png, map[string]*bintree{}},
|
|
|
|
"apple-touch-icon-144x144.png": &bintree{uiStaticAppleTouchIcon144x144Png, map[string]*bintree{}},
|
|
|
|
"apple-touch-icon-152x152.png": &bintree{uiStaticAppleTouchIcon152x152Png, map[string]*bintree{}},
|
|
|
|
"apple-touch-icon-57x57.png": &bintree{uiStaticAppleTouchIcon57x57Png, map[string]*bintree{}},
|
|
|
|
"apple-touch-icon-60x60.png": &bintree{uiStaticAppleTouchIcon60x60Png, map[string]*bintree{}},
|
|
|
|
"apple-touch-icon-72x72.png": &bintree{uiStaticAppleTouchIcon72x72Png, map[string]*bintree{}},
|
|
|
|
"apple-touch-icon-76x76.png": &bintree{uiStaticAppleTouchIcon76x76Png, map[string]*bintree{}},
|
|
|
|
"apple-touch-icon.png": &bintree{uiStaticAppleTouchIconPng, map[string]*bintree{}},
|
|
|
|
"base.css.map": &bintree{uiStaticBaseCssMap, map[string]*bintree{}},
|
|
|
|
"bootstrap.min.css": &bintree{uiStaticBootstrapMinCss, map[string]*bintree{}},
|
|
|
|
"consul-logo.png": &bintree{uiStaticConsulLogoPng, map[string]*bintree{}},
|
|
|
|
"favicon-128.png": &bintree{uiStaticFavicon128Png, map[string]*bintree{}},
|
|
|
|
"favicon-16x16.png": &bintree{uiStaticFavicon16x16Png, map[string]*bintree{}},
|
|
|
|
"favicon-196x196.png": &bintree{uiStaticFavicon196x196Png, map[string]*bintree{}},
|
|
|
|
"favicon-32x32.png": &bintree{uiStaticFavicon32x32Png, map[string]*bintree{}},
|
|
|
|
"favicon-96x96.png": &bintree{uiStaticFavicon96x96Png, map[string]*bintree{}},
|
|
|
|
"favicon.ico": &bintree{uiStaticFaviconIco, map[string]*bintree{}},
|
|
|
|
"favicon.png": &bintree{uiStaticFaviconPng, map[string]*bintree{}},
|
|
|
|
"loading-cylon-pink.svg": &bintree{uiStaticLoadingCylonPinkSvg, map[string]*bintree{}},
|
|
|
|
"mstile-144x144.png": &bintree{uiStaticMstile144x144Png, map[string]*bintree{}},
|
|
|
|
"mstile-150x150.png": &bintree{uiStaticMstile150x150Png, map[string]*bintree{}},
|
|
|
|
"mstile-310x150.png": &bintree{uiStaticMstile310x150Png, map[string]*bintree{}},
|
|
|
|
"mstile-310x310.png": &bintree{uiStaticMstile310x310Png, map[string]*bintree{}},
|
|
|
|
"mstile-70x70.png": &bintree{uiStaticMstile70x70Png, map[string]*bintree{}},
|
|
|
|
"safari-pinned-tab.svg": &bintree{uiStaticSafariPinnedTabSvg, map[string]*bintree{}},
|
|
|
|
}},
|
|
|
|
"style-guide.html": &bintree{uiStyleGuideHtml, map[string]*bintree{}},
|
|
|
|
"styles": &bintree{nil, map[string]*bintree{
|
|
|
|
"_buttons.scss": &bintree{uiStyles_buttonsScss, map[string]*bintree{}},
|
|
|
|
"_forms.scss": &bintree{uiStyles_formsScss, map[string]*bintree{}},
|
|
|
|
"_lists.scss": &bintree{uiStyles_listsScss, map[string]*bintree{}},
|
|
|
|
"_mixins.scss": &bintree{uiStyles_mixinsScss, map[string]*bintree{}},
|
|
|
|
"_nav.scss": &bintree{uiStyles_navScss, map[string]*bintree{}},
|
|
|
|
"_notifications.scss": &bintree{uiStyles_notificationsScss, map[string]*bintree{}},
|
|
|
|
"_panels.scss": &bintree{uiStyles_panelsScss, map[string]*bintree{}},
|
|
|
|
"_type.scss": &bintree{uiStyles_typeScss, map[string]*bintree{}},
|
|
|
|
"_variables.scss": &bintree{uiStyles_variablesScss, map[string]*bintree{}},
|
|
|
|
"base.scss": &bintree{uiStylesBaseScss, map[string]*bintree{}},
|
|
|
|
}},
|
|
|
|
"tests": &bintree{nil, map[string]*bintree{
|
|
|
|
"runner.css": &bintree{uiTestsRunnerCss, map[string]*bintree{}},
|
|
|
|
"runner.js": &bintree{uiTestsRunnerJs, map[string]*bintree{}},
|
|
|
|
"tests.js": &bintree{uiTestsTestsJs, map[string]*bintree{}},
|
|
|
|
"vendor": &bintree{nil, map[string]*bintree{
|
|
|
|
"qunit-1.12.0.css": &bintree{uiTestsVendorQunit1120Css, map[string]*bintree{}},
|
|
|
|
"qunit-1.12.0.js": &bintree{uiTestsVendorQunit1120Js, map[string]*bintree{}},
|
|
|
|
}},
|
2015-11-30 19:24:39 +00:00
|
|
|
}},
|
|
|
|
}},
|
|
|
|
}}
|
|
|
|
|
|
|
|
// 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, "/")...)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func assetFS() *assetfs.AssetFS {
|
2016-08-10 02:03:10 +00:00
|
|
|
assetInfo := func(path string) (os.FileInfo, error) {
|
|
|
|
return os.Stat(path)
|
|
|
|
}
|
2015-11-30 19:24:39 +00:00
|
|
|
for k := range _bintree.Children {
|
2016-08-10 02:03:10 +00:00
|
|
|
return &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: assetInfo, Prefix: k}
|
2015-11-30 19:24:39 +00:00
|
|
|
}
|
|
|
|
panic("unreachable")
|
|
|
|
}
|