2019-01-19 21:51:15 +01:00
|
|
|
// Code generated by go-bindata. DO NOT EDIT.
|
|
|
|
// sources:
|
|
|
|
// dist/404.html
|
|
|
|
// dist/404.txt
|
|
|
|
// dist/download.audio.html
|
|
|
|
// dist/download.html
|
|
|
|
// dist/download.image.html
|
|
|
|
// dist/download.markdown.html
|
|
|
|
// dist/download.sandbox.html
|
|
|
|
// dist/download.video.html
|
|
|
|
// dist/favicon.ico
|
|
|
|
// dist/fonts/font-awesome/FontAwesome.otf
|
|
|
|
// dist/fonts/font-awesome/fontawesome-webfont.eot
|
|
|
|
// dist/fonts/font-awesome/fontawesome-webfont.svg
|
|
|
|
// dist/fonts/font-awesome/fontawesome-webfont.ttf
|
|
|
|
// dist/fonts/font-awesome/fontawesome-webfont.woff
|
|
|
|
// dist/fonts/glyphicons/glyphicons-halflings-regular.eot
|
|
|
|
// dist/fonts/glyphicons/glyphicons-halflings-regular.svg
|
|
|
|
// dist/fonts/glyphicons/glyphicons-halflings-regular.ttf
|
|
|
|
// dist/fonts/glyphicons/glyphicons-halflings-regular.woff
|
|
|
|
// dist/fonts/transfersh.eot
|
|
|
|
// dist/fonts/transfersh.svg
|
|
|
|
// dist/fonts/transfersh.ttf
|
|
|
|
// dist/fonts/transfersh.woff
|
|
|
|
// dist/images/Logo-orange.png
|
|
|
|
// dist/images/bitcoin.png
|
|
|
|
// dist/images/reviews/dave.jpg
|
|
|
|
// dist/images/reviews/jacob.jpg
|
|
|
|
// dist/images/reviews/kareem.jpg
|
|
|
|
// dist/images/reviews/lars.jpg
|
|
|
|
// dist/images/reviews/pg.jpeg
|
|
|
|
// dist/images/terminal-top.svg
|
|
|
|
// dist/images/terminal.svg
|
|
|
|
// dist/images/tor.svg
|
|
|
|
// dist/includes/download-bottom.html
|
2021-07-17 10:12:59 +02:00
|
|
|
// dist/includes/download-delete.html
|
2019-03-30 12:35:24 +01:00
|
|
|
// dist/includes/download-footer.html
|
|
|
|
// dist/includes/download-head.html
|
|
|
|
// dist/includes/download-js.html
|
2019-04-07 17:04:02 +02:00
|
|
|
// dist/includes/download-navigation.html
|
2019-01-19 21:51:15 +01:00
|
|
|
// dist/includes/download-top.html
|
|
|
|
// dist/includes/footer.html
|
|
|
|
// dist/includes/ga.html
|
|
|
|
// dist/includes/head.html
|
|
|
|
// dist/includes/js.html
|
|
|
|
// dist/includes/navigation.html
|
|
|
|
// dist/index.html
|
|
|
|
// dist/index.txt
|
|
|
|
// dist/robots.txt
|
|
|
|
// dist/scripts/main.js
|
|
|
|
// dist/scripts/vendor/modernizr.js
|
|
|
|
// dist/scripts/vendor/video.js
|
|
|
|
// dist/styles/main.css
|
|
|
|
|
|
|
|
package web
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"fmt"
|
|
|
|
"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 fileInfoEx
|
|
|
|
}
|
|
|
|
|
|
|
|
type fileInfoEx interface {
|
|
|
|
os.FileInfo
|
|
|
|
MD5Checksum() string
|
|
|
|
}
|
|
|
|
|
|
|
|
type bindataFileInfo struct {
|
|
|
|
name string
|
|
|
|
size int64
|
|
|
|
mode os.FileMode
|
|
|
|
modTime time.Time
|
|
|
|
md5checksum string
|
|
|
|
}
|
|
|
|
|
|
|
|
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) MD5Checksum() string {
|
|
|
|
return fi.md5checksum
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) IsDir() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) Sys() interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDist404Html = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x69\x8f\xdb\x36\x13\xfe\xbe\xbf\x62\x5e\x1b\x2f\xb2\x1b\x58\x87\xbd\x76\x12\x28\x5a\x03\x41\x9b\xa4\x01\x82\x24\x68\x52\xa0\xfd\xb4\xa0\xa8\x91\xc4\x2c\x45\x2a\x24\xe5\x63\x9b\xfe\xf7\x82\xb2\x65\x5b\x97\x5d\xa0\xa9\xb9\x5e\xc9\x9a\x7b\xe6\xd1\x90\x13\xfe\xef\xe7\x8f\x3f\x7d\xf9\xe3\xd3\x6b\xc8\x4c\xce\x97\x57\xa1\xbd\x00\x27\x22\xbd\x1b\xa1\x18\xd9\x07\x48\xe2\xe5\x15\x00\x40\x98\xa3\x21\x40\x33\xa2\x34\x9a\xbb\x51\x69\x12\xe7\xc5\x68\x4f\x32\xcc\x70\x5c\x7e\x22\x29\xc2\x07\x69\xe0\x8d\x2c\x45\x0c\xc1\x75\xe8\xed\x08\x3b\x26\x6d\xb6\xf5\xbd\xfd\x04\x81\x93\xcb\x47\x47\x23\x47\x6a\x98\x14\xf0\xe7\x81\x64\x3f\x11\xa1\x0f\xa9\xb2\x8a\x02\x18\x47\xb7\xf1\x3c\xa1\x2f\x1b\x0c\x06\x37\xc6\xd1\x19\x89\xe5\x3a\x00\x21\x05\x1e\xc9\x7f\x5d\x9d\x58\xf9\x8f\x0d\x54\x19\x6b\x6a\x2e\x48\x1c\x33\x91\x06\x70\xeb\x17\x1b\x98\xfa\xc5\xa6\xa9\x38\x91\xc2\x38\x9a\x3d\x62\x00\xb3\x0e\x91\x33\x81\x4e\x86\x2c\xcd\x4c\x00\x53\x77\xde\xa4\x52\xc9\xa5\x0a\x60\xfc\xfc\xd6\xae\x97\xc3\x01\x25\xbe\x5d\x4d\x06\x67\x8d\xd1\x03\x33\xce\x2e\x30\xf6\x88\x0e\x89\xbf\x96\xda\xda\xf1\xfd\xff\xb7\x78\x73\x7d\x91\xaf\x95\x85\xc9\xe1\x17\x13\x45\x69\x5a\x49\xa9\x82\x4e\x48\xce\xf8\x36\x80\xd1\x2f\xc8\x57\x68\x18\x25\xf0\x01\x4b\x1c\x4d\xe0\xf0\x60\x02\xaf\x14\x23\x7c\x02\x9a\x08\xed\x68\x54\x2c\xe9\xb5\x18\xc9\x78\xdb\x32\x91\x93\x8d\xb3\x66\xb1\xc9\x02\x58\xf8\x9d\xc4\xde\x0f\x93\x9a\x05\xb3\x35\x81\x45\x87\x29\x92\x2a\x46\x15\xc0\xb4\xd8\x80\x96\x9c\xc5\x16\x35\x76\xf5\xb1\x39\x8a\xc4\xac\xd4\x01\xcc\xdb\x6a\x72\xa2\x52\x26\x02\xf0\x81\x94\x46\xb6\x65\x37\x07\xc0\xf9\x95\x21\x0b\x1e\x18\x93\xe7\x76\x4d\x80\x09\x8d\x66\x4f\xf1\x61\x9c\x24\xc9\x39\x04\x50\xbb\xfa\xab\x35\xed\x64\xae\x76\xea\x2c\x5a\xbb\x49\xa9\x20\x42\x38\x4b\x45\x00\x14\x85\x41\x35\x64\x50\x17\xa4\xfd\x06\xd6\x60\x8e\xa2\xa8\x5f\xea\x76\xc0\xcd\xa9\xbb\xc0\x1c\x7c\xf0\xed\xb5\x57\xb4\x18\x92\xb4\x72\xbd\x12\xe5\xe0\x5b\xec\x57\x6b\xde\x89\xfd\xb2\x4e\x97\x4a\x61\x08\x13\xa8\x86\x91\x7a\xfb\x62\x10\xa9\x3d\xa4\x21\xf4\x9c\x18\xf5\x9e\x42\x2a\x65\xca\x11\x34\x12\x45\x33\x78\xea\x1d\x89\x63\x4b\x72\x12\xb6\x29\x15\xef\x86\xcc\x99\x36\x4e\xd5\xa6\xdb\x0d\xaf\x99\x90\x01\x9f\x7a\xdd\x69\x58\x4c\xa4\xca\x87\xa0\x77\x46\x7a\x9d\x3b\xdf\xcc\xa4\xfb\x50\x47\xed\x9e\xde\xf3\x8e\x9e\x82\x0b\x9a\x78\x9e\x3e\x3b\xdb\x7d\x85\x54\x39\xe1\x4d\x86\x15\x2a\xdb\xa5\x78\x0d\x7a\x23\x8b\xfe\x0e\x3d\x9f\xcf\xcf\x36\x86\xd9\xa9\xe9\xfe\x88\x5b\xc1\xed\x51\x31\xeb\xee\x19\xb5\xc3\x5d\xca\xa1\x66\x8b\x21\x24\x2d\xea\x2e\xe3\xb7\xeb\x7a\xda\x8d\x4e\x3b\x8f\xfd\x8e\x29\xed\x6f\x2d\xc3\xb5\x89\x99\x2e\x38\xd9\x5a\x5d\x55\x96\x23\x2e\xe9\x43\x7f\x1c\xb7\xb3\xc1\x38\xfa\x3a\xd4\x69\x28\x9d\x28\xd6\x19\x33\xe8\xe8\x82\xd0\x0a\xd4\x6b\x45\xda\x05\x2b\x95\xb6\x15\x2b\x24\x6b\xf6\x2f\x68\x74\x54\xa7\x2e\x6c\xb2\xb0\x6b\x90\x8d\xe5\x24\xc5\xe0\xb0\xd7\xda\x50\x89\x72\x52\x5b\x76\x14\xe6\x5a\xa5\x11\xb9\x9e\x2d\x16\x93\xfa\xeb\xdf\x4c\x60\x9c\x4c\xed\xba\xb9\xa8\xd4\x1e\x98\x7e\xb0\x46\xfd\x83\x15\xca\x7f\xa3\xaf\xce\x1a\x29\x0a\x24\x8a\x08\xda\xdb\x88\xaa\x34\x9c\x67\x39\x4f\x7d\x2a\x57\xa8\x12\x6e\x81\xbd\x62\x9a\x45\xbc\x4d\x6f\x61\xb5\x45\x7d\x94\x32\x0f\x60\x7a\x09\xff\x41\x66\xcd\xf4\xb6\xad\x20\x91\xb4\xd4\xbd\xcd\xeb\x80\x33\x42\xc8\xc5\xd3\x41\xb1\x81\x2a\xbb\xfe\x04\xf6\x7f\xee\x99\x12\x1d\x10\xfc\xc2\xae\x4b\xdd\x67\xd0\xfd\x6f\xe6\x9f\xb8\x3f\xf5\x17\x34\x7a\xd6\xf4\x45\x96\xc6\xa6\xb3\xb3\x83\xd4\x32\xb3\xd9\xac\xd7\xab\xea\x3c\xb9\x9f\x17\x2a\xd3\x0e\x13\xdd\x4d\x75\x68\x7f\xaa\x37\x85\xc6\x0e\x63\xff\x87\xde\x7e\x24\x09\xbd\xdd\x98\x13\xda\x43\xe5\xf2\x2a\x8c\xd9\x0a\x28\x27\x5a\xdf\x8d\x0e\x3b\x78\x3d\xea\x64\xd3\xa5\x1d\x71\x92\x6a\xc4\x09\xed\xa9\x66\x69\x07\x9d\xea\x26\xf4\xb2\xe9\x9e\xad\x58\x7e\x96\x4a\x6d\x27\x10\x95\x06\x4c\x86\x50\xd8\xe1\x68\x2b\x4b\x58\xa3\x42\x30\x6a\xcb\x44\x0a\x46\xc2\x8a\xe1\x1a\x62\x89\x1a\x84\x34\x80\x1b\xa6\x8d\x1b\x7a\xc5\x41\xcd\x3b\x03\x5c\xca\x07\x0d\x9c\x3d\x20\x98\x8c\x69\x58\x13\x5d\xa9\x54\xa8\x4b\x6e\x40\x26\x80\xcc\x64\xa8\x82\xa3\x5c\xc9\x8f\x83\x56\xc8\xd9\x92\x40\xce\xb4\xd9\x16\x18\
|
|
|
|
|
|
|
|
func bindataDist404HtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDist404Html,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/404.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDist404Html() (*asset, error) {
|
|
|
|
bytes, err := bindataDist404HtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/404.html",
|
2019-03-30 12:35:24 +01:00
|
|
|
size: 3872,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDist404Txt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\x31\x30\xd1\x53\xf0\xcb\x2f\x51\x48\xcb\x2f\xcd\x4b\xe1\x02\x04\x00\x00\xff\xff\x1b\xa1\xaf\x54\x0f\x00\x00\x00")
|
2019-01-19 21:51:15 +01:00
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDist404TxtBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDist404Txt,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/404.txt",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDist404Txt() (*asset, error) {
|
|
|
|
bytes, err := bindataDist404TxtBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/404.txt",
|
|
|
|
size: 15,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistDownloadAudioHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\xdd\x73\xdb\x36\x12\x7f\xd7\x5f\xb1\xa1\x1f\x24\x5f\x45\x52\x5f\xa6\x1c\x5b\xd4\x4d\x9b\xa4\x49\xaf\x4d\x2e\xd7\x36\xd7\xde\x64\x32\x19\x90\x58\x92\xb0\x49\x80\x01\x40\x29\x8a\xa3\xff\xfd\x06\xa0\x28\x53\x1f\x56\x7c\x9d\x39\x3f\x58\x24\x76\xf7\xb7\xcb\xfd\x02\x16\xb3\x27\x54\xc4\x7a\x55\x22\x64\xba\xc8\xe7\x9d\xd9\x13\xd7\x7d\xcf\x12\xc8\x35\xfc\xf4\x02\xa6\x1f\xe6\x60\xff\x66\x86\x0a\x71\x4e\x94\x0a\x1d\x2e\xdc\x1b\x05\xb9\x76\x19\x3e\xad\x7f\x2e\xeb\x9f\xa9\x33\x87\xd9\x93\xf7\xc8\x29\x4b\x3e\xb8\xee\x3d\x5a\x1b\xea\x11\x68\x27\x60\x2e\x1f\x03\xf3\x90\x7c\xaa\x37\x10\x66\x61\xde\x39\x94\x77\x6a\xde\x1d\xe1\xce\x2c\x43\x42\xe7\x1d\xab\xb1\x40\x4d\x20\xce\x88\x54\xa8\x43\xa7\xd2\x89\x7b\xe9\xb4\x49\x99\xd6\xa5\x8b\x9f\x2a\xb6\x08\x9d\x3f\xdd\x77\xdf\xbb\xcf\x44\x51\x12\xcd\xa2\x1c\x1d\x88\x05\xd7\xc8\x75\xe8\xfc\xf4\x22\x44\x9a\x62\x23\xa9\x99\xce\x71\x7e\x77\xe7\xbd\x12\x4a\x73\x52\xe0\x7a\x0d\x2e\xbc\x20\x6a\x05\x84\x53\x48\x88\xd2\x90\xb0\x1c\x41\x65\x44\x32\x9e\x42\x22\x45\x01\x3a\x43\x88\x45\x51\x10\x4e\xdd\x9c\x71\xf4\x66\x7e\x0d\xd4\x32\xc7\x80\x85\x0e\x45\x15\x4b\x56\x6a\x26\x78\xcb\x88\xff\x19\xdf\x39\x44\x5e\x30\x5c\x96\x42\xea\x16\xec\x92\x51\x9d\x85\x14\x17\x2c\x46\xd7\xbe\xf4\x81\x71\xa6\x19\xc9\x5d\x15\x93\x1c\xc3\xa1\x37\x68\xa0\x9e\xb8\x2e\xbc\xcd\x49\x8c\x90\x90\x05\x8b\x05\xf7\x58\x2c\xac\x51\xa4\x2c\x73\x74\xb5\xa8\xe2\xcc\xb5\x84\x92\xa7\xc0\xb8\xb5\x4a\x0a\xa1\x81\x32\x89\xb1\x16\x72\x05\x26\x48\x16\x2d\x67\xfc\x16\x24\xe6\xa1\xa3\xf4\x2a\x47\x95\x21\x6a\x07\x32\x89\x49\xe8\x78\x9e\x5f\x2f\xfa\x05\x61\xdc\x8b\x95\x72\xda\x52\x96\xa9\xeb\xfb\x89\xe0\x5a\x79\xa9\x10\x69\x8e\xa4\x64\xca\x8b\x45\xe1\xc7\x4a\xfd\x3d\x21\x05\xcb\x57\xe1\x6f\xa2\x92\x31\x7e\xf7\x1b\xe1\xea\xbb\xb7\x52\x5c\x0d\x07\x83\xfe\x68\x30\xe8\x8f\x07\x83\xae\x55\xdd\xbd\x57\xdd\x05\x53\x57\x61\x57\xe3\x67\x6d\x30\xba\x7f\x45\xe1\x73\x29\x18\xad\xf5\xbd\x16\x5c\x3c\x5a\x49\x1d\x71\x50\x32\xae\xbf\xdd\xbe\x2a\x7f\x81\x9c\x0a\xe9\x17\x82\xa2\xe4\xec\x8b\xf4\x4c\xce\xcf\x36\xe4\x79\x67\xe6\xd7\xb9\xde\xe9\x74\x66\x91\xa0\x2b\x00\x46\x43\x87\x8a\x25\xcf\x05\xa1\xa6\x3a\x4e\xe3\x2e\x18\x45\xb1\x87\xd9\xb6\xa7\x36\x0e\x60\x41\x24\xa4\xe4\x67\x5c\x41\x08\xce\xdd\x9d\xf7\xf2\xfb\x9f\x71\xb5\x5e\x3b\xd7\x1b\x3a\x4b\xa0\x57\xd3\x9f\x84\xe0\x38\xe7\x70\xd7\x69\x8a\xbe\x97\x54\x3c\x36\xa9\xdc\x63\x7d\x50\x7d\x10\x7d\x48\xfb\x20\xfb\x40\xfa\x50\xb4\x19\x01\xd8\xfb\xee\x4b\xeb\xd8\xef\x39\xc9\x57\x9a\xc5\xea\x9f\xd1\x0d\xc6\xba\xfb\x01\x42\x90\xd7\x3b\x9c\xd2\xac\xd9\x9f\xaf\x5f\x61\xab\x62\x17\x0f\xa0\x67\x38\xbc\x4f\x1b\x56\xef\x93\x61\x7e\xff\xe1\xdc\x2b\x2b\x95\xf5\x88\x4c\xab\x02\xb9\x56\xe7\x2d\x99\x75\xbf\x66\xcd\x21\x84\x21\xfc\x0d\x38\x2e\xe1\x39\xd1\xd8\x3b\x6f\xeb\x27\x10\x82\xf2\x62\x89\x44\xe3\x8b\x1c\x0d\x4a\x4f\x9c\xf7\x77\x74\x17\x96\x27\x45\xbd\x61\x50\x3f\xac\x7e\x27\xe9\x1b\x52\x60\x4f\x9c\xbf\x1f\x7c\xd8\xc1\xf3\x88\x5a\xf1\xd8\xe8\xdc\x5d\x56\xd2\x2c\xa6\xed\xc5\xc2\x2b\x89\x44\xae\xdf\x08\x8a\x1e\xe3\x0a\xa5\xfe\x01\x13\x21\xb1\x67\x3d\xba\xe5\x5c\x9f\xf7\x96\x8c\x53\xb1\xec\x03\x15\xb1\xfd\xd2\x3e\x74\xeb\xb8\x76\xfb\xd0\xf5\xfd\xe5\x72\xb9\xc9\x64\x97\x34\x1e\xb7\xf9\x7c\xff\x76\xa3\x0c\x6b\x4a\xba\xad\xcf\x4f\x49\xaf\x5b\x7f\x7a\xb7\x5f\x67\x45\x1f\xba\x5a\x12\xae\x12\x94\x9e\xca\xf6\x79\x15\x72\x6a\x50\x4a\x92\xa2\x69\x40\xf7\xf4\x75\x9d\x6b\x7b\xa9\x47\xd9\xc2\xa6\x31\x27\x0b\x96\x12\xdb\x05\xe7\x5b\x40\x4b\xdd\x6c\x01\x4b\x49\xca\x12\x65\x8b\x6a\x39\xc8\xa6\x85\xf8\x7b\x04\x4b\xcc\x86\xbb\x8d\x7b\xe6\x67\xc3\x3d\x79\x9f\xec\x2d\x54\xdb\x4d\x27\x63\x94\x22\x77\x3f\xab\x63\xd0\x39\x9b\x6f\x75\x7b\x9e\xef\xcc\x33\x51\xe0\x01\x5a\xad\x22\x67\xdf\x06\x38\x53\xa4\x28\x73\x54\xce\xbc\x7e\x80\x4a\x21\xc4\x44\xa1\xfa\xab\xa0\x67\xa6\xeb\x93\x58\x3b\xf3\xcd\x03\x54\x8f\xc5\x9a\xf9\x55\xde\x8a\x82\x4f\xd9\x62\xd3\xb9\xea\xc7\x4e\x67\xa6\xd0\x16\xa1\x8d\x9d\xf9\xf4\xa6\x61\x1f\x8d\xd8\xa1\xca\x48\xfa\xc7\xe2\x35\x6a\x64\x4d\xfa\xb8\x76\xc7\x74\x4c\x08\x7f\x64\x39\x6e\x43\x38\x3a\x26\x39\x99\x9b\x56\x7b\x05\xb3\xc8\xf0\x3f\xab\x37\xbc\xdf\x5
|
|
|
|
|
|
|
|
func bindataDistDownloadAudioHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistDownloadAudioHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/download.audio.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistDownloadAudioHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistDownloadAudioHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/download.audio.html",
|
2021-07-17 10:12:59 +02:00
|
|
|
size: 5806,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistDownloadHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\xdd\x73\xdb\x38\x0e\x7f\xf7\x5f\x81\x2a\x0f\x76\xae\x96\xe4\xaf\xc8\x69\x62\xe9\xa6\x5f\xdb\xf6\xfa\x71\xbd\xdd\xed\xed\xde\x74\x3a\x1d\x4a\x84\x24\x36\x12\xa9\x92\x94\x5d\x37\xf5\xff\x7e\x43\xca\x76\x24\xc7\xc9\xf5\x36\x0f\xb1\x44\x00\x3f\x80\x00\x08\x02\x5a\x3c\xa0\x22\xd1\xeb\x0a\x21\xd7\x65\x11\xf5\x16\x0f\x5c\xf7\x23\x4b\xa1\xd0\xf0\xea\x39\xcc\x3f\x45\x60\xff\x16\x86\x0a\x49\x41\x94\x0a\x1d\x2e\xdc\x2f\x0a\x0a\xed\x32\x7c\xd4\xfc\x9c\x37\x3f\x73\x27\x82\xc5\x83\x8f\xc8\x29\x4b\x3f\xb9\xee\x0d\x5a\x1b\xea\x27\xd0\xee\x81\x39\xff\x19\x98\xbb\xe4\x33\xbd\x85\x30\x0b\x51\xef\xb6\xbc\xd3\xf0\x76\x84\x7b\x8b\x1c\x09\x8d\x7a\x56\x63\x89\x9a\x40\x92\x13\xa9\x50\x87\x4e\xad\x53\xf7\xdc\x69\x93\x72\xad\x2b\x17\xbf\xd6\x6c\x19\x3a\x7f\xba\x1f\x1e\xbb\x4f\x45\x59\x11\xcd\xe2\x02\x1d\x48\x04\xd7\xc8\x75\xe8\xbc\x7a\x1e\x22\xcd\x70\x27\xa9\x99\x2e\x30\xba\xbe\xf6\x5e\x0a\xa5\x39\x29\x71\xb3\x01\x17\x9e\x13\xb5\x06\xc2\x29\xa4\x44\x69\x48\x59\x81\xa0\x72\x22\x19\xcf\x20\x95\xa2\x04\x9d\x23\x24\xa2\x2c\x09\xa7\x6e\xc1\x38\x7a\x0b\xbf\x01\x6a\x99\x63\xc0\x42\x87\xa2\x4a\x24\xab\x34\x13\xbc\x65\xc4\xff\x8d\xef\xdc\x46\x5e\x32\x5c\x55\x42\xea\x16\xec\x8a\x51\x9d\x87\x14\x97\x2c\x41\xd7\xbe\x0c\x81\x71\xa6\x19\x29\x5c\x95\x90\x02\xc3\xb1\x37\xda\x41\x3d\x70\x5d\x78\x5f\x90\x04\x21\x25\x4b\x96\x08\xee\xb1\x44\x58\xa3\x48\x55\x15\xe8\x6a\x51\x27\xb9\x6b\x09\x15\xcf\x80\x71\x6b\x95\x14\x42\x03\x65\x12\x13\x2d\xe4\x1a\x4c\x90\x2c\x5a\xc1\xf8\x15\x48\x2c\x42\x47\xe9\x75\x81\x2a\x47\xd4\x0e\xe4\x12\xd3\xd0\xf1\x3c\xbf\x59\xf4\x4b\xc2\xb8\x97\x28\xe5\xb4\xa5\x2c\x53\xdf\xf7\x53\xc1\xb5\xf2\x32\x21\xb2\x02\x49\xc5\x94\x97\x88\xd2\x4f\x94\xfa\x7b\x4a\x4a\x56\xac\xc3\xdf\x44\x2d\x13\x7c\xf8\x1b\xe1\xea\xe1\x7b\x29\x2e\xc6\xa3\xd1\x70\x32\x1a\x0d\xa7\xa3\x51\xdf\xaa\xee\xdf\xa8\xee\x83\x39\x57\x61\x5f\xe3\x37\x6d\x30\xfa\x7f\x45\xe1\x33\x29\x18\x6d\xf4\xbd\x15\x5c\xfc\xb4\x92\x26\xe2\xa0\x64\xd2\xec\xdd\xbe\x2a\x7f\x89\x9c\x0a\xe9\x97\x82\xa2\xe4\xec\xbb\xf4\x4c\xce\x2f\xb6\xe4\xa8\xb7\xf0\x9b\x5c\xef\xf5\x16\xb1\xa0\x6b\x00\x46\x43\x87\x8a\x15\x2f\x04\xa1\x4e\xd4\x6b\x63\x37\x8a\x00\x96\x44\x42\x46\x5e\xe3\x1a\x42\x70\xae\xaf\xbd\x17\x8f\x5f\xe3\x7a\xb3\x71\x2e\xb7\x74\x96\xc2\xa0\xa1\x3f\x08\xc1\x71\x4e\xe1\xba\xb7\x3b\xc0\x83\xb4\xe6\x89\x49\xcb\x01\x1b\x82\x1a\x82\x18\x42\x36\x04\x39\x04\x32\x84\xb2\xcd\x08\xc0\x3e\xf6\x5f\x58\x27\x3d\xe6\xa4\x58\x6b\x96\xa8\x7f\xc6\x5f\x30\xd1\xfd\x4f\x10\x82\xbc\xec\x70\x4a\xb3\x66\x7f\x7e\xfc\x80\xbd\x8a\x2e\x1e\xc0\xc0\x70\x78\x5f\xb7\xac\xde\x57\xc3\xfc\xf1\xd3\xa9\x57\xd5\x2a\x1f\x10\x99\xd5\x25\x72\xad\x4e\x5b\x32\x9b\x61\xc3\x5a\x40\x08\x63\xf8\x1b\x70\x5c\xc1\x33\xa2\x71\x70\xda\xd6\x4f\x20\x04\xe5\x25\x12\x89\xc6\xe7\x05\x1a\x94\x81\x38\x1d\x76\x74\x97\x96\x27\x43\xbd\x65\x50\x4f\xd6\xbf\x93\xec\x1d\x29\x71\x20\x4e\x3f\x8e\x3e\x75\xf0\x3c\xa2\xd6\x3c\x31\x3a\xbb\xcb\x4a\x9a\xc5\xac\xbd\x58\x7a\x15\x91\xc8\xf5\x3b\x41\xd1\x63\x5c\xa1\xd4\x4f\x30\x15\x12\x07\xd6\xa3\x7b\xce\xcd\xe9\x60\xc5\x38\x15\xab\x21\x50\x91\xd8\x9d\x0e\xa1\xdf\xc4\xb5\x3f\x84\xbe\xef\xaf\x56\xab\x6d\x56\xba\x64\xe7\x71\x9b\x9b\x37\x6f\x5f\x94\x61\xcd\x48\xbf\xb5\xfd\x8c\x0c\xfa\xcd\xd6\xfb\xc3\x26\x2b\x86\xd0\xd7\x92\x70\x95\xa2\xf4\x54\x7e\xc8\xab\x90\x53\x83\x52\x91\x0c\x4d\x31\xb9\xa1\x6f\x9a\x5c\xdb\xa7\x66\xf3\x4a\xd9\xd2\xe6\x24\x27\x4b\x96\x11\x5b\xd1\xa2\x3d\xa0\xa5\x6e\xcb\xf9\x4a\x92\xaa\x42\xd9\xa2\x5a\x0e\xb2\x2d\x07\xfe\x01\xc1\x12\xf3\x71\xb7\x08\x2f\xfc\x7c\x7c\x20\xef\x93\x83\x85\x7a\x7f\x81\xe4\x8c\x52\xe4\xee\x37\x75\x0c\xba\x60\xd1\x5e\xb7\xe7\xf9\x4e\x94\x8b\x12\x6f\xa1\x35\x2a\x0a\xf6\xbf\x01\x4e\x14\x29\xab\x02\x95\x13\x35\x0f\x50\x2b\x84\x84\x28\x54\x7f\x15\xf4\xc4\x54\x70\x92\x68\x27\xda\x3e\x40\xfd\xb3\x58\x0b\xbf\x2e\x5a\x51\xf0\x29\x5b\x6e\xab\x50\xf3\xd8\xeb\x2d\x14\xda\x43\x68\x63\x67\xb6\xbe\x2b\xbe\x47\x23\x76\x5b\x65\x2c\xfd\x63\xf1\x9a\xec\x64\x4d\xfa\xb8\xf6\xf6\x73\x4c\x08\x7f\x61\x05\xee\x43\x38\x39\x26\x39\x8b\x4c\xd9\xbc\x80\x45\x6c\xf8\x9f\x36\x97\xd7\xef\xeb\xca\x8a\xc4\xd1\xc2\xcf\x67\xc7\xc5\x14\xfb
|
|
|
|
|
|
|
|
func bindataDistDownloadHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistDownloadHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/download.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistDownloadHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistDownloadHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/download.html",
|
2021-07-17 10:12:59 +02:00
|
|
|
size: 5092,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistDownloadImageHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\xeb\x73\xdb\x38\x0e\xff\xee\xbf\x02\x55\x3e\xd8\xb9\xb5\x24\xbf\x22\xa7\x89\xa5\x9b\xdd\xb6\xdb\xee\xf5\x71\xbd\xdd\xed\xed\xde\x74\x3a\x1d\x4a\x84\x24\x36\x12\xa9\x92\x94\x5d\x37\xf5\xff\x7e\x43\xca\x0f\xf9\x91\x34\xb7\x33\x97\x0f\xb1\x44\x00\x3f\x80\x00\x08\x02\x9a\x3d\xa2\x22\xd1\xcb\x0a\x21\xd7\x65\x11\x75\x66\x8f\x5c\xf7\x3d\x4b\xa1\xd0\xf0\xcb\x33\x98\x7e\x88\xc0\xfe\xcd\x0c\x15\x92\x82\x28\x15\x3a\x5c\xb8\x9f\x14\x14\xda\x65\xf8\xb8\xf9\xb9\x6c\x7e\xa6\x4e\x04\xb3\x47\xef\x91\x53\x96\x7e\x70\xdd\x1d\x5a\x1b\xea\x01\x68\xf7\xc0\x5c\x3e\x04\xe6\x2e\xf9\x4c\xaf\x21\xcc\x42\xd4\x39\x96\x77\x1a\xde\x3d\xe1\xce\x2c\x47\x42\xa3\x8e\xd5\x58\xa2\x26\x90\xe4\x44\x2a\xd4\xa1\x53\xeb\xd4\xbd\x74\xda\xa4\x5c\xeb\xca\xc5\xcf\x35\x9b\x87\xce\x9f\xee\xbb\x1f\xdd\x27\xa2\xac\x88\x66\x71\x81\x0e\x24\x82\x6b\xe4\x3a\x74\x7e\x79\x16\x22\xcd\x70\x23\xa9\x99\x2e\x30\xba\xbd\xf5\x5e\x08\xa5\x39\x29\x71\xb5\x02\x17\x9e\x11\xb5\x04\xc2\x29\xa4\x44\x69\x48\x59\x81\xa0\x72\x22\x19\xcf\x20\x95\xa2\x04\x9d\x23\x24\xa2\x2c\x09\xa7\x6e\xc1\x38\x7a\x33\xbf\x01\x6a\x99\x63\xc0\x42\x87\xa2\x4a\x24\xab\x34\x13\xbc\x65\xc4\xff\x8c\xef\x1c\x23\xcf\x19\x2e\x2a\x21\x75\x0b\x76\xc1\xa8\xce\x43\x8a\x73\x96\xa0\x6b\x5f\xfa\xc0\x38\xd3\x8c\x14\xae\x4a\x48\x81\xe1\xd0\x1b\x6c\xa0\x1e\xb9\x2e\xbc\x2d\x48\x82\x90\x92\x39\x4b\x04\xf7\x58\x22\xac\x51\xa4\xaa\x0a\x74\xb5\xa8\x93\xdc\xb5\x84\x8a\x67\xc0\xb8\xb5\x4a\x0a\xa1\x81\x32\x89\x89\x16\x72\x09\x26\x48\x16\xad\x60\xfc\x06\x24\x16\xa1\xa3\xf4\xb2\x40\x95\x23\x6a\x07\x72\x89\x69\xe8\x78\x9e\xdf\x2c\xfa\x25\x61\xdc\x4b\x94\x72\xda\x52\x96\xa9\xeb\xfb\xa9\xe0\x5a\x79\x99\x10\x59\x81\xa4\x62\xca\x4b\x44\xe9\x27\x4a\xfd\x3d\x25\x25\x2b\x96\xe1\x6f\xa2\x96\x09\xfe\xf0\x1b\xe1\xea\x87\xb7\x52\x5c\x0d\x07\x83\xfe\x68\x30\xe8\x8f\x07\x83\xae\x55\xdd\xdd\xa9\xee\x82\x39\x57\x61\x57\xe3\x17\x6d\x30\xba\x7f\x45\xe1\x53\x29\x18\x6d\xf4\xbd\x16\x5c\x3c\x58\x49\x13\x71\x50\x32\x69\xf6\x6e\x5f\x95\x3f\x47\x4e\x85\xf4\x4b\x41\x51\x72\xf6\x55\x7a\x26\xe7\x67\x6b\x72\xd4\x99\xf9\x4d\xae\x77\x3a\xb3\x58\xd0\x25\x00\xa3\xa1\x43\xc5\x82\x17\x82\x50\x27\xea\xb4\xb1\x1b\x45\x00\x73\x22\x21\x23\x2f\x71\x09\x21\x38\xb7\xb7\xde\xf3\x1f\x5f\xe2\x72\xb5\x72\xae\xd7\x74\x96\x42\xaf\xa1\x3f\x0a\xc1\x71\xce\xe1\xb6\xb3\x39\xc0\xbd\xb4\xe6\x89\x49\xcb\x1e\xeb\x83\xea\x83\xe8\x43\xd6\x07\xd9\x07\xd2\x87\xb2\xcd\x08\xc0\xde\x77\x9f\x5b\x27\xfd\xc8\x49\xb1\xd4\x2c\x51\xff\x8c\x3f\x61\xa2\xbb\x1f\x20\x04\x79\xbd\xc7\x29\xcd\x9a\xfd\xf9\xf6\x0d\xb6\x2a\xf6\xf1\x00\x7a\x86\xc3\xfb\xbc\x66\xf5\x3e\x1b\xe6\xf7\x1f\xce\xbd\xaa\x56\x79\x8f\xc8\xac\x2e\x91\x6b\x75\xde\x92\x59\xf5\x1b\xd6\x02\x42\x18\xc2\xdf\x80\xe3\x02\x9e\x12\x8d\xbd\xf3\xb6\x7e\x02\x21\x28\x2f\x91\x48\x34\x3e\x2b\xd0\xa0\xf4\xc4\x79\x7f\x4f\x77\x69\x79\x32\xd4\x6b\x06\xf5\xd3\xf2\x77\x92\xbd\x21\x25\xf6\xc4\xf9\xfb\xc1\x87\x3d\x3c\x8f\xa8\x25\x4f\x8c\xce\xfd\x65\x25\xcd\x62\xd6\x5e\x2c\xbd\x8a\x48\xe4\xfa\x8d\xa0\xe8\x31\xae\x50\xea\x9f\x30\x15\x12\x7b\xd6\xa3\x5b\xce\xd5\x79\x6f\xc1\x38\x15\x8b\x3e\x50\x91\xd8\x9d\xf6\xa1\xdb\xc4\xb5\xdb\x87\xae\xef\x2f\x16\x8b\x75\x56\xba\x64\xe3\x71\x9b\x9b\xbb\xb7\x4f\xca\xb0\x66\xa4\xdb\xda\x7e\x46\x7a\xdd\x66\xeb\xdd\x7e\x93\x15\x7d\xe8\x6a\x49\xb8\x4a\x51\x7a\x2a\x3f\xe4\x55\xc8\xa9\x41\xa9\x48\x86\xa6\x98\xec\xe8\xab\x26\xd7\xb6\xa9\xd9\xbc\x52\x36\xb7\x39\xc9\xc9\x9c\x65\xc4\x56\xb4\x68\x0b\x68\xa9\xeb\x72\xbe\x90\xa4\xaa\x50\xb6\xa8\x96\x83\xac\xcb\x81\x7f\x40\xb0\xc4\x7c\xb8\x5f\x84\x67\x7e\x3e\x3c\x90\xf7\xc9\xc1\x42\xbd\xbd\x40\x72\x46\x29\x72\xf7\x8b\x3a\x05\x5d\xb0\x68\xab\xdb\xf3\x7c\x27\xca\x45\x89\x47\x68\x8d\x8a\x82\x7d\x1f\xe0\x4c\x91\xb2\x2a\x50\x39\x51\xf3\x00\xb5\x42\x48\x88\x42\xf5\x57\x41\xcf\x4c\x05\x27\x89\x76\xa2\xf5\x03\xd4\x0f\xc5\x9a\xf9\x75\xd1\x8a\x82\x4f\xd9\x7c\x5d\x85\x9a\xc7\xce\x4c\xa1\x3d\x83\x36\x74\x66\xe7\x9b\xda\x7b\x32\x60\xc7\x1a\x63\xe9\x9f\x0a\xd7\x68\x23\x6b\xb2\xc7\xb5\x97\x9f\x63\x22\xf8\x33\x2b\x70\x1b\xc1\xd1\x29\xc9\x49\x64\xaa\xe6\x15\xcc\x62\xc3\xff\xa4\xb9\xbb\x7e\x5f\x56\x56\x24\x8e\x66\x7e\x3e\x39\x2
|
|
|
|
|
|
|
|
func bindataDistDownloadImageHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistDownloadImageHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/download.image.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistDownloadImageHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistDownloadImageHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/download.image.html",
|
2021-07-17 10:12:59 +02:00
|
|
|
size: 5463,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistDownloadMarkdownHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\xeb\x73\xdb\x38\x0e\xff\xee\xbf\x02\x55\x3e\xd8\xb9\xb5\x24\xbf\x22\xa7\x89\xa5\x9b\xdd\xb6\xdb\xf6\xfa\xb8\xde\xee\xf6\x76\x6f\x3a\x9d\x0e\x25\x42\x12\x1b\x89\x54\x49\xca\xae\x9b\xfa\x7f\xbf\x21\xe5\x87\xfc\x48\x36\xb7\x33\x97\x0f\xb1\x44\x00\x3f\x80\x00\x08\x02\x9a\x3d\xa2\x22\xd1\xcb\x0a\x21\xd7\x65\x11\x75\x66\x8f\x5c\xf7\x03\x4b\xa1\xd0\xf0\xf2\x19\x4c\x3f\x46\x60\xff\x66\x86\x0a\x49\x41\x94\x0a\x1d\x2e\xdc\xcf\x0a\x0a\xed\x32\x7c\xdc\xfc\x5c\x36\x3f\x53\x27\x82\xd9\xa3\x0f\xc8\x29\x4b\x3f\xba\xee\x0e\xad\x0d\xf5\x00\xb4\x7b\x60\x2e\x1f\x02\x73\x97\x7c\xa6\xd7\x10\x66\x21\xea\x1c\xcb\x3b\x0d\xef\x9e\x70\x67\x96\x23\xa1\x51\xc7\x6a\x2c\x51\x13\x48\x72\x22\x15\xea\xd0\xa9\x75\xea\x5e\x3a\x6d\x52\xae\x75\xe5\xe2\x97\x9a\xcd\x43\xe7\x0f\xf7\xfd\x8f\xee\x13\x51\x56\x44\xb3\xb8\x40\x07\x12\xc1\x35\x72\x1d\x3a\x2f\x9f\x85\x48\x33\xdc\x48\x6a\xa6\x0b\x8c\x6e\x6f\xbd\x17\x42\x69\x4e\x4a\x5c\xad\xc0\x85\x67\x44\x2d\x81\x70\x0a\x29\x51\x1a\x52\x56\x20\xa8\x9c\x48\xc6\x33\x48\xa5\x28\x41\xe7\x08\x89\x28\x4b\xc2\xa9\x5b\x30\x8e\xde\xcc\x6f\x80\x5a\xe6\x18\xb0\xd0\xa1\xa8\x12\xc9\x2a\xcd\x04\x6f\x19\xf1\x3f\xe3\x3b\xc7\xc8\x73\x86\x8b\x4a\x48\xdd\x82\x5d\x30\xaa\xf3\x90\xe2\x9c\x25\xe8\xda\x97\x3e\x30\xce\x34\x23\x85\xab\x12\x52\x60\x38\xf4\x06\x1b\xa8\x47\xae\x0b\xef\x0a\x92\x20\xa4\x64\xce\x12\xc1\x3d\x96\x08\x6b\x14\xa9\xaa\x02\x5d\x2d\xea\x24\x77\x2d\xa1\xe2\x19\x30\x6e\xad\x92\x42\x68\xa0\x4c\x62\xa2\x85\x5c\x82\x09\x92\x45\x2b\x18\xbf\x01\x89\x45\xe8\x28\xbd\x2c\x50\xe5\x88\xda\x81\x5c\x62\x1a\x3a\x9e\xe7\x37\x8b\x7e\x49\x18\xf7\x12\xa5\x9c\xb6\x94\x65\xea\xfa\x7e\x2a\xb8\x56\x5e\x26\x44\x56\x20\xa9\x98\xf2\x12\x51\xfa\x89\x52\x7f\x4f\x49\xc9\x8a\x65\xf8\xab\xa8\x65\x82\x3f\xfc\x4a\xb8\xfa\xe1\x9d\x14\x57\xc3\xc1\xa0\x3f\x1a\x0c\xfa\xe3\xc1\xa0\x6b\x55\x77\x77\xaa\xbb\x60\xce\x55\xd8\xd5\xf8\x55\x1b\x8c\xee\x5f\x51\xf8\x54\x0a\x46\x1b\x7d\x6f\x04\x17\x0f\x56\xd2\x44\x1c\x94\x4c\x9a\xbd\xdb\x57\xe5\xcf\x91\x53\x21\xfd\x52\x50\x94\x9c\x7d\x93\x9e\xc9\xf9\xd9\x9a\x1c\x75\x66\x7e\x93\xeb\x9d\xce\x2c\x16\x74\x09\xc0\x68\xe8\x50\xb1\xe0\x85\x20\xd4\x89\x3a\x6d\xec\x46\x11\xc0\x9c\x48\xc8\xc8\x2b\x5c\x42\x08\xce\xed\xad\xf7\xfc\xc7\x57\xb8\x5c\xad\x9c\xeb\x35\x9d\xa5\xd0\x6b\xe8\x8f\x42\x70\x9c\x73\xb8\xed\x6c\x0e\x70\x2f\xad\x79\x62\xd2\xb2\xc7\xfa\xa0\xfa\x20\xfa\x90\xf5\x41\xf6\x81\xf4\xa1\x6c\x33\x02\xb0\x0f\xdd\xe7\xd6\x49\x3f\x72\x52\x2c\x35\x4b\xd4\x3f\xe3\xcf\x98\xe8\xee\x47\x08\x41\x5e\xef\x71\x4a\xb3\x66\x7f\xbe\x7f\x87\xad\x8a\x7d\x3c\x80\x9e\xe1\xf0\xbe\xac\x59\xbd\x2f\x86\xf9\xc3\xc7\x73\xaf\xaa\x55\xde\x23\x32\xab\x4b\xe4\x5a\x9d\xb7\x64\x56\xfd\x86\xb5\x80\x10\x86\xf0\x37\xe0\xb8\x80\xa7\x44\x63\xef\xbc\xad\x9f\x40\x08\xca\x4b\x24\x12\x8d\xcf\x0a\x34\x28\x3d\x71\xde\xdf\xd3\x5d\x5a\x9e\x0c\xf5\x9a\x41\xfd\xb4\xfc\x8d\x64\x6f\x49\x89\x3d\x71\xfe\x61\xf0\x71\x0f\xcf\x23\x6a\xc9\x13\xa3\x73\x7f\x59\x49\xb3\x98\xb5\x17\x4b\xaf\x22\x12\xb9\x7e\x2b\x28\x7a\x8c\x2b\x94\xfa\x27\x4c\x85\xc4\x9e\xf5\xe8\x96\x73\x75\xde\x5b\x30\x4e\xc5\xa2\x0f\x54\x24\x76\xa7\x7d\xe8\x36\x71\xed\xf6\xa1\xeb\xfb\x8b\xc5\x62\x9d\x95\x2e\xd9\x78\xdc\xe6\xe6\xee\xed\xb3\x32\xac\x19\xe9\xb6\xb6\x9f\x91\x5e\xb7\xd9\x7a\xb7\xdf\x64\x45\x1f\xba\x5a\x12\xae\x52\x94\x9e\xca\x0f\x79\x15\x72\x6a\x50\x2a\x92\xa1\x29\x26\x3b\xfa\xaa\xc9\xb5\x6d\x6a\x36\xaf\x94\xcd\x6d\x4e\x72\x32\x67\x19\xb1\x15\x2d\xda\x02\x5a\xea\xba\x9c\x2f\x24\xa9\x2a\x94\x2d\xaa\xe5\x20\xeb\x72\xe0\x1f\x10\x2c\x31\x1f\xee\x17\xe1\x99\x9f\x0f\x0f\xe4\x7d\x72\xb0\x50\x6f\x2f\x90\x9c\x51\x8a\xdc\xfd\xaa\x4e\x41\x17\x2c\xda\xea\xf6\x3c\xdf\x89\x72\x51\xe2\x11\x5a\xa3\xa2\x60\x7f\x0e\x70\xa6\x48\x59\x15\xa8\x9c\xa8\x79\x80\x5a\x21\x24\x44\xa1\xfa\xab\xa0\x67\xa6\x82\x93\x44\x3b\xd1\xfa\x01\xea\x87\x62\xcd\xfc\xba\x68\x45\xc1\xa7\x6c\xbe\xae\x42\xcd\x63\x67\xa6\xd0\x9e\x41\x1b\x3a\xb3\xf3\x4d\xed\x3d\x19\xb0\x63\x8d\xb1\xf4\x4f\x85\x6b\xb4\x91\x35\xd9\xe3\xda\xcb\xcf\x31\x11\xfc\x99\x15\xb8\x8d\xe0\xe8\x94\xe4\x24\x32\x55\xf3\x0a\x66\xb1\xe1\x7f\xd2\xdc\x5d\xbf\x2d\x2b\x2b\x12\x47\x33\x3f\x9f\x9c
|
|
|
|
|
|
|
|
func bindataDistDownloadMarkdownHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistDownloadMarkdownHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/download.markdown.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistDownloadMarkdownHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistDownloadMarkdownHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/download.markdown.html",
|
2021-07-17 10:12:59 +02:00
|
|
|
size: 5459,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistDownloadSandboxHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\xeb\x73\xdb\x38\x0e\xff\xee\xbf\x02\x55\x3e\xd8\xb9\x5a\x92\x5f\x91\xdd\xc4\xd2\x4d\x5f\xdb\xf6\xfa\xb8\xde\xee\xf6\x76\x6f\x3a\x9d\x0e\x25\x42\x12\x1b\x89\x54\x49\xca\xae\x9b\xfa\x7f\xbf\x21\x65\x3b\xf2\x23\xb9\xde\xe6\x43\x2c\x11\xc0\x0f\x20\x00\x82\x80\xe6\x0f\xa8\x48\xf4\xaa\x42\xc8\x75\x59\x44\x9d\xf9\x03\xd7\xfd\xc8\x52\x28\x34\xbc\x7a\x0e\xd3\x4f\x11\xd8\xbf\xb9\xa1\x42\x52\x10\xa5\x42\x87\x0b\xf7\x8b\x82\x42\xbb\x0c\x1f\x35\x3f\xb3\xe6\x67\xea\x44\x30\x7f\xf0\x11\x39\x65\xe9\x27\xd7\xbd\x45\x6b\x43\xfd\x04\xda\x3d\x30\xb3\x9f\x81\xb9\x4b\x3e\xd3\x1b\x08\xb3\x10\x75\x8e\xe5\x9d\x86\x77\x4f\xb8\x33\xcf\x91\xd0\xa8\x63\x35\x96\xa8\x09\x24\x39\x91\x0a\x75\xe8\xd4\x3a\x75\x67\x4e\x9b\x94\x6b\x5d\xb9\xf8\xb5\x66\x8b\xd0\xf9\xd3\xfd\xf0\xd8\x7d\x2a\xca\x8a\x68\x16\x17\xe8\x40\x22\xb8\x46\xae\x43\xe7\xd5\xf3\x10\x69\x86\x5b\x49\xcd\x74\x81\xd1\xcd\x8d\xf7\x52\x28\xcd\x49\x89\xeb\x35\xb8\xf0\x9c\xa8\x15\x10\x4e\x21\x25\x4a\x43\xca\x0a\x04\x95\x13\xc9\x78\x06\xa9\x14\x25\xe8\x1c\x21\x11\x65\x49\x38\x75\x0b\xc6\xd1\x9b\xfb\x0d\x50\xcb\x1c\x03\x16\x3a\x14\x55\x22\x59\xa5\x99\xe0\x2d\x23\xfe\x6f\x7c\xe7\x18\x79\xc1\x70\x59\x09\xa9\x5b\xb0\x4b\x46\x75\x1e\x52\x5c\xb0\x04\x5d\xfb\xd2\x07\xc6\x99\x66\xa4\x70\x55\x42\x0a\x0c\x87\xde\x60\x0b\xf5\xc0\x75\xe1\x7d\x41\x12\x84\x94\x2c\x58\x22\xb8\xc7\x12\x61\x8d\x22\x55\x55\xa0\xab\x45\x9d\xe4\xae\x25\x54\x3c\x03\xc6\xad\x55\x52\x08\x0d\x94\x49\x4c\xb4\x90\x2b\x30\x41\xb2\x68\x05\xe3\xd7\x20\xb1\x08\x1d\xa5\x57\x05\xaa\x1c\x51\x3b\x90\x4b\x4c\x43\xc7\xf3\xfc\x66\xd1\x2f\x09\xe3\x5e\xa2\x94\xd3\x96\xb2\x4c\x5d\xdf\x4f\x05\xd7\xca\xcb\x84\xc8\x0a\x24\x15\x53\x5e\x22\x4a\x3f\x51\xea\xef\x29\x29\x59\xb1\x0a\x7f\x13\xb5\x4c\xf0\xe1\x6f\x84\xab\x87\xef\xa5\xb8\x1c\x0e\x06\xfd\xd1\x60\xd0\x1f\x0f\x06\x5d\xab\xba\x7b\xab\xba\x0b\xe6\x5c\x85\x5d\x8d\xdf\xb4\xc1\xe8\xfe\x15\x85\xcf\xa4\x60\xb4\xd1\xf7\x56\x70\xf1\xd3\x4a\x9a\x88\x83\x92\x49\xb3\x77\xfb\xaa\xfc\x05\x72\x2a\xa4\x5f\x0a\x8a\x92\xb3\xef\xd2\x33\x39\x3f\xdf\x90\xa3\xce\xdc\x6f\x72\xbd\xd3\x99\xc7\x82\xae\x00\x18\x0d\x1d\x2a\x96\xbc\x10\x84\x3a\x51\xa7\x8d\xdd\x28\x02\x58\x10\x09\x19\x79\x8d\x2b\x08\xc1\xb9\xb9\xf1\x5e\x3c\x7e\x8d\xab\xf5\xda\xb9\xda\xd0\x59\x0a\xbd\x86\xfe\x20\x04\xc7\x39\x87\x9b\xce\xf6\x00\xf7\xd2\x9a\x27\x26\x2d\x7b\xac\x0f\xaa\x0f\xa2\x0f\x59\x1f\x64\x1f\x48\x1f\xca\x36\x23\x00\xfb\xd8\x7d\x61\x9d\xf4\x98\x93\x62\xa5\x59\xa2\xfe\x19\x7f\xc1\x44\x77\x3f\x41\x08\xf2\x6a\x8f\x53\x9a\x35\xfb\xf3\xe3\x07\xec\x54\xec\xe3\x01\xf4\x0c\x87\xf7\x75\xc3\xea\x7d\x35\xcc\x1f\x3f\x9d\x7b\x55\xad\xf2\x1e\x91\x59\x5d\x22\xd7\xea\xbc\x25\xb3\xee\x37\xac\x05\x84\x30\x84\xbf\x01\xc7\x25\x3c\x23\x1a\x7b\xe7\x6d\xfd\x04\x42\x50\x5e\x22\x91\x68\x7c\x5e\xa0\x41\xe9\x89\xf3\xfe\x9e\xee\xd2\xf2\x64\xa8\x37\x0c\xea\xc9\xea\x77\x92\xbd\x23\x25\xf6\xc4\xf9\xc7\xc1\xa7\x3d\x3c\x8f\xa8\x15\x4f\x8c\xce\xfd\x65\x25\xcd\x62\xd6\x5e\x2c\xbd\x8a\x48\xe4\xfa\x9d\xa0\xe8\x31\xae\x50\xea\x27\x98\x0a\x89\x3d\xeb\xd1\x1d\xe7\xfa\xbc\xb7\x64\x9c\x8a\x65\x1f\xa8\x48\xec\x4e\xfb\xd0\x6d\xe2\xda\xed\x43\xd7\xf7\x97\xcb\xe5\x26\x2b\x5d\xb2\xf5\xb8\xcd\xcd\xdb\xb7\x2f\xca\xb0\x66\xa4\xdb\xda\x7e\x46\x7a\xdd\x66\xeb\xdd\x7e\x93\x15\x7d\xe8\x6a\x49\xb8\x4a\x51\x7a\x2a\x3f\xe4\x55\xc8\xa9\x41\xa9\x48\x86\xa6\x98\xdc\xd2\xd7\x4d\xae\xed\x52\xb3\x79\xa5\x6c\x61\x73\x92\x93\x05\xcb\x88\xad\x68\xd1\x0e\xd0\x52\x37\xe5\x7c\x29\x49\x55\xa1\x6c\x51\x2d\x07\xd9\x94\x03\xff\x80\x60\x89\xf9\x70\xbf\x08\xcf\xfd\x7c\x78\x20\xef\x93\x83\x85\x7a\x77\x81\xe4\x8c\x52\xe4\xee\x37\x75\x0a\xba\x60\xd1\x4e\xb7\xe7\xf9\x4e\x94\x8b\x12\x8f\xd0\x1a\x15\x05\xfb\xdf\x00\x67\x8a\x94\x55\x81\xca\x89\x9a\x07\xa8\x15\x42\x42\x14\xaa\xbf\x0a\x7a\x66\x2a\x38\x49\xb4\x13\x6d\x1e\xa0\xfe\x59\xac\xb9\x5f\x17\xad\x28\xf8\x94\x2d\x36\x55\xa8\x79\xec\xcc\x15\xda\x33\x68\x43\x67\x76\xbe\xad\xbd\x27\x03\x76\xac\x31\x96\xfe\xa9\x70\x8d\xb6\xb2\x26\x7b\x5c\x7b\xf9\x39\x26\x82\xbf\xb0\x02\x77\x11\x1c\x9d\x92\x9c\x44\xa6\x6a\x5e\xc2\x3c\x36\xfc\x4f\x9b\xbb\xeb\xf7\x55\x65\x45\xe2\x68\xee\xe7\x93\xd3\x62\x8a\
|
|
|
|
|
|
|
|
func bindataDistDownloadSandboxHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistDownloadSandboxHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/download.sandbox.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistDownloadSandboxHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistDownloadSandboxHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/download.sandbox.html",
|
2021-07-17 10:12:59 +02:00
|
|
|
size: 5091,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistDownloadVideoHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\xdd\x73\xdb\x36\x12\x7f\xd7\x5f\xb1\x61\x1e\x24\x5f\x45\x52\x5f\xa6\x1c\x5b\xd4\x4d\x9b\xa4\x49\xaf\x4d\xaf\xd7\x36\xd7\xde\x64\x32\x1d\x90\x58\x92\xb0\x49\x80\x01\x40\x29\xaa\xab\xff\xfd\x06\x80\x24\x53\x1f\x56\x7d\x9d\x39\x3f\x58\x24\x76\xf7\xb7\xcb\xfd\x02\x16\xb3\x67\x54\xa4\x7a\x55\x23\x14\xba\x2a\xe7\x9d\xd9\x33\xdf\xff\xc0\x32\x28\x35\x7c\xf3\x1a\xa6\x1f\xe7\x60\xff\x66\x86\x0a\x69\x49\x94\x8a\x3d\x2e\xfc\x5b\x05\xa5\xf6\x19\xbe\x70\x3f\x57\xee\x67\xea\xcd\x61\xf6\xec\x03\x72\xca\xb2\x8f\xbe\xff\x80\xd6\x86\x7a\x02\xda\x19\x98\xab\xa7\xc0\x3c\x26\x9f\xeb\x0d\x84\x59\x98\x77\x8e\xe5\x3d\xc7\xbb\x27\xdc\x99\x15\x48\xe8\xbc\x63\x35\x56\xa8\x09\xa4\x05\x91\x0a\x75\xec\x35\x3a\xf3\xaf\xbc\x36\xa9\xd0\xba\xf6\xf1\x53\xc3\x16\xb1\xf7\xab\xff\xfe\x4b\xff\xa5\xa8\x6a\xa2\x59\x52\xa2\x07\xa9\xe0\x1a\xb9\x8e\xbd\x6f\x5e\xc7\x48\x73\xdc\x4a\x6a\xa6\x4b\x9c\xdf\xdf\x07\x6f\x85\xd2\x9c\x54\xb8\x5e\x83\x0f\xaf\x89\x5a\x01\xe1\x14\x32\xa2\x34\x64\xac\x44\x50\x05\x91\x8c\xe7\x90\x49\x51\x81\x2e\x10\x52\x51\x55\x84\x53\xbf\x64\x1c\x83\x59\xe8\x80\x5a\xe6\x18\xb0\xd8\xa3\xa8\x52\xc9\x6a\xcd\x04\x6f\x19\xf1\x3f\xe3\x7b\xc7\xc8\x0b\x86\xcb\x5a\x48\xdd\x82\x5d\x32\xaa\x8b\x98\xe2\x82\xa5\xe8\xdb\x97\x3e\x30\xce\x34\x23\xa5\xaf\x52\x52\x62\x3c\x0c\x06\x5b\xa8\x67\xbe\x0f\x3f\x94\x24\x45\xc8\xc8\x82\xa5\x82\x07\x2c\x15\xd6\x28\x52\xd7\x25\xfa\x5a\x34\x69\xe1\x5b\x42\xcd\x73\x60\xdc\x5a\x25\x85\xd0\x40\x99\xc4\x54\x0b\xb9\x02\x13\x24\x8b\x56\x32\x7e\x07\x12\xcb\xd8\x53\x7a\x55\xa2\x2a\x10\xb5\x07\x85\xc4\x2c\xf6\x82\x20\x74\x8b\x61\x45\x18\x0f\x52\xa5\xbc\xb6\x94\x65\xea\x86\x61\x26\xb8\x56\x41\x2e\x44\x5e\x22\xa9\x99\x0a\x52\x51\x85\xa9\x52\x7f\xcf\x48\xc5\xca\x55\xfc\x93\x68\x64\x8a\x5f\xfc\x44\xb8\xfa\xe2\x07\x29\xae\x87\x83\x41\x7f\x34\x18\xf4\xc7\x83\x41\xd7\xaa\xee\x3e\xa8\xee\x82\xa9\xab\xb8\xab\xf1\xb3\x36\x18\xdd\xbf\xa2\xf0\x95\x14\x8c\x3a\x7d\xef\x04\x17\x4f\x56\xe2\x22\x0e\x4a\xa6\xee\xdb\xed\xab\x0a\x17\xc8\xa9\x90\x61\x25\x28\x4a\xce\x7e\x97\x81\xc9\xf9\xd9\x86\x3c\xef\xcc\x42\x97\xeb\x9d\xce\x2c\x11\x74\x05\xc0\x68\xec\x51\xb1\xe4\xa5\x20\xd4\x14\xc7\x79\xd8\x05\xa3\x28\x0e\x20\xdb\xe6\x38\xdb\x00\x16\x44\x42\x4e\xbe\xc5\x15\xc4\xe0\xdd\xdf\x07\x6f\xbe\xfc\x16\x57\xeb\xb5\x77\xb3\xa1\xb3\x0c\x7a\x8e\xfe\x2c\x06\xcf\xbb\x80\xfb\xce\xb6\xe6\x7b\x59\xc3\x53\x93\xc9\x3d\xd6\x07\xd5\x07\xd1\x87\xbc\x0f\xb2\x0f\xa4\x0f\x55\x9b\x11\x80\x7d\xe8\xbe\xb1\x7e\xfd\x92\x93\x72\xa5\x59\xaa\xfe\x99\xdc\x62\xaa\xbb\x1f\x21\x06\x79\xb3\xc7\x29\xcd\x9a\xfd\xf9\xe3\x0f\xd8\xa9\xd8\xc7\x03\xe8\x19\x8e\xe0\xd3\x86\x35\xf8\x64\x98\x3f\x7c\xbc\x08\xea\x46\x15\x3d\x22\xf3\xa6\x42\xae\xd5\x45\x4b\x66\xdd\x77\xac\x25\xc4\x30\x84\xbf\x01\xc7\x25\xbc\x22\x1a\x7b\x17\x6d\xfd\x04\x62\x50\x41\x2a\x91\x68\x7c\x5d\xa2\x41\xe9\x89\x8b\xfe\x9e\xee\xca\xf2\xe4\xa8\x37\x0c\xea\xab\xd5\xcf\x24\xff\x9e\x54\xd8\x13\x17\x1f\x06\x1f\xf7\xf0\x02\xa2\x56\x3c\x35\x3a\xf7\x97\x95\x34\x8b\x79\x7b\xb1\x0a\x6a\x22\x91\xeb\xef\x05\xc5\x80\x71\x85\x52\x7f\x85\x99\x90\xd8\xb3\x1e\xdd\x71\xae\x2f\x7a\x4b\xc6\xa9\x58\xf6\x81\x8a\xd4\x7e\x69\x1f\xba\x2e\xae\xdd\x3e\x74\xc3\x70\xb9\x5c\x6e\x12\xd9\x27\x5b\x8f\xdb\x74\x7e\x78\xbb\x55\x86\x35\x27\xdd\xd6\xe7\xe7\xa4\xd7\x75\x9f\xde\xed\xbb\xac\xe8\x43\x57\x4b\xc2\x55\x86\x32\x50\xc5\x21\xaf\x42\x4e\x0d\x4a\x4d\x72\x34\xfd\xe7\x81\xbe\x76\xb9\x76\x90\x7a\x94\x2d\x6c\x1a\x73\xb2\x60\x39\xb1\x4d\x70\xbe\x03\xb4\xd4\xcd\x0e\xb0\x94\xa4\xae\x51\xb6\xa8\x96\x83\x6c\x3a\x48\x78\x40\xb0\xc4\x62\xb8\xdf\xb7\x67\x61\x31\x3c\x90\x0f\xc9\xc1\x42\xb3\xdb\x73\x0a\x46\x29\x72\xff\xb3\x3a\x05\x5d\xb2\xf9\x4e\x77\x10\x84\xde\xbc\x10\x15\x1e\xa1\x39\x15\x25\xfb\x73\x80\xe7\x8a\x54\x75\x89\xca\x9b\xbb\x07\x68\x14\x42\x4a\x14\xaa\xbf\x0a\xfa\xdc\x34\x7d\x92\x6a\x6f\xbe\x79\x80\xe6\xa9\x58\xb3\xb0\x29\x5b\x51\x08\x29\x5b\x6c\x1a\x97\x7b\xec\xcc\x14\xda\x1a\xb4\xa1\x33\x5f\xbe\x6d\xd7\x27\x03\x76\xac\x31\x91\xe1\xa9\x70\x8d\xb6\xb2\x26\x7b\x7c\xbb\x5f\x7a\x26\x82\x5f\xb3\x12\x77\x11\x1c\x9d\x92\x9c\xcc\x4d\xa3\xbd\x86\x59\x62\xf8\x5f\xba\xed\xee\xe7\x55\x6d\x4
|
|
|
|
|
|
|
|
func bindataDistDownloadVideoHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistDownloadVideoHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/download.video.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistDownloadVideoHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistDownloadVideoHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/download.video.html",
|
2021-07-17 10:12:59 +02:00
|
|
|
size: 5804,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xd8\xd9\x4f\x13\x41\x00\x06\xf0\x6f\xc0\x03\x15\x2f\xd4\x7a\xa2\xe2\x89\xe2\x81\x17\xde\x17\xd2\xa7\xfe\x5d\x78\x86\x68\xd4\x18\x7d\xf0\x8c\x31\xbe\xa8\x2f\x1c\x62\x0f\xa9\xb5\x58\xa8\x96\x14\xb1\x58\x41\x68\x2a\x85\xd2\xa6\x87\x6c\x5b\xda\xf2\x62\x2a\xb1\x29\xb0\x33\xb3\xa6\x4d\xac\x65\xbe\x64\x43\xb2\xf9\xe6\x97\xd9\xc9\x2c\x9d\x16\x20\x20\xd0\x68\x52\x7f\x4b\x10\x2e\x07\x54\x00\x2a\x01\x68\x00\xdc\xc1\xe4\x7d\x5a\xb4\x8d\xf5\xd0\x36\xd5\x43\xd7\x7c\x11\xba\xe6\x4b\xd0\xb7\x5c\x86\xbe\xe5\x0a\x0c\xaf\xaf\xc2\xd0\x7a\x0d\x6f\xdf\x34\xa0\x2d\x75\x69\x1b\x60\xd4\x5e\xc7\x3b\xdd\x0d\x98\xf4\x37\x61\x32\xdc\x82\xc9\x70\x1b\xe6\xb6\xbb\x68\x37\xde\x83\xc5\x74\x1f\x1d\xe6\x07\xe8\x34\x3f\x44\xa7\xf9\x11\xac\xed\x8f\x61\xfd\xf0\x04\x1f\x2d\x4f\x61\xeb\x78\x86\x2e\xeb\x73\xd8\x3f\xbd\x40\xb7\xed\x25\x3e\x77\xbd\xc2\x17\x7b\x23\x1c\xdd\x4d\xe8\xed\x69\x85\xd3\xa1\x43\xdf\x57\x03\xbe\x7f\x33\x62\xa0\xcf\x84\xc1\xfe\xf7\x70\x0d\x58\xe0\x76\x59\x31\xe4\xb6\xc1\xf3\xc3\x8e\xe1\x21\x3b\x46\x3c\x3d\xf0\x0e\x3b\xe0\x1d\xe9\xc5\xa8\xd7\x09\x9f\xd7\x09\xbf\xaf\x1f\x01\xff\x20\x82\x01\x17\x42\x41\x37\x7e\x86\x3d\x90\xc6\x46\x21\x49\x3e\x48\x92\x1f\x91\x48\x00\xd1\x48\x10\xd1\x68\xea\x0a\x21\x16\x0d\x23\x16\x0b\x61\x3c\x16\x46\x3c\x3e\x86\x78\x5c\x42\x22\x11\x41\x22\x11\x45\x32\x19\x43\x32\x39\x8e\x89\x89\x38\x75\xbd\x44\x44\x0a\x29\x24\x77\x11\x96\xb0\x84\x25\xac\x42\xb5\x76\x57\x65\x66\x55\x56\xd6\x79\x75\x66\xd6\x0b\x4b\x58\x79\x6b\xd5\xe6\xe9\xbc\x0a\xd6\x5a\x59\x93\xce\x14\x4a\x7d\x32\x7d\x7f\x5f\xb1\xd2\x79\x6d\x57\x73\x72\x6e\xb9\xe2\x67\x2c\x3e\xc0\xb1\xca\x15\x3f\x23\x21\x8b\x4f\x31\xa9\x9d\xb2\x83\x68\x6b\xbf\x96\x45\x1d\x9a\xfb\x57\x16\xd9\x4a\xa7\xce\x2c\x95\x1f\x42\xb5\x8a\xaa\xa9\xd6\x3a\xca\x10\xfa\xfe\x2a\x3d\x41\xa1\xb6\xd1\x46\x30\xf6\xea\x9a\x3a\x59\xaa\x5a\x66\x67\x71\x2d\xb2\x45\x8e\x3a\x5e\x4a\xed\xb3\xac\xa2\xfd\x33\xa9\xba\xd5\xf4\x3e\xf3\x7d\x5c\x74\x6c\x86\x55\xc1\xa8\xb3\xdf\x6d\xd5\xf4\x25\xdb\xc3\x6a\x73\xfe\x4f\x54\x4c\xa5\x6a\x16\x64\x61\x91\xbd\x99\x54\x6d\x19\xb3\xcb\xb3\x16\x1e\xcd\xb0\x36\xb2\xbb\xdc\xf3\xd7\x8a\x0b\x69\xaa\x92\x53\xe5\x9f\xe5\x36\xff\xa1\x0e\xcf\xcb\xda\x22\x55\x93\xd4\xd9\x65\xbc\xa2\x02\xab\xe4\xc8\x6f\x6b\x03\xb7\xa8\xe4\xbc\x5a\x96\xfa\xc0\xdd\xc1\xef\x29\x3a\xfb\x6e\x52\xab\x0f\xce\xc9\x91\x45\x76\x9d\x5e\xa2\xa0\xa5\xcc\x9a\xaf\x52\xd2\xfa\x5f\xbf\x2b\x08\x2b\x77\xd6\xf4\xb1\xf9\x32\x2f\x61\x09\x4b\x58\x84\xfc\xeb\x9f\xb0\x45\x44\x66\x7d\x7e\x05\x00\x00\xff\xff\x14\x8a\xc9\x24\x06\x1e\x00\x00")
|
|
|
|
|
|
|
|
func bindataDistFaviconIcoBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFaviconIco,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/favicon.ico",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFaviconIco() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFaviconIcoBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/favicon.ico",
|
|
|
|
size: 7686,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsFontawesomeFontAwesomeOtf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\xfb\x09\x78\x13\x47\xf2\x38\x0c\xb7\x2c\xcd\x8c\xdc\x63\x0b\x82\xa5\xc4\x96\x34\x92\xb9\x09\x37\xd8\x10\x73\xc6\x21\x1c\x9b\x70\x07\x85\x00\x09\x08\xd9\x1e\x5b\xc2\xb2\x24\xa4\x91\x2f\x7c\xdf\xb6\x7c\x7b\x8c\xf1\x01\x36\xe6\x0c\x87\xb9\x1c\x48\x08\xd9\x78\x73\x6c\x48\xc8\x09\x4a\x76\x73\x6d\xae\x4d\xb2\x59\x72\x98\x84\xa4\x25\xb5\x0c\xdf\x33\x92\x0d\x66\xf7\xf7\xfb\x3f\xff\xef\x7d\xde\xe7\xb5\xe8\xe9\xea\xea\xea\xea\xea\xea\xaa\xea\xee\x99\x66\xad\x4e\xb7\x16\x84\x82\x02\x20\x06\x23\x1f\x5d\xbe\x3c\x1a\x68\x1f\xd9\x03\x40\xf8\x26\x00\xfe\x35\x7d\xed\x86\x19\xb3\x1b\x2d\x05\x7f\x07\x40\x04\x00\x00\xdb\x13\xd3\x0c\xb6\x38\xbc\x7a\x3e\x00\x92\x4b\x00\x84\x70\x46\xd6\x90\x04\x5c\x3f\xff\x0e\x00\xe8\x00\x00\xcc\x35\x1a\x59\x43\x78\x31\x75\x0b\x00\xe0\x06\x00\x8c\x33\xa6\x71\x99\x5e\x73\xb8\x0b\x00\x6a\x26\x00\x24\x99\x66\xc8\xb4\x89\x4a\xd7\x09\xbc\x3c\x00\x00\xd2\x62\x48\x63\x3b\x37\xb8\xad\x00\x88\xb6\x03\x20\xde\x6c\xb3\x3a\xb8\xdb\xb9\x60\x0b\x00\xe1\x71\x00\x80\xe8\x40\xb7\x12\x00\xc0\x84\xad\xd5\xfa\x11\x0b\x7f\x07\x62\x4a\x68\x0b\xae\xe8\x8a\x66\x0a\xf9\xbb\x7b\xc7\xbe\x73\xfb\xf6\xad\xdb\x54\x21\x29\x50\x8a\x41\x08\x08\xfe\x89\x00\x20\xc1\x6d\x00\x00\x55\x70\xfb\xf6\xed\xdb\x54\x61\x70\x00\x77\xff\x44\x79\x00\xac\x03\xa2\x52\xa1\x15\x29\x15\xd5\x03\x02\x48\x24\xd5\x92\x18\x00\x40\x59\x30\x0f\x71\x80\x2d\x81\xf2\xff\xfa\x67\xcb\xb2\x3b\x40\x3c\x88\xfe\x7d\xb0\x2f\xa2\x40\x54\x07\x06\x55\x45\x01\x4a\x90\x3f\x3a\x40\xa8\x10\x85\xdc\xe9\x3f\x6a\x88\x02\x88\x00\x0d\xa2\x06\x61\x31\xb8\x0f\x8c\x1b\x84\x25\xc3\xf0\x04\x18\x05\xe6\x0c\xc2\xe4\x30\x3c\x05\xd6\x83\x15\x83\xb0\x14\x84\x81\x3d\x83\x70\x28\x80\xe0\xe0\x20\x4c\x03\x05\xe8\x01\x62\x20\x92\x84\x02\x00\x66\x83\x57\x07\x61\x11\xb8\x1f\xfc\x3e\x08\x87\x00\x99\x88\x1e\x84\xc5\x60\x8c\x28\x6a\x10\x96\x0c\xa3\x21\xc0\x38\xd1\x82\x41\x98\x1c\x86\xa7\x40\xb7\x48\x3f\x08\x4b\x41\x64\x88\x68\x10\x0e\x05\xf2\x90\x21\x3e\x34\x98\x1c\x32\x6d\xc3\x63\xab\xa2\xd7\xda\x58\x4b\xf4\x72\xab\x85\x8b\x5e\x65\x4a\x64\x2d\x0e\x36\x7a\xd6\xf4\x59\x42\xf9\x91\x0c\xd6\x61\x4d\x63\x97\xaf\x5d\xa3\x5b\xf5\xc8\x92\xf9\x6b\x75\xcb\x97\x6d\x5a\xb7\xf6\x09\xdd\x46\xd6\xee\x30\x59\x2d\xd1\xb1\xd3\x67\x4e\x9f\x1d\x3d\x7b\xe6\xac\x98\x75\x66\xd6\xe0\x60\xa3\xed\x6c\x32\x6b\x8f\xe6\xac\xd1\x9c\x91\x8d\x7e\xd4\x6a\xcb\xb2\x9b\x52\x8c\x5c\xb4\x83\x4d\xe4\x04\xfa\x64\xab\x3d\x50\x93\x2c\xf4\xc5\xd9\x0d\x49\x6c\x9a\xc1\x9e\x1a\x6d\xe0\x38\xbb\x29\xc1\x19\x20\xb1\x58\x39\x53\x22\xeb\x98\xbe\xdc\x6a\xe7\xa2\x07\xfb\x5f\x6a\x48\x67\xa3\x57\x18\x2c\x49\x59\x46\x8e\xb3\xcd\x9f\x31\x43\x68\x6f\x08\xd6\x4d\x37\x59\xc1\x06\xf0\x18\x58\x05\xa2\xc1\x5a\x60\x03\x2c\xb0\x80\x68\xb0\x1c\x58\x81\x05\x70\x20\x1a\xac\x02\x26\x90\x18\xc0\x3a\x00\x0b\xa2\xc1\x2c\x30\x1d\xcc\xba\x53\xff\x08\xc8\x00\x2c\x70\x00\x2b\x48\x03\x2c\x78\x02\xb0\x20\x05\x38\x81\x19\x18\x80\x1d\x2c\x07\x6b\xc1\x1a\xa0\x03\xab\xc0\x23\x60\x09\x98\x0f\xd6\x02\x1d\x58\x0e\x96\x81\x4d\x60\x1d\x58\x0b\x9e\x00\x3a\xb0\x11\xb0\xc0\x0e\x1c\xc0\x14\xe0\x16\x0d\x62\xc1\x74\x30\x13\x4c\x07\xb3\x41\x34\x98\x0d\x66\x82\x59\x20\x06\xac\x03\x66\xc0\x02\xc3\x60\xef\x76\xc0\x82\xe4\x40\xab\x68\xc0\x01\x6b\xe0\x69\x0c\xd4\x3c\x0a\xac\xc0\x06\xb2\x80\x1d\x98\x40\x0a\x30\x06\x64\x17\xda\x24\x02\xee\x0e\xff\x64\x60\x1d\x6c\x19\x6c\x93\x7c\x67\x94\x1c\xb0\x03\x03\x48\x02\x2c\x48\x0b\xc8\x9e\x0a\xa2\x81\x01\x70\x01\xbc\x09\x24\x00\xe7\x30\x2e\x16\x60\x0d\x94\x12\x03\x23\x9f\x1e\xd0\x85\x3d\xc0\xe5\x5e\x6d\x2c\x05\x06\x90\x1e\xe8\x67\x05\x30\x00\x0b\x48\x02\x59\x01\xb9\x38\x60\x03\xf3\xc1\x0c\x30\xe3\x4e\xff\x86\x7b\xda\x4d\x0f\xf4\x34\xe8\x39\x81\x24\x1a\x33\x68\xf5\x6a\xc1\xf2\x02\x65\x20\x22\x87\x3b\xfc\x1d\xbf\xbb\x37\x0e\xfc\x9f\x1c\xfc\xff\xc3\xbf\x50\x5a\x4a\x90\x67\x28\x70\xf6\xff\x6d\xc6\x12\xd1\x13\x00\x80\x35\x20\x1e\x10\x40\x06\xa2\xc1\xb3\xa0\x07\xf4\x82\xbf\x8e\x1e\x33\x46\x33\x66\x7b\xbf\xac\x5f\xd3\xbf\xb8\x7f\x4d\xff\xb6\xfe\xe4\x7e\x53\xbf\xa5\x3f\xaf\xbf\xb6\x7f\x5f\x7f\x4f\xff\xd9\xfe\x77\xfb\xff\xd1\xff\x73\xff\xad\x1b\xb2\x1b\x9a\x1b\x13\x6f\x4c\xba\x
|
|
|
|
|
|
|
|
func bindataDistFontsFontawesomeFontAwesomeOtfBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsFontawesomeFontAwesomeOtf,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/font-awesome/FontAwesome.otf",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsFontawesomeFontAwesomeOtf() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsFontawesomeFontAwesomeOtfBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/font-awesome/FontAwesome.otf",
|
|
|
|
size: 62856,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsFontawesomeFontawesomewebfontEot = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xae\x53\x70\x24\x0c\xc0\xac\x3d\x93\x64\x62\xdb\xb6\x6d\xdb\xb6\x6d\x5b\x9b\x8d\x8d\x89\x6d\xdb\xc6\x1b\xdb\xe6\xc6\xd9\x70\x37\xf6\x26\x7f\xd5\x5f\xe7\xe2\xd4\xf7\xd5\x79\x6e\xfa\xa2\xab\x9f\x6a\xa1\x74\x00\x40\x27\x0d\x00\x80\x00\x40\x00\xa0\x00\xff\x37\x40\x00\x18\x08\x00\x40\x01\x14\x55\x01\xff\x03\xe0\xff\x49\x1b\x77\xe3\xd0\xff\xd9\x01\x00\xd8\x00\x69\x80\x0b\xc0\x19\xe0\x09\x10\x03\xf8\x00\xac\x00\x1e\x00\x17\x80\x13\xc0\x0a\x00\x00\x20\x03\xd4\x01\x56\x00\x1b\x80\x17\xc0\x11\x60\x06\x70\x07\x00\x00\x94\x00\x6d\x80\x15\xc0\x1d\xe0\x01\xb0\xfb\xff\x37\xa4\x00\x4e\x00\x33\x80\x15\xc0\x0c\x60\x07\x90\x02\xd8\x01\xac\x00\x36\x00\x07\x00\x00\xa0\xfe\x7f\x38\x49\xff\x97\x11\x00\x10\xd7\x90\xf9\x5f\x8f\x21\x81\xb8\x9b\x80\x34\x15\x40\x9a\x06\x20\xc8\x11\x73\xee\x22\x7e\x61\x19\x4d\xaf\x54\x12\x5e\xe9\x54\x9a\x18\xe0\x9b\x5d\x54\x26\xdc\x94\xfb\x2b\xff\x17\x0e\x2a\x60\x3c\x89\xce\x80\x10\x93\x6d\xaa\x5d\x76\xe9\xa6\x22\x86\x49\x8c\x4e\xfa\x60\x6d\x2b\x8f\x6d\x79\x8e\x79\x85\x05\xde\x12\xa7\x47\x0b\x8f\xe6\x8a\xda\x8c\x29\x6d\xfb\x20\x38\x38\xd1\xd9\x9c\xb2\x8f\xaa\xa8\x28\x7f\x4f\xfe\x00\x6c\x70\x62\x5a\x3d\xb4\x6b\x42\xe7\xb6\xaf\xfd\x0a\xda\x71\x3c\xb3\xb3\xf5\x62\x5a\x1f\x1a\x6d\xcd\x1b\x41\xc7\x80\xf4\xf3\x5d\x53\xea\x1c\x77\xeb\x21\xf2\x9b\xd5\x60\x95\x62\x1f\x3e\x3a\xf0\xcf\x70\x87\x62\x7d\xb2\xc3\x20\x8c\xb7\x01\xfe\x8d\xde\xac\x10\x12\x79\xfa\xb6\x85\x75\x28\x9c\x1c\x4f\xdf\x63\x0f\x36\x40\xd4\x8e\x4c\x67\xed\x71\x43\xf9\xef\x81\xd5\xe7\xa8\x6f\xef\x28\xdc\x30\x7e\x84\xb5\xbf\x7c\x1a\x43\x0d\xc1\x8c\xae\x13\x27\x1c\x5f\x9a\xd9\x40\xd8\x12\x67\x33\x99\xca\x40\x46\x1b\xc0\xd9\x7c\x8c\xec\x98\x29\x33\x84\x2a\xc3\x87\x96\xbe\xca\x97\xd2\xd5\xe8\x56\xcb\xcb\xfa\xe3\x7d\x07\x43\xc0\x07\xe5\x11\xce\x49\x88\xe7\x4b\xe2\xaf\xcf\xc3\x36\xb9\x83\x08\x47\xdc\x1e\xa6\x95\x9e\xa7\x65\x47\x42\x5f\xb2\x69\x72\xa2\x91\x66\xd5\x12\xb8\x7b\x91\x60\xc7\xe2\x03\x9f\x93\xc1\xb4\x23\x8c\x1e\x37\x1a\xc7\xd4\x20\x6c\x15\xf5\xa9\x46\x86\x5e\x51\xfd\x12\xf9\x67\x31\x3f\x33\x2a\xa9\x19\x06\x1c\x9e\x5a\xf8\x2c\xad\x99\x11\x84\x11\x65\x3e\x9b\x08\x07\x70\x15\x18\x6d\xe5\x56\xe9\x74\x92\x58\x76\x47\xa9\xfe\xa9\x17\x97\xd6\x34\x79\x5d\x46\x85\x85\x0f\xfc\x7a\x87\x89\x97\x12\x55\x48\x90\xad\x8a\xc1\xad\x8f\x2b\x49\xd3\xf8\x0c\x1b\xcc\x81\x20\xfd\xa3\x61\x96\x87\xb1\x36\x00\x41\x5a\xe1\x14\x7a\x41\x30\x12\xd8\x42\x80\x03\xcc\x2f\x28\x85\x2c\x62\xe6\xca\x07\x4c\x1c\x8b\x9a\xbc\xa9\x12\x2b\xde\xc2\xf5\x38\x22\x89\x0f\xb3\x46\x42\x5b\xdb\xd3\xce\x72\xb2\x0f\xf5\xf8\xfe\x8e\xf5\xf3\xec\x82\xfb\x57\x97\x3d\xc0\x5a\x51\x72\xcb\xaf\x29\x58\x5a\xde\x80\x36\xd5\x39\xdc\xfd\x34\x04\xdf\x0f\x34\x92\x4e\x46\xd5\x72\x40\x4d\xb4\xe8\x08\xee\x94\xe4\xa6\x3c\x43\x9e\x48\xbe\x41\x27\x38\x72\x6b\xcb\x2d\x0a\x29\xf2\x0f\x28\x16\x69\xcf\xc4\x9f\xb2\x37\x41\xb4\x0e\x1b\x2c\x37\x6c\x8e\xe1\x26\x0d\xd7\x25\xa2\x83\x94\x56\xc5\x5a\xda\x52\xce\xfd\x9e\x1d\x46\x20\x3c\x98\x79\x0f\x7b\x12\x4e\x76\x9d\x18\xbe\xf7\x3a\x0f\xb6\x34\xa9\x63\x0a\x3e\x66\x05\x93\x51\xe0\x22\x14\x6a\x5c\xca\x0d\x99\x62\x66\x75\x49\xeb\xe4\xfd\xb4\xbc\x9c\xce\x97\xc0\x97\xf9\xd2\x57\x9a\x6f\xe3\xd4\x07\x89\x96\x22\x8d\x52\xd7\xac\xeb\xf6\xbe\x58\x51\x35\x1a\xc0\xc5\x64\x98\x57\xf9\xca\x54\x9a\x39\x89\x47\x28\x88\x47\xd1\x52\x19\xbe\x63\xdd\x6f\xb6\x28\xa4\xa0\x4d\x47\x2e\xab\xc8\x70\x75\xc2\x71\x9a\x25\x88\xc7\xdf\x71\x2d\x7e\xab\x2a\xb4\x9d\x5b\x49\x25\xb0\xe5\x97\x58\x5f\xe9\x21\x91\xf9\xa9\xb1\x40\x0d\x32\xb6\xe6\xb2\x1a\x69\x31\xc2\xca\x8b\x45\x97\xac\xf9\x19\x76\x36\x8c\x60\x13\xc8\xad\x27\xbc\x5a\x30\x45\xe8\xdc\x33\xae\xfe\x90\x16\x22\xc2\x72\x8e\xa0\x69\x09\x2a\x3b\xc2\xb5\xb7\xe3\xb0\xe0\x5c\x5a\x1e\x0e\xee\x9a\xf0\x33\x92\xa2\x22\xb9\xfc\x7d\xc6\xd0\xe8\x5e\xb8\x69\x43\xd3\xb0\x48\xcf\x4e\xb0\x45\x94\x70\x75\x41\x1f\x45\x53\xc4\xd2\xb1\xc0\xba\xbb\x46\x04\xed\x40\x60\x16\xbb\xff\xa8\xff\x41\x11\x61\x53\x87\xc7\x9e\xd8\x71\x18\x6f\x08\xe4\x66\x8f\x91\xcb\x5d\xa2\x93\x18\x87\x5b\xdb\x04\x69\x91\x91\x1f\x49\x04\x5e\x3c\x07\x47\xa1\x59\x25\x5c\x6b\xfb\xd6\x26\xb0\x82\x55\xd1\x4b\x5a\xb
|
|
|
|
|
|
|
|
func bindataDistFontsFontawesomeFontawesomewebfontEotBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsFontawesomeFontawesomewebfontEot,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/font-awesome/fontawesome-webfont.eot",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsFontawesomeFontawesomewebfontEot() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsFontawesomeFontawesomewebfontEotBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/font-awesome/fontawesome-webfont.eot",
|
|
|
|
size: 38205,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsFontawesomeFontawesomewebfontSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6d\xaf\x24\xc9\x71\x2e\xf6\x5d\xbf\x22\xbc\x06\xfc\x2d\x67\x33\x22\xdf\x4d\x52\x17\xf0\xd5\x85\x60\xc0\x63\x5f\xe0\xca\xd7\xf0\xc7\x11\x77\xc5\x26\x50\x22\x55\xdc\x54\x4b\x9e\x5f\x6f\xc4\x13\x51\xd5\xdd\xa7\xbb\x6b\xce\x99\x9d\x99\x5d\xda\x02\xb9\xd3\x7d\xba\xb2\xf2\x3d\x23\xe3\xf5\x89\xdf\xfe\xa7\x7f\xff\xe7\x85\xce\x3f\xfe\xe5\xa7\x3f\xfe\xf9\x4f\xbf\xfb\x8e\xdf\xc5\xef\xe8\xa7\xf9\xe1\x4f\x3f\x7c\x58\xfe\xfc\xa7\x1f\x7f\xf7\xdd\x9f\xfe\xfc\xdd\x7f\xfa\xdb\xbf\xf9\xed\xff\xf0\x77\xff\xc7\x7f\xfe\x87\xff\xfb\xbf\xfe\x17\xfa\xe9\xfc\x07\xfa\xaf\xff\xe7\xff\xf2\xbf\xfd\xaf\xff\x99\xbe\x0b\xdf\x7f\xff\x7f\xa5\xff\xfc\xfd\xf7\x7f\xf7\x0f\x7f\x47\xff\xed\xbf\xff\x3d\xf1\x3b\xfe\xfe\xfb\xff\xf2\xbf\x7f\x47\xdf\x9d\xe6\xfc\x97\xff\xf9\xfb\xef\xff\xed\xdf\xfe\xed\xdd\xbf\xa5\x77\x7f\xfe\xcb\x1f\xbe\xff\xfb\xbf\x7c\xf8\x97\xd3\x1f\x7f\xff\xd3\xf7\xff\xed\xbf\xff\xfd\xf7\x5a\xf0\xef\xfe\xe1\xef\xbe\xff\xe9\xfc\x07\xe6\x77\x3f\xcc\x1f\xbe\xa3\xbf\xfd\x9b\xdf\x6a\xd5\xff\xfe\xcf\xcb\x9f\x7e\xfa\xdd\x83\xf7\x25\xc6\xa8\xe5\xbf\xfb\xdb\xbf\xf9\xed\x3f\xff\x38\x3f\xfc\xf0\x61\x7e\xf8\xdb\xdf\x7e\xbf\x7f\xfd\x9b\xdf\xfe\xf0\xe3\x3f\xfd\xf4\xb7\x7f\xf3\xdb\x7f\xfa\xf3\x9f\x26\xfd\xf1\x87\xdf\x7d\xa7\x5f\x3e\xfc\xdb\x8f\x3f\xfd\xf9\x9f\x7f\xfc\xcb\x8f\x7f\xf8\xd7\xe5\xc3\x5f\xbe\xa3\xd3\x9f\xff\xf2\xc7\x8f\xe1\xc3\x0f\xe7\xf0\xef\xbf\xfb\x8e\x4b\xaa\x68\x58\x4b\x86\x7f\xfa\xf0\xfb\x1f\xe9\x5f\xff\xf4\xc7\xf9\x53\xf8\x97\x1f\xff\x12\x7e\xfc\xe7\xdf\x7d\xc7\x6d\xc8\x77\xf4\xe1\xa7\xdf\xff\xf8\xa7\xb9\x15\xff\xe1\x47\xff\x33\x48\xa9\xdf\xd1\xf7\xda\x9d\x3f\xfe\xf4\xd3\x1f\xff\xf4\x87\xf0\x87\xe5\xff\xf9\x97\xd3\x6d\x13\x39\x77\x2b\x63\xcf\xfe\xf5\x4f\x7f\xfc\xfd\x9f\x7f\xf8\xf1\x77\xdf\xd1\x77\xf4\xba\x82\xff\xd3\xff\xf8\xef\x71\xfc\xe6\xbb\x57\x17\xfe\x10\xdf\x52\xb8\xbf\x2c\x6c\x23\x7e\x52\xfa\xae\x1f\x87\xa5\x7f\x7c\x4b\xe9\x7f\xcc\x6f\x29\xfd\xfb\xfa\x96\xd2\xba\x73\x5e\x96\x6f\xf5\xe9\xa4\x48\x8c\xfc\x9b\x83\x87\xf2\xb6\xba\xd2\x51\x5d\x77\xa3\x2e\x7c\x34\x8c\xf2\xb2\x78\xea\xf9\xa0\xf8\xdd\x2c\xed\x3b\xf6\x61\xf1\xf6\xb6\xe2\xf7\x7b\xe7\x70\x09\xee\x36\x4f\x8a\xed\xa0\xf8\x87\x97\xc5\x7b\x79\x5e\x5a\xfe\xe9\x4d\x95\x97\xfb\xe2\x07\xf3\xc8\x72\xb7\xe2\x87\xbb\x4d\xf8\x4d\x3b\x5f\xa4\xde\xed\xce\xa3\xf2\x3f\x3e\xd8\xcd\x25\xc6\xef\xe8\x87\xdf\x7d\xf7\x3e\x52\xfc\xf8\xec\xc5\x7f\x7a\xf0\xa2\x35\xa4\x6f\x72\x1d\x83\x38\x95\xb8\x46\x0a\xa9\x50\xc8\x89\x42\xeb\x4b\xa8\x49\x48\xff\x39\x87\x56\xfb\x29\x49\x5c\xa5\x52\xa4\x5c\x28\xf0\x98\x3c\x28\xe4\x32\xc3\xf6\x69\x3f\x9f\x42\x1f\x75\x0d\x28\xa8\x3f\xf1\x40\x89\x5c\xa6\xfd\x8b\x9f\xb4\xae\x73\xab\xde\x44\x4d\xb2\x6a\x9b\xda\x6c\x4e\xd4\xfa\x1a\x49\x12\x71\xa7\x54\xdf\x95\x99\x3a\x71\x7b\x57\xa6\x96\x38\x71\x8e\x7d\x95\xa4\xbd\xd0\xd2\xfa\x30\xe0\x29\x77\x0a\x5a\xfc\x68\x0e\xf4\x6c\x63\xc0\x25\x55\xe2\xc4\x72\x0e\xcc\x82\x61\x17\x1d\x7a\xa6\xd0\xc7\x0c\xbd\x52\xa8\xf1\x9d\x0e\x2d\xa6\x77\x85\x42\x92\x19\x46\xd5\x6f\x8c\x9f\xf1\x9d\xaf\x4a\x68\x81\x5e\xc9\x5e\x4a\x99\xfa\x98\xf6\xef\xf6\xe3\x5e\x6c\x7f\x75\xe5\x58\x28\x12\x0f\xa1\x90\xc6\xb9\xa4\xb6\xe8\x2c\x53\x90\xd4\xce\xa1\xc5\xf1\x35\x7a\x45\x6f\xed\xd6\xa8\x6d\x8d\x94\x98\x78\x50\xd1\xc5\xc8\x83\x52\x79\x57\x96\x9e\x84\xa4\xd4\x95\x85\x32\x49\xa7\xbc\xe6\x48\x91\x30\x80\x3e\xa5\x53\xa8\xfd\x68\x29\xee\xcf\x55\xad\xd9\x57\x87\x8b\x50\x8b\x79\x8d\xc4\x5d\x47\x97\x58\x3b\xc9\x15\xc3\x60\xf4\x54\x7f\xda\xfe\x08\xfe\x97\x95\xb3\x1f\xe7\xcd\x1f\x37\xe5\xae\x6b\xb8\xaa\xfa\xe3\x7b\xed\x01\x05\x96\x8e\x99\xd7\xf1\x77\x0a\x23\xce\x30\x74\x15\xfa\x1a\x4a\xd6\x3d\x3d\x22\xa5\xbe\x84\x94\x13\xa5\x2c\x6b\xe0\x36\xf4\xad\xac\xf3\x65\xdf\xd6\xc0\x59\x77\x68\x90\xa6\xd3\x5b\x8a\xf6\x4e\xa4\x10\x97\x38\x03\x97\x48\x22\x65\x06\xfd\x9d\xac\xc8\xbc\x7c\x9f\xdb\xf3\xed\x85\xab\x4a\xec\x6b\xb0\xef\xa2\x23\x2a\x11\xe5\xb5\x76\xab\xc3\xda\x5c\xf1\x53\xbc\xf4\x6b\xd1\xee\x6a\x9f\xd7\xd4\x28\xa4\x46\xfa\x31\x0e\x09\x46\x3a\x22\x18\x35\x53\x12\x3d\xc1\x6b\x50\x1a\x91\x74\x6f\x0e\x0a\x15\x27\x5f\xf7\x40\xac\x14\xb2\x54\x0a\x09\x33\xc7\x46\x54\x7a\xa2\x5
|
|
|
|
|
|
|
|
func bindataDistFontsFontawesomeFontawesomewebfontSvgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsFontawesomeFontawesomewebfontSvg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/font-awesome/fontawesome-webfont.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsFontawesomeFontawesomewebfontSvg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsFontawesomeFontawesomewebfontSvgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/font-awesome/fontawesome-webfont.svg",
|
|
|
|
size: 202148,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsFontawesomeFontawesomewebfontTtf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\x09\x7c\x1c\xc5\x95\x38\x8e\xd7\xab\xbe\x66\x7a\xa6\x67\xa6\xa7\x7b\xba\x47\xa3\xd1\x68\xce\x1e\xc9\xb2\x47\xf6\x9c\xf2\x25\x8d\x65\xe3\x4b\xb2\x31\x18\x30\xd8\x46\xc8\x06\x63\x63\x73\x18\xb0\x31\x38\x04\x1a\x6c\x0e\x03\xe1\x30\xe0\x38\x24\x10\x01\x81\xe0\x24\x9b\x90\x83\x6c\x20\x31\x3b\x21\x0b\xd9\x1c\xb0\x39\x58\x72\x6e\x56\x24\x81\xec\x77\x21\x89\x9d\x64\xf9\x06\x5b\xd3\xfa\x7f\xaa\x7a\x66\x34\x92\x6d\x20\xd9\xfd\x7f\x3f\x3f\xd9\xea\xae\xea\xba\x5e\x55\xbd\xaa\x7a\xef\xd5\x7b\x4f\x08\x10\x42\x1e\x64\x22\x06\x0d\x2f\x5e\x7c\xd6\x8a\x8b\xbb\xef\x59\x83\x10\x7a\x1b\x21\x14\x5e\xb2\xe8\xb4\xc5\xf0\x2d\xc4\x22\x04\x0e\x84\x50\xf4\xf4\xd5\xdd\xd9\x3b\xf1\xee\x00\x42\xd0\x81\x10\x1a\xbe\xf0\xb2\x0d\xdb\x7f\xb8\xed\x1b\x0c\x42\x70\x3b\x42\xf8\xaa\xcd\x1b\xae\xde\x8e\x10\xf2\x21\xc4\x8c\x21\x84\x1c\x9b\x2f\xbd\xee\xe2\x1b\xe7\x6e\xfa\x0c\x42\x2c\x8b\x20\xf8\x97\x2d\x9b\x36\x5c\xc4\xfc\xb2\xed\xb3\x08\xc2\x7f\x45\x08\x15\xb7\x6c\xd9\xb4\x41\xba\x59\x78\x0b\x41\xdb\x4c\x84\x50\x72\xcb\x65\x3b\xae\x55\xdf\xf6\x08\x08\xda\xce\x42\x88\x5f\x7a\xe9\x15\x17\x6e\x38\xd4\xb3\xd1\x44\x90\xf8\x04\x42\x4c\xe6\xb2\x0d\xd7\x6e\x87\xb7\x71\x18\x81\xf1\x7d\x02\xcf\xe5\x1b\x2e\xdb\x34\xf7\xd8\xa6\x47\x10\x18\x6f\x23\x84\xbf\xb6\xfd\x8a\xab\x77\xac\xba\xe7\x0b\xc7\x10\x74\x7e\x0a\x21\xf9\xfc\x5d\x9b\x36\x5e\xfc\xec\x4f\xcf\xdc\x85\x60\x2e\x8b\x10\xe2\x11\xa2\xbd\x45\xdf\x9f\xff\xd8\xbf\x92\xf7\xf7\xce\xba\x99\xb4\x8b\x5e\x79\x78\xeb\x9a\xda\x38\x20\x14\x24\x5f\x10\x46\x80\x00\x1e\x44\x40\x7a\x8f\x30\x42\x88\xe1\x7e\x0b\xf7\x22\x0e\xb1\xec\x5d\x6c\x0e\x21\x74\xab\xfd\xc6\x57\xa3\xb5\x34\x7e\xca\x9f\xed\xd7\x5d\x75\x35\x2a\xa3\xe8\x7f\x23\x1e\x8d\x53\x30\x20\x51\x87\xa4\xf6\x13\xa5\x31\xa6\xf6\x1b\xb6\xd3\xe0\x52\xc4\xd0\x50\x18\xb1\xb0\x0a\x21\xb4\x0a\x95\x11\x87\x7c\x28\x8a\x46\xd0\x21\xf4\x79\xf4\x15\xf4\x52\x54\x8c\x76\x47\x2f\x88\xc5\xe3\x91\xf8\xf0\x28\x3a\xe2\x39\x12\x39\xd2\x7b\x64\xe5\x91\xa1\x23\x97\x1f\xb9\xe1\xc8\xdd\x47\x1e\x39\xf2\xf9\x23\x5f\x3a\xf2\xca\x91\x5f\x1d\xf9\xc3\x11\xeb\xa8\xe7\x68\xe4\x68\xe6\x68\xef\xd1\x95\x47\x87\x8e\x5e\x7e\xf4\x86\xa3\x77\x1f\x7d\xe4\xbf\xd1\xf8\x38\x6d\x7f\x04\x3d\x55\xab\x11\x4d\xaa\x11\x1d\xf1\x1d\x89\x1d\x29\x1f\x59\x75\x64\xf8\xc8\xf6\x23\xe6\x91\x7b\x8f\x8c\x1c\x79\xfa\x48\xe5\xc8\x0f\x8e\x8c\x1e\x39\x72\x14\x1d\xf5\x1d\x8d\x1e\x9d\x79\xb4\x7c\x74\xd5\xd1\xe1\xa3\xdb\x8f\x9a\x47\xef\x25\x35\x8e\xff\x66\xfc\xa2\xf1\xf3\xc7\xcf\x1b\x3f\x6b\x7c\xe1\xa8\xf8\x1f\x6f\xfe\xc7\x3f\xfe\xea\xbf\xff\xfd\xd8\xbf\x3f\x1b\x0d\xf9\x5a\x7d\x21\x5f\xd0\xa7\xfb\x34\x5f\xc0\xa7\xfa\x14\x9f\xdf\x27\xfb\x7c\x3e\xc6\x87\x7d\xe0\x43\xde\x71\xaf\xe5\xad\x7a\xc7\xbc\xc7\xbd\xc7\xbc\xef\x7a\xff\xea\xfd\xbf\xde\x77\xdc\x0f\x4e\x1a\xa9\xff\xa5\x1f\xe0\x27\x26\x00\x70\x6d\x86\x27\x65\xb0\xa7\xe2\xff\x0b\x3f\x02\xaf\x3b\xb8\x16\x67\x0d\x31\x4f\xf6\xc3\xfe\xbd\x55\x03\x82\xf1\x71\xe4\x45\x18\x6d\x47\x88\xf1\xf1\xa4\xd3\x02\x42\xa5\x98\x1c\x63\xe4\x98\x3c\x0a\x15\xab\xbc\x1d\x8f\x6c\xe7\xa2\xc7\xb6\xf3\xe8\x58\xad\x4c\xd3\xcf\x2c\x12\x3f\x7f\x1c\xf1\x8f\x73\x26\x6a\x43\x08\x54\x01\xe4\x58\x56\x53\xf9\x44\x2c\x6e\xe4\x8b\xb9\x98\x0c\x46\x21\xdf\x0b\xb9\x58\x36\x02\xfc\xe3\x5d\xd5\xdb\xa1\x1c\x32\x8c\xd0\x98\x49\x9e\x50\xae\xde\xde\x95\xec\xd0\x39\x53\xef\x48\x72\x8b\x13\x5d\xd5\xdb\xab\xc8\xc8\x1b\x46\xde\x60\x10\xbe\xb6\x2b\xa1\xb7\x3a\x1c\xad\xb4\xcd\x71\xc4\x23\xce\x44\x5d\x08\x81\xac\x7a\x70\x3c\x83\xf3\xbd\x38\x97\xd5\x65\x6e\x72\x34\x5f\x2c\x41\x31\x97\xd5\x78\xb4\x68\xcb\xe6\xb5\x9b\xb7\x2c\x5a\xb4\x65\xf3\x8c\x4b\xd6\x54\x27\x47\x8d\x08\x53\x76\xfb\x3a\x7a\xb8\xe8\xf1\x91\xec\xca\xae\x40\xa0\x6b\xe5\x45\x2b\xbb\x02\x69\xdc\xf2\xfb\xea\xdc\xe6\x0f\xcc\xb7\xdb\x73\x22\x20\xb6\x87\x60\xc8\x38\xe2\x4d\xce\x44\x02\x8a\xd1\x5d\x2e\x4a\x7e\x41\xe5\x13\xf1\x34\xf0\x89\x78\xd2\xc0\x3e\x7f\x31\x19\x65\x35\x7f\x40\x15\x40\x63\x4d\xeb\x5d\xeb\x6e\xeb\x5d\x10\xe0\x2a\x46\x18\xcc\x17\x93\xd6\xa1\x2f\xff\xf2\x1e\xeb\xf8\xe1\x2b\xae\x38\x0c\x1c\x44\x80\x3b\x7c\xc5\xf5\xb0\x26\x85\x05\xb8\x0a\x04\x3b\xb3\x65\xe6\x07\x0d\x3
|
|
|
|
|
|
|
|
func bindataDistFontsFontawesomeFontawesomewebfontTtfBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsFontawesomeFontawesomewebfontTtf,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/font-awesome/fontawesome-webfont.ttf",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsFontawesomeFontawesomewebfontTtf() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsFontawesomeFontawesomewebfontTtfBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/font-awesome/fontawesome-webfont.ttf",
|
|
|
|
size: 80652,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsFontawesomeFontawesomewebfontWoff = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x53\x6c\x25\x0e\x17\xed\x4f\xdb\xe9\xa9\xa6\xe6\xd4\xb6\xed\x4e\x8d\x29\xa6\xb6\x6d\x5b\x53\xdb\xb6\x6d\xdb\xb6\x75\x6a\xdb\xf6\xcd\x3f\xf7\xcb\x7d\xb9\x3b\xf9\xed\x95\x9d\xfd\xb0\x56\x96\xab\x9c\x98\x18\x00\x0c\x00\x00\x00\xaa\x62\x01\x08\x00\x00\x00\x8c\xe7\xe7\xff\xbd\xff\xff\x11\x13\x53\x92\x01\x00\xc0\x44\x00\x00\x00\xee\x7f\x98\x30\xc4\xa8\x8a\x8b\x88\x8a\x01\x00\x60\x7a\x00\x00\x80\x00\x00\x00\x10\x82\x0d\x00\x7e\xc8\x29\x32\x30\x03\x00\x60\xff\x00\x00\x00\x3f\x00\x00\xd0\x8b\x00\xf7\x40\x37\xb4\xd6\xb7\x03\x00\xc0\x7a\x01\x00\x30\x52\x00\x00\xdc\x61\xce\xb2\x13\xc2\x54\xdf\xd1\x0e\x00\x00\x3f\x00\x00\x00\xd0\xff\x03\xc9\xd4\xca\xdd\x04\x00\x00\xbf\x00\x00\xd2\xd2\x01\x60\x58\x0f\xbe\x3c\xc6\xe5\x66\xc6\xfa\x46\x00\x40\x66\x28\x00\x00\x60\x02\x00\x00\xec\x10\x1b\x78\x15\x66\x66\xc6\xfa\x00\x40\x66\xe7\xff\x7c\x49\xe1\xfd\xa1\xce\xcd\xac\x9d\xdc\x00\x80\xcc\x0d\x00\x00\x6c\x0c\x00\x00\x4a\xa0\x5d\x20\x40\x59\xd9\x1a\xea\x03\x00\xd9\xa5\x00\x00\x04\x14\x00\x00\x41\x5f\xc6\x69\xf0\xcf\x5a\xdf\xcd\x0e\x00\xc8\xab\xfd\x7f\x99\x2f\xc0\x71\x6d\xf4\xad\x8d\x01\x80\xbc\x59\x00\x00\xcc\x18\x00\x00\x6f\xe5\x79\x33\xce\xb6\xb3\x75\x74\x02\x00\x0a\x38\x01\x00\x58\x19\x00\x00\x59\xfb\x6f\x4c\xcd\x9b\xab\xb1\x81\x09\x00\x50\xf5\x5f\x16\xe0\x7f\xb4\xad\x2a\xb8\xfe\xd7\xda\x7f\xfd\x4c\xf2\xe5\xcf\xfc\xa7\x13\x4a\xfe\x8c\xff\xe9\x74\x96\x85\xaa\x1b\xc8\x50\xcf\x48\x4f\x6f\x07\xc2\x00\x06\x88\xa4\x67\xa0\x67\xa4\x67\x94\x09\x4b\xaa\xde\xcb\x0b\x04\xc0\x76\x01\xc6\x00\xff\xfd\x4d\xbc\xfb\x39\xfd\xfc\x92\xfc\x82\x8a\x42\x86\x52\xfd\xfc\xf2\xe0\x85\x58\xd0\x59\x44\xfc\x5e\x39\x05\x05\x8d\xe5\x99\x02\x20\x02\xfa\x55\x81\xec\xc1\xdf\xbf\xf9\x71\x20\x0a\x98\x63\x0d\x44\x14\xf2\x7b\x7b\xa1\x01\x10\xe6\x30\xe8\x00\x80\x1b\x68\x2a\xae\x43\x0a\x42\x1f\x29\xe8\x78\x5b\x6b\x91\xf0\x75\xc4\xd2\x20\xd1\xb8\x01\x31\x97\x5f\x50\xad\x16\x51\x73\x55\x0d\xab\xa5\x36\x31\x96\x02\xda\xdd\x3f\x76\x98\xbd\x70\x91\x3c\x14\x3a\x7e\x7a\x5c\xc1\xcb\x4f\xeb\x77\x6d\x22\x8b\x68\xa7\xc8\xd4\xf5\x30\xba\x60\x9f\x18\x2d\x2f\xa3\x29\xa7\xdd\x4b\xf8\x2f\xe2\x70\x79\x56\xcb\x42\x21\x0a\x67\x24\xf2\xc7\xec\xfd\x71\xc4\x16\x39\x7c\xb2\xd0\xb1\x3c\x0c\x3c\xc5\x8c\xe9\x93\x79\x49\x2e\x9c\x69\x9d\x2d\x67\x6b\x0e\x2c\xa4\xf9\x5a\xf9\xdf\xc8\x64\x89\xf2\xa2\x78\x32\x8d\xf6\xe1\x34\x0f\x76\x21\x75\x85\x43\xc9\xce\x54\x12\xf2\x52\x0a\xc9\xe5\x8b\x45\x5c\xa4\x86\x42\x77\x81\x6e\x0f\x82\x85\x0c\x22\xe0\x24\x88\x88\xfc\xe0\x4a\x7f\x85\x21\xe8\x32\x77\xc0\x57\xb0\x00\x42\xfd\x7b\xa3\xc5\x6e\x7b\x7f\x08\xd1\xcb\x24\x0d\x85\x58\x39\x4c\xb6\x2f\xd2\xf1\x1a\xac\x9b\x81\x65\x5f\xd6\xdf\x9d\x1c\x17\xd1\xed\x78\x14\x23\x15\x99\xfb\xb4\xa6\x6e\x69\x29\x6e\x71\x98\x6e\xd9\xc7\xa9\x5c\xc3\x18\x34\xe4\xd6\x0f\x6a\x3d\x67\x98\x9f\x95\xe2\x6f\x92\x02\x67\x50\xde\x02\x9e\x58\xda\xfb\xb6\x45\xf1\x0f\x61\xca\x2a\x66\xcb\xcf\x42\x0f\xe1\xdf\xb9\x65\x46\x26\xdc\x75\xcc\xc2\x6b\x04\x38\xb7\xba\xf6\xdb\x80\x0b\x06\xb7\x62\x00\x18\x00\xec\xfb\x1b\x80\xe8\x06\xea\xec\x82\xf1\x52\x3a\x5c\x62\xf4\x99\x71\x6c\x49\xe3\x79\xdf\x50\x8f\x1f\x33\x62\x7e\x37\xf2\x23\x35\x6a\x06\xa8\x07\xd7\x26\xfc\x58\xfb\xf1\x63\x30\x34\x1f\x9a\x3e\x97\x30\x7c\x9d\x32\x74\x8f\x9e\xba\xa8\xd9\x62\xb1\xbc\xa8\x42\xfb\x62\xc5\xe2\x36\x0b\x64\xa1\xea\x6d\x6d\xa9\xfa\xf9\x1c\x61\xdd\xf4\xa9\x53\xd5\xd4\x2c\xa0\x49\xe4\xf8\x3a\x7d\xbf\x91\x36\x46\x4a\x9a\xef\xfd\x7d\x0d\x95\xe6\x99\xe3\xcd\x37\x73\x9f\xe9\x98\xed\x38\x7d\x08\xdd\x92\xb5\xef\xd6\x11\x88\x28\x7b\xd4\x6a\x35\x8a\xbc\x87\x47\x34\x02\x8d\xd6\xb8\xe1\xc2\xdc\xa9\xfd\x13\x7f\x9d\xde\x7e\x84\xf3\x0d\xb1\xb5\xdc\x97\xa5\xf4\x7b\x12\x35\xf3\xa1\x34\xf5\xf8\x6c\x6e\x3f\xbe\x0f\xf9\xec\xa6\xb5\x50\x82\x12\x57\xce\x38\x9e\x08\x6a\x70\xa1\x0c\x5f\x22\x98\x1b\x9c\x90\x0f\xa4\xd0\xf9\xcb\xa1\xdb\x6d\x83\x23\xbd\x44\x6e\x14\xdd\xd6\x26\x8c\xdd\x63\xa8\xb3\x85\x89\x9a\x3e\x54\xcf\x29\x2e\xa2\x64\xef\x65\xc4\xf1\x20\x3c\x39\xb4\x65\x5a\xaf\xd4\xd0\xd9\x00\x0f\x77\x79\xce\x1f\x3f\x64\x42\xaa\xbf\x8a\x74\x49\x38\x1e\x4f\x27\x84\x73\x2b\x63\xdc\x88\x28\xe1\xe2\x46\x62\xa3\x
|
|
|
|
|
|
|
|
func bindataDistFontsFontawesomeFontawesomewebfontWoffBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsFontawesomeFontawesomewebfontWoff,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/font-awesome/fontawesome-webfont.woff",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsFontawesomeFontawesomewebfontWoff() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsFontawesomeFontawesomewebfontWoffBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/font-awesome/fontawesome-webfont.woff",
|
|
|
|
size: 44432,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsGlyphiconsGlyphiconshalflingsregularEot = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x75\x4c\xdd\xe1\xb3\xe6\xbf\x70\x90\x83\xbb\xdb\xc1\xdd\x5d\x8b\xbb\x5b\x71\x77\x77\x6b\xa1\x1c\xe4\x20\xc5\xad\xb8\xbb\x7b\x91\xe2\x6e\xc5\xb5\xb4\xb8\x4b\x81\x52\x1c\xba\xd9\xdf\xdd\xec\x26\xf7\xfe\xb3\x9f\xe4\xcd\x9b\x99\x79\x66\xe6\xc9\x48\x6b\x00\xc0\xbe\x1a\x00\xc0\x03\xf0\x00\x02\xf0\xbf\x41\x04\xfe\x0b\x38\x20\x09\x0e\x00\x10\x00\x55\x4d\xe0\xbf\x01\xf7\x7f\xfe\x34\x83\x6a\x8e\xff\x5e\x03\x00\x26\x40\x01\x50\x05\x0c\x01\x4d\x40\x11\x50\x02\x64\x00\x0d\x40\x1d\xd0\x01\x20\x80\x22\x60\x09\xb8\x00\x76\x80\x0b\xe0\x08\xb8\x01\xf6\x80\x37\x00\x00\x98\x80\x36\x60\x0b\xd8\x03\xbe\x80\x0b\x60\x09\x78\x01\x00\x10\x00\xe8\x03\xb6\x80\x17\xe0\x0d\x38\x02\xee\x80\x1b\x00\x01\xb8\x01\x0e\x80\x0b\xe0\x02\xb8\x01\x51\x40\xf3\x3f\x93\xfe\x2b\xfa\x7f\x59\x07\xc0\x1d\xf0\x01\xac\xff\xa3\xf7\xfb\xbf\x1d\x1c\x80\x20\xc0\x05\x88\x02\xae\x80\x25\xe0\x0c\xd8\xfe\x47\x63\x07\x70\xfc\x67\xbf\x15\xc0\x03\x70\x00\xfc\xff\x79\x42\x00\x2f\xc0\x03\x08\x03\x00\x20\xf4\xff\xed\x1c\xf2\x3f\x7c\x03\x80\xb4\x8e\xc2\xff\xb8\x14\x08\xf0\x2b\x05\xf8\x35\x00\x7e\x3d\x80\x5d\x1b\x77\xe6\x24\x76\xdc\x62\xed\xfd\x84\x83\x8a\xa7\xf2\xa7\x00\x1a\x3d\x11\x2f\x36\xce\x0c\x3e\x93\x9c\x4d\x02\x4c\x74\x17\xc7\x85\x1f\x8b\xd7\xd1\x93\xd9\x58\x48\x79\x72\x63\xaa\xf2\x6a\xad\x14\xa3\xa1\xf8\x07\xfa\x4c\xf6\x4b\xef\x89\x29\x04\x3a\x2b\xf6\xf5\xf7\x33\x2c\xf0\x5d\xc3\xcd\x93\xec\x8c\xf2\x83\x11\xa2\x42\xde\x26\xf0\x67\x15\x27\x9f\x3a\xae\x1c\xe9\x87\x8c\x65\x6d\xc8\x22\xb3\x68\xfc\xf7\x6a\xfa\xe7\x82\x52\xd8\x50\xb6\x32\x8f\xa7\xac\xa4\x96\x11\x1d\x59\xe0\xee\x0e\x96\x59\x79\xd0\x31\x61\x97\x42\xa1\x85\x53\x6c\x07\xd5\x2d\x43\x64\x2b\xd2\x9b\x4a\x9a\xab\x76\x4a\xe5\x33\x45\x4a\x08\x77\xbf\xa2\xe6\x58\x67\x9a\xe0\x56\xfc\x09\x4a\x78\xcb\xd9\xbb\x81\x93\xb6\x1a\x2b\xec\x25\xab\x7d\x94\xa9\xcf\x70\x26\x1c\x6d\x76\x55\x5c\x09\x24\x20\xfb\xda\x66\xf6\xdb\xe0\x78\x78\x4d\xee\x2f\x8c\xb3\xfd\x20\xf1\x98\xaa\xf6\x7a\xb7\x60\xc9\xfe\x52\xc9\xb5\xa6\x63\xb4\x35\xaf\x9c\x79\x3d\xd4\x9e\x96\xca\x66\x70\x66\xc7\x23\x2b\x13\x5b\x6d\x95\x9e\xfd\xb0\x75\xeb\x1e\x77\x1d\xbe\xff\xcb\x1e\x4c\xf5\xa5\x58\xb8\x3d\xe5\x3a\xf4\xd1\xed\x18\x66\xb1\x8e\x5c\xa0\xe0\x97\x80\x4f\x8d\x58\xcc\x04\xcd\x33\xd1\x59\x1e\x57\xd6\xfd\xed\xbd\xc8\x6b\x53\xcd\xe0\xe5\x7b\xa6\xfe\xfa\xe3\xc5\x74\x23\x78\x4f\xd5\xb3\x23\x6e\x89\xaf\x71\x61\x80\x1f\xf1\x3d\x41\x87\x6d\x91\x3b\x96\xa4\xe0\xa6\x64\x26\xfc\x34\x91\xc5\x90\xab\xc5\x24\x2c\x4d\xa0\xe2\x94\x5c\x13\xc5\xc3\xa4\xc4\xd3\x2e\x99\xd7\x01\x5f\x4c\x52\x8a\x64\x69\x48\x8f\x41\x6b\x99\xa5\xb3\x6d\xcf\xd4\x20\x97\xde\xb1\x8d\x0d\xc7\x1e\xf9\x13\xb5\x36\xa5\xf4\x82\x25\x27\x0f\x11\xee\x35\x0f\x75\x20\x6f\x0a\x56\xa3\x8f\x5a\xe4\x20\x2a\xa6\x1c\x11\xea\x73\x90\xdc\x06\xcf\x7c\x21\xfe\x54\xee\x95\xc7\x60\xa5\x1c\xf6\x19\xa2\x45\xe7\x5f\x9e\x06\xe6\x21\xd1\x2d\xe9\x89\xed\xb0\x5b\x87\x04\x4d\x3c\x96\xc9\xb9\xfa\x60\x0e\x53\x98\x93\xdc\xd7\x1e\x56\xa5\x07\x16\x26\xd5\xd1\xb1\x9b\x64\xf1\x03\x12\x6f\xa4\x7d\x7d\x6f\x5c\x32\x83\x79\xf5\x8c\x5d\x91\xf4\xb1\xbf\x85\xb8\xb8\xb6\xcb\x9f\x34\xdc\x49\x3e\x81\xb1\xca\x8c\xf1\x63\xb3\xb6\x77\xae\x57\x34\x05\xd2\xb4\x2b\x49\xfb\x04\xc4\x9c\xe3\x8d\xc7\x31\x57\x3e\x26\xc5\xca\xe5\x94\xa5\x61\x2c\x46\x2a\x3d\xc8\x22\x78\x5e\xe1\xf4\xc7\x70\x1c\xb4\xe6\x98\x97\x77\xee\x57\xfe\x95\xee\x82\xe8\xab\xb2\xd4\xe5\xe9\xb6\x4e\x46\x42\x88\x2f\xc8\xb4\x57\x7b\x33\x1c\x0d\x89\xf4\xdd\x40\x88\x5e\xac\x8b\x0b\x63\xb8\xbe\x6b\x61\xe7\x46\x16\xb3\xae\xf1\xdb\xe7\xed\xfe\xa6\xe2\x5b\x89\xf5\xb8\x82\xbb\x3e\xf4\x64\xef\x4e\x1b\x3f\xe6\x99\x14\xda\x41\x36\x60\xe7\xfd\x83\xa0\xce\x39\xb9\x56\xec\x08\x34\xce\x27\x3a\x44\x3c\xb4\x59\x5a\x65\x92\xaf\xfe\x31\x5c\x4a\x03\x8c\xe4\x33\x0f\x1f\x97\xe8\x7c\xca\x91\x50\xde\xa0\x26\xc4\xb2\xe9\x96\xe5\x5a\x5c\x34\x48\x5e\x38\x09\x39\x92\xdc\x41\xee\x69\xd9\x81\xeb\x49\x85\x74\x22\x63\xa1\x2d\x0c\x60\xeb\xe1\xf8\x20\xdd\x79\xfa\x51\x93\xc2\xe3\x8c\x83\xa2\x92\x49\x39\x94\x6d\xfa\x93\x5a\xe1\x36\xb6\x3a\x4b\x17\xef\x45\x5e\x99\xfb\x2e\xcb\x9f\x4d\x87\x42\xd1\x64\x4d\xca\x91\xae\x11\xa5
|
|
|
|
|
|
|
|
func bindataDistFontsGlyphiconsGlyphiconshalflingsregularEotBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsGlyphiconsGlyphiconshalflingsregularEot,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/glyphicons/glyphicons-halflings-regular.eot",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsGlyphiconsGlyphiconshalflingsregularEot() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsGlyphiconsGlyphiconshalflingsregularEotBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/glyphicons/glyphicons-halflings-regular.eot",
|
|
|
|
size: 20290,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
|
|
|
modTime: time.Unix(1386259750, 0),
|
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsGlyphiconsGlyphiconshalflingsregularSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xeb\x8f\x2d\x37\x92\x27\xf6\x7d\xfe\x8a\xf0\x5d\x60\x3e\xd8\x60\x89\x11\xc1\xa7\xfb\xb1\x80\xa7\x17\x03\x03\x2e\x7b\x81\x1d\xaf\xe1\x4f\x86\xd0\xba\xdd\x47\x40\x8e\x34\xd9\xca\x39\xd3\xae\xbf\xde\x88\x5f\x90\x79\xf2\xd4\xad\xca\xba\x0f\x49\x73\x1b\x63\x40\xba\x27\x2b\x93\xc9\x24\x83\xc1\x60\xbc\xe3\xb7\xff\xf9\xaf\xff\xbc\xd0\xf5\xfd\x5f\x7e\xfa\xfe\xc7\x1f\x7e\xf7\x8e\x1f\xe2\x3b\xfa\x69\xfb\xf6\x87\xef\xbe\x5d\x7e\xfc\xe1\xfd\xef\xde\xfd\xf0\xe3\xbb\xff\xfc\xfb\xbf\xfb\xed\xff\xf0\x87\xff\xe3\x1f\xfe\xe9\xff\xfe\xaf\xff\x85\x7e\xba\xfe\x99\xfe\xeb\xff\xf9\xbf\xfc\x6f\xff\xeb\x3f\xd0\xbb\xf0\xcd\x37\xff\x97\xfe\xc3\x37\xdf\xfc\xe1\x9f\xfe\x40\xff\xed\xbf\xff\x23\xf1\x03\x7f\xf3\xcd\x7f\xf9\xdf\xdf\xd1\xbb\xcb\xb6\xfd\xcb\xff\xfc\xcd\x37\xff\xf6\x6f\xff\xf6\xf0\x6f\xfa\xf0\xe3\x5f\xfe\xfc\xcd\x3f\xfe\xe5\xdb\x7f\xb9\x7c\xff\xc7\x9f\xbe\xf9\x6f\xff\xfd\x1f\xbf\xb1\x86\x7f\xf8\xa7\x3f\x7c\xf3\xd3\xf5\xcf\xcc\x0f\xdf\x6d\xdf\xbd\xa3\xdf\xff\xdd\x6f\xad\xeb\xbf\xfe\xf3\xf2\xc3\x4f\xbf\x7b\xe1\x7d\x89\x31\x5a\xfb\x77\xbf\xff\xbb\xdf\xfe\xf3\xfb\xed\xdb\xef\xbe\xdd\xbe\xfd\xfd\x6f\xbf\xd9\x2f\xff\xee\xb7\xdf\xbd\xff\xd3\x4f\xbf\xff\xbb\xdf\xfe\xe9\xc7\x1f\x36\xfa\xfe\xbb\xdf\xbd\xfb\xf3\xf2\xff\xda\x17\x7f\xfc\xe1\xa7\xff\xe7\xf2\xed\xf2\xa7\xe5\xfb\x1f\xfe\xfc\xd3\x5f\xde\xff\xf9\x5f\x97\x6f\xff\xf2\x8e\x2e\x3f\xfe\xe5\xfb\xa7\xf0\xed\x77\xd7\xf0\xd7\xdf\xbd\x63\x89\x11\x23\xb0\x77\xc3\x9f\xbe\xfd\xe3\x7b\xfa\xd7\x1f\xbe\xdf\x7e\x0a\xff\xf2\xfe\x2f\xe1\xfd\x3f\xcf\x06\xdf\xfe\xf4\xc7\xf7\x3f\x6c\xbf\x7b\xd7\x4b\x7c\x47\xdf\xbd\x1f\x7f\x05\x49\xf1\x1d\x7d\x63\xc3\xfa\xfe\xa7\x9f\xbe\xff\xe1\xcf\x01\x1f\xbe\xff\x42\x8e\xa3\x8d\x3f\x7b\xe9\xea\x5f\x7f\xf8\xfe\x8f\x3f\x7e\xf7\xfe\x77\xef\xfe\xfe\x3f\xfd\xf5\xbb\xdf\xbc\x7b\xe9\x09\xbd\x78\xf7\x7f\x7c\x47\xdf\xfd\xee\xdd\x23\xc7\x48\x39\xc6\xab\xc4\x78\x91\xdc\x97\xc0\x4d\x89\x9b\x2e\x9c\x98\x38\xf1\x62\x7f\xdb\xcd\xab\xe4\x7e\x91\x18\xaf\xc1\x9a\x1d\x5b\x05\x6b\x16\x66\x3b\xeb\xe5\x1a\xac\xbb\xbd\xa1\xdd\x5e\xc2\x7d\x53\xeb\xd1\x1a\x5c\xac\xe9\x75\xff\xf2\xad\xe9\xfc\xb6\x75\x69\x0d\x9f\x5e\x9c\xc5\xff\xe4\xb3\x88\x94\x62\xbc\x6a\x8c\x17\xfb\x4d\x31\x5e\xd4\x46\x9a\xc6\x8d\x60\x4f\x42\x9a\xb7\xec\x4f\x34\xb2\xbf\x5e\xee\xf7\xef\xff\xd3\x5f\xbf\x8d\x2f\x83\xf3\xef\xff\xd3\x5f\x0d\xab\x7e\xf3\x0c\x1b\x4a\x96\x93\xe6\xfc\xbc\x39\x6b\x4c\x27\xed\xe5\xd3\xba\xd7\x4f\xec\x3e\x3d\x6f\x9f\xf4\xac\x79\x7e\xde\x5c\xa5\x9c\x34\x2f\xcf\x9b\x0b\xd7\x93\xe6\xf5\xd3\x9a\xb7\x0f\xe6\x5a\xf4\xa4\x79\xff\xa0\xf7\x12\x4f\x9a\x7f\xfb\xbc\x79\x3d\x81\xbb\xfc\xe9\x93\x3a\xcf\x1f\x34\x3f\x85\xe3\xb7\x7f\xfc\xcd\xdd\x1e\x5d\xec\x97\x63\xbc\x30\xeb\x1a\x29\x55\xca\xf8\x33\x08\xb7\xdb\x33\xcd\xab\x56\xe2\x52\x89\x59\x48\x72\x5d\x99\xab\xed\x26\x92\x8e\xdf\x55\x92\x50\x24\xcd\xc9\x76\x5b\x5f\x4b\xa4\xc0\x51\xa9\x14\x0a\x12\xfb\x25\x70\xe3\x35\x52\xce\x14\x24\x3f\x64\xea\x7d\x0b\x45\x1f\x32\x95\xb6\x85\x9a\x49\xcb\x43\xde\x82\xf5\x2f\x0f\x79\x0d\x92\x28\x52\xc8\xf2\x90\xad\x9b\x2d\x14\x5c\xa9\x6c\xa1\xd8\xdb\xa1\xd4\x2d\xe4\xe8\x4f\xeb\x45\xab\x6d\xf4\x88\x4f\xfa\x46\x5c\x43\xa1\x90\x0a\xd9\x0f\x63\xbf\x96\x5b\x0b\xf2\x26\x9d\x42\x4d\xa4\x46\x1e\x54\x36\xff\x56\xe7\xad\x08\x85\x9c\x1e\xf2\x96\x3b\x05\xe9\x5b\x2a\xf6\xa0\x3e\xe4\x55\x3a\x45\x9b\x10\xeb\x66\x23\xae\x9b\x4f\xa0\x3e\xe4\xcd\xe7\x54\x1e\xf2\x85\x6b\x5a\x83\x1a\x51\xaa\x42\x81\xa5\x51\x90\xda\x56\x1b\x27\x05\x03\x5a\x90\x9a\x70\xb5\x06\x89\xd9\xa6\xa9\x92\x88\x73\x5b\x83\x16\xc2\x98\x3b\xb1\xb2\xc1\x23\x65\x92\x98\x1f\xb2\xad\x46\x7d\x95\xa6\x88\xb0\x8c\x45\x95\x08\xa2\x75\xe9\x83\x70\x85\x3e\x08\xd5\xeb\x2f\x17\x90\x11\x7b\x39\x70\xa2\xd4\xd3\x1a\x29\xb4\x48\x19\xf3\x66\xad\x1b\x2b\x60\x9e\xeb\xa5\xe6\xb8\xb2\x44\x8a\x36\x2c\x6a\x65\x6b\x36\xc0\xb6\x46\xb2\xbb\x01\x7f\x61\x21\xfd\xb1\xad\x64\x2a\x36\xc5\x6e\x90\x4f\x6b\x48\x89\xba\xc1\x41\xd3\x43\x26\xce\xa3\xad\x2d\x64\xee\xd6\x9a\xb3\x61\x51\x10\x47\x1f\x83\x6c\xe0\xd8\x70\xe3\x21\xdb\xc0\x24\x93\x50\xd0\xba\x06\xc3\x2c\x36\x48\xc6\xe6\x18\x01\x80\x39\xc6\x88\x3c\xe4\xd7\x67
|
|
|
|
|
|
|
|
func bindataDistFontsGlyphiconsGlyphiconshalflingsregularSvgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsGlyphiconsGlyphiconshalflingsregularSvg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/glyphicons/glyphicons-halflings-regular.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsGlyphiconsGlyphiconshalflingsregularSvg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsGlyphiconsGlyphiconshalflingsregularSvgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/glyphicons/glyphicons-halflings-regular.svg",
|
|
|
|
size: 62850,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
|
|
|
modTime: time.Unix(1386259750, 0),
|
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsGlyphiconsGlyphiconshalflingsregularTtf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x79\x9c\x1b\xd5\x95\x2f\x7e\x4f\x55\x49\xa5\x5d\xaa\x92\x4a\xa5\x6e\xb5\x96\x92\x5a\x52\xb7\xa5\x96\xba\xab\x5a\x2d\xcb\xbd\xb8\x69\xef\xbb\xb1\x01\xb7\x59\x6d\x2c\xb3\x99\xc5\x2c\x31\x4b\xcc\x62\x42\x20\x38\x31\x34\x24\x31\x61\x4c\x26\x4e\x32\x80\x87\x25\xdc\x92\xcd\x90\xe4\x91\x99\x84\x04\x46\x99\x49\x65\x1b\xd3\x09\xcc\x84\xd8\x59\x18\x12\x02\x93\x80\x67\x32\xb1\xdd\xe5\xdf\xe7\xde\x52\x2f\x5e\x08\x93\x37\xbf\x3f\x5e\xdb\xad\x5a\x55\x75\xce\xb9\xe7\x9e\xfb\x3d\xcb\xbd\x8d\x00\x21\x24\x00\x42\x1c\x0a\x2c\x5c\x78\xce\x8a\x2b\xfe\xf8\xcb\x5f\x21\x04\x6d\x08\xa1\xb6\x45\xf3\x17\x2c\x04\x07\xe2\x10\x82\xd9\x08\xa1\xe4\xaa\xb5\x25\xf5\xf2\x27\x97\xdd\x83\x10\x8c\x22\x84\x36\x6c\xba\x66\xe3\xd6\x5f\x2c\x5e\x2e\x23\x04\x5f\x45\x88\xb9\x6a\xd3\xb6\x9b\x92\xa8\x83\xbd\x0f\x21\xae\x1d\x21\xe4\xb8\x6c\xeb\xe5\xd7\xac\x3d\x50\x7a\x12\x21\xae\x80\x10\xb3\xf9\xf2\x8d\x37\x6e\x45\x08\x05\x10\xb2\x7f\x86\x5c\xbf\xfc\xea\x5b\x2f\x9b\xf5\x83\x2f\xdf\x8f\x90\xfd\x31\x84\xee\x8f\x5c\xb1\x79\x63\x0d\xb8\x2d\x8f\x21\xf4\xe0\x01\x84\x50\xdf\x15\x57\x6c\xde\xe8\x52\x39\x3f\x42\x0f\xfe\x0e\x21\xd4\x7e\xc5\x35\x37\xdd\xf2\xad\x7f\x10\x1e\x44\x68\x2c\x80\x10\x73\xe4\xea\xeb\x36\x6d\x54\x3f\x7b\xce\x6d\x08\x7d\x9a\xd0\xf8\xd5\x6b\x36\xde\xb2\x95\xe1\x60\x2f\x42\x9f\x79\x91\xd0\x7b\xed\xc6\x6b\x36\x1f\xfc\xfb\x47\xdf\x47\xe8\x33\xff\x86\x10\xbb\x7d\xeb\x75\x37\xde\xf4\xbd\xb3\xc6\xce\x43\xe8\x73\xa3\x08\x39\xee\xd9\x7a\xc3\xe6\xad\xf8\xbd\x7c\x08\xa1\xbd\xff\x86\x10\x2a\xde\xbc\xf9\xd2\xcb\x36\x9a\x6b\x2a\x08\x7d\xd1\x83\x10\xb2\x23\x44\xa5\x83\xbe\x37\xf8\xa5\x1f\x90\xed\xf7\x2f\x2a\x3e\x62\x6d\xc5\xdb\xe9\x15\x1f\x42\x28\x42\xce\x20\x06\x01\x02\xf4\x3a\x02\x22\x2d\xc4\x20\x84\x58\x6e\x07\x8c\x21\x1b\xe2\x58\x0f\xf3\x43\x84\xd0\xf9\xd6\x16\xfe\x06\xa9\xcc\x57\xc9\x57\x6c\xe8\xcc\x3f\xe7\x2e\x5b\xb7\x12\x0d\x23\xef\x2f\x10\xfb\xcd\x13\x01\x84\x6c\x11\xb4\x7d\x92\x92\xe6\x4f\x92\x1e\xb1\xcd\xdf\x36\xeb\x1a\xd4\x10\x4b\xf7\xda\x10\x07\x8b\x11\x42\xe4\x29\x36\x4a\xa3\x17\x25\x51\x1e\xed\x4d\xba\x92\xa5\xe4\x25\xc9\x67\x52\x62\x16\x72\xce\x9c\xff\x10\x7b\xc8\x79\xa8\xe5\x50\xe7\xa1\xea\xa1\x25\x87\xd6\x1f\xda\x70\xe8\xca\x43\xb7\x1e\xba\xff\xd0\x23\x87\x9d\x87\x5b\x0e\x77\x1e\xae\x1e\x5e\x78\x78\xc9\xe1\xf5\x87\xaf\x3c\x7c\xeb\xe1\xfb\x0f\x7f\xf6\xf0\xa3\xbf\x40\x27\x4e\xd0\xf7\x93\xe7\xcd\x42\x7b\x93\xe8\x94\xe7\xa1\x43\xb6\x43\x81\x43\xc9\x43\xdd\x87\x86\x0f\xad\x3e\xb4\xe1\xd0\xa5\x87\xb6\x1e\xba\xeb\xd0\xd8\x61\x38\x1c\x38\x9c\x3c\xdc\x7d\x78\xf8\xf0\xe2\xc3\xab\x0f\x6f\x38\xbc\xf5\xf0\x5d\x87\xc7\x0e\x3f\x42\x9f\x07\x27\xfe\xf3\xc4\x2f\x4f\xbc\x7e\xe2\xb2\x43\xfc\xcf\x7f\xf9\xf3\x03\x3f\xbf\xe2\x0d\xf6\x75\xe9\x35\xdf\x6b\xce\x64\x4b\x32\x92\x14\x93\x9e\xa4\x3d\x89\x12\x47\x13\x47\x12\xef\x27\xde\x49\xfc\x7b\xe2\x70\xe2\x96\xc4\x0d\x89\xab\x13\x97\x25\x36\x24\x2e\x49\xac\x4f\xac\x4d\xac\x48\x2c\x4a\x9c\x95\x18\x8e\xbf\x7e\x92\x8c\xfe\x7f\xf9\x01\xfb\xb4\xe0\x81\x69\xb6\xec\x49\x37\x58\x4d\x60\xfd\x70\x1f\xd4\xa4\xff\x8f\xfc\xd8\x4f\x3d\x11\xfa\x1f\x7f\xf5\x41\xd4\xc1\xfc\x37\x46\x05\x8c\x82\xcb\xf0\xf2\xd5\xa3\x78\xe9\xb6\xf5\x18\xa5\xe7\x46\xb0\x3d\x3f\x3a\xb8\x9e\x9e\xbb\x7d\x7d\xf2\x20\x86\x60\x31\xd2\x85\xa1\x90\x7c\x1d\x7b\xf2\x5d\x98\x29\x2c\x5b\x33\xba\x20\xbd\x5e\xe9\xc2\x6c\xe1\xca\x48\x12\x0f\xaf\x1e\x55\xf0\xf0\xfa\x2e\xcc\x15\xc8\x57\x95\xb4\x72\xdb\xe8\xcf\xa2\xc6\xfa\xe8\xb2\x35\xa3\xa3\x13\xd1\x77\xd6\x47\xd3\x0a\xb6\xe5\x47\xf1\xc2\x6d\xeb\xe9\x85\xf5\xeb\x23\x5d\xd8\x56\xf0\x5e\x78\x7e\x17\xb6\x17\xf4\x14\x7c\x62\xf5\x28\x4e\x7e\xe2\xc2\x0b\xa3\x18\xad\xef\xc2\x7c\x41\x6f\xa7\xa7\x86\xa7\x4e\x39\x0a\xa2\x90\xac\x96\xba\xb0\xb3\x90\xbc\x9d\xbc\xe4\x3b\x51\x63\x7d\x12\xb3\x99\x25\xe9\x24\xe6\xb2\x4b\x31\x5a\x3d\xba\x73\xf3\xce\x8d\x49\xb2\x33\x3b\xaa\x28\xeb\xa3\x3b\xe9\xd1\x1a\xeb\x88\xbc\xd0\x65\x51\x17\x88\x06\x94\xf5\x5d\xd8\x5d\x48\xfe\x98\xb2\xe3\x29\x24\x4b\x98\xcf\x5f\x38\x9a\x4c\x2e\x4a\x2f\xdc\x78\x55\x72\x34\x59\xbb\xd4\x7a\x04\xb9\xcf\x4b\xde\x9c\xac\x96\x92\x3b\x93\x8b\x76\x2e\xdc\x98\xde\x99\xdc\x99
|
|
|
|
|
|
|
|
func bindataDistFontsGlyphiconsGlyphiconshalflingsregularTtfBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsGlyphiconsGlyphiconshalflingsregularTtf,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/glyphicons/glyphicons-halflings-regular.ttf",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsGlyphiconsGlyphiconshalflingsregularTtf() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsGlyphiconsGlyphiconshalflingsregularTtfBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/glyphicons/glyphicons-halflings-regular.ttf",
|
|
|
|
size: 41236,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
|
|
|
modTime: time.Unix(1386259750, 0),
|
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsGlyphiconsGlyphiconshalflingsregularWoff = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x93\x73\x6c\x26\x5e\xd0\xef\x9f\x5a\x5b\x7b\x6b\xdb\xb6\xbd\xb5\xdd\x6e\x6d\xdb\xb6\x6d\x9b\x5b\xdb\x6e\x9f\xda\xb6\x6d\xf7\xe6\xf7\xbe\x37\xf7\x9f\x7b\x92\x4f\xbe\x39\x39\x27\x33\xf3\x9d\xc9\xb8\xc9\x8b\x8b\x03\x40\x00\x00\x00\x40\xeb\x13\x80\xfc\x9f\x16\xa0\xfd\xef\xfd\xff\x3f\xe2\xe2\x2a\xb2\x00\x00\x88\x3f\x00\x00\xc0\xfd\x0f\xf3\x97\x83\x43\x09\x51\x31\x71\x00\x00\x24\x1b\x00\x00\xe0\x03\x00\x00\x42\x10\x68\x00\xb8\xbc\x32\x03\x33\x00\x00\xd2\x05\x00\x00\x44\x00\x00\x80\x81\x59\x99\x4c\xb0\x91\x8d\xa1\x3d\x00\x00\x0a\x00\x00\x40\x30\x01\x00\x50\xcb\x7d\xc9\x3f\x98\x46\xae\xce\x84\x00\x00\x18\x16\x00\x00\x80\xfe\x1f\x28\xc1\xc2\x4c\xed\xcd\x6c\x00\x00\x30\x42\x00\x00\xe4\x1f\x00\x00\x6a\xa2\xdc\xc4\x50\x66\x66\xe8\x64\x0f\x00\x80\x2f\xfe\xbf\x7f\x00\x00\x92\x99\xb5\x87\x29\x00\x00\xbe\x09\x00\xc8\x3e\x00\x00\x11\x58\xd4\x33\x45\x11\xe6\x26\x86\xc6\x00\x80\xd2\x2c\x00\x00\x60\x05\x00\x00\xec\x20\xe0\x56\xd9\xe6\xe6\x26\x86\x00\x80\x32\xf8\xff\xad\x99\x14\x96\x19\x1c\xd1\xdc\xc6\xd9\x1d\x00\x50\xfe\x2f\x07\x1a\x00\x00\xfa\xd8\xdf\x8b\x1c\x67\x6d\x67\x64\x08\x00\xa8\xb0\x02\x00\x20\x55\x00\x00\x48\x1b\x73\x8a\x8a\xa7\x8d\xa1\xbb\x3d\x00\xa0\xba\xfb\x9f\xaf\xff\x00\x05\x07\xc9\xb7\x35\xb4\x31\x01\x00\xd4\xfe\xf3\x11\x04\x00\x80\x79\x2f\xf6\x64\x3c\xd8\xdb\x39\x39\x03\x00\xea\xc1\x00\x00\x18\x3f\x00\x00\x1d\x3c\x25\x14\xaf\x66\xef\x68\x62\x0f\x00\x68\x0d\x01\x00\x00\xfa\xff\xa8\xbf\xa7\x41\x73\x33\xf9\x6b\x0a\x00\x68\x3d\x02\x00\x00\xc8\xff\x30\xfc\x56\xe2\xf8\x2f\xd0\x7f\xbd\x9d\xe2\x2b\x9c\xf9\x4f\xa7\x75\xe9\xd3\xfe\x57\x51\x7c\xdc\xd7\x8d\x0c\x8c\x0d\x0c\x76\xc1\xfe\xc2\x40\x22\x19\xfc\x35\x00\x1f\xd0\x16\x9c\x02\x3d\x66\x02\x00\xe0\xcb\x41\xe0\x01\x80\xff\xde\x4d\x2d\x8c\xb3\xfb\xfa\x26\xfa\x06\xa6\x06\x9d\x03\x02\x02\x88\x60\x85\x59\xe8\x0d\x19\xff\xae\x83\x1c\x82\x95\xd4\x07\x29\xdc\xd8\x0b\x40\x42\x41\x6e\x4b\xfc\x9a\x82\xfa\x86\x03\x2c\x49\x31\x2e\x02\x42\xb0\x13\x92\x29\x19\x19\x41\x01\x70\x86\x30\xcb\x00\xf7\x75\x60\x02\x9f\x0c\x98\x10\x52\xa8\x59\x92\xce\xa1\xa8\x11\x34\x2c\x7e\x38\x8b\x06\x56\x61\x88\xc5\x42\x4e\x0c\x79\x08\x4a\x7d\x07\xb5\x10\x29\x56\x3d\xb4\x5a\xa9\x4c\x16\x7d\x0c\x38\x8f\x9f\x7f\x89\x1f\xb9\xba\xfb\x43\xe6\xc0\x84\xb4\x8d\xf5\x32\x1b\x14\x86\xba\xa6\xc6\xeb\x80\x37\x1d\xcb\x4c\x1f\x2d\xf2\x11\x55\x33\x1d\xf3\x74\x52\xbb\x7d\x8a\xe6\x22\xc4\x82\xf3\x5d\xb2\xf0\x7d\xf9\x61\x83\x2a\xca\x7a\x99\x97\x66\x2a\xd8\xd9\xd8\xa0\x9c\xc9\x8a\xca\xd7\x79\xe6\xf1\xd2\x8a\xa0\xd5\xfa\x6c\xaa\xf8\xfa\x52\x0f\x82\x4b\xb5\xf2\x2b\xb4\x82\x08\x98\x84\x39\x91\x30\x81\x48\xb4\x43\x54\xa7\x59\xc3\xb3\xd7\x42\x60\xeb\x89\x7b\xf2\x5e\x82\xa7\x96\xda\x5c\x47\xe8\xba\x6b\x97\x13\xde\xa9\x24\x05\x23\xa5\x88\x82\x44\x38\xf9\xfa\xe9\x5f\x7f\x64\xf2\x74\x7a\xf7\x11\xdf\xd5\xf6\x18\x1b\xf9\xb4\x44\x8f\xfb\x74\x1d\xfe\xa3\x83\x18\x4d\x8b\x63\x19\xc2\x2c\xa5\x04\x74\x2a\xd8\x3b\x8a\xde\x07\x9c\xde\x7b\xb8\x20\xbb\xd7\xcc\xba\xb6\x51\xdd\x6b\xfb\x21\x33\xef\x81\x51\xef\xb1\x3d\xd7\xec\xed\x3d\x06\x93\xc8\x47\x30\x36\xae\x13\xc7\xb5\xd0\x47\x38\x25\x74\xde\xf7\x15\x6a\x53\x82\x65\x3f\x96\x27\x08\x17\x12\x13\xc9\xff\x46\x10\x07\xa0\x04\x7d\x75\x5f\xd7\x55\xec\x94\xd3\x16\x42\xda\x82\x47\x04\x0b\x18\x5a\x25\xe4\x5a\x47\x6b\xcc\x88\x1f\xf1\x2a\x80\x80\x19\x5a\x8a\xf9\x6b\xcc\x13\x72\x04\x6d\xc1\xe1\x98\x10\xe5\x00\x42\x20\x18\x20\x0a\xbf\x5e\x87\x9d\x5f\x50\x2c\x99\x05\x49\x84\x29\xe9\x2d\xcc\x4f\x84\xc2\x62\x15\x5e\xc8\xca\xc3\xd3\xe8\x34\x9d\xc1\x22\x33\x91\x50\xe9\x76\x66\x35\xa3\x7c\x42\x1a\x3f\xb0\x05\x09\x64\xff\x92\x93\x6c\x6e\x04\xbc\x14\x5f\x5c\xc4\x44\x37\x05\x41\x69\x59\x9b\x3e\x4e\xb8\x7c\x7c\xc3\x41\x66\xcd\x25\xf3\x58\x02\x8e\xf8\xec\xa8\x10\xb1\x65\x79\x02\xb4\x9a\xca\xbe\xe7\x3e\x61\x43\x3f\x3e\x09\x1e\x78\xb0\x9a\x58\x17\x1e\x17\xb9\x61\xce\x88\xc0\x8f\xb3\x1c\x64\x82\x6e\xb0\x81\x1d\x93\x88\xef\x81\x4b\x7b\x7f\x19\x19\x8b\xd3\x4b\xf7\xe9\x05\x4a\x95\xbe\x5b\x59\x4f\x2c\x27\xeb\x9b\x13\xe6\xba\x82\x58\x90\xdf\xc6\x59\x05\x95\xad\x6c\xc0\x33\xbf\x17\x89\x96\x1e\x1c\xd0\x64\xe2\x27\x4b\xff\xb1\xa
|
|
|
|
|
|
|
|
func bindataDistFontsGlyphiconsGlyphiconshalflingsregularWoffBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsGlyphiconsGlyphiconshalflingsregularWoff,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/glyphicons/glyphicons-halflings-regular.woff",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsGlyphiconsGlyphiconshalflingsregularWoff() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsGlyphiconsGlyphiconshalflingsregularWoffBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/glyphicons/glyphicons-halflings-regular.woff",
|
|
|
|
size: 23292,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
|
|
|
modTime: time.Unix(1386259750, 0),
|
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsTransfershEot = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x5f\x6c\x1c\xd5\xd5\xff\x9d\x99\xdd\xb9\x33\xb3\xbb\x33\xfb\x67\xfe\x78\xff\x79\xd7\xbb\xeb\x19\x07\xc7\xf6\xee\xce\xce\x0c\x38\x4e\xec\x40\x48\x20\xd9\x75\x9c\xf0\x7d\x09\x1f\xe1\xe3\xcb\x42\x6c\x87\x0f\x27\x71\x1d\x13\x85\x87\xaa\x56\x29\xa8\x7f\xf2\x80\x68\x5a\xd4\x8a\x87\x3e\xb5\x01\x81\x5a\x0a\x2d\x91\x2a\x4a\x1e\x50\x0b\x95\x50\x51\x1f\x8a\x54\xf1\x10\x88\x1a\xd1\x2a\xa0\x3e\x14\xa4\x56\xc8\xa9\x66\x76\x4d\x68\xa0\x7f\x54\xb5\xd7\x1a\xdf\x33\x67\xee\x3d\xf7\x9e\xf3\x3b\xe7\xec\x39\x7f\x50\x80\x19\x05\x20\x70\x08\x06\x87\xa8\x14\x12\x20\x3c\x46\xc1\xdc\x9e\x23\xfc\xf5\xd8\x78\xbf\xf4\xda\xc3\x2f\xe2\x53\x43\xc3\x2a\x56\xd0\xc5\x71\x9c\xc4\x02\xe6\xb1\x82\x93\x38\x0a\x40\xc1\x7e\xcc\x63\x11\x0f\x62\x09\x5d\xac\x00\x30\x70\xa0\xff\xfd\x7e\x9c\xc0\x71\x94\xd1\xc0\x38\xea\x7f\x47\x46\xff\xf0\x04\xd6\xc0\x63\x6e\xe7\xce\xff\xea\x2c\x6f\x3a\xbf\x17\x50\x6a\x00\x0a\xbb\x76\xdc\xba\x13\xd3\x10\x00\x25\x02\xa0\xbc\xf7\x8e\x89\xe6\xde\x3f\xde\xfd\x23\x80\xee\x04\x70\xe0\xbe\x63\xdd\xe5\xc9\x07\x8a\x5b\x01\x7a\x0b\xa0\xe5\xc5\xee\xc9\xe5\xab\x57\xc1\x03\x89\x8f\x00\x88\x8b\x4b\x0f\x2d\x8c\xbc\x7b\x6e\x0a\xe0\x57\x01\xf1\xb1\xa3\xf3\xdd\x23\xf4\xbb\x66\xb0\xf7\x2d\x00\xde\xd1\xa3\xf3\xdd\xc8\x04\x17\x05\x48\x03\x50\x3b\x7a\x6c\xf5\x34\xbb\x17\x97\x00\xfa\x01\x80\xcd\x4b\x27\xee\xeb\xa6\x22\xca\xdd\x00\xdf\x06\x60\x1d\xeb\x9e\x5e\xc6\x9d\x81\xaa\x74\x63\x70\x9f\xe3\xdd\x63\xf3\xfe\xd9\x6f\x2f\x02\xf1\x08\x40\xcf\x2e\x9f\x38\xb9\xca\x9d\xe6\x54\x20\xf1\x02\x80\x9d\xa1\x6e\x04\xbc\xf8\xf0\x6b\x97\xfe\x4f\x9d\xfa\x00\xb1\x1e\x26\x6f\xcc\x9f\x7e\xfa\x13\x33\xe3\x7a\x58\x89\x7d\xc8\xc2\x3d\x21\x39\xbe\x81\x21\xae\x87\x2c\x12\x72\xd2\x38\x81\xc8\xc6\x12\x50\xc8\x9b\xd9\x90\xc1\x81\x1e\x43\x14\x22\xb5\x69\x01\xc0\xae\xfe\xfc\x01\xb2\xf8\xd2\x27\xfd\x02\xd7\x49\x9f\x5b\xb8\xf5\x08\x66\xd0\xc5\x32\x5d\xbc\x7a\x31\xb8\xc3\xd5\x3f\x5d\x5b\xb3\x71\x45\xae\xf7\x94\xe1\x40\x83\x0c\x20\x07\xa0\x83\x0e\x6a\x70\xb0\x06\x0d\x39\xe4\x81\x00\x8b\xf0\x29\xf4\xf7\xff\x3f\xf8\x90\x2a\x20\x82\xd9\x50\xe7\x0d\xad\xe7\x11\x60\x17\x8c\x2e\x16\xfb\x54\xef\x54\x01\x4a\x28\x25\x02\x01\x09\xc4\x11\x85\x8c\x18\x44\x48\x50\xc0\xa0\x22\x89\x14\x40\xc2\x35\x35\x88\xfb\xc4\x45\x3f\x53\xc7\x7f\x71\xf0\x11\x21\x11\x47\x54\x8e\x89\x92\xc2\xd4\x64\xea\xdf\x20\xf2\x3f\x32\x36\xe3\x14\xce\xe1\x23\x6a\xd1\x2a\xfd\x9a\x33\xb8\x65\xee\x2c\x0f\xbe\xcc\x1f\xe7\x9f\x89\xdc\x16\xda\xb2\x8c\x19\xba\x48\x17\xa0\x42\x47\x16\xa0\xa1\x8a\xa0\xa7\x34\xc3\x19\x6a\x7a\x6e\xaa\x65\x45\x7d\xdb\x37\x99\x53\x75\x1d\xba\xb0\xbe\xa6\xa4\x33\x09\x5a\x4b\x64\x32\xeb\x5f\x9f\x99\x29\x1f\x3e\x7c\x71\x6d\x8d\x2e\xa4\x95\xf5\x0b\x89\x4c\x26\x41\x33\x89\xcc\xc5\x90\x5d\x06\xc1\x41\x8e\x5e\xa7\xcb\x70\x80\xe1\xa6\x69\xe8\x1a\x13\x2a\xb6\xe5\xb6\x7c\xd7\x16\xaa\x15\xab\xe5\x39\x4d\xd3\x77\x03\x86\xd7\xff\x5c\xad\xd8\x4c\x33\x74\x4d\xd0\x4d\xcf\xa1\xb5\xb2\x61\x9a\xc6\x8c\x61\xd2\x23\x46\xb6\x34\x3e\x5e\x2a\x64\x1e\xa1\x90\x61\x1a\xe5\x7c\xe6\x51\xa2\x47\xd3\x85\xe7\x0d\xbd\x52\x32\x0d\xc3\x2c\x45\x79\x61\x2e\x35\xbe\x6d\x3c\x39\x27\xf0\x91\x80\xa5\x0f\x95\x4d\x23\x39\x47\x62\x84\x17\x69\x4e\x0d\x75\xd5\xa0\xd1\x15\xba\x02\x06\x03\x45\x20\xdd\x34\x34\xa1\x62\xb5\x32\x4d\xdf\x73\x5b\xb6\x55\xad\x30\x41\xd7\x8c\x8c\x6e\x32\xdb\x75\xbe\x73\xe1\xcc\x99\x0b\x67\xae\x74\x3c\xd7\xf5\xdb\x7b\x7c\x6f\xe9\x9e\x4e\xf6\x60\x95\xae\x9c\x09\xf8\xeb\xef\x7a\xfe\x9e\xb6\xef\xba\x5e\xa7\xbd\x44\x5b\x3f\xdf\xc9\x1e\x3c\x83\xd0\xd7\x64\x30\x7a\x8f\x03\x06\xd1\x04\xc8\x60\x02\x33\x0d\x95\x04\x95\x84\x09\xb2\x7c\x6f\x9a\xbc\x2d\xd4\x2c\x91\x67\x5b\xbe\xc7\x3c\x5b\xa5\x8a\x6d\x4d\x93\xc5\x04\x26\x98\x86\x69\xf8\xf4\x5e\xc6\x34\x46\x25\x31\x9a\x8d\x26\xde\xd7\x63\x4b\x02\xf1\xe2\xfb\x09\x65\x9f\x2a\x2b\x07\xf2\x82\x9a\x7c\x40\xe3\x93\x82\x24\x08\x4a\x22\x6b\xa8\x3c\x2f\xc7\xd5\x54\x82\x3e\x74\x1b\x13\x95\xb8\x92\xd8\xa7\xc8\xe7\xd4\xd4\x93\xb2\x1c\x8f\x9e\x93\x12\xfa\xf6\xfd\x8a\x10\x59\x4f\x0d\x88\x9c\xa4\x0a\x2c\x99\x94\x52\xc9\x64\x82\xe7\xa5\x5e\x0c\xdc\xc5\x81\xbe\x87\x61\x80\x9a\xa6\xa1\x31\x61\x94\x5c\xc7\x66\x8e\x5e\xad\x
|
|
|
|
|
|
|
|
func bindataDistFontsTransfershEotBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsTransfershEot,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/transfersh.eot",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsTransfershEot() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsTransfershEotBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/transfersh.eot",
|
|
|
|
size: 3824,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsTransfershSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x59\xdb\x6e\x1c\x49\x72\x7d\xd7\x57\x84\xdb\x80\xdf\x42\x9d\x11\x91\x57\x9b\xd4\x02\x1e\xad\x07\x06\x7c\x59\x60\xc7\x6b\xf8\x91\x2e\x52\x12\x01\x36\x39\x20\xb9\x9a\xcb\xd7\x1b\xe7\x64\x56\x53\xd2\x0c\xd7\x10\x15\xd5\x55\x9d\x99\x95\x19\x97\x13\x27\xa2\x2f\xfe\xf0\xf3\xe9\x4e\x3e\xdf\x3c\x3e\xdd\x3e\xdc\x5f\x1e\xec\x6d\x3a\xc8\xd3\xf3\xd5\xfd\xf5\xd5\xdd\xc3\xfd\xcd\xe5\xe1\xfe\xe1\xf0\x87\x77\x6f\x2e\xfe\xee\xfd\x7f\x7e\xf7\xc3\xff\xfc\xe9\x8f\xf2\xf4\xf9\xa3\xfc\xe9\xbf\xfe\xf9\xdf\xfe\xf5\x3b\x39\xe8\xf1\xf8\xdf\xf1\xdd\xf1\xf8\xfe\x87\xf7\xf2\xe7\xbf\x7c\x2f\xf6\xd6\x8e\xc7\x3f\xfe\xc7\x41\x0e\x9f\x9e\x9f\x7f\xfc\xc7\xe3\xf1\xa7\x9f\x7e\x7a\xfb\x53\xbc\x7d\x78\xfc\x78\xfc\xfe\xf1\xea\xc7\x4f\xb7\xdb\xd3\xf1\xcf\x7f\xf9\xfe\x88\x81\xef\x7f\x78\x7f\x7c\xfa\xfc\xd1\xec\xed\xf5\xf3\xf5\xe1\xdd\x9b\x0b\xac\xfc\xf3\xe9\xee\xfe\xe9\xf2\x77\xa6\x7b\x4a\x09\xc3\x31\xf0\x74\xf3\x7c\x75\x7d\xf5\x7c\xf5\xee\xfb\x9b\xfb\x9b\xc7\xab\xe7\x9b\x6b\xf9\xdf\x5f\xe4\x5f\x1e\xee\x9f\xaf\x9e\x9e\x6f\xb7\xb7\xa7\x9b\x8b\xe3\x79\xcc\x9b\x8b\xeb\x9b\x0f\x4f\xef\xde\x5c\x7c\x78\xb8\x7f\x96\xdb\xeb\xcb\xc3\xf3\xe3\xd5\xfd\xd3\x87\x9b\xc7\xa7\x4f\x07\xf9\xf4\xf0\x78\xfb\xab\x5e\x5d\x7f\xd6\x9f\x2f\x0f\xc5\xfc\xb0\x06\xea\x87\xab\xed\x46\xd6\xa7\xd3\xed\xdd\x2f\x5f\x4f\xfb\xeb\xfd\xed\xf3\x93\xfe\x78\xf3\xa8\x37\xa7\x39\x4f\xae\x9e\xb6\x9b\xfb\xe7\xcb\x43\xee\xe9\x20\xd7\x37\xeb\x4e\xc3\x0f\x47\x6c\xf9\xf6\xe9\xe9\xf6\xfe\xa3\x7e\xbc\xfb\xe5\xc7\x4f\xbf\x7d\xab\x1c\xdf\xbd\x79\x73\x31\xbf\xfc\xeb\xfd\xed\xf6\x70\x7d\x73\x79\xf8\x87\xbf\x1f\xed\x9f\x0e\x72\x7d\x79\xf8\xf7\x9c\xbb\xe4\xdc\xef\x34\x7a\x96\xb4\xa9\x75\x49\x1a\xae\x96\x21\xc3\xef\x70\x97\xb6\xa4\xd6\x84\xcf\x64\x3e\x9e\xc3\xad\x49\x92\x70\xb1\x22\xfc\xe6\x0e\x77\x69\x4b\x62\x5d\xf9\x6c\x4e\xf8\x55\x4e\x1a\xc5\xd5\x3d\xdf\xd5\x2c\x35\x2b\xe5\x9c\x23\xa3\xea\xfe\xf7\xab\x9c\xbc\x54\xac\xaf\xe6\x5d\xd2\x5a\x1d\x1f\x7f\xe5\x69\x7f\x7b\x90\xbe\x0e\x82\x0d\x59\x1b\x9b\x1b\x26\x0d\x6d\x52\xb2\x3a\xb6\xa6\x96\xc5\x43\x23\x20\x4b\x91\xa4\x6e\xda\x35\x86\xe2\x3e\x2b\x46\x14\x8d\x50\x77\xe5\x1c\xc5\x1a\x1a\x43\x9a\x96\x2c\xee\x38\x8a\x15\xf5\x10\x0c\x0a\x29\x59\x92\xb8\x24\x29\x62\xd2\xd7\x67\x3c\xab\xd8\xb1\x5a\x84\xf4\x97\x4b\x56\x33\x0d\x28\x50\x73\x83\xdc\x57\xef\x5c\x3d\x7e\x7f\x75\x2c\x1c\x43\xe6\x3d\x47\x08\x0f\x20\x9c\x23\x30\x93\x44\xd6\x22\x58\x93\xef\x95\xf9\xc2\xfd\xf2\xc5\xae\xd4\x24\xd4\xa4\xa8\x49\xfb\x1b\x6b\x3b\xd7\x76\xf9\xff\x34\x98\xa1\x41\xd7\xae\x39\x51\x83\xe5\x77\x34\x38\xdd\x28\xa4\x68\xae\x62\xbb\x5e\xb2\xf6\xfd\x82\x35\xc4\xb4\x89\xa9\x85\x24\x2d\x6a\x6a\x09\xc2\xd7\x61\x38\x6a\xbf\xb8\x58\x12\xef\xd8\x2a\x16\x2c\xbf\xef\x0c\x96\x62\x79\x83\x97\x2a\x79\xf8\x56\x0b\xd6\xf2\xa4\x9e\xc5\x6a\xd5\x96\x24\x57\xec\xa9\x25\xb5\x64\xbc\xd4\x2a\x49\x6b\x51\xcf\x8a\x91\xf3\x91\x72\x18\xc6\xec\x0f\x1a\x06\xe1\x18\x9e\x04\x43\x2b\x17\xc9\x15\x0b\xb6\x24\x73\xa4\x70\x35\xa9\x45\xf0\x42\x4f\xb2\x1e\x71\x98\xcc\x37\xca\x9c\x7a\x4a\x9a\x3d\x6d\x05\xda\x1e\x05\x16\xb5\x30\x98\x20\x8a\x44\x95\x12\xd2\x06\xa4\x05\xf4\x51\x0c\x3a\x1d\x45\xf9\xc4\x34\xaa\x44\x81\x6a\x4a\x28\xe7\x85\x62\x25\x1d\x59\x11\x7b\x91\xb4\x84\x46\xc5\x5f\xa1\xda\xe1\xe8\x81\x11\xc5\x10\x9d\x23\x0b\x9f\x24\xe1\x20\x69\x03\x86\xe5\xbc\x7c\xb2\x2e\x61\x6d\x4b\xd3\x6c\x5e\x76\x29\x49\x5a\xd3\xd6\x96\xa4\x11\xcb\xf9\x8f\xf7\xbd\x49\x6f\x53\x72\x7c\x12\xcb\x2f\x32\xe1\x70\x53\xbc\x12\xce\x63\xc7\xa5\x11\x52\x92\x6f\x86\x53\x88\xd1\x0a\x59\x2d\x39\x3d\xcd\x35\x9a\x96\x01\xab\x75\xe3\xba\x03\x8e\x43\x51\x74\xc0\xe5\x87\x84\xfa\x79\x8f\xdd\x96\x64\x34\xc2\xd1\x3a\xfe\x3c\xcf\x01\xd1\xd5\x6a\x3f\x5f\x11\xb3\x9c\x36\x80\x5f\x3e\xd5\x90\xe0\x7d\xf5\x7c\xcd\x52\xb5\x8a\x85\x16\x81\x43\x48\x03\x1a\x84\x98\x89\xcd\x93\x7b\x74\xb1\xda\xcf\xd7\x21\x15\x46\x1e\xe2\x4d\x06\x47\x70\xeb\x14\x46\x31\xb0\x56\x61\x3c\x50\x63\x40\x8a\x29\x0b\x40\x5a\x5a\x13\x68\x65\x88\xe5\xa6\x19\xa7\x45\x68\x0d\xbc\xdf\x4c\x42\xac\xe1\xc9\x50\x4b\x27\x35\x1c\x20\xa7\x6d\x6d\x69\x88\x17\x6c\x2c\xdb\x3c\x4c\xd5\x3e\x45\xa8\x69\x51\xd7\xaa\xae\x0d\xdf\x10\x2b\x8a\x0c\x
|
|
|
|
|
|
|
|
func bindataDistFontsTransfershSvgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsTransfershSvg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/transfersh.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsTransfershSvg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsTransfershSvgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/transfersh.svg",
|
|
|
|
size: 7935,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsTransfershTtf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x5d\x6c\x1c\xd5\xf5\xff\x9d\x99\xdd\xb9\x33\xb3\xbb\x33\xfb\x31\x1f\xde\x2f\xef\xa7\x67\x1c\x1c\xdb\xbb\x3b\x3b\x33\xe0\x38\xb1\x03\x21\x81\x64\xd7\x71\xc2\xff\x9f\xf0\x27\xfc\x69\x16\x62\x3b\x14\x27\x71\x1d\x13\x85\x87\xaa\x56\x5b\x50\x3f\xf2\x80\x68\x5a\xd4\x8a\x87\x3e\xb5\x01\x81\x5a\x0a\x2d\x91\x2a\x4a\x1e\x50\x4b\x2b\xa1\xa2\x3e\x14\xa9\xe2\x21\x80\x1a\xd1\x2a\xf0\x54\x90\x5a\x21\xa7\x9a\xd9\x35\x81\x82\xd4\xaa\x6a\xaf\x35\xbe\xc7\xbf\xb9\xf7\xdc\x73\xce\xef\x9c\xe3\x3b\x20\x00\x09\xac\x83\xc7\xfc\xee\xdd\xff\xd3\x5d\xd9\x72\x71\x3f\xa0\xd4\x01\x14\xf6\xec\xba\x75\x37\x66\x20\x00\x4a\x04\x40\x79\xff\x1d\x93\xad\xfd\x7f\xb9\xfb\xa7\x00\xdd\x09\xe0\xd0\x7d\x27\x7a\x2b\x53\x0f\x14\xb7\x03\xf4\x06\x40\x2b\x4b\xbd\xd3\x2b\xd7\xae\x81\x07\x12\x1f\x02\x10\x97\x96\x1f\x5a\x1c\x7d\xe7\xc2\x34\xc0\xaf\x01\xe2\xa3\xc7\x17\x7a\xc7\xe8\x4f\xad\x60\xef\x1b\x00\xbc\xe3\xc7\x17\x7a\x91\x49\x2e\x0a\x90\x06\xa0\x7e\xfc\xc4\xda\x59\x76\x2f\xde\x06\xe8\xc7\x00\xb6\x2e\x9f\xba\xaf\x97\x8a\x28\x77\x03\x7c\x07\x80\x75\xa2\x77\x76\x05\x77\x62\x15\xa0\x1b\x03\x7b\x4e\xf6\x4e\x2c\xf8\xe7\xbf\xb7\x04\xc4\x23\x00\x3d\xb3\x72\xea\xf4\x1a\x77\x96\x53\x81\xc4\xf3\x00\x76\x87\xbe\x11\xf0\xc2\x57\x7e\xfd\xf6\xe7\xd4\xe9\xf7\x11\xe3\x10\x8c\xd7\x16\xce\x3e\xf5\xb1\x99\x71\x08\x71\xb1\x3f\xf5\xf7\x84\xe2\x44\x1f\xe0\x42\xe4\x13\x23\x12\x22\x69\x9c\x42\x64\x73\x09\x28\xc4\x66\x37\x75\x70\xa0\x47\x11\x85\x48\x1d\x5a\x04\xb0\x67\x30\xbf\x8f\x2c\xbe\x1a\x6c\x88\x4a\x1f\x69\xfb\x84\xf6\xf9\xc5\x5b\x8f\x61\x16\x3d\xac\xd0\xe5\x6b\x97\x03\x1b\xae\xfd\xf5\xfa\x9a\x4d\x13\xb9\xfe\x53\x86\x03\x0d\x32\x80\x1c\x80\x2e\xba\xa8\xc3\xc1\x3a\x34\xe4\x90\x07\x02\x2e\xc2\xa7\x30\xd8\xff\x79\xf0\xa1\x54\x40\x04\x73\xa1\xcf\x9b\x5e\x2f\x20\xe0\x2e\x18\x3d\x2c\x0d\xa4\xfe\xa9\x02\x94\x50\x4b\x04\x02\x12\x88\x23\x0a\x19\x31\x88\x90\xa0\x80\x41\x45\x12\x29\x80\x84\xeb\x6e\x10\xf7\x31\x43\x3f\xd3\xc7\x7f\x73\xf0\x11\x21\x11\x47\x54\x8e\x89\x92\xc2\xd4\x64\xea\x3f\xa0\xf2\xbf\x32\xb6\xe2\x0c\x2e\xe0\x43\x6a\xd3\x1a\xfd\x9e\x33\xb8\x15\xee\x3c\x0f\xbe\xcc\x9f\xe4\x9f\x8e\xdc\x16\xc6\xb2\x8c\x59\xba\x4c\x97\xa0\x42\x47\x16\xa0\x4a\x55\xd0\x53\x9a\xe1\x54\x5a\x9e\x9b\x6a\x5b\x51\xdf\xf6\x4d\xe6\xd4\x5c\x87\x2e\x6d\xac\x2b\xe9\x4c\x82\xd6\x13\x99\xcc\xc6\xb7\x66\x67\xcb\x47\x8f\x5e\x5e\x5f\xa7\x4b\x69\x65\xe3\x52\x22\x93\x49\xd0\x6c\x22\x73\x39\x84\xcb\x20\x38\xc8\xd1\xab\x74\x05\x0e\x30\xd2\x32\x0d\x5d\x63\x42\xd5\xb6\xdc\xb6\xef\xda\x42\xad\x6a\xb5\x3d\xa7\x65\xfa\x6e\x00\x78\x83\xd7\xb5\xaa\xcd\x34\x43\xd7\x04\xdd\xf4\x1c\x5a\x2f\x1b\xa6\x69\xcc\x1a\x26\x3d\x6c\x64\x4b\x13\x13\xa5\x42\xe6\x61\x0a\x01\xd3\x28\xe7\x33\x8f\x10\x3d\x92\x2e\x3c\x67\xe8\xd5\x92\x69\x18\x66\x29\xca\x0b\xf3\xa9\x89\x1d\x13\xc9\x79\x81\x8f\x04\x90\x5e\x29\x9b\x46\x72\x9e\xc4\x08\x2f\xd2\xbc\x1a\xfa\xaa\x41\xa3\xab\x74\x15\x0c\x06\x8a\x40\xba\x65\x68\x42\xd5\x6a\x67\x5a\xbe\xe7\xb6\x6d\xab\x56\x65\x82\xae\x19\x19\xdd\x64\xb6\xeb\x7c\xff\xd2\xb9\x73\x97\xce\x5d\xed\x7a\xae\xeb\x77\xf6\xf9\xde\xf2\x3d\xdd\xec\xe1\x1a\x5d\x3d\x17\xe0\x1b\xef\x78\xfe\xbe\x8e\xef\xba\x5e\xb7\xb3\x4c\xdb\xbf\xd8\xcd\x1e\x3e\x87\x30\xd7\x64\x30\x7a\x97\x03\x86\xd1\x02\xc8\x60\x02\x33\x0d\x95\x04\x95\x84\x49\xb2\x7c\x6f\x86\xbc\x6d\xd4\x2a\x91\x67\x5b\xbe\xc7\x3c\x5b\xa5\xaa\x6d\xcd\x90\xc5\x04\x26\x98\x86\x69\xf8\xf4\x6e\xc6\x34\xc6\x24\x31\x9a\x8d\x26\xde\xd3\x63\xcb\x02\xf1\xe2\x7b\x09\xe5\x80\x2a\x2b\x87\xf2\x82\x9a\x7c\x40\xe3\x93\x82\x24\x08\x4a\x22\x6b\xa8\x3c\x2f\xc7\xd5\x54\x82\x3e\x70\x9b\x93\xd5\xb8\x92\x38\xa0\xc8\x17\xd4\xd4\x13\xb2\x1c\x8f\x5e\x90\x12\xfa\xce\x83\x8a\x10\xd9\x48\x0d\x89\x9c\xa4\x0a\x2c\x99\x94\x52\xc9\x64\x82\xe7\xa5\x7e\x0d\xdc\xc5\x81\x7e\x88\x11\x80\x5a\xa6\xa1\x31\x61\x8c\x5c\xc7\x66\x8e\x5e\xab\xda\x56\xdb\x0f\xf8\x69\x87\xf4\x38\x2d\xd3\x08\x18\x79\xb8\x35\x52\xaf\x8f\xb4\x7a\xde\x5d\xff\xe7\x7e\xc9\xca\x17\xf2\x05\x4b\xe4\x68\x74\xf4\xa6\x89\x7a\x55\x49\x73\xb4\xb7\x56\x3b\x56\xab\xf5\xce\x9c\xe9\xe5\xb3\x9d\x7c\x8e\x48\x89\x7a\xa3\x76\x3e\x3b\xc6\x05\x71\xc9\x61\x99\xae\xd0\x79\x68\x18\x05\x32\x
|
|
|
|
|
|
|
|
func bindataDistFontsTransfershTtfBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsTransfershTtf,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/transfersh.ttf",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsTransfershTtf() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsTransfershTtfBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/transfersh.ttf",
|
|
|
|
size: 3648,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistFontsTransfershWoff = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x96\x79\x34\x14\xfc\xf7\xc7\x3f\x33\x8c\xec\x64\x4c\x96\x2c\x23\x64\x2f\x66\xec\xfb\x3a\x28\x86\x61\x92\x22\x8c\x25\x24\x8c\x90\xe1\x11\x22\x94\x90\x28\x59\x66\x6a\xac\x0f\x45\x9a\x31\x76\x19\x4c\xb6\xc7\x36\x8f\x16\xda\x98\x34\x8f\x25\x3b\x95\xb4\xfe\x4e\xcf\xf7\x7b\x7e\x7f\x7d\xef\x39\xef\x3f\xee\x7d\xdf\x73\xcf\xbd\xe7\xdc\x3f\x5e\x09\x6e\x18\x8c\x1b\x1e\xef\x06\x80\xd0\x47\x20\x04\x00\x00\x62\x48\x00\x01\xff\x33\xec\x30\x18\x24\x00\x10\x7e\x00\xf8\xc9\x00\x08\xfc\xea\xe7\x5e\xfe\x84\xc1\xe0\x5d\x01\x10\xa8\x06\x00\xc8\x02\x00\xe4\x88\x1a\xed\x6e\x8e\xf6\x0e\x18\x00\x04\x7a\x01\x00\xf2\x00\x00\x24\xb0\x00\xbc\x6e\x9e\x47\x51\x00\x08\x70\x00\x00\x8e\x00\x80\x00\x77\x79\xbf\xda\xa0\x48\x02\x11\x00\x41\x75\x00\x40\x08\x00\x10\xa2\x1e\x56\x4a\x2d\x2c\x84\x10\x0c\x80\x60\x01\x00\xe0\x77\xdd\x10\xb2\x8c\xc2\x85\x85\x85\x10\x00\x10\x6c\x07\x00\x48\x03\x00\x54\x78\x8f\x42\x79\xc2\x22\xe3\x48\x00\x08\xb2\x7f\xe7\xbf\x05\x23\x80\xf7\x91\x04\xd2\xef\x79\x1f\x01\x00\x7c\xff\x4a\xdc\x1d\x44\x11\x22\x43\x00\x10\xfc\x0e\x00\x58\x04\x00\xd2\x68\x74\xab\x2c\x94\x18\x1d\x1b\x07\x80\x10\x17\x00\x20\xfe\xef\x7e\x3c\x00\x42\x22\xbb\xe2\x23\xce\xbf\x7e\x81\xa8\xa5\xb8\x77\xba\xa2\x9b\xd6\xfa\x2b\x5f\xe6\x06\xc3\x5a\xa9\x67\xd2\x2a\xa4\xb3\x08\xc3\xb1\x91\x2f\xe2\x5c\x8b\x6a\x5f\xbe\x19\x3b\xbe\x52\xed\x50\x3c\x43\x93\x98\x2e\x6e\xd8\x17\x62\xe1\x94\x53\xed\xa4\xe0\x71\x48\xb5\x30\xe9\x66\xa1\xb6\x59\x4c\xa0\xd9\x8b\x56\x43\xe7\xa7\xa4\xf0\x9b\xa2\x11\xb4\x85\x21\xbe\x60\xd7\x36\xc4\x37\xdc\xf9\x95\x47\xad\x07\x1f\x59\x49\x52\xa1\xaf\x4f\x74\x39\x8a\x59\x73\xe6\xc9\xa3\xb1\x13\x3f\x7a\x36\xc8\x96\x81\x6b\xa7\x2b\x9b\x9a\x36\x26\x96\x39\x3b\xf0\x8a\x22\xb5\xf4\x0a\xbd\xca\xa6\x7b\x4b\xca\x0a\xeb\xc9\xf5\x4c\x74\x7b\x6d\xec\xdc\xe9\xf8\x4b\x8a\x0d\xfe\x3c\x2b\xd3\x51\xa7\x1d\xcf\x7f\xef\xb3\xf8\x05\xfd\x32\x47\x78\xac\x48\x0d\xba\xa8\x7d\xa1\x80\x6a\x65\xe5\x24\x9e\x20\x22\xf1\x4f\xd7\xbe\x6b\xdf\xf8\x36\x48\xbf\x14\x2a\x99\x77\x16\xb0\xe9\x5f\x53\x17\x26\x9f\xf5\x7e\xe6\xa7\x65\x7f\x51\xd8\x3a\x33\xef\x3c\x2f\x10\x68\xb5\x65\x4c\xbb\x31\x73\xdc\xfc\x98\x1c\x52\x54\xc2\x6d\x7f\xf6\xd5\xae\xa4\xd4\x5d\xb8\xd9\x35\xe6\x2e\x65\x99\xc9\x9c\xf3\x6b\x0e\x19\x9f\x7b\x91\x35\xf2\xb8\x7a\xc1\xf3\x52\xd3\xd7\x1b\x5f\xe7\xba\x82\x56\xac\x43\xeb\xd0\xf6\x26\xcf\x55\x1e\x77\xfc\x31\xaa\xe8\xa6\x32\x5f\x6e\x39\xcb\xa9\x2a\x3a\x11\xda\x9c\x30\xba\xe1\xa5\xb9\x5e\x5b\xb3\xae\xdf\x22\xf9\x85\x93\xd1\xa8\xc8\x0b\x8d\xb6\xb0\x49\xb2\xf3\xa9\xaf\x59\xcf\x4a\x4b\xa5\x36\xf7\xfd\x91\x5b\x49\xc0\xb8\x34\xd7\x7d\x1b\xb0\x2a\xa0\xd6\x9b\x2e\x05\xa8\x9b\x86\x0d\xb3\xf2\x51\x9e\x88\x33\x61\xe9\x3e\x75\x81\x5a\x9d\xba\x42\xe3\x2e\x16\x38\x67\xfc\xb2\x2d\xef\x21\xeb\x9d\x6b\xbc\xc7\x54\x50\xfa\x96\xa3\xc8\x07\x12\xd0\x8a\xae\x18\xb3\x52\x7a\xe8\xc7\xbb\x37\x26\x54\x24\x7e\x09\x38\xe6\xc4\x19\xe0\x5c\xdb\x4b\x0f\x1b\xbb\xa3\x35\x0d\xb7\x0d\xa3\xf6\x5d\xc6\xab\x14\x6c\x32\x7f\x89\xec\x8c\x4f\x16\x47\xf4\x9f\x6f\x92\xfb\xca\x50\x90\xdd\x1c\x13\xb5\x5b\xcb\xa8\x60\xf3\xb7\xb2\xc5\x57\x33\x2e\xc5\xda\x9d\x74\x7c\x98\xff\x86\xff\xed\x95\x72\x62\xd0\xba\x66\x6b\xc7\x41\x22\xbc\x6f\x9c\x2d\xb2\xca\x34\xd5\x6f\x13\x63\x0f\xcd\xf9\x99\x09\x4f\x76\x54\xad\xfd\x6d\x78\x49\xe6\x21\x2b\x7e\xf7\x58\xd7\x5b\xbf\x8e\xd5\x79\x65\xdf\x8a\xd7\x41\x5a\x55\xeb\x7a\xd2\x18\x5d\x17\x2b\x23\x43\x53\xd3\xa4\x5c\x05\x3e\x6e\x12\xb3\x62\xb0\xd3\xff\xf3\xe3\xdd\xf1\xbd\xbd\x33\x1b\x69\x09\x46\x26\x6c\x82\x99\xa0\x6a\xb9\xed\xdd\x9b\x33\x0d\x4f\x16\x4d\x76\x97\x67\x6e\xda\x0d\xb9\xd3\x9d\x05\x07\x72\x27\xc0\xab\x85\xf7\x69\x45\xc6\x90\xf8\x8e\x75\x51\x8f\xe1\x63\xe9\x63\x5a\xdd\x83\x8b\x30\xee\xfe\xb7\xd9\xc3\xd0\x20\x2d\x84\x50\x22\xb9\x2d\x43\x5b\x16\xa3\x14\x5d\xb5\x97\x30\xe2\x8b\xa3\xd9\xc3\x63\x54\x2f\x10\x2e\x7e\xf6\x8d\xaf\xef\xac\x3e\xe3\xd2\x82\x6b\x63\x8e\x7a\x92\x7b\xff\xca\x2d\x7e\x81\xe2\xf3\x97\xd4\x1e\x99\x3a\x56\x16\x59\x52\x8c\x6b\x79\xc0\xd1\x55\x1f\x28\xf2\x6d\x42\x18\x1e\xe5\xd6\x40\xeb\x4a\xfa\xc9\x39\xe7\x1c\x3c\xca\xf7\x17\x6a\xf0\x89\xc4\x19\x26\xa5\x56\xd3\x7b\xb5\xc8\xfd\x3a\x63\x8c\
|
|
|
|
|
|
|
|
func bindataDistFontsTransfershWoffBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistFontsTransfershWoff,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/fonts/transfersh.woff",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistFontsTransfershWoff() (*asset, error) {
|
|
|
|
bytes, err := bindataDistFontsTransfershWoffBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/fonts/transfersh.woff",
|
|
|
|
size: 3060,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesLogoorangePng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x91\xf9\x3b\xd4\xef\xfb\xfe\xc7\x3e\xc8\x96\x7d\x0f\xc9\xbe\x85\x98\x61\x98\xc9\x4e\xf6\xad\x32\x96\xac\x21\xfb\xa0\xc8\x3a\xb6\xac\xd9\x8b\xf0\x94\xad\xac\x21\xeb\x18\xa2\x64\x67\x50\xb6\x18\x21\x19\xd9\x19\x64\x0a\xdf\xa3\xd7\xfb\xcf\xf8\x7e\x8e\xe3\xfc\xe1\xbe\xae\xeb\x3c\xae\xf3\x7e\xdc\xf7\x33\x33\x13\x3d\x06\x3a\x1e\x3a\x10\x08\xc4\x60\xa0\xaf\x6d\x01\x02\x51\x10\x40\x20\x50\x24\x98\x02\x04\x02\x45\x57\x8f\xb0\x83\x40\x14\x20\xb3\x3b\x56\x3a\x97\x97\x97\x7b\xb6\xd7\xff\x4f\xff\xa7\xff\x3f\xf5\xeb\xfc\xa5\x20\x08\x04\xba\x44\x59\x98\x58\x82\xc8\xc8\x29\x28\xa9\xa8\x69\xc0\xb4\x74\xf4\x57\x18\x18\x99\x98\x59\xae\xb2\xb2\xb1\x73\x70\x72\x71\xf3\xf0\xf2\xf1\x0b\x08\x5e\x13\x12\x16\xb9\x2e\x7a\x43\x4c\x5c\x42\x52\x4a\x5a\x46\x56\x4e\x5e\xe1\xa6\xa2\x92\xf2\x2d\x15\x55\x08\x54\x4d\x1d\xa6\xa1\x09\x47\xdc\xd6\xd2\xd6\xd1\xd5\xd3\x37\x30\x34\xba\x63\x6c\x62\x6a\x66\x6e\x61\x69\x65\x6d\x63\x7b\xf7\xde\x7d\x3b\xa4\xbd\x83\xa3\xd3\x03\x67\x17\x57\x37\x77\x8f\x87\x9e\x5e\xde\x8f\x7c\x7c\xfd\xfc\x03\x02\x83\x50\xc1\x21\xa1\x8f\x9f\x84\x85\x3f\x8d\x88\x8c\x8a\x8e\x89\x45\xc7\xc5\x27\x24\x26\x3d\x4b\x4e\x49\x4d\x4b\xcf\x78\x9e\x99\x95\x9d\x93\x9b\x97\xff\xe2\x65\x41\xe1\xab\xa2\xe2\x12\xa0\xf4\x75\x59\x79\x45\x65\xd5\x9b\xb7\xd5\x35\xb5\x75\xf5\x0d\xef\x1a\x9b\x9a\xdf\xb7\xb4\xb6\xb5\x77\x74\x62\xba\xb0\xdd\x3d\x1f\x7a\xfb\x3e\x7e\xea\xff\x3c\x30\x38\x34\x3c\x32\x3a\x36\x3e\x81\x9b\x9c\x9a\xfe\xf2\x75\x66\x76\x6e\x7e\xe1\xdb\xe2\x12\x7e\xf9\xfb\xca\xea\xda\x8f\xf5\x9f\x1b\x84\xcd\x5f\x5b\xdb\x3b\xbb\x7b\xfb\x07\x87\x47\xc4\xe3\x93\xd3\xdf\x67\xa4\x3f\x7f\xcf\x2f\xb6\xc0\xf3\xca\x20\x90\xa0\xb0\x81\x36\xc2\xea\xf1\xc2\x4e\x51\xa8\x13\x7b\xff\xc9\xc0\x46\xe5\x22\xdb\xed\x64\x7d\x83\x24\x21\x7d\x38\xb4\x34\xf1\xb5\xae\x59\x32\x5c\xdb\xaa\xf3\x83\x56\x4e\x35\xa5\xa0\xb8\x38\xc9\xec\xcc\x9c\x52\xc2\x94\x58\x2a\xee\xb4\x21\x21\xfc\x1a\x6c\xa8\xf0\x5a\xb8\xe8\x5a\xd2\x35\xfe\x4c\xb1\x22\xf8\x35\xe6\xc0\xe6\x9e\x45\x58\xf3\x29\x7e\xa9\x68\x3e\x6f\xbe\x70\x51\x7e\x39\x2a\x67\x7b\x7b\x7b\x77\xf1\x6c\x7b\xfc\x15\x24\x88\xf1\x36\x32\xa6\x34\x13\xc2\x29\x66\xc6\xd8\xb2\x18\xe4\x66\x70\x7d\xfd\xee\x42\x29\x6f\x49\xdc\xc1\xcc\xda\x2a\xdd\x15\x51\x4e\xba\x58\xf9\xb4\xd1\x27\x26\x93\xa5\xc7\xae\x53\x89\xec\x6c\xfc\xbc\xfd\x85\x19\x29\x52\xf2\x39\xb2\x60\xb6\x29\x9d\x71\x89\x72\x26\x4e\xa6\xb1\x95\xb1\x81\x7e\x76\x7d\x80\x55\x7f\xe0\x15\xab\x01\xcd\x38\x84\x80\x44\x92\x51\x77\x26\xa3\x98\x36\x28\xa7\x68\x68\xf9\x50\xb2\xf5\xd1\x94\xf6\x08\xa8\x7f\x71\x4f\xa6\x76\x98\x26\x27\x4d\x51\x8a\x14\x1c\x91\x9f\x99\x0e\x99\xf0\xaf\x37\xcb\xde\x5d\x79\x85\x1e\xef\x67\x37\x03\x36\xa4\xf4\xf3\x55\xf5\xf4\x8d\xa1\xfe\xbb\x81\x01\xb8\x8e\x76\xf2\x2b\x44\x73\x1a\xb7\xf2\x70\x88\x6d\x76\xb1\x50\x37\x1b\xf2\x5c\x36\xf0\x7f\xdd\xdd\x67\xdd\xe5\x14\x1b\xf5\x02\x66\x70\x93\xce\x4f\x90\x55\x20\x28\x80\x8a\x8f\x30\x98\x88\x1a\x7d\xa2\xf9\x36\x4e\x6e\x53\xe0\x7f\x37\x00\x77\xe6\xa3\x44\x37\xba\xcb\x43\x89\xfe\xe3\x88\x8d\x55\x3a\x6d\x9c\xe8\xd4\xb2\x65\xc0\xae\x28\x76\xcb\x7a\x4f\x81\x11\xca\x69\x7b\x2d\x56\x36\xb3\xfe\xe7\xa2\x56\xe7\xff\x4a\x78\xec\xae\xa8\xfd\x50\x87\xdc\xe6\xd4\x7f\xa5\x53\xec\xae\x10\xb6\xa4\xf3\x85\x76\xe7\x06\xff\x87\x7f\x0b\xcc\x70\xe6\xab\x88\x5f\x0e\xad\x6a\xec\xcb\x61\xff\x0c\x40\xac\x89\x98\xbd\x5b\xca\xc6\xbf\x7c\x69\x82\xd2\xd4\x57\x6f\xdf\x7f\xac\x1f\xa8\x8a\xee\x74\x16\x04\xfd\x17\x80\x36\x11\x2e\xfa\x00\xf9\x07\x0c\x20\x6c\xb3\x4d\x56\xff\x23\x9d\x03\xa4\x0c\x06\x1a\xdd\x13\xae\xfd\xb3\x70\x93\xf3\xb3\x9c\x34\xd1\x7e\x64\xa1\x29\x4a\xa9\xb9\x13\x53\x8f\x1f\xa9\xfc\x9f\x6b\x1f\x90\x3a\x6d\xa2\x15\x61\xfe\xd7\x1f\x8d\x91\x5d\x1e\xb9\x91\xaa\xf7\x6f\xfd\x4d\x70\xe7\x9e\xc3\xad\xab\x1b\xff\xce\x4d\xa0\x4e\xa6\xcd\xeb\xff\xe1\xba\x91\xa3\x98\x36\xb3\x93\x36\xd6\xff\x7b\x39\x3d\x99\x45\xe9\x53\x51\xfe\xb7\xed\x85\x9d\xb9\x0c\xa5\xcc\xa7\xa5\xf7\xba\xce\xda\xdb\xc9\xb5\x82\x97\x3e\x69\xf8\xe6\x05\xb1\x19\x5d\xce\x04\x05\x04\xe4\x42\xad\x2b\x98\xc3\x53\x6e\x6c\xec\x47\x72\x8d\xfd\xf7\xad\x3f\xfc\x4d\x5b\x35\xcd\xce\x21\xee\xcd\x83\x67\x51\x0f\xab\x82\x43\
|
|
|
|
|
|
|
|
func bindataDistImagesLogoorangePngBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesLogoorangePng,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/Logo-orange.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesLogoorangePng() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesLogoorangePngBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/Logo-orange.png",
|
|
|
|
size: 9074,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033320, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesBitcoinPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\x98\x69\x3c\xd4\x8f\x17\xef\x11\x61\xb2\x8d\x19\x5b\x96\xec\xc6\x16\xb2\x8b\x6c\x33\x44\x96\xbe\x24\x4b\xc2\x8c\x9d\xec\xa4\x11\x8a\x2c\x63\x66\x2c\x45\x65\x57\xdf\xf9\x29\x4b\xc8\x32\x8c\x08\xd9\xc6\x12\x91\x25\x31\x96\x2c\x21\x64\x2b\x59\xc2\x7d\x75\xff\xf7\x3e\xfc\x9c\xf7\xfb\xbc\x3e\x8f\xcf\x49\xb9\x6e\x65\xca\x0e\x39\x0f\xa1\xa3\xa3\x63\x37\xbb\x8a\xb4\xa1\xa3\xa3\xc7\xd3\xd1\xd1\x61\x58\xce\xd2\xd1\xd1\x59\x89\x64\x5d\xa3\xa3\xe3\x1b\x35\x43\x1a\xde\xb8\x37\xb9\x51\x80\x0d\xb6\xb3\x2b\xa4\x92\x6f\x9b\x07\x90\xfb\x44\x5e\x4f\x79\xbd\xf2\xe3\xcf\xf9\xe9\x75\xe7\x7a\xd3\xc6\x8f\xf6\xc0\xd7\x93\x7e\x8a\xfd\x35\x9e\x11\x67\x00\x2e\x86\x1a\x49\x85\xf8\x3e\xf1\x9e\x67\xf1\x74\x35\x67\x1d\x19\x70\xeb\x46\x13\x9e\x32\x68\x15\x03\x16\x35\x46\xf1\x23\xf1\x01\xe9\x6b\xdc\xed\x56\x46\xcf\x54\x5b\x37\xf3\x8e\xa2\x02\xad\x7e\x1e\xce\xc4\x6c\x16\x1c\xcd\x28\xd9\x15\xe9\xcf\x4d\x47\xce\xbe\x5f\x2e\xdc\x3d\xa2\xd5\xce\x4a\x25\x50\x08\xe8\x1b\xaf\xde\x0e\x3c\x18\x95\x79\xc7\x2d\x91\xd2\xd8\x69\x32\xaf\x1c\xf2\x94\x62\x25\x24\x39\x0e\x1d\xc1\xd1\x23\xb9\xb7\xbd\xe7\x7f\x22\x5c\x16\xde\x77\xd6\x22\x4d\x31\x67\xab\x13\x27\x4c\xf3\xa5\x2b\xa1\x9e\x9d\x8e\x18\xcd\x6a\x7c\xb6\x55\xb8\xf4\x0f\xd4\xae\x8e\x80\x34\x5c\x0b\xca\xcf\xd3\xb5\xc5\x32\x9c\xd5\x23\x3a\xc8\x25\x8e\xe4\xfa\x2f\x99\x3b\x42\x22\xbc\xe0\x0f\x17\x7b\xca\xd3\xce\x01\xe5\xca\x5a\x9c\x83\x51\x9d\x84\xc8\x77\xdd\xb6\xb7\x08\xfe\x6e\xdd\xad\x93\x67\x0e\x57\x69\xac\x12\x2b\xb9\xd5\x99\x57\xc5\x44\x76\xe7\x74\x4e\x13\x57\x4c\xf3\xf1\x6d\x11\xe0\x9e\x0a\x2b\x19\x36\x08\x63\x23\xc4\xa3\x4f\xf4\xb7\x4e\x92\xb2\x4d\x6f\x98\x88\x6e\xf5\xe5\xcb\xb8\xb0\x2e\x38\xe5\xc1\x9e\x83\xc1\x05\x6e\x82\xc3\x0f\x77\x59\x3a\x40\x37\x6e\x47\x2e\x6b\xee\x5a\x1c\x1e\xc1\x34\x23\x6a\xe7\xf4\x80\x7a\x7c\xb1\xf2\xf7\x2c\x8e\x07\x68\x19\x9c\x23\x83\x9f\x16\xf8\xf2\xbd\xf9\x79\x99\x32\x7d\x9e\xb4\xe5\x1d\xa4\xf2\x33\xba\xe8\xad\x38\x9c\x90\x1f\xf9\x1f\x0b\x03\xfc\x0b\xfe\x28\x6a\x8c\xfd\xe0\x65\x36\x42\xbc\x19\xa3\xa1\x5b\xf8\xd0\x04\x3f\xf3\x6d\xbd\x0c\x3b\x63\xc2\x5a\x80\x41\x16\x22\xfc\xfd\x39\x1c\xb3\xb6\x92\x8a\x02\x44\xda\x45\x6a\xfb\x9a\xb8\xe9\xcb\x17\x82\x8b\xcf\x00\x57\xba\xe3\x59\xd7\xba\x6f\x0d\x65\xb7\x95\xfc\x8c\x4e\x07\xb1\x78\x34\xa0\xbc\x2d\x9d\xa2\xef\x27\xdc\x6b\x04\x0c\xd5\xdd\x30\x8d\x7c\x6f\xcd\xd5\x05\x71\x55\xfa\xbc\x93\x9e\xdf\xc0\xcf\xcb\x04\x53\x7a\x52\x42\x1a\xe0\xe1\xc2\x67\xc2\xf2\xff\xf2\x92\xd2\xfc\x1b\x5e\x98\xad\xcb\x0e\xba\xb3\x11\xe2\xb7\x9b\x24\x45\x46\xbc\x80\x73\x45\x43\x71\x3e\x4b\xa4\xb5\x2e\xe7\x34\xd7\x50\x17\x77\x07\x38\xd1\x55\x2a\xa4\xa8\x9e\x96\xb4\x05\xb5\x87\xaf\x35\xdf\x6d\x17\x29\x1c\x1e\x78\x8b\xe0\x6f\xc5\xcf\xcb\x17\x31\x39\xeb\xd7\xe6\x7e\x21\x62\x1c\xe0\xc4\x59\xc9\xe1\x82\x47\x91\xa3\xbe\x54\x6c\x3a\x1a\x50\x8e\x7d\xdc\xd9\xea\xe7\xcf\x1b\xb2\x95\x76\x91\xbf\xf8\x77\xd8\xe0\xa3\x7f\x05\x8f\x10\x9f\xb5\x7d\xa8\x44\xed\x7c\x66\x01\x5e\x26\xd2\x3b\xc9\x13\x79\xa3\xf2\xd6\x4b\x83\xd8\x9c\x5d\xf1\x0e\xd0\xed\x06\x2f\x4a\x9a\xf9\x47\x76\xe6\x27\xec\x63\x34\xa0\x5c\x66\x0e\xd2\x33\xfb\x7a\xee\xab\x2e\x9b\x25\xa1\x3e\x94\x20\xf0\x0a\x76\x0c\x9e\x00\xf5\x94\xd7\xf3\xfe\xf8\xfd\x8e\x9f\x11\x60\xf8\x9a\x78\xc8\xee\x14\xeb\xfc\x64\x42\x1a\x58\x12\xa6\xa7\x8f\xc3\x88\xfc\x4f\x95\x4e\x29\x32\xf5\x5d\x10\xf3\x06\xaf\x56\x2a\x89\xef\xd9\x3b\x5e\xec\x3b\x69\x31\xc9\x62\x8b\xba\xed\x09\xbc\x28\x5a\x61\x1d\xcc\x63\x23\xc4\x03\x66\x70\x33\x39\xa6\x3e\x1c\xde\xe8\x0f\x33\x1a\xe1\xdc\xb1\xf2\x09\x9b\x89\x06\x94\xe5\x52\x30\x28\x71\x3c\xc3\x03\x1e\x7d\x11\xbe\xe7\x47\xcd\x25\x20\xc2\x2a\x74\xc6\xc3\x01\x4e\x94\x7b\x72\xef\xea\xd4\x88\x98\x18\x2a\xae\xb5\x4c\xd0\xbe\x73\xc9\xfa\xd4\x14\xe5\x38\xfa\x5d\xb7\xef\x2d\x82\x9f\x07\x39\x8c\x24\xd3\x09\x04\x00\x73\x55\x7f\x91\x2d\x08\x8b\x32\x52\x2e\xc2\x29\x44\xc4\xb3\x9d\xb7\xab\xda\x9d\x2a\xe2\x96\x1d\x8c\xb0\x88\x0a\x7d\x56\x84\x0c\x91\x50\x1d\x50\x6f\x18\xb7\xe2\x59\xf2\xe6\xf8\xda\x37\x3f\x5e\x96\xe2\x97\x22\x5e\x3a\xc8\x36\x48\xb2\xa0\x18\xc0\xe3\xd1\xed\xdf\x6c\x76\x46\xda\xad\x41\x96\xe5\x66\x29\xe3\xf3\x84\x9a\x69\x7f\xc5\xc9\x17\x72
|
|
|
|
|
|
|
|
func bindataDistImagesBitcoinPngBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesBitcoinPng,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/bitcoin.png",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesBitcoinPng() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesBitcoinPngBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/bitcoin.png",
|
|
|
|
size: 6157,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033320, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesReviewsDaveJpg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xfa\x55\x50\x1c\x60\xb3\xee\x8f\x0e\xee\x32\xb8\x0e\xee\xee\x12\xdc\xdd\xdd\xdd\x82\x07\x77\x77\x77\x27\xb8\xcb\xe0\x1e\x64\x70\x97\x04\x0f\xee\x04\x87\x00\x41\x4e\x7d\x7b\xaf\x6f\x9d\x7d\xfb\x7f\x6e\xbb\xaa\xeb\xad\xea\xae\x7a\xfb\xf9\x75\x7f\xae\x7d\xee\x02\x30\x15\x64\xe4\x65\x00\x50\x50\x00\x00\x14\x00\x0a\x00\xf8\xdc\x04\x48\x02\xe0\x60\x60\x61\x61\x61\xe0\x60\x61\x61\xe1\xe0\xe0\xe0\x11\x50\x11\x11\x10\x10\x10\x30\x50\x50\x90\x50\x81\x18\x58\x58\x40\x0c\x20\x10\x1b\x8f\x04\x1f\x1b\x87\x08\x17\x08\x24\xa0\x20\x20\x22\x25\x25\x23\x23\xc3\xc6\xa7\xa4\xa6\x04\x51\x93\x80\xc8\x40\xff\x49\x02\x05\x07\x07\x87\x00\x8f\x80\x8e\x88\x88\x0e\xc2\x01\xe2\x80\xfe\x3f\xeb\x73\x18\x00\x44\x84\x4a\x81\x4a\x81\x81\xa2\x04\x40\x03\xa1\x60\x80\x50\x9f\x10\x00\x31\x00\x00\x0d\x03\xf5\x9f\xe7\xfe\x57\x50\xd0\x00\x18\x58\x38\x78\x84\x4f\x08\x80\x08\x0a\xf0\x9f\xd8\xff\x13\x04\x40\x41\xc3\xc0\xc1\xc2\x7f\x6e\x00\x50\x61\xa0\x00\xd0\x98\x30\x98\x00\x00\xd4\xad\x98\xa4\x85\x14\x12\x00\x1e\x10\x11\x06\x15\x82\x7a\xdc\x93\x70\x7d\x26\x78\x7b\xf5\xf2\x91\xb7\x96\x08\xcf\x41\xda\xa2\x47\x99\x28\xd0\x4e\x67\xcc\xa7\x85\x4a\x68\xd8\x0a\xda\xca\x64\xda\x7b\x9f\x8f\x3a\x7b\xfe\x05\xb5\x74\x27\x81\x48\x40\x5e\xce\x1c\x61\x13\x8a\xca\x32\x84\xc4\x94\x6e\xc2\x99\x81\x3c\x52\x49\x01\x4d\x8e\x44\x2d\x45\xc9\x89\x18\x62\x66\x26\xc0\x73\x38\x37\x90\xdd\x5b\xdc\x1b\xba\x1c\x41\xe8\x5b\x26\x1e\x8d\x9e\xb0\xd1\xe2\xa8\x52\xdb\x20\xa6\x81\xc2\x36\xde\xc9\x32\xe5\x23\x1a\xb8\xe7\x27\x62\xa0\x95\x94\x9d\x24\x77\xaa\xcb\x4c\x41\x0e\x43\x0e\x4c\xe9\xa0\x08\xe9\x7a\xda\x63\x62\xe7\x6c\x3d\xc3\x4d\x77\x97\xc0\x94\x0b\xc3\xe2\x96\xa3\x40\x1e\x14\xe0\xb1\x99\xfb\x48\x5e\x3e\xf6\xe4\x27\x65\xd7\x3e\x3a\xd1\x97\x26\xd2\x49\x0a\xe8\xf7\xbe\x89\x2e\x13\xb9\x78\x29\xfc\xe3\xb1\x13\x99\x96\xdd\x50\x96\xd6\x29\x5c\x8c\x7d\xc6\x9f\x7f\x14\xd1\xea\xdf\xd7\xae\xa8\x5e\x7b\x20\x5e\x03\xab\x21\x87\x39\x38\x02\x83\x68\xb6\x1d\x53\xbf\x84\x9c\x14\x01\xa5\xce\x08\x95\xa9\x87\xa4\x01\x0b\xa0\xd4\x40\x6b\xb5\x9b\xc5\x7f\x48\xfa\x41\x06\xbe\xdf\xe6\x9f\x26\x3f\xde\x0d\xa2\x2b\xf1\x60\x57\xcf\xde\x4c\xca\x77\xa7\x05\x2f\x04\xf8\x91\xc4\xf9\x11\xea\xa7\xfd\x59\x37\xe8\xb7\xa3\x2c\x21\xf5\x1a\xc3\x64\xa4\x14\xe4\xa5\x8e\x9d\x44\x0c\x4d\x4d\x89\xc2\xda\x3d\x35\x03\xe9\x59\x1a\x4c\xa5\xa6\x02\x26\x30\x95\x60\xe1\xf5\x00\x29\x62\xb6\x8b\x52\xba\x8b\x5f\x8c\x54\x76\xe6\x1f\xb1\x13\x04\xd0\x34\x47\x57\xb3\x2b\x62\xd7\xeb\x8c\xc7\x3c\xbe\x4a\xab\x44\x34\xeb\x6f\xea\xa0\x14\x66\x5a\xc3\xec\x24\x35\x5c\x7d\xd3\x6d\x5e\xb9\xb7\x89\xe3\x81\x0c\x9e\x56\xb8\x34\x46\x44\xa1\xcb\x49\x10\x48\xb1\xbb\x0c\x12\x8a\x1b\x18\xec\xa7\x36\x87\x94\x22\x62\x26\xc0\x12\x0c\x02\x43\x7e\x25\xfa\x5a\x0c\xc4\xb6\x16\xe7\x47\xae\x9c\xdc\x5d\x9f\xfc\xe3\xf4\xa7\x74\x22\x2d\x4a\x26\x6e\xac\x62\xf1\x32\xfe\x66\xfc\x53\xec\xe4\x6a\xdc\x35\x9f\x4f\x66\xbd\x4f\xdb\xa5\xf4\x7e\x64\xe9\x64\xeb\x50\xbd\x8a\x67\xd6\xc5\x68\x99\xaf\xf2\x5c\xaa\x52\x56\x2d\x8c\x8a\x0a\xd1\xec\xd4\x0c\x55\x3c\x92\x68\x64\x10\x0b\x67\x04\x3a\x87\x51\xca\xa2\x19\x51\x12\xdd\x58\xc0\xa6\x7f\x80\x4a\x97\xac\x2a\xbd\x70\xa9\x6c\x3d\xee\xb2\xe7\x41\xbb\xf5\x0b\xff\x59\xdf\xe3\x79\x9f\xf6\xc0\xbf\xb8\xba\xe8\xf9\xc7\x10\x23\xec\xc6\xc1\x83\x1b\x61\xdb\xa4\x55\xc1\x3f\xa3\xb5\xf7\x59\xf1\x8c\xdf\x46\xf3\x2c\x1e\xf5\x42\xca\xf1\xb0\x08\x50\x18\x80\x27\x1e\xdd\x47\x66\x58\x3c\x3d\x88\xb0\x88\xf0\x72\xfc\xe2\x44\xb9\x70\xd4\x88\x02\x6d\x4b\x75\x0b\xab\x15\x2f\xa4\x14\x9b\xa0\x2a\x49\x86\xf3\x3f\xe1\x10\x0f\xff\xbf\xa7\xd9\xc6\x82\x17\x8c\x02\xa4\xe7\x23\xf3\x0f\xd7\xb3\x45\x6b\xbe\xa0\xa4\x94\x83\x67\xb2\xef\x3e\xc1\xb2\xc5\xb1\x35\xad\x17\xd9\x92\x78\x95\x35\x63\x04\x17\x31\x8d\x53\xb9\xa8\x56\xf0\xba\x76\x29\xfb\x24\x1f\xc9\x02\x26\x70\x94\x55\x3e\x98\x36\xd0\x58\x00\x34\x72\xfa\x21\x24\x4e\xe8\x44\x22\xfa\xf4\x15\x83\x06\xc8\xb9\x67\x7f\x71\xe8\x2b\x1c\xde\xd7\xc6\x3d\x7d\x8a\x55\xa0\x05\x0f\x9d\x36\x0e\xf2\x96\xf4\xa2\x4a\xc2\x72\x15\xd5\xc4\x3f\x36\xd2\xb3\xfb\x7b\x37\xef\xee\xd7\xa3\xa2\x83\xbc\x2a\xa1\x74\xa3\x4c\x6a\x68\x4b\x4e\x02\xc8\x18\xaa\xdc\xc9\x83\xc0
|
|
|
|
|
|
|
|
func bindataDistImagesReviewsDaveJpgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesReviewsDaveJpg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/reviews/dave.jpg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesReviewsDaveJpg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesReviewsDaveJpgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/reviews/dave.jpg",
|
|
|
|
size: 19244,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033320, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesReviewsJacobJpg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\xbb\x65\x6c\x1d\xdf\xf2\x2d\x78\xcc\x76\xec\x98\x21\x86\x63\x66\x66\x66\x8c\x99\xe1\x98\x99\x99\xd9\x31\x33\xc5\x1c\x33\x33\x33\x33\x53\xcc\xcc\xcc\xcc\x34\xfa\xdd\x3b\xf7\xce\xfc\x35\x23\x3d\x3d\xe9\xad\x0f\xbb\x5b\xea\x5d\xa5\xea\x96\x56\xab\x6a\x2d\xed\xaf\xe5\xaf\x6d\x00\xb2\x94\xb8\xa4\x38\x00\x0c\x0c\x00\x00\x03\x80\x01\x00\x5f\x6b\x00\x11\x00\x14\x04\x24\x24\x24\x04\x14\x24\x24\x24\x14\x14\x14\x34\x0c\x02\x2c\x0c\x0c\x0c\x0c\x12\x3c\x3c\x1c\x02\x0a\x12\x2a\x2a\x0a\x12\x0a\x0a\x1a\x26\x1e\x16\x1a\x3a\x0e\x06\x0a\xca\x0f\xa2\x1f\x38\x40\x20\x01\x01\x01\x1a\x16\x31\x29\x31\x3e\x29\x1e\x3e\x01\xfe\x3f\x49\xc0\xa0\xa0\xa0\x60\xa0\x61\x10\x61\x61\x11\xf1\xd1\x51\xd0\xf1\xff\xb7\xf1\xd5\x07\x40\x81\x05\x8b\x03\x8b\x83\x00\x23\x06\x80\xa3\x80\x41\xa0\x80\x7d\x0d\x00\xf0\x00\x00\x30\x28\xb0\x7f\xca\xfd\x2f\xc0\xc0\x21\x20\xa1\xa0\x61\x60\xbf\x06\x00\x38\x60\x00\x08\xb0\xff\xbf\xa7\x5f\xab\x00\x04\x08\x30\x00\x38\x32\x04\x32\x00\x00\xf6\xa8\x00\xf8\x3f\x87\x68\x54\xd8\x8a\xff\xf5\x2e\x68\x47\x2d\xed\x45\x86\xe2\xd9\xbb\xa9\x38\x6e\x88\x94\x95\x46\xef\xfd\x63\xc5\x0d\x7c\x8f\xd4\x69\x35\x3d\x86\xbf\x04\x39\x89\xb6\xe1\x82\xff\x9f\x18\x30\xb0\x9f\xf8\x54\x80\x1f\xff\xdc\x2a\xf7\x1c\x56\x39\x75\xac\x90\xb8\x62\x90\xa6\x6a\x78\xb5\x2f\xcf\x29\x1d\x4f\x0b\xd1\xc8\xcc\xd7\x0b\x3f\x3a\xeb\x5c\x25\x6d\x44\x3e\x26\xed\xb6\x4b\xd0\xff\x3f\xa1\x00\x84\x7f\x2e\xe0\xd8\x7f\xe8\xe5\xe6\x39\x63\xbc\x5e\xea\x1e\x30\x00\x08\x00\x30\xc0\x8d\x6f\x71\xa6\x2e\x4b\xee\x70\x24\x84\x66\xa1\x42\x69\xc3\xa4\x69\x70\x84\x1a\x50\x07\x64\xa3\x5f\x43\x83\xb6\x98\xa9\xfa\x05\x10\xbf\xa3\x03\x55\x6b\x6b\xba\xc1\x01\xf4\x01\x80\xbf\x2e\xd6\x88\x54\x55\x6b\x34\x31\x31\x47\xf5\x9b\xb7\x47\x91\x6b\x58\x53\x5e\xcb\xe5\x82\xd4\x00\x00\x00\x45\x70\x7c\x87\x8f\x61\x0a\x2e\xe5\xef\xbb\x53\xa7\x99\x12\xd3\x58\x52\xa9\x06\xe9\xd1\xc1\x21\x9e\x91\xfa\x7d\x8c\x51\xda\xa1\x43\xdb\xfa\xe2\x1f\x26\x12\xd6\xf0\x6c\x84\xc4\xc2\x3f\x70\x20\xd6\x07\x33\xb1\x48\x55\x72\x55\xb6\xd5\x2b\xf9\x39\x6e\x3d\x8e\x7b\x67\xca\xef\x60\xb0\x12\x3d\xea\x87\xa5\xf2\x3a\xd1\x73\x1c\x15\x52\xf3\xe3\xf0\xf1\xfc\x8b\x78\xa7\x9d\xc9\xc3\x60\x5b\x26\x96\xe1\x31\xb8\xa2\x4a\x10\xb0\x2f\xf6\x27\x1d\x27\x69\xfb\x4b\x0c\xaa\xf9\x0d\xba\x3c\x0e\x40\x5f\x63\x5e\x4b\x1f\x39\x7e\xbf\x7c\xa5\xa3\x97\x6c\xb1\x5b\xef\xea\xcc\x9c\xc1\x5c\x4d\xae\x42\x2f\xcc\x48\xd4\xa5\x54\xf9\xe4\x8e\x5c\x5b\x4b\x27\xe8\x88\x99\xa6\x6a\xad\x05\x5e\xbb\xd9\xfd\x53\x51\xb5\x84\x69\xaf\x2b\x0a\x84\x88\x45\x8b\xf5\x68\xc9\x53\x22\xc9\x1c\xa3\x2d\xb4\x41\xc3\x0d\xec\x3d\x59\x3d\xf9\xdb\xac\x32\x3d\x9b\x51\x67\x6d\x61\xf5\xfb\xf7\x13\x91\xae\xc5\xdb\xcf\xdc\x0a\x6d\xaf\x1a\x28\x2f\xe7\x22\x38\x02\x48\x8b\x15\x7f\x23\xb9\xcd\x2e\xdf\x68\x3a\x5f\x02\xa7\x8c\x61\x39\x29\xe0\x79\xa4\xea\xf9\xb0\x45\xac\x75\xdf\x6c\x41\x25\x6b\x1f\x88\xd8\x5d\xe3\x37\xbc\x88\x49\x4b\x25\xe1\x49\xc3\xab\xf3\x23\xfe\x12\xb8\x53\x26\xf9\x37\xde\xa6\xe0\xd7\xfb\xe3\x15\x93\x36\xb9\xe2\x3c\xf1\x56\x39\x27\xe7\xc3\xdf\x93\x3c\xd4\xd5\x2e\x78\xcd\xa5\x93\x1e\x5d\x5d\xae\x16\x38\xee\xd3\x21\x96\xbe\x4b\xbf\x2b\x95\x97\x1c\x1c\xd5\x60\xd8\xe7\x05\x4f\x4b\xee\xb9\x70\x7a\x57\xda\x7f\x9f\xf8\xb6\x0f\x7a\xa6\x20\xf3\xcb\xc7\x9f\x98\x9b\x68\xaf\xe7\xdf\xb7\x2a\x8e\xa1\x8f\xda\x6c\x5a\xe0\x2f\x37\x0c\xd7\x97\xce\x73\xd9\x29\xcf\x50\x21\x4f\x01\xc0\xa1\xe4\x24\x72\x3b\x18\x70\x6d\x8b\x1c\x57\xe1\xb4\x73\xd1\x27\x31\x84\xb4\xe4\x1a\xcd\x34\x75\x78\x24\x0f\x3d\xd5\x81\x6d\xd1\xfc\x5a\x8e\xbf\x9c\x30\xda\x42\xa6\x32\x12\x9a\xec\xcb\x81\x13\xab\x2c\xba\x0e\x05\x0d\x33\xb4\x76\x55\xa3\x6a\x30\x90\xe5\x20\x88\x63\x5b\x81\xd2\x91\x94\xde\xe3\x7b\x16\xa9\xeb\x47\x8b\x83\xaa\x48\xa4\x88\x13\x99\xae\xf1\x84\x82\x5b\x66\xc1\x94\xf2\x03\x36\x9c\xfb\x85\x4a\xfe\x8c\x18\x14\x0d\x70\xb8\x8e\x6e\xc9\x09\xea\x6d\xe3\x55\x6f\x67\x63\x01\xed\x88\xfe\x48\x47\x68\x21\xdb\x06\xa9\x06\x34\xae\x42\xdd\x90\x0c\x03\x4b\xea\xc9\xbc\x55\x75\x21\x79\x9d\x64\x99\xdb\x35\x52\x97\x31\xe1\x47\x4d\x2f\x36\xd7\xc0\x68\x90\xe6\x50\x19\x69\x56\xcc\xef\x3a\xf8\x54\x0c\x25\xfc\xd8\x6c\x4f\x7c\xa0\xb3\xe9\xa4\xc
|
|
|
|
|
|
|
|
func bindataDistImagesReviewsJacobJpgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesReviewsJacobJpg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/reviews/jacob.jpg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesReviewsJacobJpg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesReviewsJacobJpgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/reviews/jacob.jpg",
|
|
|
|
size: 23068,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033320, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesReviewsKareemJpg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xba\x55\x58\x1c\x40\x93\x05\x3a\xb8\xc3\xe0\x04\x97\xc1\xdd\x2d\xd8\xe0\xce\x60\xc1\x83\xbb\x13\x9c\x40\x70\x77\x77\x77\x77\x0f\xee\xee\x4e\x60\x70\x0d\x6e\x21\xe1\x7e\xff\xde\xdd\xfd\xf6\x3e\xde\xf3\xd6\x5d\xfd\x75\xd7\x43\xf7\xa9\xaa\x53\xfd\xb1\xfe\xb1\x07\x00\x2a\xc8\xc8\xcb\x00\x60\x60\x00\x00\x18\x00\x0c\x00\xf0\xb1\x05\x90\x04\x20\xc0\xc1\xc3\xc3\xc3\x21\xc0\xc3\xc3\x23\x20\x20\x20\x22\xa1\x23\x23\x21\x21\x21\x61\xa1\xa1\xa1\xa0\x63\x63\xe1\xe0\x60\x63\x61\x63\xe3\x12\x90\x12\xe2\xe2\x11\xe3\x63\x63\x13\x51\x11\x11\x93\x91\x51\x50\x50\xe0\x12\x52\x83\xa8\xc9\x41\xa4\xe4\x14\xe4\xff\xd9\x04\x06\x01\x01\x01\x09\x11\x09\x13\x19\x19\x93\x1c\x0f\x1b\x8f\xfc\xff\x37\x3e\x06\x01\xd8\xc8\x30\x09\x30\x09\x70\x30\xd4\x00\x58\x6c\x18\x38\x6c\x98\x8f\x61\x00\x29\x00\x00\x83\x00\xf3\x1f\x77\xff\x07\x30\x00\x58\x38\x78\x04\x44\x24\xe4\x8f\x61\x00\xc9\x7f\x06\xff\x1f\x2b\x00\x0e\x06\xf6\x3f\xd6\x8f\x4d\x00\x3a\x1c\x0c\x00\x16\x08\x07\x04\x00\x60\xee\x92\x92\xae\x71\x08\x82\x92\xe0\x93\x40\x25\x91\xf2\x44\x09\xea\xf0\xea\xb4\xa0\x40\x01\x45\xf4\x6f\x71\x89\xc2\xfb\xad\x18\x5d\xd6\x51\xcb\x7c\xa9\x6d\x33\xfa\x2b\x5a\x0b\xcd\xc9\xad\x09\x4c\xd7\x32\xb3\x1a\xdc\x76\x38\x87\x0f\x31\xda\xd4\xb5\x4d\x27\x51\x56\x77\xc5\x7d\x2a\x6f\x4f\x96\xb2\xcc\x64\x81\xfa\xb5\xee\x4e\x4a\x79\x42\x97\xb3\xbe\xe6\x9e\x5c\xad\x11\x2c\x51\x27\xe2\xc2\x3d\xeb\x52\x7a\x95\x34\x38\x49\x52\x25\x91\x94\x45\x80\x12\x05\xca\x1f\x0c\xc3\xd9\xc0\x6d\xa3\x09\x43\xa6\xb9\xf5\x5a\x47\x34\x17\x8e\xcd\xa0\xc5\x47\xbd\x6a\x9f\xac\xf6\xcd\x89\xf5\x89\x26\x47\x0b\x7b\xf3\x5f\x7c\xcd\x29\x11\x67\x0c\x27\x71\xed\x93\x89\x49\x67\x87\xcc\xad\x75\xf4\x8e\x1a\xb4\x76\xaf\x57\xbd\xaa\x32\x59\x70\x74\xb1\xbe\xdc\x20\xf3\x2c\x41\x2d\xd6\x95\x1e\xe6\x34\x4c\x27\xc9\x69\x20\x44\x4d\x82\x16\x18\x8d\x97\x00\x8a\x00\x25\xd2\xd2\xc0\x26\x09\xf3\xba\xf1\x30\xda\xd0\x97\x73\x65\x58\x5c\x6b\xb4\x1a\xad\x24\xe2\x77\xad\x11\x96\xad\x30\xaf\x10\x76\xad\xca\xcc\x6a\x25\xdb\x31\x9b\xd1\xbd\xb6\xee\xe6\xe4\x45\xc6\x79\xd9\x09\xba\x22\x59\x1f\x89\x1e\xd9\x45\xed\x24\x6d\xc0\xbd\x36\xda\x5a\xd9\xb2\x2b\x84\x79\x55\xd6\xb3\x69\xcb\x17\xa7\xaa\x5f\x09\x0f\x76\xf2\xf5\xe6\x52\x30\xec\x49\x00\xfe\xe3\xbf\x5c\x52\x92\x54\x11\x32\x75\xae\xbe\xd0\xb4\x76\xfa\x4f\x32\xa5\x1d\xf3\x6f\x27\x38\xe8\x3b\x93\xda\x54\x0d\xd3\x2e\x9b\xf5\x36\x4e\xad\xea\x47\x0a\xf6\xad\xa9\xf5\x29\x4c\xc7\x2a\x6d\x86\xf7\xf6\x82\x82\x22\xf4\x92\x9f\xa5\x2c\x45\xea\x3c\xd9\xec\x38\xf4\x8c\x2e\x43\xa0\xff\xec\xf5\x36\x7c\xce\x17\xc7\x6b\xa4\x95\xbd\x55\xb1\x16\x26\xcb\x0b\x65\x65\xb4\xc6\x78\x2f\x4f\x5f\xa9\x51\x33\x10\x18\x71\x64\x00\xea\xb4\x78\x91\xd2\xd4\x9a\x8d\x1b\xc5\xb9\xb6\x24\x72\x17\x5a\xeb\x93\xeb\xda\x67\x1b\xcc\xdc\x4f\x95\x3a\x41\x33\xb7\xb2\xb6\xbd\x55\x67\x8d\xda\x3b\x3a\x0b\x56\xfc\x8a\x3c\xca\x3d\x33\x9f\x2f\x68\x74\x92\xe2\xa2\xa1\x89\x69\x65\x36\xb4\x39\xaf\xb5\x12\x26\xbe\x5c\x20\xf3\x99\x93\xd5\xb5\xa9\x55\xa3\x44\x84\x08\xbb\x72\x2e\xb9\xc3\x00\xa6\xbc\x3c\x8f\x1c\x8d\x28\xb3\x8d\xe5\xdb\x11\x5a\x8e\x08\x71\x75\xa9\x84\x48\x46\x6a\x14\x5a\x9c\x8b\x54\x27\x66\x97\x4e\xa3\x4d\x61\x9e\xc7\x3b\xbe\xca\x22\xcb\x71\xee\x27\x6b\x9d\xa0\x21\x8e\x31\xc7\xde\x2c\x9b\xac\xd6\xac\x83\xf2\xb9\x6e\x30\xc4\x57\x18\x1c\xc2\xac\x35\xe3\xfa\xdc\x99\xc4\x65\x93\x03\xb2\x68\xd4\x6b\x44\x5f\x59\x49\xe6\xd1\xf8\x85\x4e\xdc\xe9\xd3\xea\x15\x36\x8c\xb7\x94\x76\xf3\x97\xb4\xcb\x27\x33\x6b\xa5\x1e\x7d\x8c\xbf\xfa\x00\x99\xda\x36\x49\x5c\x5d\xaa\x28\x92\x32\x48\x5e\x6e\x78\xca\x3f\xf7\xe1\x71\xa6\x6a\x0d\x7b\x65\x6e\x73\x74\xbb\xda\x02\xeb\xd3\x1f\xc1\x27\xca\xa6\x69\xec\xcd\x5a\xcb\x2c\x8b\xe2\xc2\x44\x7a\x7e\x7d\xcb\xba\x3e\x61\xbe\x3e\xac\x62\xc1\xee\x93\x9b\x1d\x19\xa3\x7f\xd9\xe4\x2b\xbf\x0b\x26\x88\xcc\x3b\x99\x69\x63\x05\xb9\xb9\x6c\x26\xbe\x7e\xe1\x56\xb3\x33\xcd\x62\xb2\x9e\x72\x75\xf3\x5e\xe1\x6d\x7a\x84\xf6\xa0\x91\xcf\xd6\x47\x52\x46\x83\x29\x13\x92\x40\x25\x89\xb4\x20\xf9\x24\xc1\xaa\x89\x16\x06\xeb\x93\xab\x6a\xad\xcb\xe2\xf2\xdc\xf6\xe8\x36\x3d\xf3\xbd\xbc\xd9\xef\x11\x56\xed\x22\x6d\x76\x1b\x75\x99\x82\xbb\xf1\x49\x8e\x36\x
|
|
|
|
|
|
|
|
func bindataDistImagesReviewsKareemJpgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesReviewsKareemJpg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/reviews/kareem.jpg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesReviewsKareemJpg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesReviewsKareemJpgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/reviews/kareem.jpg",
|
|
|
|
size: 19806,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033320, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesReviewsLarsJpg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x7a\x65\x54\x9c\xcd\xb2\xf5\x00\x83\xdb\x0c\x32\xb8\x0c\x16\x82\xbb\xbb\x07\x77\x0d\xee\x1a\xdc\x83\xbb\x13\x9c\xe0\x2e\x21\xb8\xbb\xbb\xbb\x24\x78\x70\x82\xbb\x7c\xeb\xbc\xf7\xdc\x73\xef\xfd\xf9\xd5\xcf\xea\x5e\xfb\xe9\xee\x5d\xab\xaa\x9f\xdd\xf5\xbe\xf2\xbe\x05\x00\xc9\x4a\x7d\x92\x02\xc0\xc0\x00\x00\x30\x00\x18\x00\xe0\x7d\x1d\x20\x0e\x80\x87\x03\x02\x81\x70\xf0\x40\x20\x10\x1e\x1e\x1e\x01\x11\x0d\x09\x11\x11\x11\x11\x13\x15\x15\x19\x0d\x8c\x89\x85\x05\xc6\x04\x83\xb1\x21\xc4\x78\xd8\x38\x84\xb8\x60\x30\x3e\x14\x9f\x90\x84\x84\x8c\x8c\x0c\x1b\x8f\x82\x8a\x82\x94\x8a\x98\x94\x8c\xf4\x5f\x20\x30\xf0\xf0\xf0\x88\x08\x88\x18\x48\x48\x18\xa4\x38\x60\x1c\xd2\xff\x6f\x7b\xef\x03\x80\x91\x60\x12\x60\x12\xe0\x60\x28\x00\xb0\x60\x18\x38\x30\xcc\xfb\x00\x80\x18\x00\x80\x85\x83\x81\xf9\xd7\x7a\xff\xdb\xe0\x60\x60\x81\xf0\x08\x88\x48\xef\x03\x00\x02\x18\x00\xdc\xff\x19\x03\x00\x60\x60\xe1\x80\xf0\xef\x6b\x00\x34\x38\x18\x00\x2c\x08\x0e\x04\x00\xc0\x3c\xd3\xfe\xd7\x08\xe0\x93\x32\xa3\x7c\x37\x4f\xd2\xfa\x4b\xe9\xf8\x35\x7b\xfb\xd2\xad\x03\x50\x23\x26\x39\x68\xe1\x14\xa2\x30\x9f\x18\x3c\xab\x2b\xc2\x86\x6b\x76\x66\xd2\x5f\x49\x3b\x63\x31\x31\x91\x2d\xa8\x34\x2f\x24\x5c\x6e\x79\xdf\xee\x69\xf8\xa5\x8b\x01\x36\xe1\x7f\x7d\x03\xa8\x69\x83\x48\x16\x7a\x65\xf7\xbb\x5b\x28\x99\xde\x66\xac\xa6\xa8\xb5\xa3\x64\x15\x82\xbf\x86\x20\xb3\xf6\x21\x23\xd6\xc4\x46\xea\xa4\x34\xf5\x89\x49\x20\xa9\x04\xa1\x52\x3e\xaf\x01\xf9\x56\x9e\xe4\x23\xe7\x6b\xfb\x56\xee\xa7\x65\xb2\x02\x94\xae\xd6\x95\xff\x41\x42\x0a\x94\x8e\xb9\x31\x44\x89\xda\xd9\x57\xfd\xf3\xb3\xbd\xdf\xd5\xc7\xad\x52\x6e\x65\x65\x29\xd8\x58\x35\x1c\x79\x71\x66\xef\x78\x48\x30\xca\x65\x25\xe6\x7e\xd1\xbd\xa6\xb2\xda\xf1\xfa\xa1\xd3\x0d\xf9\xb2\xf5\x35\x9c\xf3\x27\xc2\x98\x05\x3a\xff\x23\x67\xd9\x2b\xcc\xaf\xc7\xbf\xb3\x5c\x7f\x6a\x00\x80\x9e\x7f\xef\x5f\x43\x71\xa7\x74\x5b\x48\x7f\x71\xff\xa0\x04\x35\x0e\x66\x69\x9e\x5f\xe1\x8f\xa5\x0c\x4d\x45\x04\xcc\xef\x5b\xb3\x16\x37\xdd\x8a\xf3\xe2\xde\xa6\xa2\xfc\xe5\xa9\xa5\x86\x5f\x5a\x08\xba\xa9\x8a\x37\x1d\x8d\x93\xd7\xbf\xdb\x49\x98\xa1\x8c\x07\x9b\xc2\xe5\xcf\x5a\x07\x98\xa5\x4b\xc2\xda\x78\xf6\x2e\x35\x68\xff\x5e\xe5\x27\x43\xfa\xa7\xf8\x83\xd1\x2e\x21\x5b\x4d\xa6\x36\xeb\x12\xb7\xa6\x8c\x8c\x95\xaa\xe3\x6c\x5b\xa3\x8f\xd6\x89\xab\xd1\xae\xed\x6b\x66\x25\xbf\x09\x81\x75\x3d\x61\x90\x6f\x5f\x40\x5c\xac\x78\x0a\xf7\x92\x99\x6e\xc6\x41\x7f\xbc\x30\xf3\x9d\xdc\xc6\x07\x9f\x98\x98\xc6\xfa\x6f\x30\x4d\xf7\xdf\x01\xca\xeb\x39\x3d\xaa\xff\x05\x8a\x92\x4f\x8c\x19\xe4\x63\x88\x98\x13\xe8\x53\x99\x6d\xb3\x48\xc4\x92\x9e\x19\xd1\x40\xd3\xd6\x68\xca\xac\x87\xde\x54\x95\xe4\x10\x72\x22\xef\x7c\xbe\xce\x24\xc7\x3e\xca\xa6\xb0\x23\xcd\xd5\x99\x54\x75\xda\x23\xe7\x00\xaf\xe5\xc3\x7b\xf5\x79\xda\x78\xef\x66\x78\xee\xb5\xf4\xfa\x1d\xb0\xf0\x25\xed\x57\xc2\x97\xe4\x80\x7f\xf6\xae\x84\x7a\xe2\x47\x8f\x39\x6d\x62\x5e\xbf\xe8\x50\x12\x5a\x48\xcc\xc6\x41\x37\x46\x03\x8c\x0b\x5d\xe2\x49\x4f\xfc\x55\x6e\x52\xa5\x38\x9d\x8f\xde\x76\x2e\xc8\x6a\xc3\x96\x64\x8e\xfe\xa3\xb0\x8f\x59\x0b\xa6\x20\x13\x5e\xf7\xb4\x52\x07\xaf\x5d\xa0\xa3\x4b\x7a\xcd\x29\xeb\xf2\xc9\xb7\x62\x89\x2c\xdf\xd5\xcb\x50\x6d\x71\xd4\x84\x3a\x0f\x40\x21\x12\x19\x20\xe0\x3f\xf4\x96\x72\xd5\xf1\x33\x49\xaf\x32\x1b\x79\x9e\x4f\x30\xb5\xe1\x44\xa6\x03\x19\x9b\x23\x93\x9e\xc2\x8d\x46\x8f\x40\xaf\xe4\x17\xef\x3d\xb7\x54\x7f\x92\x3d\x7e\x2a\xab\x7b\x80\x8b\x86\xeb\xf9\x0d\x0f\x37\xd7\x8f\x8e\x55\xaa\xa2\xe4\xae\x9a\x2b\xf3\x8d\x92\x17\xfd\xdb\x49\xf3\x13\xbf\xc4\xcb\xf8\xfa\x1b\x67\x36\xb1\x2d\x00\x00\x96\xde\x8c\x72\x57\x88\x7b\xc6\xeb\xb4\x51\x2d\xb9\x77\xd3\x41\x3f\xf1\x67\xb4\x4a\xa5\x8c\x9e\xe6\x37\x6b\x37\x5c\xae\xa2\x82\x59\x4f\x07\xed\xef\x29\xd5\x9a\x5a\x93\xdc\x36\x5c\x0d\x3f\x9e\xd8\xe2\x8e\xdb\x54\xda\x54\x7e\x54\x9e\x16\x8e\xb4\x08\x25\x5a\x14\x69\x44\x76\x64\x24\xe5\x7f\xba\xa4\x6f\x4e\xd3\x99\x3f\x37\x84\x7b\x1e\x96\xa6\x49\x60\x66\x41\x00\x00\xcd\x17\x13\xc9\x10\xb7\xee\x5f\x7e\xeb\xf6\xd7\x1d\x91\x66\xb7\x78\xb3\x36\xfe\xa9\xab\x8a\xca\x84\x5d\x1a\xc4\x30\xc2\x1f\x55\x2f\x2e\x58\xdd\xa8\xd6\x38\x31\xd7
|
|
|
|
|
|
|
|
func bindataDistImagesReviewsLarsJpgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesReviewsLarsJpg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/reviews/lars.jpg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesReviewsLarsJpg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesReviewsLarsJpgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/reviews/lars.jpg",
|
2019-03-30 12:35:24 +01:00
|
|
|
size: 17737,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033320, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesReviewsPgJpeg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x99\x55\x50\x1c\x00\xb3\xa5\x07\x77\x82\xbb\xbb\xfb\xe0\x12\xdc\xdd\xdd\xdd\x06\xb7\x10\xdc\xdd\xdd\x6d\xf0\xe0\x0e\x01\x06\x1f\xdc\x35\xe8\x10\x08\x21\xb8\x45\xd8\xba\xff\xde\xbb\xb5\xfb\xb8\xe7\xb5\xab\xba\xba\xea\x7b\x39\x7d\xce\xfb\xd6\xfb\x21\x00\x47\x45\x41\x59\x01\x00\x07\x07\x00\xc0\x01\xe0\x00\x80\xf7\x5d\x80\x2c\x00\x09\x01\x11\x11\x11\x01\x09\x11\x11\x11\x09\x09\x09\x19\x05\x13\x15\x05\x05\x05\xe5\x03\x06\x06\x1a\x26\xee\x07\x3c\x3c\xdc\x0f\xb8\xb8\xf8\x44\x14\xc4\xf8\x04\x64\x84\xb8\xb8\x24\xb4\x24\x64\x94\x94\xd4\xd4\xd4\xf8\xc4\x74\x0c\x74\x54\x0c\x14\x54\xd4\x54\xff\xb5\x04\x0e\x09\x09\x09\x05\x19\x05\x1b\x15\x15\x9b\x8a\x00\x97\x80\xea\xff\x5b\xef\x63\x00\x5c\x54\xb8\x74\xb8\x74\x04\x38\x3a\x00\x3c\x2e\x1c\x02\x2e\xdc\x3b\x04\x40\x01\x00\xc0\x21\xc1\xfd\xd7\xb9\xff\x23\x04\x38\x78\x44\x24\x64\x00\x0a\xea\x3b\x04\x40\x06\x07\x40\x80\xfb\x7f\xa6\x00\x38\x78\x04\x44\x24\xe4\xf7\x1d\x00\x26\x02\x1c\x00\x1e\x07\x01\x07\x00\x80\x5b\xe8\x23\xaf\x6e\xd4\x37\x12\xc6\xaf\x88\x86\x91\x4e\x47\x58\x01\x10\x1f\x61\x51\x19\xc7\xf0\x22\x14\xc8\x8e\x34\xec\xf9\xe1\x08\xa2\xa8\x6a\x06\x22\xa9\xae\x3b\xd8\xf4\x84\x1f\x9a\xba\xc2\x09\x29\x06\x51\x07\xcb\x1b\x8a\x3f\xe8\x29\xe0\x5e\x56\x48\x83\xa1\xfb\x6b\x3f\xe6\x08\x76\x7c\xe6\x60\x8d\x28\x54\x1f\x59\x51\x78\xeb\x2a\x4d\x78\x6f\x07\x8a\x02\x7c\x94\xa6\xab\x28\xb2\xcf\xee\xb5\xe4\x6d\x93\x09\x0d\xac\xe3\xf1\x73\x8a\x91\x3c\x59\x70\xf5\x68\x9e\x79\x0f\xa7\x6b\x5d\x89\x3e\x52\x20\x9d\x1d\x1a\xb6\x7d\xfc\xc2\x2c\x23\x2f\x15\x80\x60\xc1\x8f\x22\x22\x52\x3c\x58\xae\x03\x88\xd0\x16\x64\x2f\xdc\x53\x8e\x61\xb7\x70\xd6\xc0\xd8\x6a\x5b\xa4\x4c\x6e\x6c\x4f\xbe\x2e\xb6\x73\xe4\x96\x8d\xbc\xed\x42\x37\x33\x15\x58\x8a\x00\x65\xdf\x16\x23\x93\xc6\xe2\x38\x22\xd2\xda\xc0\xc4\xf1\xfb\xbe\x02\x0d\x79\xd0\xc7\x69\x47\xc5\xc2\x91\xd0\xf2\xff\x7d\xaf\xdf\x32\xdc\x5c\x49\x0d\x61\xaf\x86\xb3\xdf\x9c\x23\x88\x93\x90\xdb\x64\xe6\x59\xb0\x96\x69\x67\xb8\x84\x79\x30\xe9\x1b\x5d\x44\x67\x86\x2f\x04\xda\xd9\xc2\x0b\x94\xb3\x17\x2f\xdd\xfb\x2a\xa5\x2a\xd9\x28\x43\x6d\xbd\xc9\x8e\x04\xf4\xe5\x65\x97\x03\x49\xf8\x59\x14\xf3\x51\x8f\x1c\x8e\x84\x09\x4d\x60\x72\xe2\xce\x4e\x8a\x89\x24\xc6\x7a\x3a\xb1\x1e\x5e\xe5\x7d\x5a\x27\x40\x36\x77\x6b\xd5\x26\x97\x99\x31\xad\x5e\x2b\x25\xa4\x00\xc2\x45\x0a\x6f\x99\xee\x22\xe5\x22\x2c\xce\x8d\xe0\x8d\xbb\x0e\x41\x83\x8a\xc2\x06\x17\xe1\xcb\xf3\x48\x0e\x98\x39\x90\x3a\xe7\xf1\xd3\x16\x5d\xe9\xa9\xd6\x79\xa3\xf4\x2c\x04\xa5\x0e\xc4\x8a\x7c\xc8\x11\xc4\x82\x53\x9b\xca\x62\x24\xd1\x80\x53\x23\x17\x59\xb8\xd4\xc7\x2c\xaf\xa3\x9a\xc2\x96\xe2\x38\xb3\xfe\xf8\xc3\x4c\x6f\xbc\x3b\xa1\xfa\xae\xa3\x90\x31\x87\x63\xcd\x94\x4a\xbc\x28\xca\x52\x3f\xb8\xd2\xc2\x2b\xea\x0d\x61\x94\xf4\xab\x93\xd1\xc7\x2d\xcd\xfa\xa6\xf6\x42\xd3\x78\x8d\x74\x55\xed\xbd\xda\xb3\x1d\x06\x3a\x90\x06\xc8\x02\xb5\xc5\x49\xbc\x29\x10\x6e\xc1\x49\x2a\xe3\xf0\x9a\x34\x22\x99\x0e\xd1\xf8\xf6\x52\x61\x9a\xaf\x4a\xa1\xad\xa5\xa9\xfb\x4f\x68\x81\x39\xb0\x7a\x50\x94\xcd\xb8\x1c\x38\xa9\x27\xa6\xf4\x28\x69\x6d\xfa\xfd\xa1\x45\x7c\x45\xb2\xbd\xac\x0a\xdd\x3b\x97\xa9\xcf\x72\xc7\xb1\xb5\x95\x9d\x5a\xfd\x9e\x5a\xda\x65\x77\x5c\x62\x75\x2a\xae\x28\x07\x6f\xe3\x9e\x20\x52\xa9\x2f\x28\x19\x16\x39\xc3\x61\xaf\x1c\xce\xe5\x5e\x99\x8f\x37\x9e\xb8\x80\x44\x4f\x40\xe1\x80\x43\xb2\x09\xf2\xa1\x0a\xbf\x56\x8c\xec\x93\xc3\x6d\x98\xa1\xf2\xa5\x7c\x90\x92\x3d\xf9\x29\x7e\x53\x94\x07\xee\xa0\x99\x5b\x61\x00\x17\x39\x8d\xe3\x7c\xc5\x4d\x85\xb6\xb4\x20\xbd\x9c\x9d\xde\x48\x8e\xa4\x5d\x8c\x93\x37\x4e\x1f\x3c\x07\xbd\x71\xc2\x50\xec\x14\x3a\xe6\x86\xf0\x17\x99\xbe\x04\x8b\xc3\xe2\xdc\x34\x2c\x18\x21\x71\x9d\xd9\xe9\xde\x88\xeb\x14\xb6\xe3\xb0\xef\x84\xd9\xf4\x91\x0d\x2c\xec\x66\xe5\xad\x68\x5f\xe5\x3c\x11\x7e\x17\x53\xac\x62\x52\x92\xdc\xe0\x87\x8f\xe2\x4b\x74\xf5\x5f\x0d\x57\x2d\x3e\x58\x32\xb1\xde\x2f\x4f\x92\xfa\xce\xef\x43\x3b\x8f\xaa\x18\xef\x52\x18\x73\x92\x53\x04\x76\xea\x71\x59\x83\xee\x7d\x49\x17\x65\xe7\x77\xde\xa8\x0b\xdf\x80\x27\x75\xa3\xc1\x5c\x96\x62\x37\x03\x3b\xec\xa9\xc5\x5c\xe8\xd1\xab\x42\xf9\x0a\x35\xe3\x3c\x85\xe5\x0d\x2c\x7d\
|
|
|
|
|
|
|
|
func bindataDistImagesReviewsPgJpegBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesReviewsPgJpeg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/reviews/pg.jpeg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesReviewsPgJpeg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesReviewsPgJpegBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/reviews/pg.jpeg",
|
|
|
|
size: 30023,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033320, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesTerminaltopSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x4b\x73\xa3\x38\x10\xbe\xfb\x57\x68\x95\x4b\x52\x0b\x42\x02\x3d\x90\x03\x9e\xc3\x6c\x4d\xd5\xdc\xb6\xf6\x51\x7b\x26\x20\x63\x2a\x3c\x5c\xa0\xd8\xc9\xfc\xfa\x2d\x81\x31\xd8\xc6\x38\xd9\xdd\xda\x9a\x71\x0e\x56\xb7\xbe\x56\x7f\xdd\xea\x4f\x71\xf0\xe9\xb5\xc8\xc1\x4e\xd5\x4d\x56\x95\x21\x24\x08\x43\xa0\xca\xb8\x4a\xb2\x32\x0d\xe1\x9f\x7f\x7c\xb1\x7d\x08\x1a\x1d\x95\x49\x94\x57\xa5\x0a\x61\x59\xc1\x4f\xab\x45\xf0\x93\x6d\x83\xcf\xb5\x8a\xb4\x4a\xc0\x3e\xd3\x1b\xf0\xb5\x7c\x6e\xe2\x68\xab\xc0\xfd\x46\xeb\xed\xd2\x71\xf6\xfb\x3d\xca\x0e\x4e\x54\xd5\xa9\xf3\x00\x6c\x7b\xb5\x58\x04\xcd\x2e\x5d\x00\x00\x5e\x8b\xbc\x6c\x96\x49\x1c\xc2\x43\xc0\xf6\xa5\xce\x5b\x60\x12\x3b\x2a\x57\x85\x2a\x75\xe3\x10\x44\x1c\x38\xc0\xe3\x01\x1e\x9b\xec\xd9\x4e\xc5\x55\x51\x54\x65\xd3\x46\x96\xcd\xdd\x08\x5c\x27\xeb\x23\xda\xb0\xd9\x7b\x2d\x88\x48\x29\x1d\xec\x3a\xae\x6b\xd7\xc9\xda\x6e\xde\x4a\x1d\xbd\xda\xa7\xa1\xcd\x2e\x9d\x0a\x75\x31\xc6\x4e\xb3\x4b\x07\xe4\x4d\xd4\xa8\xb5\xa4\x75\xec\xb3\x44\x6f\x42\x28\x18\x6e\xcd\x8d\xca\xd2\x8d\x0e\xa1\xd7\x99\x59\x12\xc2\x66\x97\x52\x42\x25\x5c\x2d\x00\x08\x12\xb5\x6e\xcc\x46\xb7\x65\x2c\x4a\x18\x69\xf7\x00\x08\xe2\x3c\xdb\xfe\x1a\xe9\x4d\x87\xe8\x30\xbd\x8f\xe3\x03\x0a\x80\x60\x3b\xc2\x00\x90\x84\xb0\x00\xc4\xe7\xc8\xc5\xae\x25\x28\x45\x2e\x96\x40\x22\x4a\xa4\x85\x01\xb6\x6c\xb3\xf4\x81\x3d\x78\x3a\xc7\x37\x38\x1c\x61\x12\x99\x43\xb9\x0b\x81\x73\x20\xe3\xf4\x99\xdf\x41\x8e\xd2\x79\x72\x02\x23\x21\xc9\x09\x39\xff\x82\x9c\x7f\x83\x1c\xe5\xff\x8c\x9c\xeb\xcf\x93\x63\x0c\x79\x42\xfe\xcb\xce\x79\xf8\x0a\xb9\xc0\x31\xb7\xdc\xae\x0a\xa5\xa3\x24\xd2\xd1\x30\x00\xbd\x87\x12\xd6\x77\x30\xa8\x93\xf5\xf2\xb7\x5f\xbe\x1c\x29\xc7\xf1\xf2\xaf\xaa\x7e\x1e\x52\x1a\x40\xf4\x54\xbd\xe8\x10\x1e\x0b\x33\xa3\x15\x2f\xd7\x55\x5d\x44\x7a\x95\x15\x51\xaa\xcc\xc8\xfe\xfc\x5a\xe4\x81\x33\x6c\x9c\x80\xf5\xdb\x56\x0d\x87\x76\xc7\xd6\xaa\xa9\x5e\xea\x58\x4d\xaa\x38\x89\x8b\xcc\x04\x39\xbf\xeb\x2c\xcf\xbf\x9a\x24\xc7\x9a\x8f\x87\x66\x3a\x57\xab\x36\x67\xb7\xec\xab\x70\x0e\x65\xf4\x2d\x1a\x55\x19\x38\x7d\x1b\x5a\x2b\xed\x42\x74\x1d\x95\x8d\xe1\x1d\xc2\x22\xd2\x75\xf6\x7a\x4f\x2c\x6c\xfe\x90\xa4\x94\x71\xd7\xf3\x2c\x5b\x7a\x48\x32\x41\xa5\xb0\x6c\x8f\x32\xc4\x04\x67\xfe\x03\x1c\xda\x9b\x47\x6f\xaa\x3e\xaa\x6b\x7c\xf7\xed\xcd\x0f\xe1\x1e\x67\xc8\x67\xbe\x64\x40\x30\x8c\xb0\xf9\x78\xed\x85\x7b\x04\x09\x8e\x05\x05\xf6\xc9\xc6\x30\x01\x26\x4d\xad\x62\x4d\xa9\x2f\x8e\xce\x46\xbf\xe5\x2a\x84\xeb\x2c\xcf\x97\x77\x3e\x7b\x62\x4f\x4f\x8f\xc6\xb0\xab\x6d\x14\x67\xfa\x6d\x49\x1e\x1b\x5d\x57\xcf\x6a\x59\x56\xe5\xd0\xc4\xbe\xf4\xc9\xe2\x11\x65\xc4\xe5\x54\xb6\x4d\xb0\x07\xd3\x26\x84\x22\xc6\x24\xb1\x08\x65\x14\x49\x22\xdd\x87\x13\x76\xa9\x4b\xa7\x89\xad\xd7\x02\xb3\xd1\xab\x92\x9e\x4e\x75\xea\xf2\xd1\x9c\x4f\x45\x0e\x97\x7f\x11\xeb\xb9\x37\x62\x47\x63\x93\x8e\xa7\xd0\x48\xc7\x36\x37\x15\xc2\x97\x3a\xbf\xbf\x1b\x44\xfc\x00\xc7\xb8\x2e\x0b\x3d\xf1\x1d\xf2\xf4\x4d\xc6\x48\x10\x8c\xb1\xc0\xe4\xf1\x4a\xea\xf3\xe4\x27\x8d\x6f\x97\x79\xa4\xd5\x3d\xe1\x14\x09\x69\x9e\x08\x4f\x22\x76\xca\xa3\x67\xc2\xcf\xbc\xf3\x35\x83\xcb\xb7\xa8\xfb\xb4\x73\x89\x2d\x0c\x62\xf3\xfe\xb8\x88\x63\x02\x6c\x17\x11\xec\x5b\x36\x45\x02\x4b\xd0\x7d\x1d\xad\x16\x62\xe1\xde\xdd\x42\x7b\xa3\x83\x60\xab\x3b\xa6\x3b\xa5\xf3\x8d\xf7\x3f\xf7\x09\x4e\xe1\xd8\xc2\xf0\x9c\xdd\xf1\xb1\xf3\x2f\xb6\x26\xea\x3d\x1f\xf9\xd6\xac\x5f\xf2\x76\xea\xbf\xa9\xba\x9a\x14\xc1\xa1\x39\x4e\x3a\x9a\x90\xc1\x38\x2e\x87\xc5\x7f\x21\x1a\x1f\x9f\x8b\x86\xe2\x6b\xa2\x51\x09\x4b\xae\x8b\x86\xce\x0c\x7e\x1b\x39\x23\x1a\xea\xdf\x88\xfd\xa8\x68\x28\x9d\x10\x0d\xc3\x1f\x14\xcd\x59\xea\xf7\x8a\xc6\xc7\xe6\xdf\xe9\x8c\x66\x98\x3b\xaf\x99\x8b\xbc\x3f\xb4\x66\x18\xbd\xa5\x19\x53\xef\xf7\xad\x19\x86\x30\xa1\xe2\xa0\x19\x2a\xc5\x99\x66\x18\x9f\xd6\x8c\xf4\x12\x25\xd6\xd7\x35\xc3\xae\xce\xfd\x21\x72\x46\x33\x9c\xde\x88\xfd\xa8\x66\x38\x9e\xd0\x0c\xe7\x1f\xd2\xcc\x45\xea\xf7\x6a\x46\x32\xc4\x5d\xcc\x67\x44\xc3\xcf\x9f\xde\xf9\x9a\xc1\x8f\x2d\x1a\x71\xb9\x35\x51\xef\xff\x21\x9a\xf6\x2b\x30\x3f\xaa\x57\x8b\xbf\x03\x00\x00\xff\xff\x71\xda
|
|
|
|
|
|
|
|
func bindataDistImagesTerminaltopSvgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesTerminaltopSvg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/terminal-top.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesTerminaltopSvg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesTerminaltopSvgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/terminal-top.svg",
|
|
|
|
size: 3942,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesTerminalSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x58\x4b\x8f\xe3\xb8\x11\xbe\xf7\xaf\x60\x34\x97\x19\x44\xa2\xf8\x26\xe5\xb1\x7a\x0f\x3b\x58\x60\x6f\x41\xb2\x41\xce\x6a\x89\x56\x2b\xa3\x87\x41\xd1\x6d\xf7\xfc\xfa\x80\x7a\xdb\x96\xdd\xdd\x58\xec\x61\xe2\x8b\xc4\xaa\xaf\x58\x0f\xd6\x57\x02\xbd\xfd\xe5\x54\x95\xe0\x45\x9b\xb6\x68\xea\xd8\xc3\x10\x79\x40\xd7\x69\x93\x15\x75\x1e\x7b\xff\xfe\xe3\xb7\x40\x79\xa0\xb5\x49\x9d\x25\x65\x53\xeb\xd8\xab\x1b\xef\x97\xc7\x87\xed\xdf\x82\x00\xfc\x6a\x74\x62\x75\x06\x8e\x85\x7d\x06\xbf\xd7\xdf\xdb\x34\xd9\x6b\xf0\xf9\xd9\xda\xfd\x26\x0c\x8f\xc7\x23\x2c\x06\x21\x6c\x4c\x1e\x7e\x01\x41\xf0\xf8\xf0\xb0\x6d\x5f\xf2\x07\x00\xc0\xa9\x2a\xeb\x76\x93\xa5\xb1\x37\x18\xec\x0f\xa6\xec\x80\x59\x1a\xea\x52\x57\xba\xb6\x6d\x88\x21\x0e\xbd\x19\x9e\xce\xf0\xd4\x79\x2f\x5e\x74\xda\x54\x55\x53\xb7\x9d\x65\xdd\x7e\x5a\x80\x4d\xb6\x9b\xd0\x2e\x9a\x23\xed\x40\x38\x8a\xa2\x10\x91\x90\x90\xc0\x64\xbb\xa0\x7d\xad\x6d\x72\x0a\xce\x4d\xdb\x97\x7c\xcd\x94\x20\x84\xc2\xf6\x25\x9f\x91\xef\x43\x6d\xda\x26\x2b\xf6\x4d\x56\x4c\xf0\x51\x00\xdb\xe6\x60\x52\xbd\x6b\x4c\xae\x61\xad\x6d\xf8\xed\x8f\x6f\x93\x32\x40\x30\xb3\xd9\x62\x9b\xb1\x9e\x67\x5e\xcf\x8a\x5c\x27\x95\x6e\xf7\x49\xaa\xdb\x70\x94\x77\xf6\x8b\x13\x26\x9d\xe0\x58\x64\xf6\x39\xf6\x94\x42\x50\x90\x48\x8a\x4e\xf8\xac\x8b\xfc\xd9\xc6\x1e\x55\x1c\x52\x49\x51\x0f\x2d\xb2\xd8\x6b\x5f\x72\x4a\x19\xea\xd7\xc3\xc6\x9b\x69\x53\x04\x99\x82\x14\x62\x60\x22\xa5\xfa\xad\xc6\x1c\x36\x59\x93\xba\xa0\x62\xcf\x6a\x53\x15\x75\x52\x42\x57\x9a\xc7\x07\x00\xb6\x13\xc6\x01\xb2\x97\x42\x1f\x9d\x25\x00\xfb\x24\xd7\x69\x53\x36\x26\xf6\x3e\xed\xba\x9f\xd7\x2b\x9e\x1a\x93\x69\x33\xaa\x44\xf7\x3b\x53\x35\xfb\x24\x2d\xec\x6b\xec\xe1\x41\xdc\x3c\xfd\x57\xa7\xd6\x36\xa5\x36\x49\x9d\xea\xd8\xc3\x68\xd0\xe4\xa6\xc8\x56\xe5\x87\x22\xd3\x6b\x8a\x29\x6d\x17\xde\xe4\x68\x55\xdb\x3e\x27\x59\x73\x8c\x3d\x72\xa9\x3c\x16\x75\xd6\x1c\x83\xa1\xf8\x58\xa8\x2b\xf3\x01\x31\x9e\x04\x46\x84\x8e\x90\x2c\xf6\xa6\x42\x71\x89\x46\xd3\xf6\xb9\x39\xba\x64\x62\x6f\x97\x94\xad\x1e\xa4\xbb\xc2\x06\x55\x62\xf2\xa2\x0e\x6c\xb3\x9f\xe3\x5c\xc8\x4b\xbd\xb3\xab\x0a\xd3\xfb\x5e\xd1\x3c\x35\xd6\x36\xd5\x4a\xd6\x3f\x9a\x4e\x0c\x15\x91\x8c\x23\x19\x5d\xea\xd3\x53\xec\x51\x44\xa1\x14\x92\x5f\x2b\x5f\x63\x8f\x20\x0c\x19\x13\x14\xdf\x28\xc8\x69\xc5\xe9\xa0\x5a\x3b\x85\x41\x55\x25\xa7\xa2\x2a\x7e\xe8\x6c\xee\x88\xd9\xeb\xc1\x18\x5d\xdb\xa0\x4c\x5e\xb5\x89\xbd\xee\x81\x3d\x10\x76\xad\x99\xe9\x5d\x3b\x97\xdd\xad\x28\x65\xa4\x6b\x5b\x00\xb6\x69\x59\xec\xff\x91\xd8\xe7\x1e\xd1\x63\x46\x99\x40\x03\x0a\x80\xed\x7e\x81\x01\x20\x8b\xbd\x0a\x60\x25\x20\x41\xc4\x97\x8c\x41\x82\x22\x10\x41\x86\x23\x1f\x01\xe4\x07\xee\x55\x81\x60\x96\xf4\x82\x1f\xde\xbc\x85\x73\xe4\x36\x15\x64\x29\x9c\x32\x6a\xea\x5a\xa7\xb6\x31\x41\x7a\x30\x2f\x89\x3d\x18\xed\x4a\xd3\xa7\x04\xc0\x36\x1c\x63\x7c\x47\x1a\x8c\xdd\x4f\x43\x22\x28\x23\x7c\x96\x86\xba\x4a\x43\xbd\x91\x06\x13\x7f\x75\x1a\x44\xdd\x4f\x83\xbb\x41\x17\xfd\xc9\xd3\xa0\xe8\x4f\xa7\xb1\x0d\x5d\x8f\x75\x6f\x95\xb6\x49\x96\xd8\x64\x6e\xbf\x51\x42\x29\xe3\x63\x0b\x9a\x6c\xb7\xf9\xe7\xb7\xdf\xa6\xe4\xd2\x74\xf3\x9f\xc6\x7c\x9f\xe3\x70\x80\xe4\xa9\x39\xd8\xd8\x9b\x4a\xe0\x1a\x3b\xdd\xec\x1a\x53\x25\xf6\xb1\xa8\x92\x5c\xbb\xef\xd4\xdf\x4f\x55\xb9\x0d\x67\xc5\x19\xd8\xbe\xee\xf5\xbc\x69\xbf\xad\xd1\xfd\x57\x6b\xf5\xd3\x9d\xa5\x55\xe1\x8c\xc2\x7f\xd9\xa2\x2c\x7f\x77\x4e\xa6\x9c\xa7\x4d\x0b\x5b\xea\x59\xb8\x0d\x87\xe8\xc7\xca\x2c\x92\xdb\x86\x63\xf6\xdd\x2a\xef\x4d\xac\x49\xea\xd6\x85\x1b\x7b\x55\x62\x4d\x71\xfa\x4c\x20\xc7\x02\x29\xa6\x7c\xe4\x23\x7f\x5e\x05\x58\x71\x88\x31\x8e\xb0\x1f\x44\x94\x41\xa9\x04\xc2\x5f\x16\x23\x75\xe0\xfd\x58\x56\x9d\xda\x31\xd4\x61\x4a\x53\x8e\x20\x42\x08\xd1\xe9\x90\xc7\xe1\x4c\x08\x54\x48\x50\x16\x4d\x1a\xe3\xc6\xdc\xb4\x3a\xc5\x9e\xa4\x90\x4b\xcc\x30\x9e\x84\xaf\xb1\x47\x25\x86\x9c\x30\xc4\xbd\x65\xcb\x3a\xd7\x8c\x29\x39\x09\x5b\xfb\x5a\xea\xd8\xdb\x15\x65\xb9\xf9\xa4\xf8\x13\x7f\x7a\xfa\xea\x16\xc1\xf0\xf1\xd9\xe0\xaf\xad\x35\xcd\x77\xbd\xa9\x9b\x7a\x2e\xf2\x58\xa3\xb5\x2a\x21\xa8\x10\x63\x24\x22\x51\x57\xa6\x60\xb1\x0e\x1c\x05\x54\x44\xb
|
|
|
|
|
|
|
|
func bindataDistImagesTerminalSvgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesTerminalSvg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/terminal.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesTerminalSvg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesTerminalSvgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/terminal.svg",
|
|
|
|
size: 5797,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistImagesTorSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\xbc\x6b\x6e\x5d\x49\x76\x26\xfa\xbf\x46\x71\x2e\x8d\x0b\xd8\xb8\x47\xa1\xf5\x7e\x28\x1f\xc6\xbd\xba\x30\xca\x40\xfa\x4f\xbb\xdb\xfd\xb3\xc1\x24\x99\x4a\xa2\x28\x52\xa0\x98\xaf\xfa\xd9\xd3\xe8\x51\xf4\x04\x7a\x36\x9e\x47\x63\xad\x88\xbd\xcf\x39\x92\xd2\x76\xd9\x9d\x85\x02\xc8\x4f\x11\x7b\x47\xac\xc7\xb7\x1e\x11\x9b\x5f\xff\xed\xaf\xef\x1f\x0e\x3f\xdf\x3d\x7f\xbc\x7f\x7a\xfc\xe6\x0a\x07\x5c\x1d\xee\x1e\x6f\x9e\x6e\xef\x1f\xdf\x7d\x73\xf5\x5f\xfe\xf3\xdf\xbd\x8a\xab\xc3\xc7\x97\xeb\xc7\xdb\xeb\x87\xa7\xc7\xbb\x6f\xae\x1e\x9f\xae\xfe\xf6\xdb\x3f\x7c\xfd\x7f\xbd\x7a\x75\x78\xfb\x7c\x77\xfd\x72\x77\x7b\xf8\xe5\xfe\xe5\xc7\xc3\xdf\x3f\xfe\xe9\xe3\xcd\xf5\x87\xbb\xc3\x5f\xff\xf8\xf2\xf2\xe1\xcd\xeb\xd7\xbf\xfc\xf2\xcb\xb8\x5f\xe0\x78\x7a\x7e\xf7\xfa\x6f\x0e\xaf\x5e\x7d\xfb\x87\x3f\x7c\xfd\xf1\xe7\x77\x87\x5f\xdf\x3f\x3c\x7e\x7c\x73\x7b\xf3\xcd\xd5\x1a\xfd\xe1\xa7\xe7\x87\x1e\x75\x7b\xf3\xfa\xee\xe1\xee\xfd\xdd\xe3\xcb\xc7\xd7\x38\xf0\xf5\xd5\x1a\x7b\x73\x1a\x7b\x53\xef\xbd\xff\xf9\xee\xe6\xe9\xfd\xfb\xa7\xc7\x8f\x3d\xed\xf1\xe3\x5f\x6d\x23\x9f\x6f\x7f\xd8\x87\xd6\x22\x7e\xe1\x1e\x81\x99\xf9\x1a\xe8\x35\xd1\xab\xe7\xdb\x1f\x5e\x7d\xfc\xed\xf1\xe5\xfa\xd7\x57\x67\xf3\x3e\xfe\xfc\xee\x4b\xf3\x08\x00\x5e\x7f\xfc\xf9\xdd\x1a\xf6\x2f\x0f\x39\x13\x24\x5e\x1d\x7e\xb9\xbf\x7d\xf9\xf1\x9b\x2b\x0e\xb8\x3a\xfc\x78\x77\xff\xee\xc7\x97\x6f\xae\x28\xe1\xea\xf0\xf3\xfd\xdd\x2f\xff\xdf\xd3\xaf\xdf\x5c\xc1\x01\x0e\x1c\x30\x00\x00\xf0\x40\x91\x23\xeb\xbf\xab\xc3\xfd\xed\x37\x57\xff\xfc\x3f\xfe\xd7\x3f\xff\xcf\xff\xfe\xdf\xb0\xdf\xfc\xe6\xe3\x87\xeb\x9b\xbb\x6f\xae\x3e\x3c\xdf\x7d\xbc\x7b\xfe\xf9\xee\xea\xdb\xaf\xdf\xdf\xbd\x5c\xdf\x5e\xbf\x5c\xf7\xe0\xed\x17\x32\xc4\xab\x6f\xbf\x7e\xbe\xfd\xe1\xcd\x7f\xfa\xff\xff\xee\xdb\xaf\x6f\x6e\xde\xfc\xd7\xa7\xe7\x3f\x1d\x0a\xb8\xfe\xfe\xe9\xa7\x97\x6f\xae\xae\xbe\xfd\xfa\xf6\xe6\xcd\x0f\x4f\xcf\xef\xaf\x5f\xbe\xbd\x7f\x7f\xfd\xee\xae\x16\xff\xff\xfc\xfa\xfe\xe1\xeb\xd7\xa7\x7f\xa8\x31\x2f\xbf\x7d\xb8\xeb\x99\xcf\x77\x1f\x9f\x7e\x7a\xae\xf7\x7f\x41\x5f\xb7\x37\xef\xef\x6b\xe4\xeb\x7f\x7c\xb9\x7f\x78\xf8\xfb\x7a\xe0\xd5\xe1\xf5\x7c\xc0\xfd\xcb\xc3\xdd\xb7\xfd\xd8\xed\xc7\xb5\xa0\x6f\xbf\x7e\xbd\xaf\xf1\xf5\xb6\xf8\x6f\xbf\xbe\xbd\xfb\xe1\x63\xef\xa7\x7e\x20\x83\xac\x27\xfd\xe1\x0f\x5f\xbf\x3b\xbc\x3c\x5f\x3f\x7e\xac\xb5\x7d\x73\xd5\x3f\x3e\x5c\xbf\xdc\xfd\xf5\x2b\x8d\x81\x24\x00\x78\x7c\x25\x3a\x28\xc4\x25\xff\x66\x8a\xef\xe1\xfa\xb7\xbb\xe7\x92\xc5\x87\xeb\x97\x1f\x0f\xb7\xdf\x5c\xfd\xc3\x41\x61\xb8\x1e\x89\x63\x88\x85\xeb\xe1\x6d\x23\xe2\xe6\x47\x12\x18\x8a\x2a\x34\x07\x41\x43\x34\x54\x76\xe8\x48\x22\x43\x93\x5d\x0f\xdf\x1d\x34\x86\x1a\xfd\x0e\x66\x3c\x1c\xa3\x31\xb3\x51\x3f\x7d\x19\x3b\x9b\xeb\x3c\xd2\x7e\x1f\xdc\x57\xfc\xdd\x67\x7b\xf8\xf3\xe1\x1f\x0e\x88\x3a\x3c\x90\x2e\x47\x9e\xa1\x67\x6f\x47\xe2\x21\xec\xbf\x07\xaa\x0c\x46\x2a\xd1\x20\xe9\x70\x47\xb3\x06\xc9\x00\xec\x80\x54\xf2\x56\xe7\xc6\xc4\x82\xf2\x80\x0c\xa7\xb9\x60\x73\x2e\xd7\xf3\x00\x0b\xe4\x61\x68\xe0\x07\x64\x1d\x69\x02\x85\xe1\xc0\x20\xc0\x03\xb2\xcd\xe5\x1e\x49\xa2\xa5\xd2\x93\x7d\x00\x92\x16\xa8\x83\x92\x79\x0e\x54\x8a\xe0\x23\x09\x8e\x40\x11\x3e\x20\xcf\xf7\x1d\x89\x73\xe4\xfe\x66\x1c\x1e\x10\xde\xa2\x20\x0e\xcd\x5e\x75\xb0\x29\x4d\xf1\x24\x22\x1f\x90\x6c\xe0\x54\xd7\x97\x45\x76\x29\xe0\xc0\xf1\x89\x1e\x36\x48\x78\xd0\xfc\x7d\x37\x89\xcf\x90\x2f\x4c\xbb\x78\x3c\x49\x6e\x62\x38\x1b\x5a\xf6\x67\xeb\x91\xf4\xc9\xef\xda\x22\x6f\x10\x36\x6b\xfa\x02\xa6\xf0\xa5\xa7\xfd\x0e\xba\x7e\x3a\xbc\x6d\xd4\xc1\x48\x8e\xa4\x3a\x08\x4d\xa8\x31\x71\x21\x3c\x92\xfa\x08\x04\x94\xc6\x72\xda\x12\x0c\xee\xb7\xd7\x64\x1e\xa0\x66\x71\x24\x2b\x5d\x64\xfa\xa1\xac\x1a\x43\x13\x8f\x64\x35\x85\x99\x0f\xbd\x60\xd8\x1c\x66\xda\x7c\xcd\x8e\x01\x42\x51\xb3\x65\xa8\x0a\xe2\xa1\x16\x9c\x20\xa5\x53\x93\x01\x2a\x90\x87\xb2\xab\xdd\xdb\xb6\x7d\x2b\x0f\x98\xeb\xd1\x1c\x73\x27\xca\x83\x58\xca\x6e\x34\x06\x39\xb9\x1c\x6a\xa7\x64\x44\xd9\x58\x46\x14\x84\x63\xca\x5f\xb3\x67\xc1\x30\xf2\xf5\x20\x8e\x50\x6c\x1d\xb1\xcb\x9a\xe5\x26\x1a\x8d\x69\xcb\x43\x97\xd3\xb4\x26\xc5\x14\x5b\x72\xb5\xe5\x09\x05\x73
|
|
|
|
|
|
|
|
func bindataDistImagesTorSvgBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistImagesTorSvg,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/images/tor.svg",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistImagesTorSvg() (*asset, error) {
|
|
|
|
bytes, err := bindataDistImagesTorSvgBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/images/tor.svg",
|
|
|
|
size: 22905,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesDownloadbottomHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x40\x03\x36\xfa\x29\x99\x65\x76\x5c\x78\x84\x90\xb8\x36\x49\x45\xfa\x76\x5c\x36\xfa\xc5\xa9\xc9\x25\x99\xf9\x79\x76\x5c\x80\x00\x00\x00\xff\xff\xe6\x58\x4a\x7e\x4e\x00\x00\x00")
|
2019-01-19 21:51:15 +01:00
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesDownloadbottomHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesDownloadbottomHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/includes/download-bottom.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesDownloadbottomHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesDownloadbottomHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/download-bottom.html",
|
|
|
|
size: 78,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2021-07-17 10:12:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _bindataDistIncludesDownloaddeleteHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xbd\x6e\xeb\x30\x0c\x85\xf7\x3c\xc5\x81\xee\xac\x6b\x34\x53\x07\xdb\x53\x97\x6e\x5d\xfa\x00\xb4\x45\x23\x42\x65\xd1\x90\x99\x9f\x22\xc8\xbb\x17\x95\xa5\x20\x43\xdb\x45\xa2\xc4\xf3\x1d\x8a\x62\x4b\x38\x24\x9e\x3a\x73\xbd\xfe\x7f\x4f\xe1\x76\x33\xf0\xae\x33\x93\x4f\x6c\x1d\x07\x56\x36\x18\x03\xad\x6b\x67\x06\x8d\x76\x54\xc2\xa0\xd1\xf4\xd8\x92\x6d\xe3\x7b\xb4\x0d\xf5\x68\x87\xd4\xf4\x79\xd9\xb5\xce\x9f\x2a\xb4\xc9\xec\x2c\x8e\x02\x92\x9c\x41\xd1\xcf\xa4\xec\x30\x91\xe3\xd7\xf8\x22\xe7\x68\xfa\x1d\x90\xa1\x5c\x3a\xc9\x6c\x95\xd3\xec\x23\x85\x7b\x71\x0c\x72\xc1\x28\xc1\xce\xce\x3e\xa3\x46\x32\x4d\x2b\xab\xdd\xe7\xf3\x65\xb5\x4f\xfb\xec\x55\xdc\x0a\x5a\xbd\xac\xca\x52\xd3\x8d\xf3\xa7\xdf\x95\x45\xf5\xf0\xa8\x33\x0f\xf7\x4b\xa0\xf5\x71\x39\x2a\xf4\x73\xe1\x6f\xe8\xa2\xdb\xa7\xe5\x5e\xbd\x44\xab\xf2\xc1\xd1\xe0\x44\xe1\xc8\x9d\x31\x58\x02\x8d\x7c\x90\xe0\x38\x75\xe6\x2d\x30\xad\x0c\x8e\xca\x09\x7a\x60\x54\x0c\x1b\xf6\x50\xa6\xce\xe6\xdf\xe6\x3f\x4a\x9c\x7c\x9a\xff\x9e\x4b\x11\xfd\x38\x98\x62\xfb\xd0\x7c\x0d\x4b\x50\xb6\xaf\x00\x00\x00\xff\xff\x91\x87\x99\xe4\x15\x02\x00\x00")
|
|
|
|
|
|
|
|
func bindataDistIncludesDownloaddeleteHtmlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_bindataDistIncludesDownloaddeleteHtml,
|
|
|
|
"dist/includes/download-delete.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func bindataDistIncludesDownloaddeleteHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesDownloaddeleteHtmlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/download-delete.html",
|
|
|
|
size: 533,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-03-30 12:35:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesDownloadfooterHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x54\x5d\x73\xe2\x36\x14\x7d\xe7\x57\xdc\xf8\x25\x64\x5a\x6c\x6c\x83\x4c\x00\xf3\x90\xee\xb6\x69\x77\x93\xe9\x74\x9a\x6e\x3b\x99\x4c\xe6\xda\xba\xb6\x95\x18\xc9\x95\x64\x58\x9a\xc9\x7f\xef\xf8\x83\x00\xbb\x79\x01\xfb\xdc\xaf\xa3\x73\xae\xb5\xcc\x94\xb2\xa4\x57\x03\x00\x80\x25\x17\x1b\x48\x4b\x34\x26\x76\xb6\x1a\xab\x8a\xb4\xd3\x45\xde\xa2\xc6\xee\x4a\x8a\x9d\x23\xf8\x2d\x8c\x50\x68\xca\x62\x27\x11\x36\x55\x42\xce\x7d\x36\xd9\x25\x7f\xdc\x7c\x4e\x72\x9f\x17\xc5\x97\x2f\xe2\xee\xf9\x6f\x2b\x6e\x75\xf4\x74\x57\xdc\x7c\xe2\xbf\xfd\x7b\xed\x40\x89\x09\x95\xb1\x73\xd5\x95\xfc\xf0\x41\x49\xb4\x42\x49\x67\x3f\x67\xab\x34\x1f\x35\x54\xe6\x90\x68\xc2\xe7\x51\x03\x2c\xde\x99\xde\x32\x10\xeb\x1c\x12\xa5\x39\xe9\xd8\x19\x3b\x60\x74\x1a\x3b\xae\xeb\x89\x35\xe6\x64\xbc\x9e\x97\x5b\xc9\xfc\xad\xff\x1a\x75\x2e\xe4\x1c\xc6\x80\xb5\x55\x8b\xf7\x3a\x2f\x3d\x3c\x05\x97\x1e\x17\x9b\xd5\xe0\xa0\x4b\xa2\xbd\x77\xca\x4e\xd0\x96\xda\x37\x7c\x3e\xab\x5c\x8d\x94\x46\x99\x53\xc7\x09\x4b\x1b\x3b\x3f\xab\x5a\x72\xe2\x20\x24\x5c\xab\xb2\x44\xc9\x8f\x2d\xa8\x56\x37\xc8\x09\xb6\xc2\x16\xb0\x14\x7b\xaf\x44\xaa\xe4\xa8\x20\xd4\xd6\x59\x2d\x3d\xb1\x82\x64\x77\xb0\xa3\xb0\xb6\x9a\x7b\x5e\x52\xaa\xdc\xe5\xb5\x4d\x8b\x54\x71\xd2\xc6\x15\xca\x73\xc0\x0a\xdb\xc8\xf0\xa1\xc1\xe1\xa7\x36\xe0\xac\x8e\xdf\x4e\x4e\xbf\xf4\xaa\x7e\x51\x7a\x09\x96\xde\x7e\x7d\x06\x83\x93\x81\x66\xee\x79\xb9\xb0\x45\x9d\xb8\xa9\x5a\x7b\x47\x73\x3d\xab\x51\x9a\x8c\xb4\x6b\x0a\xcf\x59\x75\xc2\x74\x66\x54\xca\x88\xc6\xfd\x39\x60\x62\x54\x59\x5b\x5a\x80\x55\xd5\x1c\xc6\x0b\xd0\x22\x2f\x6c\xfb\xd4\x19\xdc\x3c\xf6\x0e\xef\xe7\xa5\xb8\x56\x6e\x37\xb4\x36\xa4\x53\x25\x2d\x49\xdb\xce\x0f\x67\x94\xcd\xfc\x6c\x86\x29\xb2\x49\x92\x5c\x22\x9b\x4c\x26\x33\x3e\xe6\xd1\x38\xf3\xc3\xf1\x8c\xb2\x69\x38\xf1\x31\xf1\xd8\x2c\x9a\x44\x93\x68\x1c\x85\x21\x06\x59\x90\x45\x61\x18\x06\xc4\x7c\xc6\x99\x1f\x21\xcb\x18\x31\x3f\x8a\xa2\x06\x0b\x59\xc6\x78\x90\xb1\x88\x5d\x46\x13\x36\x8b\xa6\x2c\x08\xb2\x28\x60\x97\x2c\x60\x41\x93\x19\x85\x41\xc6\x18\x6b\xb0\x84\x71\x36\x9d\x76\xd1\xa8\x99\x31\xcd\xd8\x84\xf9\x6d\x24\x60\x69\x34\x6d\xa2\xa1\x1f\x06\xa1\x1f\xb2\xe6\x37\xa0\x68\xcc\x88\x45\x6f\x4b\xa1\x9f\x61\x4d\xa0\x24\xfc\x22\xec\x75\x9d\x38\xc0\xd1\xe2\x28\x45\xa9\xa4\x48\xb1\x1c\x9d\x28\x61\x42\x17\xd7\xf8\x9f\x92\xb8\x35\xed\xf9\x3b\x55\x3c\x2d\x92\x44\x49\xe3\x65\x4a\x3f\xaf\xe9\xb1\xd5\xf4\x91\xa3\x7e\x4e\xca\x9a\x1e\xfd\xc0\x67\x81\xdf\xae\xe2\xaa\xb5\xbd\xb3\xda\xa4\x5a\x54\xb6\xf3\x7d\x98\xd5\x32\x6d\x2c\x1a\x5e\xc0\x4b\xbf\x16\x1b\xd4\xd0\xe8\xfd\x97\x12\x29\x7d\xa2\x1d\xc4\xe0\xbc\xbc\xb8\x77\x47\xd0\xeb\xab\xb3\xe8\xb3\x45\x06\xc3\x93\xec\xb3\x18\x1c\xe7\xd0\xad\xef\xb7\x81\x18\xb8\x4a\xeb\x75\xeb\xa0\x26\xb4\xf4\xb1\xa4\xe6\x6d\x78\xde\x11\x3a\xbf\x58\xbc\x95\xd4\x1b\xd7\xee\x2a\x82\x18\xce\x2d\x7d\xb5\xde\x13\x6e\xb0\xcf\x3a\x49\x42\xb3\x93\x29\xc4\x60\x75\x4d\x27\x01\xa3\x1b\xf8\xdc\xf3\xb6\x82\xe7\x64\xdd\x86\xe1\xa6\x61\xd8\xaa\xf7\xdd\x69\xdc\x27\x73\xd4\xb8\x21\x6c\x8e\xf9\xe6\x64\x7b\xb2\xe6\x6a\xf7\x27\xe6\xb7\xb8\xa6\x03\xed\xfb\xf1\xc3\xa1\xd6\xb8\x15\x6a\x92\xf6\x56\x71\x72\x85\x34\xa4\xed\x15\x65\x4a\xd3\xb0\xde\xfc\x08\xe6\xa2\x4f\x7c\x6d\xff\x5f\x2f\x86\x17\xfd\xe7\xb7\x37\xa5\x7b\x3d\x1b\x8d\xee\x45\x06\xa5\x85\x5f\x3f\x42\xf4\xb0\xff\x60\x97\xd5\xfe\x82\x48\xb4\xda\x1a\x2a\xb0\xaa\x76\xce\xea\x1f\x55\x03\x6a\x82\xda\x08\x99\x03\x4a\x58\x1a\xab\x95\xcc\x57\xaa\xb6\x1c\x2d\xf1\xa5\xd7\x03\xd0\xd5\x69\x17\x7e\x2f\x09\x0d\x7d\x7f\xa9\x1c\xfa\xb6\x4a\x39\xab\xba\xca\x75\x73\x43\xed\x54\xad\xf7\xe5\xcd\x32\x81\x55\x20\xd6\x95\x56\x9b\x3e\x46\x5f\x2b\xd2\x82\x64\x4a\xee\xe1\x5a\x39\xbb\x27\xc9\x45\xf6\x30\x1a\x75\x47\x1b\x00\x0c\xfe\x0f\x00\x00\xff\xff\xee\xb4\x78\xfb\xa2\x06\x00\x00")
|
|
|
|
|
|
|
|
func bindataDistIncludesDownloadfooterHtmlBytes() ([]byte, error) {
|
2019-03-30 12:35:24 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesDownloadfooterHtml,
|
2019-03-30 12:35:24 +01:00
|
|
|
"dist/includes/download-footer.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesDownloadfooterHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesDownloadfooterHtmlBytes()
|
2019-03-30 12:35:24 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/download-footer.html",
|
|
|
|
size: 1698,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-03-30 12:35:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesDownloadheadHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6e\xd5\x30\x10\x45\xf7\xfd\x8a\xc1\x9b\x2c\x5a\x3b\x29\x6c\x10\x7a\x7e\x08\x41\x25\x58\x20\x55\xaa\x90\xd8\x1a\x7b\x92\x0c\xd8\x9e\x60\xcf\x4b\x09\x55\xff\x1d\x35\x69\x45\x24\x36\xc0\x72\x72\x33\xe7\x5c\xcb\x3e\x8c\xe8\xc2\xf1\x0c\x00\xe0\x90\x50\x1c\xf8\xd1\x95\x8a\x62\xd5\x49\x7a\xfd\x52\xed\xa3\x51\x64\xd2\xf8\xfd\x44\xb3\x55\x9f\xf5\xa7\x37\xfa\x2d\xa7\xc9\x09\x7d\x89\xa8\xc0\x73\x16\xcc\x62\xd5\x87\x2b\x8b\x61\xc0\xa7\x4d\x21\x89\x78\xbc\xbb\x33\xef\xb9\x4a\x76\x09\xef\xef\x41\xc3\x95\xab\x0b\xb8\x1c\xa0\x77\x55\xa0\xa7\x88\x50\x47\x57\x28\x0f\xd0\x17\x4e\x20\x23\x82\xe7\x94\x5c\x0e\x3a\x52\x46\x73\x68\x37\xd0\xae\xce\x03\xcc\xaa\x80\xd5\x17\x9a\x84\x38\xef\x4a\xfc\x33\x5f\xfd\x49\x9e\x09\x6f\x27\x2e\xb2\xc3\xde\x52\x90\xd1\x06\x9c\xc9\xa3\x5e\x87\x0b\xa0\x4c\x42\x2e\xea\xea\x5d\x44\x7b\x69\xba\x27\xd4\x33\xad\xe1\x3a\x3a\x8f\xd0\xbb\x99\x3c\x67\x43\x9e\xd7\x52\x6e\x9a\x22\x6a\xe1\x93\x1f\xf5\x1a\x4c\x79\x00\xca\x6b\xab\xc2\x2c\x10\xa8\xa0\x17\x2e\x0b\x68\xfd\x48\x8b\x94\xbf\x41\xc1\x68\x55\x95\x25\x62\x1d\x11\x45\xc1\x58\xb0\xb7\xca\x98\x76\xfb\xd8\x26\x47\xd9\xf8\x5a\xd5\x7e\x6b\xfd\xa9\x69\xdb\x9e\xb3\x54\x33\x30\x0f\x11\xdd\x44\xd5\x78\x4e\xad\xaf\xf5\x75\xef\x12\xc5\xc5\xde\xf0\xa9\x78\x3c\xbf\x71\xb9\x9e\x5f\x17\x7e\x75\xd9\x75\x17\xcf\xbb\xee\xe2\x45\xd7\x35\xab\xba\xf9\xad\x6e\x40\x96\x09\x6d\x23\xf8\x43\x1e\x18\xcd\xff\x08\xdf\x15\xa6\xb0\xf9\x3e\x72\xe6\xbf\x96\x6c\x37\x0e\xb5\xf8\xed\xec\xeb\x58\xdb\x19\x73\xe0\xd2\x26\x0e\x58\x32\xfd\x2c\xe6\x6b\x55\xc7\xc3\x63\x7c\x3c\x3b\xb4\xdb\x5b\xff\x15\x00\x00\xff\xff\x21\xa7\x5a\x5a\xf3\x02\x00\x00")
|
|
|
|
|
|
|
|
func bindataDistIncludesDownloadheadHtmlBytes() ([]byte, error) {
|
2019-03-30 12:35:24 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesDownloadheadHtml,
|
2019-03-30 12:35:24 +01:00
|
|
|
"dist/includes/download-head.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesDownloadheadHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesDownloadheadHtmlBytes()
|
2019-03-30 12:35:24 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/download-head.html",
|
|
|
|
size: 755,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-03-30 12:35:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesDownloadjsHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x50\x50\x50\xb0\x29\x4e\x2e\xca\x2c\x28\x51\x28\x2e\x4a\xb6\x55\xd2\xd3\xd3\x87\x70\x8b\xf5\x73\x13\x33\xf3\xf4\xb2\x8a\x95\xec\x6c\xa0\x42\x76\x5c\x5c\x80\x00\x00\x00\xff\xff\xb6\xf7\x5b\x6b\x30\x00\x00\x00")
|
2019-03-30 12:35:24 +01:00
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesDownloadjsHtmlBytes() ([]byte, error) {
|
2019-03-30 12:35:24 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesDownloadjsHtml,
|
2019-03-30 12:35:24 +01:00
|
|
|
"dist/includes/download-js.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesDownloadjsHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesDownloadjsHtmlBytes()
|
2019-03-30 12:35:24 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/download-js.html",
|
2019-05-18 14:11:39 +02:00
|
|
|
size: 48,
|
2019-03-30 12:35:24 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-04-07 17:04:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesDownloadnavigationHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x91\xc1\x6a\xc4\x20\x10\x86\xef\x7d\x8a\xc1\x9c\x1b\xc9\x3d\xf1\xdc\xd7\x18\x74\x5a\x07\x8c\x86\x8c\xa6\x85\x90\x77\x2f\xc4\xb4\x84\xec\xc2\x2e\xeb\xe9\xd7\xcf\xf9\xfe\xc3\x00\x00\xf4\x8e\x17\x60\x37\xa8\x88\x0b\x7f\x61\xe6\x14\x95\x79\x83\xe3\xec\xd4\x06\x14\x19\xd4\xf7\x8c\xd3\x44\xf3\x89\xee\x3f\x10\xfc\x4c\x9f\x83\xd2\x17\xb0\x43\xdf\x99\x75\x6d\x3f\x92\xe4\x88\x23\x6d\x5b\xaf\x7d\x77\x99\xd7\x78\x79\x28\xe1\xaf\xd1\xb3\x73\x14\xdf\x7f\xe4\x9e\x3a\xb0\xf9\xef\x6e\x5b\xad\x8c\x4f\x23\xdd\xd8\x6a\x45\xe0\xc7\x82\x46\x70\x9c\x02\x89\x32\x35\x40\x11\x02\x8b\x42\xf2\xaa\xb4\xb1\x29\x66\xb4\x59\x99\x23\x40\x79\xd6\xd5\xeb\x12\x4e\x5b\xd0\x8e\x97\x7a\xad\xf1\x37\x00\x00\xff\xff\x2c\xe8\xbc\xdb\xb9\x01\x00\x00")
|
2019-04-07 17:04:02 +02:00
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesDownloadnavigationHtmlBytes() ([]byte, error) {
|
2019-04-07 17:04:02 +02:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesDownloadnavigationHtml,
|
2019-04-07 17:04:02 +02:00
|
|
|
"dist/includes/download-navigation.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesDownloadnavigationHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesDownloadnavigationHtmlBytes()
|
2019-04-07 17:04:02 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/download-navigation.html",
|
|
|
|
size: 441,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesDownloadtopHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcf\x4e\xc3\x30\x0c\xc6\xef\x7b\x0a\x2b\xbd\x6e\x8d\x34\x4d\x1c\x46\x96\xcb\x24\xb8\x70\x01\xc1\x03\x38\x8d\xd7\x46\x6a\x93\x92\x58\x43\x25\xe4\xdd\x11\x94\xfd\x61\xbe\x59\xfe\x7d\x3f\xf9\x83\xbf\x51\x26\x4a\xbd\x38\x6f\xdd\x1a\x9a\x1e\x53\xda\x89\x11\x5b\x5a\xb1\xe3\x9e\x84\xce\xb9\x7e\x70\x3d\x79\x1c\xa8\x14\x25\xbb\xf5\x75\x62\xa3\x79\x1a\x69\x0b\xca\xfc\x70\xfb\xe0\x99\x3c\xbf\x4e\xe3\x2f\x6a\xb4\x92\xdd\xe6\x3f\x9e\xdc\xe7\x2d\xfe\x44\xbe\xe5\x0e\xbe\xe0\x10\xe2\x80\x0c\xa2\x5a\x56\x55\x55\x8b\x59\x01\x66\x62\x4a\xb3\xe8\x62\x42\xe8\x22\x1d\x76\x22\xe7\xfa\x2d\xf6\x8f\xc4\xa5\x88\xd3\xf3\x86\xfd\xaa\x61\x04\xc3\x5e\x68\xb0\xe1\xc3\xf7\x01\xad\x92\x4e\x83\x92\xa8\xe7\xd6\x37\xd5\xad\x3b\x9e\xe2\xef\xb1\x09\x96\xc4\xe5\x78\x86\xdc\xd0\x42\x8a\xcd\x4e\x58\x64\xdc\xba\x01\x5b\x92\xa3\x6f\xef\x0d\x26\xba\xdb\x2c\x73\xae\x9f\x5f\xf6\xc1\x52\x29\xe2\xda\x2d\xad\x3b\xea\xc5\x77\x00\x00\x00\xff\xff\x0a\x99\x5c\x1d\x74\x01\x00\x00")
|
|
|
|
|
|
|
|
func bindataDistIncludesDownloadtopHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesDownloadtopHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/includes/download-top.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesDownloadtopHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesDownloadtopHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/download-top.html",
|
2019-05-18 12:12:32 +02:00
|
|
|
size: 372,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesFooterHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x54\x5d\x6f\xa3\x46\x14\x7d\xf7\xaf\xb8\xcb\x4b\x1c\xb5\x06\x03\xf6\xe0\xb5\x8d\x1f\xb6\xbb\x6d\xda\xdd\x44\x55\xd5\x74\x5b\x45\x51\x74\x61\x2e\x30\x09\xcc\xd0\x99\xc1\x5e\x37\xca\x7f\xaf\xf8\x70\x6c\x6b\xf3\x62\xc3\xb9\x5f\x67\xce\xb9\xcc\x3a\x53\xca\x92\xde\x8c\x00\x00\xd6\x5c\x6c\x21\x2d\xd1\x98\xd8\xd9\x69\xac\x6b\xd2\x4e\x1f\x79\x8d\x1a\xbb\x2f\x29\x76\x4e\xe0\xd7\x30\x42\xa1\x29\x8b\x9d\x44\xd8\x54\x09\xb9\xf4\xd9\x6c\x9f\xfc\x71\xfd\x25\xc9\x7d\x5e\x14\x5f\xbf\x8a\xdb\xa7\xbf\xad\xb8\xd1\xd1\xe3\x6d\x71\xfd\x99\xff\xf6\xef\x95\x03\x25\x26\x54\xc6\xce\x87\xbe\xe4\x87\x8f\x4a\xa2\x15\x4a\x3a\x87\x39\x3b\xa5\xf9\xa4\xa5\xb2\x84\x44\x13\x3e\x4d\x5a\x60\xf5\xc6\xf4\x8e\x81\xa8\x72\x48\x94\xe6\xa4\x63\x67\xea\x80\xd1\x69\xec\x88\x0a\x73\x32\xde\x40\xca\xad\x65\xfe\xda\xbc\x42\x9d\x0b\xb9\x84\x29\x60\x63\xd5\xea\xad\xb6\x6b\x0f\xcf\xc1\xb5\xc7\xc5\x76\x33\x3a\x8a\x92\x68\xef\x8d\xb2\x33\xb4\xe3\x75\x4a\xe6\x8b\xca\xd5\x44\x69\x94\x39\xf5\x84\xb0\xb4\xb1\xf3\xb3\x6a\x24\x27\x0e\x42\xc2\x95\x2a\x4b\x94\xfc\x54\xfc\x7a\x73\x8d\x9c\x60\x27\x6c\x01\x6b\x71\x70\x49\xa4\x4a\x4e\x0a\x42\x6d\x9d\xcd\xda\x13\x1b\x48\xf6\x47\x23\x0a\x6b\xeb\xa5\xe7\x25\xa5\xca\x5d\xde\xd8\xb4\x48\x15\x27\x6d\x5c\xa1\x3c\x07\xac\xb0\xad\x06\x1f\x5b\x1c\x7e\xea\x02\xce\xe6\xf4\xed\xec\xe8\x6b\xaf\x1e\x56\x64\x38\xff\xda\x3b\x2c\xce\x68\x74\x36\xd0\x2c\x3d\x2f\x17\xb6\x68\x12\x37\x55\x95\x77\x32\xd7\xb3\x1a\xa5\xc9\x48\xbb\xa6\xf0\x9c\x4d\xaf\x4a\xef\x44\xad\x8c\x68\x7d\x5f\x02\x26\x46\x95\x8d\xa5\x15\x58\x55\x2f\x61\xba\x02\x2d\xf2\xc2\x76\x4f\xbd\xb5\xed\xe3\xe0\xed\x61\x5e\x8a\x95\x72\xfb\xa1\x8d\x21\x9d\x2a\x69\x49\xda\x6e\x7e\xb8\xa0\x6c\xe1\x67\x0b\x4c\x91\xcd\x92\xe4\x3d\xb2\xd9\x6c\xb6\xe0\x53\x1e\x4d\x33\x3f\x9c\x2e\x28\x9b\x87\x33\x1f\x13\x8f\x2d\xa2\x59\x34\x8b\xa6\x51\x18\x62\x90\x05\x59\x14\x86\x61\x40\xcc\x67\x9c\xf9\x11\xb2\x8c\x11\xf3\xa3\x28\x6a\xb1\x90\x65\x8c\x07\x19\x8b\xd8\xfb\x68\xc6\x16\xd1\x9c\x05\x41\x16\x05\xec\x3d\x0b\x58\xd0\x66\x46\x61\x90\x31\xc6\x5a\x2c\x61\x9c\xcd\xe7\x7d\x34\x6a\x67\xcc\x33\x36\x63\x7e\x17\x09\x58\x1a\xcd\xdb\x68\xe8\x87\x41\xe8\x87\xac\xfd\x0d\x28\x9a\x32\x62\xd1\xeb\x52\xe8\x27\xa8\x08\x94\x84\x5f\x84\xbd\x6a\x12\x07\x38\x5a\x9c\xa4\x28\x95\x14\x29\x96\x93\x33\x25\x4c\xe8\x62\x85\xff\x29\x89\x3b\xd3\x9d\xbf\x57\xc5\xd3\x22\x49\x94\x34\x5e\xa6\xf4\x53\x45\x0f\x9d\xa6\x0f\x1c\xf5\x53\x52\x36\xf4\xe0\x07\x3e\x0b\xfc\x6e\x15\x37\x9d\xed\xbd\xd5\x26\xd5\xa2\xb6\xbd\xef\xe3\xac\x91\x69\x6b\xd1\xf8\x12\x9e\x87\xb5\xd8\xa2\x86\x56\xef\xbf\x94\x48\xe9\x33\xed\x21\x06\xe7\xf9\xd9\xbd\x3d\x81\x5e\x5e\x9c\xd5\x90\x2d\x32\x18\x9f\x65\xbf\x8b\xc1\x71\x8e\xdd\x86\x7e\x5b\x88\x81\xab\xb4\xa9\x3a\x07\x35\xa1\xa5\x4f\x25\xb5\x6f\xe3\x8b\x9e\xd0\xc5\xe5\xea\xb5\xa4\xd9\xba\x76\x5f\x13\xc4\x70\x61\xe9\x9b\xf5\x1e\x71\x8b\x43\xd6\x59\x12\x9a\xbd\x4c\x21\x06\xab\x1b\x3a\x0b\x18\xdd\xc2\x17\x9e\xb7\x13\x3c\x27\xeb\xb6\x0c\xb7\x2d\xc3\x4e\xbd\xef\x4e\xe3\x3e\x9a\x93\xc6\x2d\x61\x73\xca\x37\x27\x3b\x90\x35\x1f\xf6\x7f\x62\x7e\x83\x15\x1d\x69\xdf\x4d\xef\x8f\xb5\xc6\xad\x51\x93\xb4\x37\x8a\x93\x2b\xa4\x21\x6d\x3f\x50\xa6\x34\x8d\x9b\xed\x8f\x60\x2e\x87\xc4\x97\xee\xff\xe5\x72\x7c\x39\x7c\x7e\x07\x53\xfa\xd7\x77\x93\xc9\x9d\xc8\xa0\xb4\xf0\xeb\x27\x88\xee\x0f\x1f\xec\xba\x3e\x5c\x10\x89\x56\x3b\x43\x05\xd6\xf5\xde\xd9\xfc\xa3\x1a\x40\x4d\xd0\x18\x21\x73\x40\x09\x6b\x63\xb5\x92\xf9\x46\x35\x96\xa3\x25\xbe\xf6\x06\x00\xfa\x3a\xed\xc2\xef\x25\xa1\xa1\xef\x2f\x95\x63\xdf\x4e\x29\x67\xd3\xd4\xb9\x6e\x6f\xa8\xbd\x6a\xf4\xa1\xbc\x5d\x26\xb0\x0a\x44\x55\x6b\xb5\x1d\x62\xf4\xad\x26\x2d\x48\xa6\xe4\x1e\xaf\x95\x77\x77\x24\xb9\xc8\xee\x27\x93\xfe\x68\x23\x80\xd1\xff\x01\x00\x00\xff\xff\xb4\xda\xef\x5b\x9c\x06\x00\x00")
|
|
|
|
|
|
|
|
func bindataDistIncludesFooterHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesFooterHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/includes/footer.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesFooterHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesFooterHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/footer.html",
|
2019-04-07 17:04:02 +02:00
|
|
|
size: 1692,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesGaHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x92\x31\x6f\xdb\x30\x14\x84\xf7\xfe\x8a\xab\x17\x52\x05\x4b\xb7\x73\xa2\x02\x09\x5a\x64\x08\x90\x2e\xdd\x0c\x0f\xaf\xf4\x33\xc3\xc0\x22\x15\x92\x8e\x20\x38\xfa\xef\x05\x25\x25\x91\xaa\x85\xd0\xdd\xa7\x3b\xbc\x27\x02\xc0\x75\x32\xd1\xb5\xf9\xc7\x27\x8c\xcf\x0b\x45\x58\xba\xe7\x1e\x35\x36\x97\x8b\xbe\xbb\xb9\xe7\x7e\x18\x36\x57\xb3\xef\x8e\x90\x93\xff\xb9\xc6\x66\x53\xe1\x32\x1b\x80\x3c\x9e\xbd\xc9\x2e\x78\xe9\x14\x92\x42\x50\xb0\x0a\x51\x81\x14\x9a\x25\x08\xb8\x9d\xb8\x0b\xc1\x9e\xf8\xc6\xd3\xa9\xcf\xce\xa4\xdf\x7f\x9f\xd8\x64\xb1\x47\x8d\x78\xb5\x22\x63\xd1\xc6\xe3\xf5\x15\xef\x15\xeb\x3c\x40\x16\x42\x3f\xcf\xa8\x7e\x2e\xf0\x6e\x5f\xe9\xf6\x9c\x1e\x25\x45\x7b\x6e\xd8\xe7\x54\x2d\xbe\x19\xd4\x84\x9e\x50\xe3\x3b\xbe\xc0\x73\x87\x9f\x94\x59\x56\xcb\x7e\x42\x8d\xa4\x4d\x64\xca\xfc\xeb\xc4\x25\x45\x86\x4a\xad\xba\x9b\x91\xb1\x9c\x67\x20\xdd\xf6\x7f\xc8\x3e\x50\xc3\x32\x54\xbb\x6f\xfb\x55\x9e\xa6\xd4\x7b\x53\x3a\xd7\x72\x8a\x45\xb4\x4b\xb1\xd1\x2d\x45\xf6\xf9\x21\x1c\x58\x3b\x9f\x38\xe6\x5b\x3e\x86\xc8\x72\xdc\xe8\x3b\x39\x54\xb2\x73\xfe\x10\x3a\x85\x43\x30\xe3\xa4\x0a\x62\xfa\xaf\x42\x41\x6c\xb7\x5d\xd7\x69\x3b\x2e\xfc\x2b\xbd\x6d\x5c\x9b\xd0\x6c\x3f\xde\x9e\x52\x41\x2d\x89\xc5\xf8\x96\xa4\x98\x46\x17\x6a\xba\x15\x0a\x22\x47\xf2\xe9\xc8\x51\xa7\xc7\xff\xd9\xc4\xfe\x50\x52\x5a\xb2\xfc\xe2\xb8\xfb\xf0\x87\xf1\xbc\xde\xbe\x5d\xb6\x7f\x01\x00\x00\xff\xff\x9b\x36\xfc\x70\x7a\x02\x00\x00")
|
|
|
|
|
|
|
|
func bindataDistIncludesGaHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesGaHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/includes/ga.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesGaHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesGaHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/ga.html",
|
|
|
|
size: 634,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesHeadHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6e\xd4\x30\x10\x86\xef\x7d\x8a\xc1\x97\x1c\xba\x4e\x52\xb8\x20\x14\x2f\x42\x50\x09\x0e\x48\x95\x2a\x24\xae\xc6\x9e\x24\x03\xb6\x27\xd8\xb3\x29\xa1\xea\xbb\xa3\x26\xac\x88\xc4\x05\x7a\xb3\xfd\x7b\xbe\xef\x97\xec\x6e\x44\xeb\x8f\x17\x00\x00\x5d\x44\xb1\xe0\x46\x9b\x0b\x8a\x51\x27\xe9\xf5\x4b\xb5\x8f\x46\x91\x49\xe3\xf7\x13\xcd\x46\x7d\xd6\x9f\xde\xe8\xb7\x1c\x27\x2b\xf4\x25\xa0\x02\xc7\x49\x30\x89\x51\x1f\xae\x0d\xfa\x01\xcf\x93\x42\x12\xf0\x78\x7f\x5f\xbf\xe7\x22\xc9\x46\x7c\x78\x00\x0d\xd7\xb6\x2c\x60\x93\x87\xde\x16\x81\x9e\x02\x42\x19\x6d\xa6\x34\x40\x9f\x39\x82\x8c\x08\x8e\x63\xb4\xc9\xeb\x40\x09\xeb\xae\xd9\x40\xbb\x3a\x8f\x30\xa3\x3c\x16\x97\x69\x12\xe2\xb4\x2b\xf1\xdf\x7c\xf5\x37\x79\x26\xbc\x9b\x38\xcb\x0e\x7b\x47\x5e\x46\xe3\x71\x26\x87\x7a\xdd\x1c\x80\x12\x09\xd9\xa0\x8b\xb3\x01\xcd\x55\xdd\x9e\x51\xcf\xb4\x86\x9b\x60\x1d\x42\x6f\x67\x72\x9c\x6a\x72\xbc\x96\xb2\xd3\x14\x50\x0b\x9f\xdc\xa8\xd7\x60\x4a\x03\x50\x5a\x5b\x65\x66\x01\x4f\x19\x9d\x70\x5e\x40\xeb\xdf\xb4\x40\xe9\x1b\x64\x0c\x46\x15\x59\x02\x96\x11\x51\x14\x8c\x19\xfb\xf3\x49\x13\x2d\xa5\xda\x95\xa2\xf6\x23\xeb\x8d\xaa\x69\x7a\x4e\x52\xea\x81\x79\x08\x68\x27\x2a\xb5\xe3\xd8\xb8\x52\x5e\xf7\x36\x52\x58\xcc\x2d\x9f\xb2\xc3\xcb\x5b\x9b\xca\xe5\x4d\xe6\x57\x57\x6d\x7b\x78\xde\xb6\x87\x17\x6d\x5b\xad\xde\xea\x8f\xb7\x02\x59\x26\x34\x95\xe0\x0f\x79\x64\x54\x4f\x11\xbe\xcb\x4c\x7e\xf3\x7d\xe4\xc4\xff\x2c\xd9\x9e\x1b\x4a\x76\x46\x6d\xeb\xd2\xcc\x98\x3c\xe7\x26\xb2\xc7\x9c\xe8\x67\xae\xbf\x16\x75\xec\x9a\x2d\x3e\x5e\x74\xcd\xf6\xcb\x7f\x05\x00\x00\xff\xff\xce\x0c\x9d\x41\xed\x02\x00\x00")
|
|
|
|
|
|
|
|
func bindataDistIncludesHeadHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesHeadHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/includes/head.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesHeadHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesHeadHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/head.html",
|
2019-03-30 12:35:24 +01:00
|
|
|
size: 749,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesJsHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x50\x50\x50\xb0\x29\x4e\x2e\xca\x2c\x28\x51\x28\x2e\x4a\xb6\x55\xd2\xd3\x87\xf0\x8a\xf5\x73\x13\x33\xf3\xf4\xb2\x8a\x95\xec\x6c\xa0\x42\x76\x5c\x5c\x80\x00\x00\x00\xff\xff\x3c\x53\x9b\x11\x2f\x00\x00\x00")
|
2019-01-19 21:51:15 +01:00
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesJsHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesJsHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/includes/js.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesJsHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesJsHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/js.html",
|
2019-07-16 20:49:12 +02:00
|
|
|
size: 47,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIncludesNavigationHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x91\xc1\x8a\xc3\x20\x10\x86\xef\xfb\x14\x83\x7b\xde\x95\xdc\x13\xcf\xfb\x1a\x83\xce\xd6\x01\xa3\x21\xa3\x69\x21\xe4\xdd\x0b\x31\x2d\x21\x2d\xb4\xd4\xd3\xaf\x9f\xf3\xfd\x87\x01\x00\x68\x1d\x4f\xc0\xae\x53\x11\x27\x3e\x61\xe6\x14\x95\xf9\x82\xed\xac\xd4\x06\x14\xe9\xd4\x79\xc4\x61\xa0\x71\x47\xd7\x1f\x08\x7e\xa4\xff\x4e\xe9\x03\x58\xa1\x6f\xcc\x3c\xff\xfe\x25\xc9\x11\x7b\x5a\x96\x56\xfb\xe6\x30\xaf\xf1\xf0\x50\xc2\xad\xd1\xb3\x73\x14\x7f\x2e\xf2\x4c\x1d\xd8\xdc\xbb\xbf\x95\xf1\xa9\xa7\x07\x57\x2d\x08\xfc\x6a\x5c\xb0\x1f\x02\x89\x32\x35\x40\x11\x02\x8b\x42\xf2\xb1\xd1\xa6\x98\xd1\x66\x65\xb6\x00\xe5\x5d\x57\xab\x4b\xd8\x2d\x40\x3b\x9e\xea\xb5\xc6\x6b\x00\x00\x00\xff\xff\x03\x3b\x77\xc3\xb4\x01\x00\x00")
|
2019-01-19 21:51:15 +01:00
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesNavigationHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIncludesNavigationHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/includes/navigation.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIncludesNavigationHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIncludesNavigationHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/includes/navigation.html",
|
2019-03-30 12:35:24 +01:00
|
|
|
size: 436,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-23 11:17:46 +02:00
|
|
|
var _bindataDistIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x5d\x79\x97\xd3\xb8\xb2\xff\xbf\x3f\x45\xe1\x99\xde\xee\xb4\xed\x24\xdd\x9d\xf4\x96\x06\x86\x65\x60\x06\xe6\x71\x06\x78\xdc\x7b\x18\x86\xa3\xd8\x15\x5b\xb4\x2d\x19\x49\x4e\x3a\xd0\xfd\x3e\xfb\x3b\x92\xec\xc4\xd9\xd3\x0b\xcc\xc0\xe5\x0f\xda\xd1\x52\xaa\x2a\xfd\x54\x55\x5a\x2c\x9f\xdc\x09\x79\xa0\x06\x19\x42\xac\xd2\xe4\x74\xed\xe4\x8e\xeb\xbe\xa5\x5d\x48\x14\x3c\x7d\x04\xad\x77\xa7\x60\xfe\x9d\xe8\x5c\x08\x12\x22\x65\xdb\x61\xdc\xfd\x20\x21\x51\x2e\xc5\x43\xfb\xe7\xc0\xfe\x69\x39\xa7\x70\x72\xe7\x2d\xb2\x90\x76\xdf\xb9\xee\x88\x5a\x95\xd4\x0a\xd4\x16\x90\x39\x58\x85\xcc\xbc\xfa\x91\x2a\x48\xe8\x84\xd3\xb5\xe9\xfa\x8e\x2d\x3b\x56\x79\xed\x24\x46\x12\x9e\xae\x99\x16\x53\x54\x04\x82\x98\x08\x89\xaa\xed\xe4\xaa\xeb\x1e\x38\xd5\xac\x58\xa9\xcc\xc5\x8f\x39\xed\xb5\x9d\x7f\xbb\xaf\xef\xbb\x0f\x78\x9a\x11\x45\x3b\x09\x3a\x10\x70\xa6\x90\xa9\xb6\xf3\xf4\x51\x1b\xc3\x08\xcb\x9a\x8a\xaa\x04\x4f\x3f\x7f\xf6\x9e\x70\xa9\x18\x49\xf1\xf2\x12\x5c\x78\x44\xe4\x00\x08\x0b\xa1\x4b\xa4\x82\x2e\x4d\x10\x64\x4c\x04\x65\x11\x74\x05\x4f\x41\xc5\x08\x01\x4f\x53\xc2\x42\x37\xa1\x0c\xbd\x13\xdf\x12\xaa\xb0\xa3\x89\xb5\x9d\x10\x65\x20\x68\xa6\x28\x67\x15\x26\xae\x4c\xdf\x99\xa6\xdc\xa3\xd8\xcf\xb8\x50\x15\xb2\x7d\x1a\xaa\xb8\x1d\x62\x8f\x06\xe8\x9a\x1f\x3b\x40\x19\x55\x94\x24\xae\x0c\x48\x82\xed\xba\x57\x2b\x49\xdd\x71\x5d\x78\x91\x90\x00\xa1\x4b\x7a\x34\xe0\xcc\xa3\x01\x37\x4c\x91\x2c\x4b\xd0\x55\x3c\x0f\x62\xd7\x64\x64\x2c\x02\xca\x0c\x57\x82\x73\x05\x21\x15\x18\x28\x2e\x06\xa0\x3b\xc9\x50\x4b\x28\x3b\x03\x81\x49\xdb\x91\x6a\x90\xa0\x8c\x11\x95\x03\xb1\xc0\x6e\x99\xe2\xa7\x84\x32\x2f\x90\xd2\xa9\x56\x31\x25\x36\x7d\xbf\xcb\x99\x92\x5e\xc4\x79\x94\x20\xc9\xa8\xf4\x02\x9e\xfa\x81\x94\x77\xbb\x24\xa5\xc9\xa0\xfd\x92\xe7\x22\xc0\x9f\x5e\x12\x26\x7f\x7a\x21\xf8\x51\xbd\x56\xdb\x69\xd4\x6a\x3b\xbb\xb5\xda\xa6\x69\x77\x73\xd4\xee\x26\xe8\x41\xd5\xde\x54\x78\xae\x34\x8d\xcd\xeb\x34\xf8\x50\x70\x1a\xda\xf6\x9e\x73\xc6\x57\x6e\xc4\x76\x37\x48\x11\xb4\x1d\xfb\x2c\xfd\x1e\xb2\x90\x0b\x3f\xe5\x21\x0a\x46\x3f\x09\x4f\xa3\xfd\xc4\xb7\xd9\xa7\x6b\x27\xbe\x45\xf9\xda\xda\xda\x49\x87\x87\x03\x8d\xfb\x32\x4f\xd3\xec\x11\x01\x11\xf9\x0d\x07\xd0\x06\xe7\xf3\x67\xef\x97\xfb\xbf\xe1\xe0\xf2\xd2\x39\x36\xb9\xb4\x0b\x5b\x36\xf7\x4e\x1b\x1c\x67\x1b\x3e\xaf\x95\x83\x74\xab\x9b\xb3\x40\x43\x0f\xb6\xe8\x0e\xc8\x1d\xe0\x3b\x10\xed\x80\xd8\x01\xb2\x03\x69\xb5\xa4\x21\xf4\x76\xf3\x17\xa3\x8e\xfb\x8c\x24\x03\x45\x03\xf9\x3f\x9d\x0f\x18\xa8\xcd\x77\xd0\x06\x71\x3c\x51\x56\xe8\x54\xf3\xe7\xe2\x02\x46\xed\x4c\x12\x35\x6c\xe8\x62\xde\xc7\xa2\xbc\xf7\x51\xd7\x78\xfb\x6e\xdb\xcb\x72\x19\x6f\x11\x11\xe5\x29\x32\x25\xb7\xc7\xea\x5d\xee\xd8\xc2\x09\xb4\xa1\x0e\xff\x02\x86\x7d\x78\x48\x14\x6e\x6d\x8f\x33\x42\xa0\x0d\xd2\x0b\x04\x12\x85\x8f\x12\xd4\x94\xb6\xf8\xf6\xce\x14\x0f\xfa\x5f\x6a\xca\x46\xa8\x8a\x82\xf2\xe7\xc1\x2b\x12\xfd\x4e\x52\xdc\xe2\xdb\x6f\x6b\xef\x26\x28\x7b\x44\x0e\x58\xa0\xdb\x9f\xcc\x90\x42\x27\x47\xe3\xc9\xa9\x97\x11\x81\x4c\xfd\xce\x43\xf4\x28\x93\x28\xd4\xcf\xd8\xe5\x02\xb7\x8c\xb2\x87\x65\x2f\xb7\xb7\xfa\x94\x85\xbc\xbf\x03\x21\x0f\x8c\xec\x3b\xb0\x69\xfb\x7b\x73\x07\x36\x7d\xbf\xdf\xef\x17\xc0\x74\x49\xd9\x15\x06\x9e\xa3\x5f\x1f\xa4\x2e\x1a\x91\xcd\x8a\x3a\x22\xb2\xb5\x69\x15\xb1\xb9\x63\xf1\xb2\x03\x9b\x4a\x10\x26\xbb\x28\x3c\x19\x4f\x96\x95\xc8\x42\x4d\x25\x23\x11\x6a\x63\x52\xe6\x5f\xae\x8d\xa0\x69\x31\x1d\xd2\x1e\xd0\xb0\xed\x30\xd2\xa3\x11\x31\xb6\xec\x74\x48\xca\xe4\x16\x86\xbc\x2f\x48\x96\xa1\xa8\xe4\x9a\x12\xa4\x30\x04\xfe\x44\x86\xc9\x8c\xeb\xe3\xe6\xf7\xc4\x8f\xeb\x13\xf5\x7d\x32\x91\x90\x0f\x5d\x47\x4c\xc3\x10\x99\x7b\x2e\x67\x91\x4e\xe8\xe9\xb0\xed\x1f\x9c\xd3\x98\xa7\x38\x45\xcb\x36\x90\xd0\x65\xd5\x25\x49\xb3\x04\xa5\x73\x6a\x1f\x20\x97\x08\x01\x91\x28\xaf\x4d\x51\x9b\x6d\x12\x28\xe7\xb4\x78\x80\x7c\x55\x5a\x27\x7e\x9e\x54\x3a\xc0\x0f\x69\xaf\xb0\x3e\xf6\x71\xed\x44\xa2\x1d\x8f\xba\xd7\xb4\xd8\xa5\xcd\x5d\xd8\x57\x27\x71\xa3\xcc\xd4\x98\x70\x8d\x4b\x9b\xd0\xab\xf1\x5c\x0b\x1d\x16\x68\x87\x75\xe2\xc7\x8d\xd9\x10\x11\xbc\x0f\x84\xd1\x94\x28\xd4\xee\x2f\xc4\xa7\xec\x21\xef\xb
|
2021-07-17 10:12:59 +02:00
|
|
|
|
|
|
|
func bindataDistIndexHtmlBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIndexHtml,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/index.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIndexHtml() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIndexHtmlBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/index.html",
|
2021-07-23 11:17:46 +02:00
|
|
|
size: 26914,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistIndexTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x61\x8f\xdc\x34\x14\xfc\xee\x5f\x31\xe4\x56\xd7\x3b\xa9\xce\x72\x87\xe0\xc3\xa6\x7b\x52\x45\x2b\x90\x90\x2a\x24\x7a\x80\x74\xad\x90\xe3\xbc\x24\x66\x13\x3b\x67\x3b\x57\xf6\x36\xfb\xdf\x91\x93\x4d\x96\x46\x7b\xa0\x02\xfd\x66\xd9\xcf\x33\xf3\x3c\xf3\xbc\xdb\xc5\xdf\x1b\xe7\xb5\xa8\x69\xbf\x5f\xe1\xb5\x70\x5b\xe4\xaa\x22\xb8\x52\x58\xa5\x0b\xe4\xd6\xd4\xf0\x25\x41\x9a\xba\x16\x3a\x43\xa5\x34\x81\xad\xd7\x6b\x56\x8b\x8c\xf0\x41\xf9\x12\x2f\xbe\x42\xba\xc5\xab\xd6\xcb\xf2\x5b\x93\x91\x75\x60\xec\xb6\xa9\x8c\xc8\x56\x6c\x01\xd9\xda\x0a\x9c\xb7\xfd\x06\xef\xd1\xe3\x65\x49\x55\x65\x62\xff\x87\xc7\x6e\x17\xff\x42\xe9\xcb\x2c\xb3\xe4\xdc\x7e\x3f\x1d\x30\xf6\x5a\x4b\xbb\x6d\xfc\xc0\x51\x34\x05\xce\xd1\x1e\x51\x85\xc7\xd2\xd7\xcd\x11\xa9\x0b\x25\x5c\x48\x70\xc3\xbb\x81\xf4\x57\xfc\x78\xfb\x76\xc6\x1d\xf1\x68\xce\xe9\xc9\xf9\x81\xf2\x95\xf9\xa0\x43\x29\xce\x91\xd1\xc7\xec\x53\x2b\xb3\xcb\xbb\x5d\xfc\x93\xa8\x9b\x8a\xde\x9a\x0d\xe9\xfd\x7e\x39\xa2\x0d\x7a\x0c\xc7\xcd\x4c\xe8\xac\x33\xd3\x90\x76\xae\xfa\xa7\xee\xc6\x32\x41\x8e\x5f\x7f\xfd\x0d\x97\xa9\x04\x6f\xd2\x4d\x96\x5f\x83\xd3\xff\xdd\xf0\x81\xed\xd3\x9b\xfe\x5b\x99\xd9\x89\xb7\xf8\xce\x52\x83\xc6\xb4\x3a\x1b\xc2\xe6\xb6\xae\x32\x05\x42\xd6\xbc\x15\xda\xe5\x64\x59\xff\x1c\x0f\xc2\x2e\x2b\x53\x2c\x87\x82\xae\x98\xee\x75\x27\x12\xc6\xe7\x8a\xfb\xca\xb8\x32\x05\x63\xb7\x2e\x24\xfb\x07\xda\xa6\xc2\xd1\x8a\x9d\x41\xd5\x8d\xb1\x1e\x1b\xda\xba\x41\xc3\x66\x38\x63\x8b\x71\x15\xa4\xc8\x0d\xee\x7c\x49\xf5\x7b\xc6\xce\x40\x07\x07\x73\x63\x61\x49\xaa\x46\x91\xf6\xee\xe0\x9c\x33\x35\xa5\x42\x6e\xda\x26\x68\x89\xbd\xb0\x71\xf1\x88\x6e\x02\x1b\x2f\x0f\x70\xe8\x4e\x8d\xc8\x33\xfe\xec\x69\xd7\xce\x46\xb3\x3e\xc9\x9e\x3a\x43\x37\x4a\x18\xef\x1f\xe6\x14\xde\xe0\x67\x65\x5b\xe7\x8d\x17\x47\xd7\x4f\xe6\x49\x97\x45\x5a\x96\xbf\x3f\xa5\x6e\xf9\x30\xe1\x30\xd6\x63\x3a\x29\xf4\x7f\x83\x0c\x08\x8c\xbd\xcc\x32\xb8\x90\x1c\xe4\xad\x96\x5e\x19\x1d\x64\xc7\xa9\x70\xa5\x95\x30\x16\xf1\xe3\xb8\x52\xde\x81\xee\x5b\xf5\x20\x2a\xd2\x7e\xd5\xff\x57\x63\x9a\x2e\x2e\x77\x50\x39\xee\xb0\x38\x03\xa7\x7b\x7c\x89\xf7\x89\x2f\x49\x83\x64\x69\x10\xbd\x31\x10\xb6\x68\xeb\xe0\x27\x5c\x43\x52\xe5\x8a\xb2\xf8\x9d\xbe\x75\xa2\xa0\xd5\x3b\x8d\x29\x97\x78\x11\xd4\x77\x99\xb2\x24\xbd\xb1\xdb\x9b\x70\x18\xc7\x31\xba\x59\xc9\x6f\xe1\x83\xbd\x89\x6e\xce\xaf\x13\x4b\xbe\xb5\x1a\x57\x49\xae\x12\x95\xc3\xfb\x2d\xb8\x1b\xf8\x43\xe5\x3a\x5a\x5c\x45\xc9\x74\x67\xbd\xb8\x08\x76\x85\x25\xa2\x45\xd8\x8e\x2e\x93\x5e\xfc\x17\xe0\xd3\xd6\xc7\x0d\xf4\x7b\x2b\xbc\x31\x70\xad\x2c\x87\xef\xdc\x58\x4c\x2a\x4f\xc9\xb8\x0b\xb3\x39\x43\x3b\x8a\x18\x0e\xfa\x75\xfc\xa8\x9a\x08\xcf\x93\x0b\x39\xd5\x9f\x9f\x3f\xaa\x06\xdc\x82\xdf\x83\x23\xbe\x1c\xc7\xb1\xb1\xa6\x08\x3e\xf2\x54\xd8\x13\x5f\x52\x34\x33\xfb\xc8\x11\x75\x9e\x08\xcb\x8c\x1e\x96\xba\xad\xaa\xe7\x09\x55\x8e\xfa\xc1\x3a\x30\xfe\x4b\x86\xe5\x93\x14\xe1\x15\x7a\x92\xbf\x3c\xfc\x55\xf2\x39\x58\xf6\x7d\x14\x17\xc7\x7c\x4c\x43\xfd\x67\x00\x00\x00\xff\xff\x4a\x4c\xc4\x41\x8b\x07\x00\x00")
|
|
|
|
|
|
|
|
func bindataDistIndexTxtBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistIndexTxt,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/index.txt",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistIndexTxt() (*asset, error) {
|
|
|
|
bytes, err := bindataDistIndexTxtBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/index.txt",
|
2021-07-17 10:12:59 +02:00
|
|
|
size: 1931,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-17 10:12:59 +02:00
|
|
|
modTime: time.Unix(1626508212, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistRobotsTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\x2d\x4e\x2d\xd2\x4d\x4c\x4f\xcd\x2b\xb1\x52\xd0\xe2\xe2\x72\xcc\xc9\xc9\x2f\xb7\x52\xd0\x57\xe1\x72\xc9\x2c\x4e\x84\x72\xb8\xb8\x00\x01\x00\x00\xff\xff\x2f\x22\x59\x2e\x26\x00\x00\x00")
|
2019-01-19 21:51:15 +01:00
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistRobotsTxtBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistRobotsTxt,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/robots.txt",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistRobotsTxt() (*asset, error) {
|
|
|
|
bytes, err := bindataDistRobotsTxtBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/robots.txt",
|
|
|
|
size: 38,
|
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-01-30 19:08:35 +01:00
|
|
|
modTime: time.Unix(1612028957, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-23 11:45:06 +02:00
|
|
|
var _bindataDistScriptsMainJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\x8b\x76\xe3\xb6\xd5\x30\xfa\x2a\x26\x3b\x65\x80\x11\x44\x4b\x33\x49\xfe\x3f\x94\x11\xad\x89\x27\x69\xa6\xb9\x36\xe3\x24\x6d\x28\x8e\x17\x2d\x41\x36\x33\x14\xa8\x90\xa0\x2f\x31\xd9\x37\x3b\xeb\x3c\xd2\x79\x85\xb3\xb0\x71\x21\x48\x51\x4e\xda\xef\xff\xdb\x95\x31\x05\x82\xb8\x6e\xec\xbd\xb1\xaf\xde\xb6\xe6\x6b\x91\x15\x1c\x31\x22\xf0\xa3\x5f\x57\xec\xa4\x12\x65\xb6\x16\xfe\xc2\x2f\xae\x7e\x65\x6b\xe1\x53\x2a\x1e\xf6\xac\xd8\x9e\xec\x8a\x4d\x9d\xb3\x20\x38\xf2\x22\x64\xf7\xfb\xa2\x14\xd5\xb2\xff\x93\xb2\x70\x53\xac\xeb\x1d\xe3\x62\x29\x10\x23\xde\x0c\x47\x5d\xaf\xf8\x31\xdb\x22\xaf\xab\x82\xc5\x4d\x59\xdc\x9d\x70\x76\x77\xf2\x79\x59\x16\x25\xf2\x7f\xfd\x47\xcd\xca\x87\x93\x92\xfd\x56\x67\x25\xab\x4e\xd2\x93\xbb\x8c\x6f\x8a\xbb\x93\xbb\x4c\xdc\x9c\xa4\x27\xe6\x4b\x1f\x2f\x4a\x26\xea\x92\x9f\x08\xc4\x70\x1b\xc1\xbf\xc8\xaf\xf9\x86\x6d\x33\xce\x36\xbe\x67\x86\xab\xbe\x5f\xaa\x3f\x91\xb8\xc9\x2a\x62\x07\x74\x41\xd8\x60\x19\x6e\xd3\xf2\x44\xd0\x38\x21\x25\xfd\x0e\xe6\x1d\x5e\x33\xf1\x7d\x59\x88\x42\x36\xf7\xdd\x96\x54\x54\x84\x55\x9e\xad\x19\xb9\xa6\x22\xdc\xe6\xa9\x58\xba\xf3\x33\x83\x82\x37\xe1\x3a\xcd\x73\x18\xde\x68\x95\x75\xc1\xd7\xa9\x08\xd3\xfd\x3e\x7f\x40\x71\x42\x18\x6e\x49\x4d\x45\xb8\xaf\xab\x1b\x52\x50\x11\x66\x7c\xc3\xee\xbf\xdb\x12\x4e\x1f\x5b\x92\x51\x1e\x8a\xe2\xad\x28\x33\x7e\x4d\x76\x94\x87\x37\x69\xf5\xdd\x1d\xff\xbe\x2c\xf6\xac\x14\x0f\x24\xa5\xbb\xee\xfd\x9a\xa6\xaa\x73\x35\x09\x4c\x6e\x65\x13\x0f\xf4\x70\x1c\xbe\x29\xea\x36\x58\x6e\x3a\xaf\x77\x57\xac\xec\x56\x91\x85\xbc\xd8\xb0\x8b\x87\x3d\x6b\xc9\xd5\x48\x33\x27\xbc\xce\x73\x8f\xb2\x20\x60\x94\x52\x16\xaa\xe5\x6e\xc9\x39\xbd\xb0\xbb\x4d\x72\xfa\x28\x9b\x8b\xbc\x19\xa9\xca\xb5\xfc\xc3\x0b\xbe\x66\xea\xe1\x1b\x80\xa3\xc8\x9b\xb5\x0b\xd3\xfc\xc9\xbd\x04\x54\xc2\xf1\xa3\xdc\x96\x92\x14\x24\xa3\x88\x53\xde\x34\xe7\x38\x5c\x97\x2c\x15\xec\xf3\x9c\xc9\xa6\x91\x5f\xad\xcb\x6c\x2f\xc1\x22\xdb\xa2\x2c\x14\xec\x5e\x50\x09\xe4\xdb\xa2\x44\xe5\x49\xc6\x4f\x72\x8c\x0a\x2a\xe2\x32\x69\x1a\xd8\xd3\x57\x42\x94\xd9\x55\x2d\x58\x10\xf4\x7f\xa3\x12\xe3\x20\xc8\xc2\xaa\x57\x46\x0a\xbc\xe0\xe1\x0d\x4b\x37\x72\xbf\x18\xdf\x9c\xdf\x64\xf9\x06\x65\x38\xdc\xa7\x25\xe3\xe2\xdb\x62\xc3\xc2\x92\xed\x8a\x5b\x66\xde\xb4\x76\x1a\x77\x83\x75\xa2\x94\x2d\xd9\xc4\xf7\xa3\x83\xb3\xc5\x9a\x66\x6c\x43\x96\x3c\xce\x0c\x30\x25\x4d\x63\x3e\x8b\xcc\xfb\x56\xae\xcf\x9e\xfa\x2f\xc3\x8f\xc2\xb9\x4f\x2e\x69\xff\xa0\x9b\xae\xd9\xdd\xc9\x65\xb8\xe5\x61\xc6\x33\x01\x6f\x9c\xa5\xde\xc8\x31\x2a\xe8\xf7\x3c\x09\x01\x39\xe3\xd7\xe2\xc6\xcf\xb8\x84\x07\x16\xaa\x9f\x84\x53\x39\x19\x7d\xf6\xbc\x07\xc4\x70\x10\x78\x57\xf0\x07\xf9\x69\x59\xa6\x0f\x3e\xa5\x72\x87\x66\x94\x52\xd1\x34\x06\x90\xec\x5c\x44\x10\xcc\xce\x44\x10\x88\xe9\x5c\x6e\x0b\xc3\xad\x1c\x12\xbd\x0c\xf7\xe6\x90\xd1\xc7\x5f\x7f\x93\x48\x20\xda\x93\x75\xc1\x2b\x51\xd6\x6b\x51\x94\xd1\x25\x51\x43\x88\x66\x44\x14\xaf\x64\x4f\xdd\xa9\xb2\x53\xac\xd4\x2a\xc9\x53\x8e\x5b\x72\xcd\xc4\xd8\xc9\x33\x5b\xe0\x56\x8e\xd8\xd9\x6c\x29\x9f\x62\x36\x91\x7f\xf4\x7c\x93\x48\x95\x25\x2d\x91\xa7\xf2\xad\x48\xd7\xef\x7b\x4d\xaa\x15\xbb\x0c\x77\xac\xbc\x66\xd0\x54\xe8\x0c\x1a\x61\xc2\x3a\x44\x15\xee\x4b\x76\xab\x0e\x24\x05\x3c\x24\x5a\xc2\xd2\xf5\xcd\xd8\x18\x2f\x43\xf9\x06\x1a\x04\xbc\xb0\x4b\xf7\x5d\x35\xde\x21\x11\xd9\xa1\x1d\x19\xba\x0c\x77\xe9\x1e\xf5\x71\x5c\x0f\x02\x34\x10\x11\x21\x1b\xc5\xb8\x25\x80\xca\x46\x16\x72\xd0\x70\xa5\xb1\x14\x34\x9d\x96\xd7\x70\x9e\x2b\xd9\xc0\x36\x2b\x2b\x71\xac\x01\xf6\x1b\x9a\xe1\x96\xe4\xe9\x93\x55\xa6\x73\xdc\x12\x76\xcb\xf8\x1f\x8f\xe3\x32\xbc\x2e\xd9\x13\x33\x44\x62\x32\xc7\x7f\x7d\x01\x53\x2b\x36\x9b\xff\x79\x83\x27\x42\xb7\xc6\x7e\x1b\xd9\x77\x07\x52\x08\xa7\x13\x36\x41\x00\x46\xd1\xac\xdb\xf4\x7e\x77\xb3\x33\xca\x83\x80\x9f\x89\x65\x0c\x80\xc5\x93\x24\x8a\x13\xd9\x3c\x3f\x3e\x58\x0b\x35\x4d\x73\x08\x60\x0a\x30\xa3\x9a\x54\x45\x29\x22\x11\xca\x3f\xa4\xda\xc3\xb6\x8a\x50\x3d\xb4\xe4\x32\x64\xf7\x82\xf1\x0d\x85\xf3\xaf\x9f\x9d\xfe\xe4\x74\x00\xd5\x12\xc0\xb2\x24\xa5\x76\x93\xe3\x59\xd2\x34\x8f\x2d\xa9\xe8\x9c\xd4\x5d\xb1\x99\xf6\x9a\x7a\xf3\x8
|
2021-07-17 10:12:59 +02:00
|
|
|
|
|
|
|
func bindataDistScriptsMainJsBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistScriptsMainJs,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/scripts/main.js",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistScriptsMainJs() (*asset, error) {
|
|
|
|
bytes, err := bindataDistScriptsMainJsBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/scripts/main.js",
|
2021-07-23 11:45:06 +02:00
|
|
|
size: 146169,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033322, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistScriptsVendorModernizrJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5a\xff\x73\xdb\x36\xb2\xff\x57\x28\x24\x27\x03\x27\x98\x92\xe3\xe4\xee\x95\x0a\xea\x6b\x9d\xf4\xda\x99\x3a\xcd\xc4\x69\xfb\x83\xea\xdc\x40\xe4\x4a\x44\x4c\x02\x2c\x00\x4a\x76\x4c\xbe\xbf\xfd\x0d\xc0\x2f\xa2\x64\xb9\x2f\x6f\xe6\xfd\x62\x83\xd8\xc5\x2e\xb0\xd8\x5d\x7c\x16\xd0\x56\xc8\x44\x6d\xc3\x2b\x95\x80\x96\xe2\x8b\x66\xab\x52\xc6\x56\x28\x89\x35\x4d\xa8\x20\x0f\x1b\xae\x03\xa0\x8a\x72\x1a\xb3\x87\x9a\xae\x58\x12\x26\x2a\x2e\x73\x90\xf6\x6d\x06\xee\x1f\xcd\x19\xca\xbb\xf1\x88\x5a\x96\x84\xb1\x06\x6e\xa1\xa5\xe3\x9c\x50\xc3\x6c\x68\xec\x7d\x06\xb4\x7c\x44\x46\x42\x16\xa5\x45\x84\x66\x0c\x45\x04\x51\xc9\x1e\xea\xd0\xaa\x6b\xab\x85\x5c\xd3\x82\xa1\xe0\x74\x0b\xcb\x5b\x61\x4f\x83\xd3\x5c\x7d\x39\x0d\x4e\x95\x6b\x99\xd3\x00\x85\xa6\xc8\x84\xc5\x28\x40\x84\xa6\x0c\xfd\xee\xd9\x82\x2b\xf5\x25\xf8\x25\xc8\x0d\xa2\x6b\x96\x0e\x59\x36\x2c\x0d\xad\xfa\x59\x6d\x41\x5f\x72\x03\x98\x0c\x89\xf7\x0c\xa5\xd6\x16\xd1\x74\xba\xdd\x6e\xc3\xed\x79\xa8\xf4\x7a\xfa\x62\x36\x9b\x4d\xcd\x66\x8d\xe8\xd2\xad\xfe\xad\xfb\x73\xe7\xfe\x6c\xd9\xe2\x86\x5e\xb3\x6d\x68\x32\x11\x03\xbd\xdc\xd9\x0d\xa8\xa5\x92\xea\xc6\x72\xce\x6e\x82\xc6\xd4\x3c\x5e\x75\x22\x36\x88\x78\x73\x2c\x55\x72\x4f\x33\x56\x56\xd5\x23\x26\x47\x42\x64\x2e\x56\xb8\xe0\xda\xc0\x4f\xd2\x62\x49\xcf\x66\x84\xac\x94\xc6\x73\x79\x7a\x3a\x27\x58\x3c\x21\x9b\x84\x22\x61\xfa\x42\x2f\xe4\x4d\x94\x4f\xb0\x9c\x9c\x11\x6a\x42\x5e\x14\x20\x93\xcb\x54\x64\x09\x16\x64\xae\xc1\x96\x5a\x06\x8a\x2d\xd0\xf8\xd9\xd9\x3f\xcf\xe7\x88\x9e\xbc\xf6\x3b\x15\x88\x84\x21\x73\x42\x73\x7a\x82\xbe\x3d\xa1\x40\xd1\xeb\xa9\x27\x7c\x8b\x6e\xc2\xcf\x4a\x48\x8c\x90\x13\x28\x12\x96\x53\x5c\x5e\x98\x28\x23\xa1\x90\x12\xf4\x8f\x1f\xaf\x7e\x9e\x30\x45\xb3\x3d\x65\x86\xd0\xb2\xaa\x70\xd6\xf8\x41\xb8\xe4\xf1\xed\x5a\xab\x52\x26\x0c\x21\xda\xf5\xaa\x0d\xe8\x55\xa6\xb6\x0c\xa5\x22\x49\x40\x22\x1a\xb3\xd5\x01\x8d\x1e\x76\xec\x98\x57\x7b\x1a\x33\x42\x28\x67\x16\x1b\x0a\x84\x96\x17\x26\x2c\xb8\x06\x69\xdf\xa9\x04\x42\x0d\xb9\xda\x40\x37\xb3\x08\x67\x4f\x11\x33\xf2\x58\x5f\x4c\xe8\x68\xc4\x6b\x7a\xcb\x30\x67\x0f\x06\x32\x88\x6d\xd4\xba\x31\x8d\x53\x2e\xd7\xd0\x7f\x9a\x72\x99\x0b\x1b\xa1\x95\xd2\x39\xa2\x1a\x0c\xf4\x1f\xa0\xb5\xd2\x11\x12\xf9\x1a\xd1\x4c\xf1\xa4\x6d\xf2\xa5\xd2\xb6\x69\xd7\x74\xe8\x56\xe4\xc1\x32\xfb\xd8\x49\xf8\x02\x6e\xaa\xaa\xd9\xf3\xb9\x73\x3a\xc9\x30\x30\xa4\x24\x9a\x00\x11\x32\xb0\xdd\x26\xcb\xaa\xc2\x36\x34\x60\xbf\xb3\x56\x8b\x65\x69\xc1\x75\x3c\xe5\x3d\x74\x9f\x75\x3c\xb6\xad\x5d\x06\x5d\x07\xe2\x30\x50\xe7\x13\x92\x5d\x61\xbb\x80\x1b\x8a\xba\xd9\x23\x42\xbb\xae\x52\x26\xb0\x12\x12\x12\x44\x9c\xf6\x05\xdc\x30\xe1\x74\x1d\xc8\xc6\x40\xdc\x14\x98\x2c\xb3\x8c\xca\x9a\xd0\x8f\x2e\x2b\xa4\xdc\xfc\xb2\x95\xef\xb5\x2a\x40\xdb\xfb\x79\x27\x3e\x78\x87\x81\x3c\x98\x30\x36\xe6\x23\xdc\x59\x06\x75\x4f\xb9\x6a\x0c\xd7\x5a\xc0\xde\x17\xa0\x56\x01\x30\xc6\xec\x8e\xe7\xfd\x90\x67\x34\xfa\x6f\x8c\x9c\xe5\x42\x21\x13\xb8\xfb\x65\x85\x2d\xd9\xb1\x7e\x6e\x58\x5d\xf4\x79\x4b\x07\x42\x06\xd0\x84\xba\x66\xb0\x90\x37\x2e\x54\x47\xef\xb1\xa6\xe8\x14\x91\xf1\xd8\x2c\xf4\xcd\x88\x31\x41\x1a\xe1\xa8\x58\xdd\xa1\x91\xdb\x44\x5d\xb7\xea\xce\x76\xc2\x9f\x37\xb9\xa3\x17\x17\xc6\x29\xd7\xdf\x59\x3c\x23\xa1\x55\xbf\x16\x45\x97\xb5\x26\xd0\x64\x1d\x7c\x46\xa8\x62\x18\x26\x28\x40\x93\x75\x13\x93\xda\x7d\x90\x89\x1e\xa6\xb6\x6e\xff\xaf\xb0\xa5\xc8\xf8\xb4\xea\x8c\xef\x3f\x07\xdb\x71\xf1\x19\x2b\x6a\x49\xb4\x9f\xc9\x76\x8b\xd5\x83\xc5\x2a\x66\x17\xb0\xd0\x37\x7e\xbd\x6a\xb0\xc2\xd1\x19\x63\x4c\x5e\x38\x5a\x74\x85\xd5\xd0\x05\x2e\x54\xb8\x14\x32\xc1\xb2\xaa\x2c\x89\xd4\xce\x00\xb8\x5f\xc4\xe6\xe9\x45\xf8\xb9\xd4\xdd\x5c\xde\xb8\xb9\x28\x76\x85\x3f\x1e\x78\xd4\x15\xfe\x18\xc6\x3c\xcb\xf6\x57\xb6\x1f\x45\x9d\x33\xf8\xf5\x8c\xc7\x57\x18\xc2\x58\x49\x63\x75\x19\x5b\xa5\xc3\x42\x2b\xab\x9c\xa7\x2c\xec\xbe\xbf\xd6\xd1\x51\x39\x8d\x42\xdf\x55\xd3\x1f\x5a\x8e\x9d\x14\xbf\xe8\xaa\xc2\x4f\x50\x06\x07\x6e\x6f\xda\x54\x18\x67\xd7\x9d\xed\x46\xac\xf5\x5c\x45\x6c\xaa\xd5\x36\x90\xb0\x0d\x3e\xde\x17\xf0\xd6\xa5\x10\x1f\xf4\x9c\x5d\x37\xf3\xe0\x7a\xed\x4f\x67\x43
|
|
|
|
|
|
|
|
func bindataDistScriptsVendorModernizrJsBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistScriptsVendorModernizrJs,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/scripts/vendor/modernizr.js",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistScriptsVendorModernizrJs() (*asset, error) {
|
|
|
|
bytes, err := bindataDistScriptsVendorModernizrJsBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/scripts/vendor/modernizr.js",
|
2019-07-16 20:49:12 +02:00
|
|
|
size: 10785,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033322, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
var _bindataDistScriptsVendorVideoJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\xeb\x76\xdb\xb8\xd2\x30\x08\xdf\x8a\x84\xb7\x5f\x36\xd1\x86\x69\xc9\x76\x1c\x87\x32\xb6\xbe\xc4\x71\x76\xb2\x3b\xa7\x1d\xbb\x0f\xd9\xb2\xda\x1f\x2d\x42\x16\x3a\x14\xa8\x4d\x42\x71\xdc\x12\x7f\xcd\x8f\xf9\xf3\x5c\xc0\xdc\xc0\xac\xb9\xaf\xe7\x4a\x66\xa1\x00\x90\xe0\xc1\x4e\xf6\xe9\x59\xb3\x56\x62\x11\xe7\x02\x50\x28\x54\x01\x55\x85\xfe\x7c\x2d\x66\x92\xa7\xc2\x67\x44\xe2\x0d\x4a\xaf\x7f\x67\x33\x89\x28\x95\x77\x2b\x96\xce\x7b\xec\xcb\x2a\xcd\x64\xee\x79\x68\x2d\x62\x36\xe7\x82\xc5\xa8\x6f\x13\x97\x69\xbc\x4e\xd8\x58\xff\x04\x26\x2b\x95\x3e\x0e\x91\xad\xb6\xaa\x49\x97\xf6\x3c\xfd\x1b\x44\xcb\x78\xac\x3f\x7d\x89\x43\x9f\xd1\xae\x06\x6e\x92\xf4\x3a\x4a\x2e\x16\x3c\x1f\x57\x9f\x21\xdb\x6e\x73\x96\xcc\x71\xf0\x99\xc7\x2c\xfd\x1d\x5a\x2c\x7c\xb9\xe0\x39\x29\x7b\x83\x37\x68\x9d\xb3\x5e\x2e\x33\x3e\x93\x68\xf4\x39\xca\x7a\x31\x45\x8f\x83\xe1\x41\x70\x88\xc8\x3f\xd2\x5a\x57\xce\x5b\x2e\xe2\xf4\x76\xac\x7f\x3a\x73\xe8\x0a\x4c\x3d\x9d\x39\x54\x17\xc6\xea\x4f\xb8\x29\x46\x16\xee\x9e\xf4\x19\xde\x64\x4c\xae\x33\xd1\x63\x9e\xc7\x82\xab\x2b\x96\xbf\x81\x01\xf6\xbc\x77\x30\x39\xc1\x2a\x4b\x65\xaa\x6a\x09\x16\x51\xfe\xee\x56\xbc\xcf\xd2\x15\xcb\xe4\x5d\x30\x8b\x92\xc4\x67\x04\xc5\x6c\x1e\xad\x13\x89\xf0\x98\x05\xe6\x3b\x64\x45\xd9\x06\xd7\x73\x6d\x5b\xf1\x25\xdd\x98\xb9\x0b\x37\x45\x41\xa4\x9d\x49\x5c\x7d\x16\x6a\x00\x05\x39\xeb\x1c\xb7\xfa\x68\x7c\x4e\x79\xdc\x1b\xf4\x29\x65\x63\xf6\xd5\x8e\x93\x8c\x7e\x35\x7f\xbd\xfa\x4d\x31\xea\xca\x14\xa7\xb3\xf5\x92\x09\x39\x16\xd4\x7e\x86\xbe\xa0\xd9\x04\x5d\x5d\xfd\xf9\xf5\xbb\x67\x4f\x5f\x5f\x3d\x7f\x77\xfa\xd3\x9b\xb3\xb7\x17\x57\xa7\x4f\x4f\x5f\x9e\xfd\xff\x0e\xd1\x14\x6f\xb7\x5f\xcd\x43\x37\x05\x1e\xcd\xd3\xcc\x57\x23\x10\x91\x05\x15\x64\x45\x37\xab\x8c\xcd\xf9\x17\x16\x87\xfd\x41\x41\x72\x3a\x99\xa0\x8c\xfd\x7d\xcd\x72\xf9\x62\x9d\x24\xf9\x2c\x63\x4c\x20\x82\xd8\x17\x5e\x8f\x98\x97\x81\xb3\x84\x29\x18\xeb\x71\x22\xba\x4e\x58\x5c\x8b\x9b\x2d\x22\x71\xc3\x6a\x51\x2c\xcb\xd2\xac\x16\x83\xa6\x64\x82\x6e\xd9\xf5\x27\x2e\x3f\x74\x80\xa1\x53\xce\x9a\xc0\xe8\xe8\x17\x1d\x20\xb5\x52\x4a\xc0\x74\x4a\x07\x78\xcd\x04\x0b\xe4\xae\x4e\xd8\x55\x29\xbb\x0e\xb4\xcb\xf4\x0f\x07\xd4\x73\x0b\xd3\x32\xfd\xe3\x34\x12\x33\x96\x34\x63\xab\x70\x05\x66\x3d\xba\x84\x71\x99\xfe\xd1\x01\x60\x2d\xb6\x84\x6e\x99\xfe\xd1\x06\x2d\xef\x1a\xc4\x65\xde\x1a\xc0\x65\xde\x35\x78\xb5\xd8\x12\xa8\x37\xe7\x55\xec\xa9\x85\xc9\x8d\x3c\x2b\x41\xca\x77\xdd\x99\x9d\x92\x94\xe6\x93\xc1\x94\xac\xe9\x60\xb4\x3e\xc9\x83\x84\x89\x1b\xb9\x18\xad\x77\x76\x30\x9f\xfb\xf9\x64\x3d\x9d\x0c\xa7\x5c\xf4\x16\x78\x13\x51\x15\x1c\x5d\x67\x2c\xfa\x54\xf0\xb9\x1f\xe1\x8d\xc5\xdc\x84\x0e\x46\xc9\x49\x64\x4b\x27\x3b\x3b\x78\x35\x49\x27\xc9\x74\x4a\xa3\x49\x32\x1d\xad\x02\x8b\xd2\x34\x9a\x0c\xa6\x7d\x4a\xd3\xc9\x60\x0a\xcb\x7e\x46\x27\x53\x32\xa7\x25\x69\x4d\xc9\xba\x24\x1e\xee\xee\x41\x38\xde\x00\x99\xa0\xeb\x20\x61\x9f\x59\x92\x4f\xe4\x94\x64\x54\xb0\xdb\xde\x07\x76\x73\xf6\x65\xe5\xa3\xdf\x7c\xb4\x23\x76\x10\xfe\x0e\xe1\x11\x9f\xfb\x28\x49\x6f\x90\x5a\xfa\x9e\xc7\x83\xb5\xc8\x17\x7c\x2e\x7d\x16\xc8\xf4\xa7\xd5\x8a\x65\xa7\x51\xce\x7c\xbc\x83\x42\x84\x49\x95\x9c\xea\x88\x19\xde\xcc\x82\xd5\x3a\x5f\xf8\x93\x69\x30\x4b\xc5\x2c\x92\x3e\xc7\x18\x28\x7d\x44\x67\xa6\xa3\xbb\x43\x76\x30\x9a\x05\xf9\x2a\xe1\x33\xe6\x0f\xc8\xe0\x24\x1a\x47\xe1\x00\xab\xd1\x39\x53\xc5\xf2\x34\x61\x1a\xec\x9c\x96\x11\x13\x36\x1d\xe5\xdb\x2d\x8a\xd9\xf5\x5a\xc3\xb7\xdd\xfa\x4e\x7a\xc0\xc5\x3c\xdd\x6e\xab\x70\x92\xde\x60\x92\x7b\x9e\xf0\xbc\x2c\x90\x2c\x57\x54\xdc\xf3\xf2\xc9\xd3\x2c\x8b\xee\x02\x9e\xc3\xaf\xcf\xf1\x18\x45\xab\x55\x72\x87\x42\xa4\x48\x35\x9a\x56\x30\x10\x8e\x8b\xa2\x00\xe8\x97\xd4\xd9\x0d\xec\x98\x92\x8c\x22\xd5\x2a\x22\x11\x75\x36\x39\x3b\xbd\x8c\x46\xd9\x0d\x50\x3d\x8b\x20\x44\xc2\xc0\xeb\x96\x19\x26\x9c\x0e\x46\xfc\x84\x8d\xf8\xce\x0e\x96\x13\x3e\xad\x0a\x4c\xf8\x74\x24\xf4\x54\x90\x8c\x48\x5c\x8c\xcc\xe4\x0a\x3a\xf7\x39\x89\x30\x89\x82\x59\xc6\x22\xc9\x5e\xa7\x37\x37\x2c\xab\xda\xaf\xb6\x2a\xe9\xf3\x1d\x14\xf6\xd0\x0e\xc3\x05\x89\xcc\xf4\xd3\x4d\x94\x24\xa1\x1e\xc5\x6d\x92
|
|
|
|
|
|
|
|
func bindataDistScriptsVendorVideoJsBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistScriptsVendorVideoJs,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/scripts/vendor/video.js",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistScriptsVendorVideoJs() (*asset, error) {
|
|
|
|
bytes, err := bindataDistScriptsVendorVideoJsBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/scripts/vendor/video.js",
|
2021-07-17 10:12:59 +02:00
|
|
|
size: 563925,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033325, 0),
|
2019-01-19 21:51:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-07-23 11:35:38 +02:00
|
|
|
var _bindataDistStylesMainCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xe9\x72\xe3\x38\xd6\x20\x0c\xdf\x8a\x26\x2b\x32\xa6\xb2\x2d\xc9\x24\x25\x52\x8b\xa3\x2b\x5a\x8b\x2d\x6f\xb2\x2c\x5b\xb6\x96\x7e\xea\x8b\xa0\x48\x4a\xa4\xc5\x4d\x24\xb5\x7a\xf4\xfd\x9a\xbf\xef\x25\xbc\xd7\x38\xb7\xf0\x06\x77\x80\x04\x48\x6a\xa9\xee\x9e\x88\xa7\xb2\x3b\x93\x02\x0e\x0e\x0e\x0e\xce\x86\x43\x00\xfc\x07\x27\xb2\x86\x29\x58\xb9\x1f\x1f\x83\xbb\x42\xf5\xc7\xcd\xf5\xdf\xfe\x47\x4e\xd5\x0c\x85\x95\xa5\xbd\x50\xe4\x4c\x33\xb7\xa6\x8a\x64\xb1\x94\xfb\x5f\xb9\xee\xc3\x20\xf7\x2c\x71\x82\x6a\x0a\xb9\xff\x95\x9b\x4b\x56\x51\xd2\xae\x03\xd8\xdc\xdf\xae\x8b\x6b\x89\x17\xb4\xc2\x97\x99\x2b\xae\xbf\xcc\xc2\x54\x9a\x17\x74\x99\xdd\x15\xa6\x2b\xcb\xd2\x54\xb7\x50\xe2\x34\xd5\x2e\xe5\x04\x51\x93\x79\xc1\xa8\x4f\x85\x99\x66\x08\xf9\x48\x5b\x45\xe3\x59\xb9\xc0\x4b\xac\xac\xcd\xf3\x2e\x36\x07\xc9\x1f\x29\x48\x22\x4d\xe3\xc8\x0a\x9c\xa6\x5a\x82\x6a\x7d\xeb\x9a\x29\x59\x92\xa6\xd6\xd9\xa9\xa9\xc9\x2b\x4b\xb8\xb1\x34\xbd\x4e\xdc\xc8\xc2\xcc\xaa\x13\x37\x1b\x89\xb7\xc4\x3a\x49\x10\x3f\x6f\x44\x41\x9a\x8b\x96\xf3\x7c\x38\x6f\x88\xd9\x86\xf1\x6d\x09\x5b\xab\xc0\xca\xd2\x5c\xad\x73\x82\x6a\x09\xc6\xe1\x1f\x33\x4d\xb5\x0a\x33\x96\x13\xbe\xbd\x27\x45\x92\x77\xf5\x4f\x9b\x98\xc7\xf7\x1b\xd3\xe0\xea\x2b\x43\xfe\x9d\x67\x2d\xb6\xce\xea\xba\x2c\x71\xac\x3d\xb6\x6b\x07\x78\xa3\xcd\x66\x37\xde\x3c\xff\x7d\x65\xcd\x0a\xd5\x9b\x29\x6b\x0a\x4c\x39\xcf\x13\xb5\xce\xdb\xbc\xd1\x6c\xd8\xff\x35\xdb\x8b\x46\xc3\x74\x1e\x3b\xcc\xbc\xd1\xe8\x37\x12\xfe\x6b\xde\x7f\x90\x9f\x2d\xfb\xc1\xfe\xab\xd1\xb6\xdb\x35\x3f\x1e\x1e\x4c\x59\x58\xd4\x06\xcf\xfb\x87\x46\xa3\x71\x77\x6b\x57\xbd\xce\xed\xc7\xc9\x9b\xf4\x59\x12\xc7\x14\x29\x72\x76\xe1\xd8\x46\xde\x66\xed\xbf\x5e\xd7\x95\x72\xed\x5a\x57\xa7\xf7\xb2\xd2\x68\x34\x5a\x63\xfb\xaf\x92\xd3\x45\x7f\x32\x67\x7a\xdc\x50\x94\xc7\x43\x1b\xbe\xe4\x50\xf4\xb4\xb1\x5b\x8d\x27\x1b\x8a\x26\xd9\x8e\x28\xdb\xa8\xda\x33\xbb\xb0\xc1\xdb\x7f\x3d\x36\xae\xde\x5a\xcf\x77\xda\x74\xf4\x56\x6e\x34\x1a\xbd\x7b\x87\xdc\xae\x8d\xb5\x5b\x29\x97\x1b\x8d\xce\x76\x3d\xa6\x6c\xd2\xca\x4e\xa3\x77\xfb\xaf\x5b\xf1\x8e\x59\x2c\x57\xd3\xe1\x5d\xd9\xa6\xaf\xad\xda\x44\x37\x66\xf6\x5f\x0f\x8d\x5b\xa2\xf1\x70\xb7\x1a\x0f\x49\xd9\xc6\xa7\x38\x8d\x3e\xec\x9a\x27\x92\x9b\x91\xda\x7d\x73\xcd\x39\xa4\x5d\x3b\x3d\x3d\x3a\x94\xbc\xde\x6e\xc7\xab\x17\xe1\x71\xfb\x35\xee\xbc\xcd\xc7\xbd\xa6\xd4\xed\xb4\x36\x63\xaa\xb9\xe3\x66\xdd\xc7\xb1\xd0\x7e\x7e\x7f\xdf\x3f\x8e\xe9\xa6\x34\xee\x74\x6c\xa2\xab\x5d\xdd\xdc\x3e\xee\xbb\xb5\xc5\xf8\xb6\xbd\x9d\xbf\x3e\x99\xe3\xa6\xde\x96\x9a\xca\xbc\x3c\x6f\x35\x5a\xe3\x4a\xf3\x63\xde\x70\xf1\xbd\x57\x36\x03\xa9\x39\x9f\x0c\x9b\x73\x76\xd8\xa7\xdf\x16\xed\x46\xb5\xbb\x6e\x75\x09\x6e\xb3\x6d\xf7\x84\x07\xa6\x39\x1f\x2b\x4d\x79\xb2\x68\x3e\x6d\xc4\x07\x8e\x20\x45\xee\xf5\xeb\xe1\xea\xae\xf3\x78\xcf\xbd\xf1\xbb\x46\xf9\x6d\x32\xef\xbf\x35\xda\x4f\xa5\xd6\xf6\xb6\xd1\xb8\x97\xb8\x0a\x7f\x37\x99\x9a\xdd\x79\xe3\x76\xf4\xf6\x4e\xec\xb8\xdd\x44\x55\x7b\x42\xa7\xb2\xbb\x5a\xb6\xaa\xfa\x07\xc9\xdf\xaf\xcc\x87\xde\x68\xbb\xd2\xb6\x6c\x4f\xde\x4c\xc6\xc3\x7e\x93\x68\x08\x6c\x79\xb9\x7a\xb8\x7d\x29\xdf\xd6\x9e\xf7\x4f\xd3\xa7\xaf\x7d\x5b\xe8\x32\xf7\xd7\xca\x8a\x65\x9e\x15\xee\x5a\xaf\xee\xc4\x39\x21\xaf\xf9\xf1\x96\xa4\x27\x9d\xea\xaa\xf7\xdc\xef\x75\xbe\xba\x7a\xe9\x76\xbf\x54\xf6\x8f\xd2\x7e\xdc\x55\x9e\x5e\xde\x56\x54\xe5\x45\xdc\x97\xbb\xd2\x63\x77\x2b\xac\x4a\xcf\x5f\xfb\xf2\xed\x62\xa9\x54\x06\xd5\x57\x9a\xea\x54\x5f\x5f\x4b\xb2\x3a\xe8\x7d\x2e\xae\xae\x26\x8c\xf4\xc2\xf4\x27\xfb\x97\x17\xf2\xae\xa2\x5b\xab\x97\x8a\xd0\xe9\x7d\xb5\x3f\x34\xb6\xd3\x6b\xdf\x7f\x9a\xab\xf5\x47\xb5\xcb\x0f\x7a\xb5\x7b\x9e\x66\x97\xf3\x7d\x9f\x26\xa6\x8c\xf9\xd8\x97\xcb\x2c\xd3\xb5\xde\x49\x6d\x58\xee\xf2\xc3\x95\xd6\x23\x5e\xf9\xce\x95\xd1\xfc\x78\xb8\xea\x08\x5f\xcf\x1f\x26\x73\x27\xb4\x5f\x3f\x97\xcb\x36\xdf\x5e\xbf\xad\x97\x1b\xb2\x35\x13\xf5\x65\xb7\xd6\xb0\x08\xe9\xee\x99\x6d\x34\x9a\x65\xf5\x91\x1c\xb7\x47\xcd\xc1\xe7\xdb\xe4\x8a\xbe\xa6\xa8\xc1\x87\xfc\x58\xdd\x08\x84\x7e\x2f\x3f\x2a\x95\xb7\xc7\x19\xdd\xab\xde\x51\x5f\xcc\xed\x4e\x91\xdf\x5f\x17\xfa\x9
|
2021-07-17 10:12:59 +02:00
|
|
|
|
|
|
|
func bindataDistStylesMainCssBytes() ([]byte, error) {
|
2019-01-19 21:51:15 +01:00
|
|
|
return bindataRead(
|
2021-07-17 10:12:59 +02:00
|
|
|
_bindataDistStylesMainCss,
|
2019-01-19 21:51:15 +01:00
|
|
|
"dist/styles/main.css",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 10:12:59 +02:00
|
|
|
func bindataDistStylesMainCss() (*asset, error) {
|
|
|
|
bytes, err := bindataDistStylesMainCssBytes()
|
2019-01-19 21:51:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{
|
|
|
|
name: "dist/styles/main.css",
|
2021-07-23 11:35:38 +02:00
|
|
|
size: 134642,
|
2019-01-19 21:51:15 +01:00
|
|
|
md5checksum: "",
|
|
|
|
mode: os.FileMode(420),
|
2021-07-23 11:45:06 +02:00
|
|
|
modTime: time.Unix(1627033321, 0),
|
2019-01-19 21:51:15 +01: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, &os.PathError{Op: "open", Path: name, Err: os.ErrNotExist}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// MustAsset is like Asset but panics when Asset would return an error.
|
|
|
|
// It simplifies safe initialization of global variables.
|
|
|
|
// nolint: deadcode
|
|
|
|
//
|
|
|
|
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, &os.PathError{Op: "open", Path: name, Err: os.ErrNotExist}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// AssetNames returns the names of the assets.
|
|
|
|
// nolint: deadcode
|
|
|
|
//
|
|
|
|
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){
|
2021-07-17 10:12:59 +02:00
|
|
|
"dist/404.html": bindataDist404Html,
|
|
|
|
"dist/404.txt": bindataDist404Txt,
|
|
|
|
"dist/download.audio.html": bindataDistDownloadAudioHtml,
|
|
|
|
"dist/download.html": bindataDistDownloadHtml,
|
|
|
|
"dist/download.image.html": bindataDistDownloadImageHtml,
|
|
|
|
"dist/download.markdown.html": bindataDistDownloadMarkdownHtml,
|
|
|
|
"dist/download.sandbox.html": bindataDistDownloadSandboxHtml,
|
|
|
|
"dist/download.video.html": bindataDistDownloadVideoHtml,
|
|
|
|
"dist/favicon.ico": bindataDistFaviconIco,
|
|
|
|
"dist/fonts/font-awesome/FontAwesome.otf": bindataDistFontsFontawesomeFontAwesomeOtf,
|
|
|
|
"dist/fonts/font-awesome/fontawesome-webfont.eot": bindataDistFontsFontawesomeFontawesomewebfontEot,
|
|
|
|
"dist/fonts/font-awesome/fontawesome-webfont.svg": bindataDistFontsFontawesomeFontawesomewebfontSvg,
|
|
|
|
"dist/fonts/font-awesome/fontawesome-webfont.ttf": bindataDistFontsFontawesomeFontawesomewebfontTtf,
|
|
|
|
"dist/fonts/font-awesome/fontawesome-webfont.woff": bindataDistFontsFontawesomeFontawesomewebfontWoff,
|
|
|
|
"dist/fonts/glyphicons/glyphicons-halflings-regular.eot": bindataDistFontsGlyphiconsGlyphiconshalflingsregularEot,
|
|
|
|
"dist/fonts/glyphicons/glyphicons-halflings-regular.svg": bindataDistFontsGlyphiconsGlyphiconshalflingsregularSvg,
|
|
|
|
"dist/fonts/glyphicons/glyphicons-halflings-regular.ttf": bindataDistFontsGlyphiconsGlyphiconshalflingsregularTtf,
|
|
|
|
"dist/fonts/glyphicons/glyphicons-halflings-regular.woff": bindataDistFontsGlyphiconsGlyphiconshalflingsregularWoff,
|
|
|
|
"dist/fonts/transfersh.eot": bindataDistFontsTransfershEot,
|
|
|
|
"dist/fonts/transfersh.svg": bindataDistFontsTransfershSvg,
|
|
|
|
"dist/fonts/transfersh.ttf": bindataDistFontsTransfershTtf,
|
|
|
|
"dist/fonts/transfersh.woff": bindataDistFontsTransfershWoff,
|
|
|
|
"dist/images/Logo-orange.png": bindataDistImagesLogoorangePng,
|
|
|
|
"dist/images/bitcoin.png": bindataDistImagesBitcoinPng,
|
|
|
|
"dist/images/reviews/dave.jpg": bindataDistImagesReviewsDaveJpg,
|
|
|
|
"dist/images/reviews/jacob.jpg": bindataDistImagesReviewsJacobJpg,
|
|
|
|
"dist/images/reviews/kareem.jpg": bindataDistImagesReviewsKareemJpg,
|
|
|
|
"dist/images/reviews/lars.jpg": bindataDistImagesReviewsLarsJpg,
|
|
|
|
"dist/images/reviews/pg.jpeg": bindataDistImagesReviewsPgJpeg,
|
|
|
|
"dist/images/terminal-top.svg": bindataDistImagesTerminaltopSvg,
|
|
|
|
"dist/images/terminal.svg": bindataDistImagesTerminalSvg,
|
|
|
|
"dist/images/tor.svg": bindataDistImagesTorSvg,
|
|
|
|
"dist/includes/download-bottom.html": bindataDistIncludesDownloadbottomHtml,
|
|
|
|
"dist/includes/download-delete.html": bindataDistIncludesDownloaddeleteHtml,
|
|
|
|
"dist/includes/download-footer.html": bindataDistIncludesDownloadfooterHtml,
|
|
|
|
"dist/includes/download-head.html": bindataDistIncludesDownloadheadHtml,
|
|
|
|
"dist/includes/download-js.html": bindataDistIncludesDownloadjsHtml,
|
|
|
|
"dist/includes/download-navigation.html": bindataDistIncludesDownloadnavigationHtml,
|
|
|
|
"dist/includes/download-top.html": bindataDistIncludesDownloadtopHtml,
|
|
|
|
"dist/includes/footer.html": bindataDistIncludesFooterHtml,
|
|
|
|
"dist/includes/ga.html": bindataDistIncludesGaHtml,
|
|
|
|
"dist/includes/head.html": bindataDistIncludesHeadHtml,
|
|
|
|
"dist/includes/js.html": bindataDistIncludesJsHtml,
|
|
|
|
"dist/includes/navigation.html": bindataDistIncludesNavigationHtml,
|
|
|
|
"dist/index.html": bindataDistIndexHtml,
|
|
|
|
"dist/index.txt": bindataDistIndexTxt,
|
|
|
|
"dist/robots.txt": bindataDistRobotsTxt,
|
|
|
|
"dist/scripts/main.js": bindataDistScriptsMainJs,
|
|
|
|
"dist/scripts/vendor/modernizr.js": bindataDistScriptsVendorModernizrJs,
|
|
|
|
"dist/scripts/vendor/video.js": bindataDistScriptsVendorVideoJs,
|
|
|
|
"dist/styles/main.css": bindataDistStylesMainCss,
|
2019-01-19 21:51:15 +01: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, &os.PathError{
|
|
|
|
Op: "open",
|
|
|
|
Path: name,
|
|
|
|
Err: os.ErrNotExist,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if node.Func != nil {
|
|
|
|
return nil, &os.PathError{
|
|
|
|
Op: "open",
|
|
|
|
Path: name,
|
|
|
|
Err: os.ErrNotExist,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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{Func: nil, Children: map[string]*bintree{
|
|
|
|
"dist": {Func: nil, Children: map[string]*bintree{
|
2021-07-17 10:12:59 +02:00
|
|
|
"404.html": {Func: bindataDist404Html, Children: map[string]*bintree{}},
|
|
|
|
"404.txt": {Func: bindataDist404Txt, Children: map[string]*bintree{}},
|
|
|
|
"download.audio.html": {Func: bindataDistDownloadAudioHtml, Children: map[string]*bintree{}},
|
|
|
|
"download.html": {Func: bindataDistDownloadHtml, Children: map[string]*bintree{}},
|
|
|
|
"download.image.html": {Func: bindataDistDownloadImageHtml, Children: map[string]*bintree{}},
|
|
|
|
"download.markdown.html": {Func: bindataDistDownloadMarkdownHtml, Children: map[string]*bintree{}},
|
|
|
|
"download.sandbox.html": {Func: bindataDistDownloadSandboxHtml, Children: map[string]*bintree{}},
|
|
|
|
"download.video.html": {Func: bindataDistDownloadVideoHtml, Children: map[string]*bintree{}},
|
|
|
|
"favicon.ico": {Func: bindataDistFaviconIco, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
"fonts": {Func: nil, Children: map[string]*bintree{
|
|
|
|
"font-awesome": {Func: nil, Children: map[string]*bintree{
|
2021-07-17 10:12:59 +02:00
|
|
|
"FontAwesome.otf": {Func: bindataDistFontsFontawesomeFontAwesomeOtf, Children: map[string]*bintree{}},
|
|
|
|
"fontawesome-webfont.eot": {Func: bindataDistFontsFontawesomeFontawesomewebfontEot, Children: map[string]*bintree{}},
|
|
|
|
"fontawesome-webfont.svg": {Func: bindataDistFontsFontawesomeFontawesomewebfontSvg, Children: map[string]*bintree{}},
|
|
|
|
"fontawesome-webfont.ttf": {Func: bindataDistFontsFontawesomeFontawesomewebfontTtf, Children: map[string]*bintree{}},
|
|
|
|
"fontawesome-webfont.woff": {Func: bindataDistFontsFontawesomeFontawesomewebfontWoff, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
}},
|
|
|
|
"glyphicons": {Func: nil, Children: map[string]*bintree{
|
2021-07-17 10:12:59 +02:00
|
|
|
"glyphicons-halflings-regular.eot": {Func: bindataDistFontsGlyphiconsGlyphiconshalflingsregularEot, Children: map[string]*bintree{}},
|
|
|
|
"glyphicons-halflings-regular.svg": {Func: bindataDistFontsGlyphiconsGlyphiconshalflingsregularSvg, Children: map[string]*bintree{}},
|
|
|
|
"glyphicons-halflings-regular.ttf": {Func: bindataDistFontsGlyphiconsGlyphiconshalflingsregularTtf, Children: map[string]*bintree{}},
|
|
|
|
"glyphicons-halflings-regular.woff": {Func: bindataDistFontsGlyphiconsGlyphiconshalflingsregularWoff, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
}},
|
2021-07-17 10:12:59 +02:00
|
|
|
"transfersh.eot": {Func: bindataDistFontsTransfershEot, Children: map[string]*bintree{}},
|
|
|
|
"transfersh.svg": {Func: bindataDistFontsTransfershSvg, Children: map[string]*bintree{}},
|
|
|
|
"transfersh.ttf": {Func: bindataDistFontsTransfershTtf, Children: map[string]*bintree{}},
|
|
|
|
"transfersh.woff": {Func: bindataDistFontsTransfershWoff, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
}},
|
|
|
|
"images": {Func: nil, Children: map[string]*bintree{
|
2021-07-17 10:12:59 +02:00
|
|
|
"Logo-orange.png": {Func: bindataDistImagesLogoorangePng, Children: map[string]*bintree{}},
|
|
|
|
"bitcoin.png": {Func: bindataDistImagesBitcoinPng, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
"reviews": {Func: nil, Children: map[string]*bintree{
|
2021-07-17 10:12:59 +02:00
|
|
|
"dave.jpg": {Func: bindataDistImagesReviewsDaveJpg, Children: map[string]*bintree{}},
|
|
|
|
"jacob.jpg": {Func: bindataDistImagesReviewsJacobJpg, Children: map[string]*bintree{}},
|
|
|
|
"kareem.jpg": {Func: bindataDistImagesReviewsKareemJpg, Children: map[string]*bintree{}},
|
|
|
|
"lars.jpg": {Func: bindataDistImagesReviewsLarsJpg, Children: map[string]*bintree{}},
|
|
|
|
"pg.jpeg": {Func: bindataDistImagesReviewsPgJpeg, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
}},
|
2021-07-17 10:12:59 +02:00
|
|
|
"terminal-top.svg": {Func: bindataDistImagesTerminaltopSvg, Children: map[string]*bintree{}},
|
|
|
|
"terminal.svg": {Func: bindataDistImagesTerminalSvg, Children: map[string]*bintree{}},
|
|
|
|
"tor.svg": {Func: bindataDistImagesTorSvg, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
}},
|
|
|
|
"includes": {Func: nil, Children: map[string]*bintree{
|
2021-07-17 10:12:59 +02:00
|
|
|
"download-bottom.html": {Func: bindataDistIncludesDownloadbottomHtml, Children: map[string]*bintree{}},
|
|
|
|
"download-delete.html": {Func: bindataDistIncludesDownloaddeleteHtml, Children: map[string]*bintree{}},
|
|
|
|
"download-footer.html": {Func: bindataDistIncludesDownloadfooterHtml, Children: map[string]*bintree{}},
|
|
|
|
"download-head.html": {Func: bindataDistIncludesDownloadheadHtml, Children: map[string]*bintree{}},
|
|
|
|
"download-js.html": {Func: bindataDistIncludesDownloadjsHtml, Children: map[string]*bintree{}},
|
|
|
|
"download-navigation.html": {Func: bindataDistIncludesDownloadnavigationHtml, Children: map[string]*bintree{}},
|
|
|
|
"download-top.html": {Func: bindataDistIncludesDownloadtopHtml, Children: map[string]*bintree{}},
|
|
|
|
"footer.html": {Func: bindataDistIncludesFooterHtml, Children: map[string]*bintree{}},
|
|
|
|
"ga.html": {Func: bindataDistIncludesGaHtml, Children: map[string]*bintree{}},
|
|
|
|
"head.html": {Func: bindataDistIncludesHeadHtml, Children: map[string]*bintree{}},
|
|
|
|
"js.html": {Func: bindataDistIncludesJsHtml, Children: map[string]*bintree{}},
|
|
|
|
"navigation.html": {Func: bindataDistIncludesNavigationHtml, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
}},
|
2021-07-17 10:12:59 +02:00
|
|
|
"index.html": {Func: bindataDistIndexHtml, Children: map[string]*bintree{}},
|
|
|
|
"index.txt": {Func: bindataDistIndexTxt, Children: map[string]*bintree{}},
|
|
|
|
"robots.txt": {Func: bindataDistRobotsTxt, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
"scripts": {Func: nil, Children: map[string]*bintree{
|
2021-07-17 10:12:59 +02:00
|
|
|
"main.js": {Func: bindataDistScriptsMainJs, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
"vendor": {Func: nil, Children: map[string]*bintree{
|
2021-07-17 10:12:59 +02:00
|
|
|
"modernizr.js": {Func: bindataDistScriptsVendorModernizrJs, Children: map[string]*bintree{}},
|
|
|
|
"video.js": {Func: bindataDistScriptsVendorVideoJs, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01:00
|
|
|
}},
|
|
|
|
}},
|
|
|
|
"styles": {Func: nil, Children: map[string]*bintree{
|
2021-07-17 10:12:59 +02:00
|
|
|
"main.css": {Func: bindataDistStylesMainCss, Children: map[string]*bintree{}},
|
2019-01-19 21:51:15 +01: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
|
|
|
|
}
|
|
|
|
return os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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, "/")...)...)
|
|
|
|
}
|