From 30eed8723d512f960eea58d6f99fa04f923baf59 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Sun, 17 May 2015 14:25:04 -0700 Subject: [PATCH] moved all remaining files under designated structure --- Makefile | 27 +- drone.go => cmd/drone-server/drone.go | 12 +- cmd/drone-server/drone_bindata.go | 938 ++++++++++++++++++ .../drone-server}/static/favicon.png | Bin .../drone-server}/static/images/logo.svg | 0 .../drone-server}/static/index.html | 0 .../static/scripts/controllers/agents.js | 0 .../static/scripts/controllers/builds.js | 0 .../static/scripts/controllers/commits.js | 0 .../static/scripts/controllers/repos.js | 0 .../static/scripts/controllers/users.js | 0 .../drone-server}/static/scripts/drone.js | 0 .../static/scripts/filters/filter.js | 0 .../static/scripts/filters/gravatar.js | 0 .../static/scripts/filters/time.js | 0 .../static/scripts/services/agents.js | 0 .../static/scripts/services/builds.js | 0 .../static/scripts/services/feed.js | 0 .../static/scripts/services/logs.js | 0 .../static/scripts/services/repos.js | 0 .../static/scripts/services/tokens.js | 0 .../static/scripts/services/users.js | 0 .../drone-server}/static/scripts/term.js | 0 .../static/scripts/views/agents.html | 0 .../static/scripts/views/build.html | 0 .../static/scripts/views/builds.html | 0 .../static/scripts/views/login.html | 0 .../static/scripts/views/repos.html | 0 .../static/scripts/views/repos_add.html | 0 .../static/scripts/views/repos_edit.html | 0 .../static/scripts/views/user.html | 0 .../static/scripts/views/users.html | 0 .../drone-server}/static/styles/drone.css | 0 docs/install-docker.md | 1 + docs/install-source.md | 1 + docs/install-ubuntu.md | 1 + docs/setup-bitbucket.md | 1 + docs/setup-database.md | 1 + docs/setup-github.md | 1 + docs/setup-gitlab.md | 1 + docs/setup.md | 1 + {common => pkg}/oauth2/oauth2.go | 0 pkg/remote/client/client.go | 2 +- pkg/remote/github/github.go | 2 +- pkg/remote/github/helper.go | 2 +- {runner => pkg/runner}/builtin/copy.go | 0 {runner => pkg/runner}/builtin/runner.go | 0 {runner => pkg/runner}/builtin/updater.go | 0 {runner => pkg/runner}/builtin/worker.go | 0 {runner => pkg/runner}/runner.go | 0 {server => pkg/server}/agent.go | 0 {server => pkg/server}/badge.go | 0 {server => pkg/server}/badge_test.go | 2 +- {server => pkg/server}/commits.go | 0 {server => pkg/server}/hooks.go | 0 {server => pkg/server}/login.go | 2 +- {server => pkg/server}/queue.go | 0 {server => pkg/server}/recorder/recorder.go | 0 {server => pkg/server}/repos.go | 0 {server => pkg/server}/server.go | 6 +- {server => pkg/server}/session/session.go | 2 +- {server => pkg/server}/token.go | 0 {server => pkg/server}/user.go | 0 {server => pkg/server}/user_test.go | 2 +- {server => pkg/server}/users.go | 0 {server => pkg/server}/ws.go | 0 {settings => pkg/settings}/settings.go | 0 67 files changed, 975 insertions(+), 30 deletions(-) rename drone.go => cmd/drone-server/drone.go (94%) create mode 100644 cmd/drone-server/drone_bindata.go rename {server => cmd/drone-server}/static/favicon.png (100%) rename {server => cmd/drone-server}/static/images/logo.svg (100%) rename {server => cmd/drone-server}/static/index.html (100%) rename {server => cmd/drone-server}/static/scripts/controllers/agents.js (100%) rename {server => cmd/drone-server}/static/scripts/controllers/builds.js (100%) rename {server => cmd/drone-server}/static/scripts/controllers/commits.js (100%) rename {server => cmd/drone-server}/static/scripts/controllers/repos.js (100%) rename {server => cmd/drone-server}/static/scripts/controllers/users.js (100%) rename {server => cmd/drone-server}/static/scripts/drone.js (100%) rename {server => cmd/drone-server}/static/scripts/filters/filter.js (100%) rename {server => cmd/drone-server}/static/scripts/filters/gravatar.js (100%) rename {server => cmd/drone-server}/static/scripts/filters/time.js (100%) rename {server => cmd/drone-server}/static/scripts/services/agents.js (100%) rename {server => cmd/drone-server}/static/scripts/services/builds.js (100%) rename {server => cmd/drone-server}/static/scripts/services/feed.js (100%) rename {server => cmd/drone-server}/static/scripts/services/logs.js (100%) rename {server => cmd/drone-server}/static/scripts/services/repos.js (100%) rename {server => cmd/drone-server}/static/scripts/services/tokens.js (100%) rename {server => cmd/drone-server}/static/scripts/services/users.js (100%) rename {server => cmd/drone-server}/static/scripts/term.js (100%) rename {server => cmd/drone-server}/static/scripts/views/agents.html (100%) rename {server => cmd/drone-server}/static/scripts/views/build.html (100%) rename {server => cmd/drone-server}/static/scripts/views/builds.html (100%) rename {server => cmd/drone-server}/static/scripts/views/login.html (100%) rename {server => cmd/drone-server}/static/scripts/views/repos.html (100%) rename {server => cmd/drone-server}/static/scripts/views/repos_add.html (100%) rename {server => cmd/drone-server}/static/scripts/views/repos_edit.html (100%) rename {server => cmd/drone-server}/static/scripts/views/user.html (100%) rename {server => cmd/drone-server}/static/scripts/views/users.html (100%) rename {server => cmd/drone-server}/static/styles/drone.css (100%) create mode 100644 docs/install-docker.md create mode 100644 docs/install-source.md create mode 100644 docs/install-ubuntu.md create mode 100644 docs/setup-bitbucket.md create mode 100644 docs/setup-database.md create mode 100644 docs/setup-github.md create mode 100644 docs/setup-gitlab.md create mode 100644 docs/setup.md rename {common => pkg}/oauth2/oauth2.go (100%) rename {runner => pkg/runner}/builtin/copy.go (100%) rename {runner => pkg/runner}/builtin/runner.go (100%) rename {runner => pkg/runner}/builtin/updater.go (100%) rename {runner => pkg/runner}/builtin/worker.go (100%) rename {runner => pkg/runner}/runner.go (100%) rename {server => pkg/server}/agent.go (100%) rename {server => pkg/server}/badge.go (100%) rename {server => pkg/server}/badge_test.go (98%) rename {server => pkg/server}/commits.go (100%) rename {server => pkg/server}/hooks.go (100%) rename {server => pkg/server}/login.go (99%) rename {server => pkg/server}/queue.go (100%) rename {server => pkg/server}/recorder/recorder.go (100%) rename {server => pkg/server}/repos.go (100%) rename {server => pkg/server}/server.go (97%) rename {server => pkg/server}/session/session.go (98%) rename {server => pkg/server}/token.go (100%) rename {server => pkg/server}/user.go (100%) rename {server => pkg/server}/user_test.go (97%) rename {server => pkg/server}/users.go (100%) rename {server => pkg/server}/ws.go (100%) rename {settings => pkg/settings}/settings.go (100%) diff --git a/Makefile b/Makefile index f66b0f892b..caa49caa6b 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ VERSION := 0.4.0-alpha all: concat bindata build deps: + go get github.com/jteeuwen/go-bindata/... go get -t -v ./... test: @@ -13,8 +14,7 @@ test: go test -cover -short ./... build: - mkdir -p bin - go build -o bin/drone -ldflags "-X main.revision $(SHA) -X main.version $(VERSION).$(SHA)" + go build -o bin/drone -ldflags "-X main.revision $(SHA) -X main.version $(VERSION).$(SHA)" github.com/drone/drone/cmd/drone-server clean: find . -name "*.out" -delete @@ -22,20 +22,19 @@ clean: rm -f bindata.go concat: - cat server/static/scripts/drone.js \ - server/static/scripts/services/*.js \ - server/static/scripts/filters/*.js \ - server/static/scripts/controllers/*.js \ - server/static/scripts/term.js > server/static/scripts/drone.min.js - -bindata_deps: - go get github.com/jteeuwen/go-bindata/... + cat cmd/drone-server/static/scripts/drone.js \ + cmd/drone-server/static/scripts/services/*.js \ + cmd/drone-server/static/scripts/filters/*.js \ + cmd/drone-server/static/scripts/controllers/*.js \ + cmd/drone-server/static/scripts/term.js > cmd/drone-server/static/scripts/drone.min.js + +# embeds all the static files directly +# into the drone binary file +bindata: + $$GOPATH/bin/go-bindata -o="cmd/drone-server/drone_bindata.go" cmd/drone-server/static/... bindata_debug: - $$GOPATH/bin/go-bindata --debug server/static/... - -bindata: - $$GOPATH/bin/go-bindata server/static/... + $$GOPATH/bin/go-bindata --debug -o="cmd/drone-server/drone_bindata.go" cmd/drone-server/static/... # creates a debian package for drone # to install `sudo dpkg -i drone.deb` diff --git a/drone.go b/cmd/drone-server/drone.go similarity index 94% rename from drone.go rename to cmd/drone-server/drone.go index f7e51ee3df..b96c67833b 100644 --- a/drone.go +++ b/cmd/drone-server/drone.go @@ -8,15 +8,15 @@ import ( "github.com/gin-gonic/gin" "github.com/drone/drone/pkg/remote/github" - "github.com/drone/drone/server" - "github.com/drone/drone/server/session" - "github.com/drone/drone/settings" + "github.com/drone/drone/pkg/server" + "github.com/drone/drone/pkg/server/session" + "github.com/drone/drone/pkg/settings" "github.com/elazarl/go-bindata-assetfs" eventbus "github.com/drone/drone/pkg/bus/builtin" queue "github.com/drone/drone/pkg/queue/builtin" + runner "github.com/drone/drone/pkg/runner/builtin" store "github.com/drone/drone/pkg/store/builtin" - runner "github.com/drone/drone/runner/builtin" _ "net/http/pprof" ) @@ -175,14 +175,14 @@ func static() http.Handler { return http.StripPrefix("/static/", http.FileServer(&assetfs.AssetFS{ Asset: Asset, AssetDir: AssetDir, - Prefix: "server/static", + Prefix: "cmd/drone-server/static", })) } // index is a helper function that will setup a template // for rendering the main angular index.html file. func index() *template.Template { - file := MustAsset("server/static/index.html") + file := MustAsset("cmd/drone-server/static/index.html") filestr := string(file) return template.Must(template.New("index.html").Parse(filestr)) } diff --git a/cmd/drone-server/drone_bindata.go b/cmd/drone-server/drone_bindata.go new file mode 100644 index 0000000000..4ced4c2d1f --- /dev/null +++ b/cmd/drone-server/drone_bindata.go @@ -0,0 +1,938 @@ +package main + +import ( + "bytes" + "compress/gzip" + "fmt" + "io" + "strings" + "os" + "time" + "io/ioutil" + "path" + "path/filepath" +) + +func bindata_read(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) + gz.Close() + + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + + return buf.Bytes(), nil +} + +type asset struct { + bytes []byte + info os.FileInfo +} + +type bindata_file_info struct { + name string + size int64 + mode os.FileMode + modTime time.Time +} + +func (fi bindata_file_info) Name() string { + return fi.name +} +func (fi bindata_file_info) Size() int64 { + return fi.size +} +func (fi bindata_file_info) Mode() os.FileMode { + return fi.mode +} +func (fi bindata_file_info) ModTime() time.Time { + return fi.modTime +} +func (fi bindata_file_info) IsDir() bool { + return false +} +func (fi bindata_file_info) Sys() interface{} { + return nil +} + +var _cmd_drone_server_static_favicon_png = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x00\x2d\x02\xd2\xfd\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xaa\x49\x44\x41\x54\x38\x8d\xa5\x93\x3f\x68\x53\x51\x14\x87\xbf\x73\x09\x35\xb4\x5b\x06\x05\x41\xd2\x7b\x03\x22\x18\x15\xa5\x8b\x6e\xe9\x22\x8d\x15\xc1\xc5\xae\x8a\xe0\x2a\x1d\x15\x71\x11\x89\x93\xe8\x24\xe8\x58\xc1\xb1\xa2\xb8\x38\x64\x74\x10\x84\x42\x71\x91\x77\x62\xf0\x0d\x41\x34\x60\x21\x46\x78\xf5\x1e\x97\xbc\xf8\x28\x2f\x60\xf1\xc2\x85\xcb\xef\x7c\xe7\x0f\xf7\x9c\x23\x66\xc6\xff\x9c\xca\x5e\x21\x84\x70\x18\xb8\x01\x9c\x00\x8e\x4f\xe4\x2d\xe0\x03\xf0\x4c\x55\xbf\x15\x79\xc9\x2b\x08\x21\x54\x81\x75\xe0\x16\xb0\x30\x23\xe1\x0e\xd0\x01\x1e\xaa\xea\xaf\x69\x80\x10\x82\x03\x5e\x01\xed\x7f\xac\xfc\x35\x70\x49\x55\xa3\x9b\x08\x9d\x7d\x38\x03\xac\x02\xf7\x01\xc4\x7b\xbf\x04\xbc\x9f\x01\xa6\xc0\x2e\xb0\x38\xc3\x7e\xc6\x01\xe7\x4b\x0c\x5f\x81\xb3\xbd\x5e\x6f\xb1\x56\xab\x1d\x05\x4e\x03\x5f\x4a\xb8\x8b\x0e\x58\x2e\x31\x5c\x05\x0e\x7a\xef\x3f\x0f\x87\xc3\xd4\xcc\x4e\x01\x6b\x25\xdc\x8a\x78\xef\xd7\x80\x6a\x41\xcc\x54\xf5\xb9\xf7\x7e\x5b\x44\xf2\x36\x0e\xea\xf5\xfa\x91\x7e\xbf\x7f\x19\x98\x2f\xb0\xbf\x2b\xaa\xfa\x42\x44\x5c\x08\xe1\x2e\x70\xc0\xcc\xb2\x56\xab\x55\x11\x91\x61\x01\xdc\xe9\x76\xbb\xbb\xde\xfb\x63\xce\xb9\xf9\x18\xa3\x8d\xc7\xe3\x7b\x83\xc1\x60\x54\x9c\x83\xa7\xc0\x75\x00\x11\xb9\x16\x63\xfc\x28\x22\x1d\xa0\x2a\x22\x77\x62\x8c\x0b\x22\xb2\x39\x09\xf8\x4e\x55\xcf\x01\xe4\x6d\xc4\x39\xf7\x00\xf8\x09\x60\x66\x4f\x44\x64\xc9\x39\x77\xc5\xcc\x56\x80\x43\x22\xb2\x91\xb3\x66\xf6\x38\x7f\x4b\x71\x17\x1a\x8d\x46\xdb\xcc\x5e\xf2\x77\xc4\x6d\x72\xa7\x89\x44\xe4\x51\x92\x24\x37\xa7\x89\x8b\x5f\x9a\x24\xc9\x1b\xe0\x02\xf0\x29\xe7\x0b\xcc\x0f\xe0\xb6\xaa\xae\x17\x7d\xa4\x6c\x1b\x9b\xcd\xe6\xdc\x68\x34\x6a\x03\x27\x45\x64\xce\xcc\xb6\xb3\x2c\x7b\x9b\xa6\xe9\xf7\xbd\x6c\x69\x80\xfd\x9c\x3f\xa6\x20\xa0\x41\x4c\xb5\xab\xdf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xf2\x7d\xfd\xf0\x2d\x02\x00\x00") + +func cmd_drone_server_static_favicon_png_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_favicon_png, + "cmd/drone-server/static/favicon.png", + ) +} + +func cmd_drone_server_static_favicon_png() (*asset, error) { + bytes, err := cmd_drone_server_static_favicon_png_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/favicon.png", size: 557, mode: os.FileMode(436), modTime: time.Unix(1423552926, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_images_logo_svg = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x57\x4d\x8f\xdb\x36\x10\xbd\xef\xaf\x60\x95\x4b\x82\x8a\x14\x49\x51\xa2\xa4\xd8\xce\xa1\x41\x80\x00\x3d\xb5\x29\x7a\x96\x25\xda\x56\x23\x8b\x06\x45\xaf\xed\xfd\xf5\x1d\xea\xd3\x5f\x41\x7b\x69\x1d\x04\xbb\x9c\x79\x1c\x72\xde\xbc\x19\x7a\x17\x9f\xce\xfb\x1a\xbd\x2a\xd3\x56\xba\x59\x7a\x8c\x50\x0f\xa9\xa6\xd0\x65\xd5\x6c\x97\xde\x1f\xdf\xbe\xe0\xc4\x43\xad\xcd\x9b\x32\xaf\x75\xa3\x96\x5e\xa3\xbd\x4f\xab\x97\xc5\x4f\x18\xa3\x5f\x8c\xca\xad\x2a\xd1\xa9\xb2\x3b\xf4\xb5\xf9\xde\x16\xf9\x41\xa1\xf7\x3b\x6b\x0f\x59\x10\x9c\x4e\x27\x52\x0d\x46\xa2\xcd\x36\xf8\x80\x30\x5e\xbd\xbc\x2c\xda\xd7\xed\x0b\x42\x08\xce\x6d\xda\xac\x2c\x96\xde\xb0\xe1\x70\x34\x75\x07\x2c\x8b\x40\xd5\x6a\xaf\x1a\xdb\x06\x8c\xb0\xc0\x9b\xe1\xc5\x0c\x2f\xdc\xe9\xd5\xab\x2a\xf4\x7e\xaf\x9b\xb6\xdb\xd9\xb4\xef\xae\xc0\xa6\xdc\x4c\x68\x77\x9b\x53\xd8\x81\x58\x9a\xa6\x01\xe5\x01\xe7\x18\x10\xb8\xbd\x34\x36\x3f\xe3\xdb\xad\x70\xc7\x67\x5b\x39\xa5\x34\x00\xdf\x8c\xfc\x77\xa8\xac\x05\x42\x0f\xf0\x7f\x82\x8f\x06\xd2\xea\xa3\x29\xd4\x06\xf6\x29\xd2\x28\x1b\x7c\xfe\xf6\x79\x72\x62\x4a\x4a\x5b\x5e\x85\x19\xf9\xbc\x39\xf5\x86\xe4\x26\xdf\xab\xf6\x90\x17\xaa\x0d\x46\x7b\xb7\xff\x54\x95\x76\xb7\xf4\x44\xd8\xad\x76\xaa\xda\xee\xec\xd2\x0b\x63\x12\x46\x54\x52\xd1\x59\xab\x72\xe9\xc1\xb5\x79\xb7\xb8\x92\x04\xeb\xbd\x43\xb8\x6c\xf2\x50\x22\x12\x12\x12\x86\x4c\x9a\x24\x71\x07\x1a\x6f\x9e\x95\xba\x70\x57\x59\x7a\xa5\x01\xd9\xe0\x5a\x6f\x35\x6e\x34\x2e\x2a\x53\xd4\x8a\x38\x72\x56\x80\x5f\x94\x6a\xd3\xba\x7d\xfd\xe1\x6e\x25\x3c\x14\x74\xae\x29\x94\x8b\x53\xbe\x56\xea\x34\x03\xd7\x79\xdb\xa7\x85\xd0\x21\xdf\x82\x04\x6a\x6d\x96\xde\xbb\x4d\xf7\x19\x1c\x6b\x6d\x4a\x65\x46\x57\xdc\x7d\x6e\x5c\x1a\x68\xaa\xec\xa5\x17\xfd\x10\x7b\xcc\xd1\x45\x9d\xfc\xf4\xb9\xbf\xdd\xe5\xa5\x3e\x2d\x3d\x7e\xef\x7c\xd3\x7a\x0f\x66\x92\xdc\x3b\x8a\x33\x98\x63\x12\xc9\x98\xd3\xe8\xc1\x09\x27\x61\xc9\x49\x24\x04\x7f\x70\x02\x9d\x47\xd7\x10\xf8\xd8\x54\x16\x44\x77\x38\x3f\x6c\x3f\x1a\xe3\x00\x75\x7e\x51\x90\x70\xf7\x83\x0d\xa0\x76\xa7\x4f\x5b\xe3\x88\xb3\xe6\xa8\xee\x77\xb6\x4d\x7e\xc0\xdb\x5a\xaf\xf3\x7a\xe9\x6d\xf2\xba\x7d\x40\x9c\xaa\x06\x32\xc5\x83\x86\x18\x4f\x1f\xee\x37\x20\x46\x5d\x49\x21\x7e\x80\x00\x06\xe2\x1f\xed\x06\x02\xf8\x8f\xf6\xed\xf3\x73\xb5\xaf\xde\x14\xe4\x30\x66\xb5\xa9\x2c\x98\xcd\xb6\x6a\xb0\xd5\x07\x28\xd3\xa3\xbd\x56\x1b\xfb\xd4\x61\xfa\x7b\x3e\xf1\xac\xb5\xb5\xae\x7c\xb4\x13\x28\xe8\x70\xba\x89\x63\xb0\x87\x23\x64\x2f\xae\x09\xcf\x17\x67\xf3\x46\xa3\x23\xd8\x19\x78\x9a\xc6\x93\x51\xed\x0f\xae\x1f\xbb\x71\x1a\x4d\xd6\xd7\xaa\xad\xd6\xb5\xba\x29\x08\x60\x9b\x1c\x8c\xe5\x9d\xd5\xd5\x67\xc0\xbb\xe8\x75\xd5\xa8\x56\x37\xf5\xe5\x0e\xa6\x21\xa7\xaa\x01\x7e\x31\x67\x44\x72\x2a\x65\x3a\xa9\x64\xf4\x3a\x89\xa5\x29\x25\xa1\x64\x49\x02\xde\xa1\xd5\x82\xc7\x5e\xeb\xec\x7b\x65\xf3\x32\xb7\xf9\xdc\x78\xa3\x45\x8e\xec\xc0\x04\xcd\x7e\xfb\xfc\x65\x35\x9c\xb3\x28\x8a\xec\x4f\x6d\xbe\x8f\xc7\x22\xe4\x00\xf9\x5a\x1f\x81\x6d\x6f\x35\x99\x17\x65\x91\xc1\xcc\xdb\xe7\x76\x55\xed\xa1\x97\xdc\xb8\xfc\x19\x66\xdc\x22\x98\x1d\x37\x60\x47\xf8\x1c\xb4\x0f\x6b\x54\x3f\x3c\x9f\xbe\x20\x65\xb1\xaf\xdc\xa6\xe0\x77\x5b\xd5\xf5\x57\x77\xc8\x90\xee\x55\xd0\xca\xd6\x6a\xd5\x9d\xd9\xff\x3a\x66\x11\x0c\x69\x0c\x49\x06\x57\x59\x2e\x82\x91\x83\x6e\xb5\xbd\x93\x6b\x9d\xaf\x15\xb4\xd1\xaf\xae\xfd\x10\xbb\x17\xf3\xd6\xe8\xe3\x61\xaf\x4b\x35\x34\xa8\x37\x33\x7b\xd3\xb0\xd6\xe4\x4d\xeb\x68\x70\x35\x86\x5f\x6b\x78\x67\xdf\xcf\x75\xf5\x31\x8f\x48\x1c\xa6\x51\x1a\x7e\x18\x0b\x71\xc8\xed\x6e\x52\xcc\x58\xce\x5e\xa6\xb9\x29\x66\x31\xd9\x8b\x93\xdd\x06\x38\xc9\x86\x79\xf9\xd1\x2d\xf0\x30\xed\x32\xd6\x2f\xcd\xb1\x56\x99\x7a\x55\x8d\x2e\xcb\x8f\xad\x35\xfa\xbb\xca\xde\xd1\xee\x33\x2c\xfb\x71\x90\x4d\x4b\xa7\x4b\x48\x32\x5b\x1f\xad\xbd\xb6\xfd\xa5\xab\x26\x83\x5a\x28\x33\x5a\xbb\x45\x0d\xed\x6c\x33\x31\xda\xe6\xe3\x07\x43\x99\xc3\x7c\x35\x26\xbf\x64\x0d\x3c\x20\x37\x3d\xe6\x52\x85\x1e\x4b\xbc\x87\x7c\xdd\x80\x65\x30\x43\x19\x15\x52\x3c\x71\x83\xfe\x45\x04\x6f\x56\xca\x45\xfa\xe8\x36\xb0\x3b\x22\x02\xc6\x5b\x9c\xca\x27\xee\x8b\x73\x53\x78\x2f\x63\x3e\xbb\x5d\x53\x20\x26\x25\x89\x42\x11\x32\x7f\x0a\x8f\x0a\x44\x7d\x4e\x64\x92\x8a\x18\x61\x4e\x44\x48\x53\xe6\x0f\xfb\x11\xee\xcf\x91\xb3\x81\x13\xc8\x28\x96\x3e\x9d\x7d\x60\xe3\x31\x0b\xaf\x0c\x23\x9a\x3a\x5f\x1f\xba\x8f\x3c\xba\x24\xba\xc3\x4a\xd4\x07\x8e\x21\xf0\xe8\xea\xc3\x32\x74\x7b\x07\x89\xde\xa6\xa4\xae\xf4\x07\x9d\x68\xaa\xf3\x7b\x78\x23\x61\xee\x4b\x06\x71\xe0\x1f\xac\x12\x38\x5d\x44\x3e\x86\x40\x84\xb1\x58\x84\x3e\x16\x11\x5c\x86\x87\x12\x44\x39\x76\xda\xad\x2c\xff\x59\x7b\xcf\xa5\x75\x2d\x98\x5b\xe2\x45\x48\x78\xdf\x12\xae\x23\x04\xe5\x42\x02\xf1\x29\x89\x29\x8b\x43\x1f\x1e\x6e\x19\x71\xc4\x29\x89\x98\x4c\x62\x3f\x26\x89\x08\x13\x04\x7d\x14\xf9\x0c\x40\xa8\x46\x70\x7f\x60\xc6\xd5\x0a\x88\x67\x24\x96\x42\x72\x1f\x4b\x02\x02\x0a\x81\xf9\x04\x90\x58\x22\x0c\x3b\x79\xc4\x13\x17\x11\x1c\xbd\x5d\x8e\x3f\xae\xa2\x40\x57\xb2\x98\x01\x2b\xf0\x8e\x87\x14\x90\x8c\x91\x30\x86\x07\x1f\x4c\x70\xa0\x4c\xc3\xa8\x3f\xbe\x5b\x5e\x31\xee\x74\x6d\x54\x61\xc3\x84\xd1\xd9\x38\x3d\xee\xba\x81\xe6\xb2\xda\x60\x78\xe6\x5f\x73\x7b\x34\x6a\x7e\xbc\xae\x24\x0a\xdd\xaa\x5c\xcf\xc3\x37\x84\xb6\x28\xde\x8a\xa2\xfd\x3f\x2b\x11\x32\x4a\xe3\xd4\x8f\x19\x28\x6e\xa8\x04\x30\xc9\x60\x4a\xa5\x91\x63\x8e\xa5\x34\x72\x54\x41\x15\x64\x94\x24\x4e\xa2\x61\x12\x86\x00\xc4\x0c\xbe\x15\x25\x29\x4f\x9d\x9e\x88\x8c\x80\xd2\x64\x2a\x8b\x9b\x7a\x91\x8c\xa0\x7a\x69\x2c\x13\x8e\x80\xf4\x88\xd1\xd0\xad\x39\x85\x46\x1b\x6b\x83\x87\xe2\x24\x44\x88\x24\x85\x0e\x18\x01\x0f\x86\x31\x3a\x14\x5c\xc2\x05\x22\xe6\x27\x24\x89\x68\xea\x2a\x9b\x12\x1e\x81\xa6\x85\xef\x2e\x02\x9d\xe5\xba\x17\x6e\x27\x18\x95\xcc\xef\x2f\xf7\xbc\x6a\x98\xfd\x07\x75\x5b\x04\x5b\xf8\x63\xcb\xbd\x8e\xab\x97\xbf\x03\x00\x00\xff\xff\xf3\x06\x03\xcf\xab\x0d\x00\x00") + +func cmd_drone_server_static_images_logo_svg_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_images_logo_svg, + "cmd/drone-server/static/images/logo.svg", + ) +} + +func cmd_drone_server_static_images_logo_svg() (*asset, error) { + bytes, err := cmd_drone_server_static_images_logo_svg_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/images/logo.svg", size: 3499, mode: os.FileMode(436), modTime: time.Unix(1423350681, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_index_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x56\x4f\x73\xda\x3e\x10\x3d\xff\xf2\x29\x14\x5d\x7c\xc8\xcf\x92\x81\x34\x9d\x61\x6c\x7a\x68\x7a\xec\x24\x33\xe9\xa5\x47\x61\xaf\x8d\x40\x96\x3c\x92\x4c\x42\x3f\x7d\x57\x76\xa0\x29\x4d\x03\x98\xf4\xe0\x31\xde\xd5\x7b\x6f\x57\xfb\x67\x48\x2f\x6f\xef\x3e\x7f\xfb\x7e\xff\x85\x2c\x7c\xad\x66\x17\x69\x78\x11\x5d\xc5\xa2\x69\x32\x5a\x58\xa3\x81\x12\x25\x74\x95\x51\xd0\x34\xf8\x41\x14\xb3\x8b\xff\xd2\xb9\x70\x40\x16\x16\xca\x8c\x72\xca\x83\x45\x49\xbd\xea\x2d\xd1\xc2\xfb\x66\xca\x79\x69\xb4\x77\xac\x32\xa6\x52\x20\x1a\xe9\x58\x6e\x6a\x9e\x3b\xf7\xa9\x14\xb5\x54\x9b\xec\xc1\xb4\x36\x87\xab\x07\xa1\xdd\xd5\xbd\x35\xd3\x71\x92\xfc\x3f\xc1\xe7\x1a\x9f\x1b\x7c\x3e\x26\x49\x44\x2c\xa8\x2c\x72\x7e\xa3\xc0\x2d\x00\x7c\x44\xfc\xa6\x81\x2c\xf2\xf0\xe4\x03\x57\xf4\x8a\xb4\x3b\x42\xfb\xae\x01\xdd\x29\x4f\xb7\x6a\x93\x81\x6a\x47\x88\x7d\x0d\x7e\xb0\x56\xf8\x4e\xed\x9c\xbc\xf2\x42\x33\x2b\x1e\x2b\xe9\x3b\x91\x1f\x62\x6d\x94\x59\x29\xfc\x59\x0b\x0f\x56\x0a\x15\x17\xe0\x64\xa5\x63\x99\x1b\x2d\xf3\x38\xc4\x86\x3e\x87\xce\xc0\xfb\xd6\x31\x56\x4b\xcd\x82\xf6\x19\xc1\x2d\x31\x79\x65\xda\xa2\x54\xc2\x42\x17\xa2\x58\x8a\x27\xae\xe4\xdc\x71\x93\xfb\xa0\xe6\xf8\x98\x8d\xd8\x78\xf7\x39\x40\x36\x1c\xa4\xbf\x0e\xd2\x6d\x27\x1e\xac\xc4\xad\x35\xb2\xe8\x3b\x0e\x8b\x62\x28\xd9\x6f\x5d\xee\xbc\xc0\xb0\x78\x4f\xce\xbb\x09\x38\x36\xb8\x94\xf7\xd3\x91\xce\x4d\xb1\x09\x43\x84\x37\x21\x56\x41\xa0\x90\x6b\x62\x8d\x82\x8c\xd6\x42\x6a\x1a\x7c\x6b\x09\x8f\xb3\x94\xa3\x67\x76\x81\x27\x5c\x6e\x65\xe3\x89\xb3\x79\x48\xe3\xc0\x45\xe2\x3c\xb6\x68\x66\x4b\xc7\x47\x6c\xc2\x46\x1f\x5e\x58\x28\x92\xf6\x64\xb3\x77\xa3\x8d\xad\x69\x3d\xfc\x33\x72\x70\xdd\x22\x78\x17\xfe\xb8\x95\x3c\x61\xd7\x2c\x79\x61\x38\x8f\xb8\x36\x35\xe0\x6c\x2c\x43\xdb\xde\x20\xef\xf3\x77\x68\xda\xdf\x79\x91\xf8\x32\x8e\x49\xa8\x30\x59\x8a\xb5\x78\x56\xc1\x4d\xaa\x64\x8e\x4d\x65\x34\x89\xe3\x3f\xe4\xb7\xfd\xd6\xd9\x1c\xc7\xe1\xac\xdf\x8e\x77\x0f\xd0\x77\xe8\x29\x08\x9c\x39\x8f\xcd\xa8\xc0\xe2\xad\x55\x10\x06\x66\x28\xdc\x42\x63\x86\xa3\xe7\xad\x54\xc5\x70\x78\x8b\x2b\x75\x1f\x7d\x00\x8e\x88\xb5\xcc\x61\x50\xde\x3b\xec\xe9\x49\xef\xa0\x03\x32\xde\x61\x5f\x4b\xf7\x48\xa8\x32\xd5\x40\xa4\x37\x2b\xd0\x03\xb1\x25\x40\x71\x5a\x79\x4a\xa9\x7c\xa8\x6c\xff\x3e\x49\x75\x0b\xad\x2c\x4e\x9e\x3f\xb4\x09\xff\x02\xf6\xb2\xde\x1f\x25\x5c\xea\x61\x9b\x77\xcb\xbd\xfb\x87\xf4\x33\x00\x00\xff\xff\xca\x40\x79\xa8\x32\x09\x00\x00") + +func cmd_drone_server_static_index_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_index_html, + "cmd/drone-server/static/index.html", + ) +} + +func cmd_drone_server_static_index_html() (*asset, error) { + bytes, err := cmd_drone_server_static_index_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/index.html", size: 2354, mode: os.FileMode(436), modTime: time.Unix(1431329456, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_controllers_agents_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x91\x51\x6a\xc3\x30\x0c\x86\x9f\xd3\x53\xe8\xa1\x10\x07\x82\x7b\x80\xb2\x87\xd1\x87\x5d\x60\x17\x10\xb6\x96\x98\xb9\x56\xb1\x65\x4a\x29\xbd\xfb\x64\xb7\xeb\xf6\x32\x58\x08\x21\xb6\xf4\xfb\xfb\x7f\xcb\x7c\xd4\xe4\x24\x70\x02\x33\xc1\x75\xb3\x19\x9e\xeb\xd7\x85\x92\x94\x83\xe4\x68\xb6\xc5\xf1\x89\x66\xd8\x9e\x43\xf2\x7c\x9e\xa1\x16\xca\x65\x06\xec\x2d\x5d\x07\xfa\xec\x76\x20\x6b\x28\xa0\xaf\xac\x04\xe8\x7d\xa6\xd2\xfe\x51\x1e\xad\x50\x56\xae\xd1\x83\xe3\x94\xc8\x09\x9c\x83\xac\xb6\x6b\xef\x08\xdb\x34\xf0\xf2\x0d\xb2\x91\x1d\x36\x33\x96\x73\x58\x42\xda\x3f\x39\x6f\x24\x77\x88\xab\x39\xeb\xc9\xf1\x02\x58\x75\x9d\x24\xa8\x82\x7c\x77\xb8\x19\x86\x6e\xd4\x2e\x24\x07\x74\x2b\x79\x33\xd9\xd6\xf4\x0c\x6d\x4e\x78\x89\x8c\x7e\xba\x6a\xef\xf0\xf0\xd0\x34\xea\xe1\x51\xb2\x1e\x05\xf7\x5a\xbe\x4d\x8a\x1f\x86\x0e\x4f\x94\x35\x50\x01\x84\x4c\x47\x16\x02\xe1\x4f\x4a\x56\xcb\xf7\x9c\x8d\xf8\xde\xb6\xfe\x05\xec\xe2\x3f\x88\xc3\x4d\xa1\x98\x96\x1a\xb1\xe5\xb1\x47\xf6\x35\x92\x19\x7d\xe6\x44\xe3\xd4\xb6\xf4\x32\x25\x73\x8c\x94\xcd\xf8\x33\xb4\x71\xfe\x35\x41\x3d\xe8\x36\x19\xfd\x7e\x05\x00\x00\xff\xff\x2a\x1b\xf2\x8b\xef\x01\x00\x00") + +func cmd_drone_server_static_scripts_controllers_agents_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_controllers_agents_js, + "cmd/drone-server/static/scripts/controllers/agents.js", + ) +} + +func cmd_drone_server_static_scripts_controllers_agents_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_controllers_agents_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/controllers/agents.js", size: 495, mode: os.FileMode(436), modTime: time.Unix(1430442399, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_controllers_builds_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x57\x4b\x6f\xe3\x36\x10\x3e\xcb\xbf\x82\x1b\x04\x90\x9c\x78\x95\xcd\x35\xae\x51\x74\x17\x6d\x13\xa0\xaf\xc3\xde\x82\xa0\xa0\x25\xda\x26\x96\x26\x55\x3e\x92\x1a\x59\xff\xf7\xce\x90\x94\x44\x3b\x72\x1c\x63\x81\xa2\x87\x5e\x22\x93\x9c\x37\xbf\xf9\x38\x29\x16\x4e\x56\x96\x2b\x49\x8a\x31\x79\x1e\x8d\xb2\xab\x8b\x8b\x51\x46\x2e\xc8\x47\xc7\x45\x6d\x3e\x59\x2d\x88\x66\xa6\x51\xd2\xf0\xb9\x60\x64\xa1\x34\xac\x65\xcd\x34\x97\x4b\x62\x57\x0c\x56\x8d\xca\x8d\xd7\xd1\xac\x62\xd2\x92\x39\xaa\x92\x15\x37\x56\xe9\x4d\x89\x27\x57\xa3\xac\xf3\xd3\x1b\x2e\xce\x4d\xa5\x1a\x36\x21\xe7\x5a\x39\xcb\xfe\xa0\x9a\xae\xcd\x24\xa8\xc3\x17\x0d\xc3\xc7\x19\xa6\xe1\x23\xd4\xd2\x84\x08\xb3\x47\xaa\x89\x7a\x92\x4c\x93\xd9\x8e\x6a\xe9\x37\xa7\x51\x42\xd2\x35\x23\xfb\x12\xb8\xd9\x0a\x2c\x9c\x10\xbf\xa1\xd0\x2c\x58\xbb\xcc\xaf\xf2\xcb\x20\x00\x12\x57\x57\xe4\x67\x66\x8d\x4f\xb1\x72\x1a\x72\xb6\x62\x43\xa8\x83\xb5\xb4\xbc\xa2\x96\xd5\x3e\x34\x10\xf5\x11\x96\x4b\x66\x3f\xd1\x6a\xc5\xea\x62\x5c\xa2\x50\x57\xd9\xa2\xa1\x1b\xa1\x68\x3d\x7e\x06\xd9\x2c\xe4\x5c\xa2\x0e\x38\x8e\x47\x65\x4d\x2d\xc5\xb8\xb6\xe3\x1d\xe7\x34\x14\x81\x63\x21\x61\xdb\x2f\xd0\x51\xd1\xc6\xfe\x16\x57\xa8\x35\xe8\xaa\x84\x2c\xaa\x55\xaf\xcc\xb4\xde\x51\x84\xb5\xc2\x20\xe1\x3b\x18\x9b\x80\x1b\x26\x6a\x11\x2f\x0c\x8e\xc2\x8f\x12\xf7\x4f\x8a\x30\xe8\x81\x27\x2a\x97\x4e\x50\x5d\x72\xf3\x83\xd6\x74\x53\xa4\x31\x8f\xc9\xf7\x3b\x39\x90\x1b\x72\xff\xf0\x2d\x89\xc4\xc3\x27\xd4\x85\xc3\x4e\x1b\xeb\x85\x48\xcb\xda\x82\x7b\x09\xbf\x5d\x62\x56\x7f\xca\x57\xd2\x0a\x7a\x69\xe9\x4b\x63\x29\xc0\xa7\x06\x17\x56\x3b\x8f\x3e\x1f\x01\xfc\x4d\xa2\x70\xf2\x78\x1c\x51\xe6\x48\x24\xaf\x87\xb0\xa0\xc2\xbc\x88\x21\x98\x37\x6e\x6e\x2a\xcd\xe7\xac\xbb\xbb\x49\x1f\x0c\x7b\x04\xd8\x47\xd3\xd8\x3c\xb4\xae\xf7\xec\x21\x33\x14\x78\xc4\x67\x1f\xa6\xfc\xbb\x9d\xab\x2d\x05\x93\x4b\xbb\x9a\xf2\xcb\xcb\x36\x3c\x94\x0c\x44\x01\x2d\x9a\xca\xde\x73\x7f\xab\x59\xc6\x17\x24\xb8\x2d\x0d\xfb\xcb\x31\x59\x31\xf2\x6e\x36\x0b\x4a\xdd\x56\x6b\x2e\xab\x14\xb4\xa5\x84\xfa\x12\x00\x28\x5f\x4a\xa5\x99\x3f\xd8\xfa\xbf\xb0\xe7\x1a\x40\x0d\xf3\xfd\x1c\xfc\x42\x51\xac\x33\x69\xad\xba\x00\x10\x2b\xe8\x79\x9a\x9e\x9e\xd3\xa6\x11\x9b\x62\x1c\x36\xdb\x02\xf4\x77\x8a\x95\xf4\x41\xbf\xf3\x67\x7b\xf7\x10\x0b\xd1\x38\xb3\x8a\xc5\x3c\x6c\x7c\x1b\x41\xea\x6d\xee\x10\xf2\x11\x3e\xa6\xb1\x3a\x83\x9c\xfb\x0a\xe5\x9e\x3f\x71\x59\xab\xa7\xc0\xb2\xc3\x0c\x9c\x70\xaf\xb1\xac\xf1\x84\xa2\x0d\xbb\x93\xb6\xd8\x61\x58\x3c\x1c\x93\xaf\x5f\xc9\x75\x47\xc4\x6e\x3d\x7f\xc9\xd5\x61\x77\xfa\xaf\xd0\x79\x1b\xb6\x66\x74\x8d\x65\x4a\x60\x8b\x07\x96\x72\xd1\xef\x05\x8a\xbb\x93\xdc\x72\xc0\x8b\x49\xd4\xfa\xea\x26\xf6\xd2\x8e\x8d\x57\x8e\x18\xe8\xb4\x5a\x18\x68\x66\x9d\x96\xdd\xf5\x66\x69\x34\x01\x43\x6d\x6b\x01\x92\x1f\x99\xb6\xb0\x2f\xd9\x13\xf9\x89\x0b\xcb\x74\xf1\x1c\xe4\x6f\x50\x74\x02\xfb\x82\x4b\x76\xe3\x23\x0e\x7d\x1c\x12\x61\x1a\xe3\xa9\x55\xe5\xd6\xd8\x37\xf0\x52\xfc\x28\x18\xfe\xfc\xb8\xb9\xab\x8b\x33\x3c\x3f\x0b\xe2\xf8\xb3\xe4\x12\xea\x74\xfb\xf9\xd7\x5f\x40\xe9\xec\x2c\x44\x00\xb9\x77\x44\x00\xaf\x9f\x4a\x1a\x46\x59\xd7\x38\x8b\xe9\x67\x88\x93\x41\xc2\x08\xd7\x3a\xf1\x18\x49\xe8\xc3\x13\x78\x28\xc4\x9e\xe7\xcb\x59\x9b\x70\x69\xd5\xad\x5d\x8b\x20\xdb\x53\x00\xde\x4e\xd7\xe5\x18\x5d\xa5\x95\x10\x7d\x68\xca\x5a\xb5\xc6\x67\x08\x57\x0d\x5d\x32\x02\x5a\x4c\x52\xe8\x8e\x3a\x28\x45\x74\x97\x41\xf3\xb3\x2a\x3e\x74\x88\x2f\xbb\x5a\xcd\x55\xbd\x89\x12\xb7\x8c\x2f\x57\x6d\x7f\x6e\xf7\xb8\xf2\xff\xb9\xe0\xc8\x5c\xd0\xe1\xa5\x1f\x08\xd2\xc8\x5a\x88\xbc\x79\x2e\x18\x08\xb1\x3d\xb7\xd4\x7c\xd9\x3b\x6e\x39\x1c\xf1\xf7\xfe\xfa\x61\xda\x91\xf2\x7d\xde\x00\x4d\x42\xbf\xe5\x13\x92\x7f\xe1\x02\xd0\x91\x3f\x00\x0e\x6b\xf6\xf7\xef\x8b\x22\x31\x88\x8f\xa5\x85\x77\x05\xdf\x9a\xf7\xd7\x2d\xf2\x20\xbb\x5a\x11\xa9\xec\x0a\x4c\x78\x48\x10\x06\xcd\x87\x58\x7b\xa9\x4c\x66\xa0\x9b\x6b\x27\x25\xfa\x4b\x4c\x44\xca\x48\x4b\xd4\x32\x41\x4b\xfd\xc1\xac\xe7\x5a\xaf\xb2\x60\x38\x16\xa0\x06\xf6\x9c\xe7\x7b\x5c\x2c\xb8\xe4\x06\x40\xd5\x53\x52\x6c\xca\xa1\x5a\x87\x76\x7c\xb5\xe2\x6f\xa0\x1e\xcf\x36\x83\xdc\x73\x0a\xfb\x04\xf9\x17\xf4\xb3\xc7\x01\x3b\x83\x5f\x6c\xc4\xc3\xb8\x3c\x84\xcc\xb6\x71\xe3\x83\xfa\x4d\x63\x22\x3c\xba\x30\x44\xd9\x01\xba\x8f\x20\x8f\x02\xa7\x01\xfd\x28\xd2\x4f\x81\xfa\x91\x22\x1d\xa8\x51\xe4\xb6\x34\xd7\x8a\xc2\x64\x25\x0e\xa7\x1a\xce\xff\x8b\x99\x92\x53\x53\x6d\xdf\xfe\xbd\x44\xe3\xf6\x3b\xfc\xf6\x3a\x27\xce\xc9\x07\x06\xd8\x6e\x6e\x8a\x55\xdb\x9b\x10\x76\xe7\xd7\xed\x68\x78\x7a\x1d\x60\xc9\x7e\x62\xdd\xad\x64\x08\x61\xa0\x84\x2f\x46\xcf\xf6\xfd\xf7\x40\xef\x07\x94\xe4\xa9\xeb\x9d\x9f\x40\x7c\xc3\x04\x17\xf9\x0d\xda\x06\x5f\x0d\xe5\xd2\x01\xcd\x1b\x4b\x74\xf7\x86\xb6\x6e\x40\x1e\x85\x11\x39\xfe\xdb\x08\x9b\xe5\x5a\xd5\x4e\xb0\x22\xaf\xb5\x92\x2c\x47\xb6\x29\xf1\x3f\x03\x7c\xd6\x81\xca\xf2\x6e\x10\x86\x57\xa0\xfb\x3d\x2c\x65\x52\x31\xbf\x00\x87\xdb\x31\xa6\xf1\x4f\x00\x00\x00\xff\xff\x2e\xae\xbc\xab\x35\x11\x00\x00") + +func cmd_drone_server_static_scripts_controllers_builds_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_controllers_builds_js, + "cmd/drone-server/static/scripts/controllers/builds.js", + ) +} + +func cmd_drone_server_static_scripts_controllers_builds_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_controllers_builds_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/controllers/builds.js", size: 4405, mode: os.FileMode(436), modTime: time.Unix(1431330595, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_controllers_commits_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xa4\x54\x4f\x8b\xdb\x3e\x10\x3d\x3b\x9f\x42\x0b\x01\xdb\x49\x50\x7e\xe7\x5f\x1a\x4a\xc9\xa1\xb7\xd2\xfb\x52\x8a\x62\x8f\x6d\x81\x22\xb9\xfa\xb3\x4b\x58\xf2\xdd\x3b\x23\xd9\x8e\x93\x6e\x77\x5b\x7a\xb1\xd0\xcc\x9b\x99\x37\x6f\x46\x2e\x9a\xa0\x2b\x2f\x8d\x66\x45\xc9\x5e\x16\x8b\x6c\xbb\x5a\x2d\x32\xb6\x62\x07\x73\x3a\x49\xef\x0e\xde\x2a\x66\xc1\xf5\x46\x3b\x79\x54\xc0\x1a\x63\xf1\xae\x6b\xb0\x52\xb7\xcc\x77\x80\xb7\xde\xe4\x2e\x06\x59\xa8\x40\x7b\x56\xc5\x58\xd6\x49\xe7\x8d\x3d\x73\x72\x6d\x17\xd9\x54\x69\x96\xba\x58\xba\xca\xf4\xb0\x61\x4b\x6b\x82\x87\xaf\xc2\x8a\x93\xdb\xb0\x63\x90\xaa\xc6\x93\x52\xe3\x11\x1c\x58\x3c\x94\x69\x5d\x22\x99\x3d\x09\xcb\xcc\xb3\x06\xcb\xf6\x37\xa1\x3c\x1a\x77\x03\x42\x8b\x13\xb0\x7b\x04\x19\x47\x40\x13\x94\xfa\x42\xa0\x7d\xca\xb6\xce\xb7\xf9\x3a\x01\x10\xb1\xdd\xb2\xcf\xe0\x5d\x6c\xb2\x0a\x16\xbb\xf6\xea\xcc\x44\xc0\xbb\xf6\xb2\x12\x1e\xea\x48\x0d\xa1\x91\x21\x6f\xc1\x1f\x44\xd5\x41\x5d\x94\x9c\x40\x93\xb8\x45\x2f\xce\xca\x88\xba\x7c\x41\x6c\x96\x7a\xe6\x14\x83\x85\x07\x17\xaf\x85\x17\xc4\xeb\x52\xde\x14\x17\x49\x04\x49\x4a\xa2\x39\x5e\xa8\x50\x31\x72\xff\x93\x52\x14\xf5\x6a\x29\x8e\x5d\x54\xdd\x35\x18\xac\xbd\x09\xc4\xbb\x21\x92\x78\xbe\xca\x4d\xe1\x88\x99\x69\x86\x89\xe3\x12\x64\x69\x74\x9c\x1c\x7f\x45\x31\xc5\x61\x29\xa1\xdb\xa0\x84\xe5\xd2\x7d\xb2\x56\x9c\x8b\x39\xe9\x92\x7d\xbc\x69\x82\xfd\xcf\x1e\xbf\xfd\x4b\x27\x83\xf3\x99\x62\xd1\x39\x45\x93\x60\xb4\x6a\xd9\xa8\x78\x44\x44\x33\xa7\xae\xbe\xeb\x37\xda\x4a\x71\x73\xed\xb9\xf3\x02\xf7\xa7\xc6\x12\xde\x86\xb8\x7e\x91\x01\x7e\x67\x2c\x82\x7e\x9f\xc7\x80\x79\x87\xc9\xdb\x14\x1a\xa1\xdc\x2f\x1c\x52\x7a\x17\x8e\xae\xb2\xf2\x08\xd3\xec\x36\x57\x32\xf0\x84\x7b\x3f\xa4\xa6\xd7\x23\xea\xfa\x2e\x1f\xfd\x1c\x0a\x72\xc9\xfd\x7f\x3b\xf9\xe1\x66\xb4\x5c\x81\x6e\x7d\xb7\x93\xeb\xf5\x48\x8f\x90\xd1\x49\x6f\x74\x8e\x7d\x94\x71\xaa\x59\x26\x1b\x96\xca\x72\x07\x3f\x02\xe8\x0a\xd8\xc3\x7e\x9f\x82\x26\xd3\x98\x2e\xab\x0c\xbe\x4b\x8d\xfa\x32\xdc\x50\xd9\x6a\x63\x21\x3a\x2e\xf1\x8b\xb6\xd0\xe3\xd6\x40\x7c\xd0\xa9\x2e\x8a\xe2\x83\x9b\x6b\x35\x11\xa0\x5d\xa1\xca\xbb\xb9\x77\x29\xfa\x5e\x9d\x8b\x32\x19\x47\x01\xae\x33\x25\x25\x23\xe9\x87\xe8\xbb\x9b\xc3\x20\x44\x1f\x5c\x37\x88\xf9\xfb\xe4\x97\x61\x49\x63\xce\xe1\x4d\xa0\x89\x9f\x4c\x1d\x14\x14\x79\x6d\x8d\x86\xbc\x24\x13\xb5\x6d\x8d\x52\x60\x8b\x7c\xf6\x6f\xcd\x37\xf3\x3f\x6d\xb9\xb8\x94\x94\xfa\x67\x00\x00\x00\xff\xff\x50\xeb\xce\x57\xf1\x05\x00\x00") + +func cmd_drone_server_static_scripts_controllers_commits_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_controllers_commits_js, + "cmd/drone-server/static/scripts/controllers/commits.js", + ) +} + +func cmd_drone_server_static_scripts_controllers_commits_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_controllers_commits_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/controllers/commits.js", size: 1521, mode: os.FileMode(436), modTime: time.Unix(1431328402, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_controllers_repos_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x55\x4d\x6b\x1b\x3d\x10\x3e\xaf\x7f\xc5\xbc\x10\x58\x6d\x62\xe4\xfb\x1b\x4c\x09\xa1\xf4\x56\x4a\xaf\x21\x07\x75\x35\xb6\x97\x2a\xd2\x22\x69\x1d\x4c\xf0\x7f\xef\xe8\x63\x3f\x1c\x6f\x9c\xd0\x5c\x7a\x48\xd6\xd2\x3c\x9a\x79\xe6\x99\x19\x89\x6d\x3a\x5d\xfb\xc6\x68\x60\x15\xbc\x2c\x16\xc5\xea\xfa\x7a\x51\xc0\x35\xfc\xc4\xd6\xb8\x7b\x6f\x15\x58\x74\xad\xd1\xae\xf9\xa5\x10\x36\xc6\xd2\x5a\x4b\xb4\x8d\xde\x82\xdf\x21\x74\x0e\x6d\xe9\xe2\x11\x1b\x8e\x34\xde\xd8\x03\xec\xcc\x13\x82\xab\x2d\xa2\xe6\xc1\xb6\x5a\x14\x43\xa0\xc1\x33\xbb\x72\xb5\x69\x71\x09\x57\xd6\x74\x1e\x7f\x08\x2b\x9e\xdc\x32\xb9\x59\x46\xc7\x2e\x71\x2a\x56\x2b\xf8\x86\xde\xc5\x80\x75\x67\x89\x81\x57\x07\x10\x1d\xad\xb5\x6f\x6a\xe1\x51\x46\x3c\x41\xe3\x31\xbe\x45\x7f\x2f\xea\x1d\x4a\x56\xf1\x00\x1a\xd2\x64\xad\x38\x28\x23\x64\xf5\x42\xd8\x22\x11\xe0\xe1\x0c\xac\x21\x9b\xb8\x14\x5e\xdc\x92\xf9\x58\xdd\x4e\x83\x0b\x50\x8d\xf3\x60\x36\x89\x21\x78\x03\xb2\x71\xad\x12\x07\x68\x74\xa0\x96\xb0\xd2\x9a\x56\x9a\xe7\x90\x77\x11\x81\x3c\x1c\xfb\x10\x8f\xe4\x77\x0d\x42\x6f\x3b\x25\x2c\x6f\xdc\x9d\xb5\xe2\xc0\xa6\xc4\x2a\xf8\x72\x42\x14\xfe\x87\x87\xc7\xc4\x96\x93\x10\xf5\x6e\x0c\x81\xd6\x9e\xb8\xa7\xb5\x09\x79\xd2\xb7\x4f\xaf\x38\xbe\x2a\xf9\x9d\x94\xb3\x45\x17\xe4\x72\x2f\x42\xd1\x05\x68\x7c\x7e\x55\xef\xd9\x1a\x67\x57\x63\x95\x95\x21\x82\x64\x3d\x2f\xf1\x40\x51\x48\x49\x04\x87\x0c\x9c\xea\xb6\xc9\x9e\xa5\xa4\x3f\x9f\x76\xdf\x90\x33\x81\x8b\x21\x16\x6f\x85\xdf\xb1\x72\x55\xde\xc4\x53\x21\xef\x4b\x4a\xbd\x21\x55\xd2\x8a\xc4\x3a\xd3\xeb\xab\x6c\xfc\xac\x60\x48\x86\x24\xd7\x3b\x32\xf5\x1e\xe6\x74\xba\x3c\x18\x45\xb1\x17\x16\xa8\xd5\x62\xf7\x4e\xb1\x3c\x6e\xde\x66\x84\x16\x34\x8c\xaf\x11\x61\xb3\x07\x6c\x3a\xa5\xbe\x07\xd0\x3a\x79\xbb\x09\x7a\x25\xc0\xbf\x33\x7c\xa3\x8c\xc3\x60\x51\x20\xd6\x73\xff\xe8\x7c\xcd\x86\xfa\x8b\xc9\x19\x7b\xd6\x89\x3d\x4e\x9b\x36\x44\x39\x69\xda\xae\xa5\x48\x98\xf6\xdf\x69\xdb\x8b\x3c\x3f\xd3\xb8\x23\x5d\x89\x0a\xfd\x65\xc2\x09\xf2\x21\xc2\x67\x73\xf6\xe9\x11\x1b\x99\xb6\xa1\x53\xd7\x2f\xc7\x93\xeb\x21\xb6\xef\x94\x7d\x44\x65\x3e\xcd\x06\xd8\x7f\x13\x11\x93\x0b\x37\x23\x6f\xb6\x90\xa3\xe8\xbf\x38\x2e\x66\xed\x0f\xf1\xc3\x7f\xe3\xe1\x71\x9d\x7e\xee\x85\xea\xe2\xe0\xcc\xb0\x3c\x97\xf9\x8c\x2d\x79\xca\x6c\x72\x1d\x66\x62\x86\x68\x93\xeb\x26\xbf\x06\xb4\xc1\x9f\x8c\xec\x14\xb2\x92\xde\x18\x8d\x65\x15\xb6\x6a\xa3\xbd\x35\x4a\xa1\x65\xe5\xf0\xb2\x96\xcb\xf1\x95\x9d\x45\xe5\xbb\x39\xe3\xf2\x6a\x16\xd9\x5f\x4f\x19\xda\x2f\xa9\x58\xc7\x8a\xd1\xff\x3f\x01\x00\x00\xff\xff\xaa\xad\x65\x25\x41\x08\x00\x00") + +func cmd_drone_server_static_scripts_controllers_repos_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_controllers_repos_js, + "cmd/drone-server/static/scripts/controllers/repos.js", + ) +} + +func cmd_drone_server_static_scripts_controllers_repos_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_controllers_repos_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/controllers/repos.js", size: 2113, mode: os.FileMode(436), modTime: time.Unix(1430882412, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_controllers_users_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x95\x4f\x6f\xdb\x3c\x0c\xc6\xcf\xce\xa7\xe0\x9b\xb7\x40\xec\x22\x70\xb0\xd3\x80\x05\xc1\x0e\x3d\xec\x52\x60\xc0\xd0\x9e\x86\x1d\x54\x8b\x71\x8c\xc9\x92\x21\xd1\xfd\x83\x36\xdf\x7d\x94\x14\xbb\xb6\x93\xb4\x1d\xb0\x4b\x10\x49\x0f\xc9\x1f\xe5\x87\x76\xba\x6d\x75\x41\x95\xd1\x90\x66\xf0\x3c\x9b\x25\xfd\xfa\xd6\xa1\xbd\x36\x65\xa5\xaf\xc8\xaa\xf4\xc2\x15\xa6\xc1\x25\x5c\x3c\x54\x5a\x9a\x07\xaf\x4d\x92\xd5\x0a\x04\x11\xd6\x0d\x39\x20\x03\xf8\x48\x56\x14\x04\x42\x03\x5a\x6b\x2c\xd4\xe8\x9c\x28\x11\xb6\xd6\xd4\x51\x4e\x3b\x84\xdb\x1f\xd7\xb0\x13\x6e\x07\x95\x86\xad\xb1\xb5\x20\xf8\x3f\xe8\x37\x5f\x59\x14\x0b\xe5\x31\xc1\xa6\xab\x97\x2b\x53\x08\x8f\x95\xfb\xc8\xdc\xb5\x77\x8e\x6c\xfa\x39\x5b\xcf\x92\x3d\x43\xaf\x2e\x2f\x67\x09\x5c\x06\x66\x8f\x0b\x95\x03\x8b\xae\x31\xda\x55\x77\x0a\x7d\x19\xa8\x85\x16\xdc\x4d\x09\x2d\x8b\xc0\x21\x11\x2f\x5c\xee\xe3\x56\x93\xb6\x47\x1d\x7b\xb9\x5b\x72\x7f\xbf\x51\xbb\x78\x47\xbe\x93\x6f\xe8\x9b\xe6\x76\x8a\xd6\x5a\xd4\xa4\x9e\x40\xb4\xbc\xd6\x54\x31\x29\xca\x10\xc7\xd2\x10\x9e\x97\x48\x57\x51\x97\x66\xb9\x57\xf5\xf7\x9e\x36\xe2\x49\x19\x21\x33\x7f\xa1\x5d\xf7\x01\x71\x03\x87\xa3\x5c\x0a\x12\xdc\x69\xb2\xe7\x7e\x27\xd5\x83\x32\xb2\xf1\x49\xfc\x93\xab\xca\x7d\xac\x4e\xd4\x4f\x2a\xc1\xcb\x0b\xfc\xfc\x35\xa8\x77\x10\x6b\x7c\xb8\xf1\xfa\xcd\xf3\xb5\xb8\x43\xf5\x05\xe6\xf3\xfd\xfa\xf5\xb8\xb0\xc8\x7d\x07\x05\x27\xec\xcb\x76\x51\xd1\x31\x1d\x61\x63\x98\xb0\x3f\x3a\x43\x1a\x23\xc6\xac\x79\xd3\xba\x5d\x3a\xc4\xf5\x1e\x48\xde\x85\x0c\xbd\x24\xc1\x2c\x9d\xd4\xe2\x3d\x2b\x8f\x80\xe9\x98\x56\xa2\x42\xc2\xc3\xc9\x04\xb6\xa3\xbc\x17\x96\x0d\x2d\xf1\xd1\x9b\x76\x44\x1c\x76\xbf\x6f\x0f\xe1\xeb\x13\x3d\xb9\x46\x55\x05\xa6\x41\xb8\x84\x4f\xd9\x08\xf8\xc8\xe0\xee\x63\x0e\x17\x45\x61\x5a\x4d\xd1\xe1\x70\xb3\xe3\x80\x46\x58\x02\xb3\x0d\xc6\x71\x15\xa1\x4f\xe2\x03\x85\xac\x2b\xcd\x9e\xb1\x82\x8c\x75\x60\xb4\x7a\x3a\x39\x17\xee\x78\x30\xfa\x17\xc1\xdf\xcf\x83\x28\x76\x28\xff\xc1\x38\xc4\x8c\x1f\xf6\x7c\x90\x9f\xcf\x76\x50\x29\xff\xe6\xdb\xcc\xe7\x03\x83\x0b\x29\x87\x3e\x09\x8a\xc3\xd3\x8f\x08\xc1\xd4\x71\xfb\x2d\x8e\x11\xc8\x7b\x7e\x1e\x72\x9c\xf0\x30\x99\xb2\xe4\xa7\x3f\xc0\xf2\x59\x07\x54\x79\x78\xb6\x2c\xf8\xef\x75\xb5\x1e\x20\xb7\x14\x23\x8e\x87\xa3\x36\xf7\x6f\x25\xee\xa7\x22\xec\x4f\x87\xe2\xec\x4c\xc4\xd0\x6e\x24\xfa\xd2\x93\x4b\x79\x7f\x20\x84\x2e\x5b\x25\xbc\xa1\xf2\xda\xc8\x56\x61\xba\x90\xd6\x68\x5c\x64\x7e\xab\x30\x9a\xac\x51\x0a\x6d\xba\x18\x7d\xc7\x16\xcb\xf1\x77\xed\xa4\x7a\x20\x3c\xab\x71\x03\x51\xf8\xcf\x70\xfb\x2c\xe5\xdf\x3f\x01\x00\x00\xff\xff\x4c\xa7\x69\x96\x52\x07\x00\x00") + +func cmd_drone_server_static_scripts_controllers_users_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_controllers_users_js, + "cmd/drone-server/static/scripts/controllers/users.js", + ) +} + +func cmd_drone_server_static_scripts_controllers_users_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_controllers_users_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/controllers/users.js", size: 1874, mode: os.FileMode(436), modTime: time.Unix(1431308314, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_drone_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x57\xdd\x6e\xdb\xb8\x12\xbe\x76\x9e\x62\x4e\x10\x54\x72\x6a\x48\xed\xc1\xe9\x8d\x0b\x5f\xa4\x39\x5d\xa0\x40\x17\x58\x24\xc8\x55\x90\x2d\x68\x69\x6c\xb1\x2b\x91\x2a\x7f\xec\x66\x8b\x3c\xd7\xde\xef\x93\xed\x0c\x49\xd9\xf2\x36\x09\xe0\x2d\xb0\x77\xb6\x86\xc3\xf9\xe6\x9b\x21\xe7\x63\xe6\x2d\x82\x75\x46\x56\x2e\x7b\x7b\x72\x92\xaf\xbc\xaa\x9c\xd4\x0a\xf2\x29\x7c\x3b\x39\x99\x94\xe7\xe7\x27\x13\x38\x87\x4b\x83\xc2\xa1\x05\xd7\x20\x08\xb5\xf6\xad\x30\x20\xfa\xbe\x95\x95\xe0\xe5\x05\x2f\x2a\x4f\x26\xc9\x54\x74\xba\xf6\x2d\xe6\x59\x6d\xb4\xc2\x6c\x06\xb7\x27\x93\xc9\x24\x53\xeb\x2b\xed\x1d\xfd\x0f\xff\xbc\x2c\x56\xb2\x75\x68\x6c\x46\xff\xef\xa6\x6f\x47\xe1\xde\x69\xed\x08\x95\xe8\x53\xc4\x7d\x24\x8a\x5e\x83\x41\x42\x8c\x9b\x88\x27\x38\x38\xfd\x1b\x2a\x58\x19\xdd\x0d\x9f\x08\xcd\x2e\x99\x0b\xef\x1a\x6d\xe4\xef\x18\xb2\x9a\x4c\xca\x12\x7e\x92\xc6\xba\x19\xf4\xc2\x10\x01\x1c\xe3\x8b\x47\x73\x1f\xa8\x50\x6b\x5a\xb2\xa1\x04\xc9\x28\x3a\x0b\x0b\xf8\xf6\x30\x8b\xf6\xeb\x60\xa6\x2f\xad\x4e\x89\x37\xc2\x36\x85\xf5\xcb\xe8\x98\xbf\x9e\x86\xe4\x0c\xae\xf1\x2b\xd0\xba\x32\xbf\xfd\xf5\xc5\xe2\xee\xe5\x74\xc1\x3f\xee\xce\xa7\xe5\x7a\x06\x1d\xa7\xca\x20\x3e\x6a\xdd\x53\x70\xa3\xfd\xba\x39\x48\x2c\x20\x0a\x39\xd1\xc2\x6d\x23\x5b\x84\xbc\xa3\xed\xc2\xbe\x05\x7e\xc5\x2a\x1f\xe1\x99\xc6\xac\x26\x11\xef\x6d\x8d\x95\xae\xf1\xe6\xea\xc3\xa5\xee\x7a\xe2\x5f\xb9\xbc\xbb\x7d\x7d\x37\xbd\xa3\x0d\x1e\xb5\xfd\x97\xc9\x9f\x4c\x1e\x12\x2a\xb9\x0a\xe1\xa9\x33\x0c\x50\x7a\xf0\xd9\x5b\x47\x91\x2b\x94\x1b\xac\x09\x26\x08\xa2\x33\x31\xbe\xc5\xe8\x63\x1b\xed\xdb\x1a\xf0\x2b\x15\xad\x72\xbb\x42\xc0\xcd\xd5\xc7\x19\x58\xc1\x19\xe9\x40\x5a\x4b\x14\x6b\x23\xd6\xc9\x8f\x93\xa6\x75\x8a\xf6\xef\x34\xad\x1a\x3b\xc2\x4a\x1b\x58\x6b\x5d\x43\x87\xc2\x7a\x83\xd4\x65\x13\x02\x97\xc7\x3c\x0b\x51\x55\x68\xed\xa7\x00\x24\x31\x10\x22\x5c\xc7\x00\x85\x45\xf7\xc1\x61\x97\x9f\x8e\x17\x9e\xce\xe0\x31\x77\xce\x7f\xd2\x48\xc6\x76\x5f\x18\xec\x5b\x51\xe1\xb5\xa3\x96\xcf\xb9\xf6\xb5\xae\x7c\x47\x5c\x15\x4e\xba\x16\x67\xfb\xea\xf7\xc2\x35\x4a\x74\x98\xf8\x0b\x14\x0e\x3d\xfc\x7f\x5c\x49\x95\x8e\x8c\xe1\xbe\x87\x4a\xab\x95\x5c\x7b\x13\x1b\x99\xb3\x1b\xda\xb7\x13\x52\x3d\x76\x9e\x76\x1d\x7c\x19\x5c\x21\x3f\x0b\x3b\xfd\x62\xf4\x46\xd6\x68\x66\x70\xd6\x38\xd7\x8f\xfe\x0e\xc8\x86\x4f\xf1\x14\x33\xd3\x57\x68\x75\xbb\x41\x8e\x29\x1c\x6c\x65\xdb\x82\x70\x44\x4f\xef\x62\x69\x44\x28\x04\x54\xde\x18\xca\xb4\xbd\x4f\xf5\xf1\x5c\x1d\xc7\xb0\xa8\xf6\xa1\x25\x7a\x23\x19\x79\xf4\xe1\xd3\xc0\x6e\x3d\x13\x9e\x8e\x8d\x89\x91\x6e\x78\xf1\x22\xd6\x85\x1d\xe7\x30\x64\x93\xf3\x5f\x9b\x4a\x46\x67\xc5\x79\xa3\xc2\xde\xb6\x58\xa3\xbb\x14\x55\x83\x75\x1e\x4b\xf2\x30\xf4\xe5\x61\xe2\xf4\xa1\xd8\x12\xb0\x3c\x2b\xe9\x76\x09\xfb\x70\x2a\x2d\xa1\xbc\x31\xed\x1c\xb2\xd2\x52\xf1\x64\x55\xda\xca\xc8\xde\xd9\x72\x23\x71\x6b\x4b\x2a\xac\xb6\x45\xe3\xba\x36\xde\x41\x54\x10\x67\x74\xdb\x32\xb8\xec\x8a\x8d\x97\xce\x24\x5b\xca\x62\x3e\x4e\x87\xc1\x4c\x47\xb1\x5b\xbd\x96\xea\x18\x00\xc1\xe1\x29\x00\x1c\xe1\x23\x2f\x08\x20\xfe\x1e\xab\x37\x9a\xae\x4b\x3c\x26\x1a\x53\xfa\x5c\xb0\xe3\x92\xa5\x0a\x2b\x67\x8f\x89\x1f\x3d\x9e\x42\x70\x11\xac\xc7\x61\x08\x4d\x72\x2c\x05\x4f\x22\xe0\x08\x47\x02\x50\xb8\x3d\xba\xe1\x3e\x89\xba\x7e\xae\xe9\x2e\xea\xfa\x38\x10\x73\xbd\x55\x68\xca\x39\xdf\x3c\xc7\xa0\x59\x7a\xd9\xd6\x4f\xb2\xf1\x2e\x58\xff\x39\x92\x12\x6b\xe9\x8e\x27\x87\xbd\x9e\x63\xe7\x3d\xd9\x7f\x00\xd4\x5c\xf9\x6e\x89\xe6\x68\x9a\x9e\x65\xe9\xc7\xf1\x94\x73\xeb\xb0\xff\xd7\x51\x0d\xc2\xe3\xbd\x12\xcb\x96\x66\x13\x6f\xf7\x06\x48\xad\xf1\x38\xfe\x6e\x78\x84\x68\x6f\x7e\x26\x6b\xee\x8c\xc7\x69\x72\xbe\xe8\x7b\x54\x75\x1c\x6c\xef\x50\x18\x9e\x29\x41\x0c\xd0\x4c\x10\x83\xd2\x02\x52\x31\x26\x0d\x11\xba\xb9\x97\xda\xd3\xa4\xe7\x61\x45\x98\x48\xba\x58\xc7\xd3\xe2\x60\x7a\x15\x35\xae\x84\x6f\xf9\xc2\x40\x51\xf3\xb1\xad\x74\xd7\xd1\x2c\x1c\xd4\x5b\x1c\x9b\x0b\xca\x36\x06\xcd\x5e\x1e\x8c\xfb\x75\x1a\xf7\xd9\x78\xb0\x67\xbb\x94\x3f\x28\x92\x9a\x15\x12\xa1\x11\x1a\xa1\x5a\xf6\xde\x0d\x98\x2c\xa9\x21\x8b\x49\x84\xd5\x92\xe4\x8e\xb3\xd1\x71\xa7\x85\x28\x3d\xfe\xcd\x77\x78\x05\x54\x1c\xa4\x94\x93\x56\x4a\x39\xc1\x96\xe4\x92\xc1\xcf\xe4\x8c\xf5\xf7\x09\xca\x01\x82\xa6\xe4\x7a\x6f\x9b\x9d\xdc\xce\xcf\xbe\x8c\x86\x77\x9a\x8c\x69\x30\xc6\x29\x99\x0d\x10\xdf\x1b\xa3\x4d\x36\x1a\xa6\x31\xde\xde\x2d\x6a\xa4\xdd\xd7\x82\xbb\xc9\x93\x8a\x5d\x2c\xe0\x7f\xaf\x5e\xc3\x8b\x17\xb0\xb7\x45\x45\x52\x78\xd3\xc2\x7f\xc8\x7e\x5a\x8a\x5e\x86\x3b\xf3\x74\xb7\xd9\xbe\x2d\x82\xda\xd9\x4d\xbd\x38\x9f\xe3\x84\x7e\x2e\xe6\xab\xfd\x4e\x81\x4c\x49\x5d\x27\xb8\x83\x2c\xf0\xf9\x18\xf4\x3d\xd0\xf7\x9a\x0e\x0a\x68\x33\x5e\x8d\xb0\x34\x7a\xcb\xec\xb7\xda\x52\xc3\x06\x0a\x15\x3a\xd6\x52\x8a\x83\x6d\xa4\xbb\x2f\x0e\x90\x24\xda\xce\xbe\x14\x11\xcf\x88\xa0\x08\x39\xac\x7b\x78\x9b\x0e\x04\xcb\x8b\x91\xd0\x0a\x2f\x94\xcb\x86\x1e\x32\xc8\x62\x4b\xbb\xeb\x4a\xf7\x24\xf9\xc2\x65\xc5\xca\x6f\x9d\x84\xcb\xde\x58\x9c\x51\x15\xb2\x28\x50\xa2\x27\x29\x47\xc3\x57\xe1\xfe\x35\x45\x2d\xa7\xe8\xb9\xa1\x48\x20\xef\xaa\xcb\x5a\xc4\x2b\x7e\x3b\xd0\x41\x5f\x62\x52\x3c\x1c\xe1\xfb\xcf\xe9\xe8\x3e\x1b\xd4\x87\xbe\x7f\x2c\x6c\x12\x75\x24\x7d\x0d\x6e\xa4\xf6\x83\xf6\xe2\xa2\x25\x5b\x71\x16\xf7\x8a\x12\x97\xed\xc0\x5c\x1d\x2a\x5f\x3a\x7c\x8f\x2e\x87\x97\x90\xc1\x9f\x7f\x40\x7c\xee\xed\x85\x5b\xa2\x77\x78\x16\xf2\x9d\x78\xf8\x32\x0c\xd7\x64\x6c\xc2\x7c\xf7\x48\x1b\x7f\x8c\xba\x37\x7c\x31\x5e\xe5\xa3\xea\x30\x21\x0f\x53\x66\xe7\xaf\x00\x00\x00\xff\xff\x27\x69\x42\x31\xc4\x0e\x00\x00") + +func cmd_drone_server_static_scripts_drone_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_drone_js, + "cmd/drone-server/static/scripts/drone.js", + ) +} + +func cmd_drone_server_static_scripts_drone_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_drone_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/drone.js", size: 3780, mode: os.FileMode(436), modTime: time.Unix(1431328574, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_drone_min_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x7d\xe9\x72\x1b\x47\x92\xf0\x6f\xf2\x29\xca\x18\x85\xd0\x30\xe1\x26\x48\x89\xb6\x4c\x9a\xd6\x27\xcb\xd2\xd8\xf3\xc9\x33\x13\xa6\x1c\x33\x1b\x34\x87\xd1\x00\x8a\x40\x8b\x8d\x6e\xb8\xbb\x41\x8a\xab\xc1\x73\xed\xff\x7d\xb2\xcd\xa3\xce\x3e\x70\x90\x3e\xc6\x11\xde\x58\x8f\xd0\x55\x59\x59\x79\x55\x56\x56\xd6\xc1\xee\xa2\x90\xa2\x28\xf3\x78\x54\x76\x4f\x76\x77\x83\xab\x45\x3a\x2a\xe3\x2c\x15\x41\x4f\x7c\xd8\xdd\xdd\xd9\xff\xf8\xe3\xdd\x1d\xf1\xb1\x78\x99\xcb\xa8\x94\x85\x28\xa7\x52\x44\xe9\x64\x91\x44\xb9\x88\xe6\xf3\x24\x1e\x45\x08\x1e\x22\xd0\xfe\xee\x8e\xaa\x0a\x67\xd9\x78\x91\xc8\xa0\x3b\xce\xb3\x54\x76\xfb\xe2\x7c\x77\x67\x67\xa7\x9b\x4e\xbe\xcf\x16\x25\x7c\xd3\xd7\x22\x0e\xaf\xe2\xa4\x94\x79\xd1\x85\xef\x8b\xde\x89\xd3\xdd\x57\x59\x56\x02\x55\xd1\x5c\xf5\x68\x7b\x82\xde\xc7\x22\x97\x40\xb1\xbc\x61\x7a\xa8\x41\x99\x5d\xcb\x54\x5c\xe5\xd9\x4c\x17\x01\x35\x86\x99\x17\x8b\x72\x9a\xe5\xf1\x7f\x4b\xe2\x6a\x67\x67\x7f\x5f\xbc\x8e\xf3\xa2\xec\x8b\x79\x94\x83\x00\xb0\x8f\x9f\x16\x32\xbf\x23\x51\xa4\x13\x00\xb9\x01\x06\xa1\x32\x9a\x15\xe2\x54\x7c\x58\xf6\xb9\xfe\x8c\xaa\xa1\x24\xc9\x14\xe3\xd3\xa8\x98\x86\xc5\x62\xc8\x0d\x83\x83\x1e\x31\x97\xcb\x89\x7c\x2f\x00\x6e\x3f\x38\xff\xd7\xe3\xd3\x8b\xbd\xde\x29\xfe\xb8\xf8\xb8\xb7\x3f\xe9\x8b\x19\xb2\x8a\x44\xbc\xc9\xb2\x39\x74\x9e\x67\x8b\xc9\xd4\x63\x8c\x28\x22\x9e\x00\xf0\x76\x1a\x27\x52\x04\x33\x40\x47\x78\x43\xf9\x5e\x8e\x02\x87\x9e\x1e\x73\xb5\xc3\xf4\x9e\x8f\xe5\x28\x1b\xcb\x1f\xbe\xff\xf6\x65\x36\x9b\x83\xfc\xd3\x32\x98\x9d\x1f\x5c\xf4\x2e\x00\x41\x63\xdd\x21\x0a\x7f\x67\x67\xa9\xa8\x8a\xaf\xa8\x7b\xb0\x8c\x5c\x00\x7b\xe2\xdd\xa2\x28\xa1\xe7\x91\x8c\x6f\xe4\x18\xc8\x14\x11\x88\x53\x49\xfc\x56\x72\x9b\x62\x9a\x2d\x92\xb1\x90\xef\x41\x69\xa3\xd2\x28\x42\xfc\xf0\xfd\x9b\xbe\x28\x22\xe4\x28\x23\xa1\x25\x20\xe2\x2c\x8f\x26\xaa\x1d\x32\x0d\x70\x29\xe0\x9f\x65\x00\xe5\x36\x14\x57\x59\x2e\x26\x59\x36\x16\x33\x19\x15\x8b\x5c\x82\x95\xed\x00\x71\x01\xf3\x19\x46\xa3\x91\x2c\x8a\x4b\x22\x44\x49\x80\x7a\x38\xe3\x0e\xc2\x42\x96\xdf\x96\x72\x16\x74\x5c\xc0\x4e\x5f\x34\x35\x47\xfe\x77\xa6\x31\xd2\x76\x17\xe6\x72\x9e\x44\x23\x79\x56\x82\xc9\x07\xa8\xfb\x71\x36\x5a\xcc\x40\x56\x61\x19\x97\x89\xec\x5b\xed\xcf\xa3\x72\x9a\x46\x33\xa9\xe4\x47\x22\xd4\x36\xfc\xb5\xbc\x8a\x53\x35\x64\x72\xb4\x7b\x31\xca\xd2\xab\x78\xb2\xc8\xd9\x90\x91\x3b\x6d\xbe\xb3\x28\x4e\x9b\xc6\x93\xb1\xe0\x97\xd4\x54\x04\x8f\x08\xd3\xdf\xf3\xec\x26\x1e\xcb\xbc\x2f\x1e\x4d\xcb\x72\xee\x7c\x6a\xca\x74\x11\x8f\x62\x94\xf4\xf7\xb2\xc8\x92\x1b\x89\x7d\x46\xa5\xb8\x8d\x93\x44\x44\x25\x88\x67\x5e\xb2\x6a\x22\x52\x84\x18\x2d\xf2\x1c\x38\x4d\xee\x94\x7e\x16\xa8\x9d\x12\xc9\x02\xdd\x93\x49\xcc\xf3\x18\x29\xe7\x36\x38\x1a\xb0\xd9\x1c\x05\xae\x86\x4d\xce\x3d\xfd\x80\xc0\xa7\xac\x17\x6c\x78\x2c\x34\x37\x01\x7e\x16\x4a\x65\x30\x56\xca\x45\x9e\x12\xee\x22\x9c\xc8\xf2\x65\x34\x9a\xca\x71\xc0\x2a\x59\x6a\xbb\xf4\x19\x87\x82\xf0\x16\x08\x0b\xba\xfb\xe0\x5d\x08\x0f\xb2\x92\x00\x95\x3f\xe4\xc9\xb1\xe8\xee\x17\xa0\xbc\x78\xb4\x5f\x8c\xf2\x78\x5e\x16\xfb\x37\xb1\xbc\x2d\xf6\x41\xb1\x59\x11\x4e\xcb\x59\xc2\x3e\x08\x14\x52\xe6\x59\x92\x20\x71\xdd\xef\xb1\xf2\x65\x99\xab\x3a\xc5\xc5\xb1\xcb\x0e\x12\xd3\x73\xfa\x4e\xb2\x49\x9c\x6e\x43\x00\x35\x68\x23\x00\x7b\x78\x83\x00\x44\x44\xb5\xaf\x79\x9e\x81\xbb\x94\xdb\xf4\x86\x22\x5d\xd5\xd9\x76\xcc\x82\x86\xd3\xb2\xd8\xa6\x7f\x6e\xd1\x46\xc1\x0b\xaa\xdd\x8e\x06\x32\x92\x6d\x45\xd0\x4a\x01\xf6\xb0\x25\x01\xa9\xbc\xdd\xda\xe0\x2e\xa3\xf1\x78\x95\xd1\xbd\x18\x8f\xb7\x23\xe2\x38\xbb\x4d\x65\xbe\x7f\x8c\x9e\x67\x1b\x6a\x86\x8b\x38\x19\xb7\x4a\xe3\x2b\xaa\xbd\x3f\x25\xfb\x72\x1c\x97\xdb\x0b\x07\x5b\xad\x92\xce\x2b\xa8\x7f\x00\x51\xc7\xe9\x62\x36\x94\xf9\xd6\x62\x5a\x29\xa5\x87\xd3\xb3\x7f\x5c\x94\x72\xfe\xab\x53\xa5\x03\x8f\x57\x69\x34\x4c\x60\x6e\x42\x74\x47\x02\xa2\x35\x9c\x8e\x6b\x93\x07\xf5\x76\xf4\x1d\xd4\x06\x65\xbe\x90\x3d\xd5\xf8\xc5\x7c\x2e\xd3\x31\x4f\x6c\x5f\xc9\x28\xc7\x39\x85\x82\x01\x98\x13\x22\x1d\x69\x09\x88\x62\x72\x35\x89\x80\xe7\x1e\x66\x0b\x98\xe9\x71\xb2\x02\x9a\x20\x74\x29\x4a\x9c\x2d\xbc\xd9\x2b\x1c\xcb\xab\x68\x91\xa0\xc3\x90\xd1\x18\x87\xed\x28\x9b\xcd\x60\x2e\xd4\xd1\x1b\x4f\x9b\xa7\xc0\x2d\x77\xda\xdd\xf3\xa6\xfb\x89\x9a\xee\xbb\xee\xc4\xde\x35\x2c\x7f\x9b\x42\xa8\x39\x92\x20\x50\x26\x0d\xa8\x1a\xce\x17\xa5\xa6\xa9\x80\x68\xa8\x90\x2a\x08\x1b\xc7\x10\xee\x94\x05\x37\x34\xb1\x10\xb0\x87\xbf\xd1\x87\x8f\x04\x28\x47\x02\xcb\x2a\x56\x52\x3c\x89\x5b\x08\x97\x72\xf9\x0e\x1a\xcb\x71\x9d\xc1\x58\x93\x90\x01\x73\xf3\x45\x31\x35\xe1\x76\xf0\xe8\x27\x67\xf2\x56\x33\xa3\x9a\x18\x79\x96\xec\x6a\x12\x5f\xe5\x79\x96\x77\x9d\xc9\x94\xfb\xb3\xcd\x38\x46\x32\xa5\x21\x5a\xd3\x02\xa2\xd8\xd3\x53\xf1\x74\x70\x20\x1e\x3f\x16\xb6\x8e\x23\x92\x70\x91\x27\xe2\x23\xa8\xef\xec\x47\xf3\x98\x7c\x66\xc7\x20\xb3\x66\x41\xd1\x8e\x99\xf5\x78\x7e\xe6\x19\x7a\x55\x9f\x03\x8b\x89\x84\x19\x83\xd5\x45\x68\x41\x85\xc0\xf1\xa1\xe3\x7b\x01\xe5\x63\x18\x28\x22\xcb\x5d\x68\x29\x86\x79\x76\x8b\xd2\x4f\xb2\x02\x0c\x96\x44\x98\xca\x12\x63\xa9\x14\x3b\xbb\x89\xcb\xbb\xd0\xa3\x44\x89\xed\xd1\x4f\x21\xd3\xe3\x08\x88\x49\x26\xb8\xe5\x89\x1a\x10\x18\x5e\x38\x81\x16\xad\x50\x5e\x4e\x61\x21\x23\x31\xd8\xca\xca\xb3\x51\x36\x87\x90\x8f\x9c\x15\x46\x7e\x13\x15\xb8\xd8\xca\xf0\x11\x68\xa1\xcb\x01\x0a\xb7\x84\xc8\x31\x47\x57\x68\x57\x53\x60\x72\x29\x2c\x37\x52\x08\x90\x8d\x76\x31\x16\x59\xa4\xb8\x76\x80\x81\x3e\x94\x2a\xe2\xc1\x1e\xea\xc5\x6a\xe8\xae\xec\x74\x41\x76\xdf\xd4\xad\x0a\xea\x20\xf4\xcd\xe5\x4d\x9c\x2d\x74\xec\x85\x4a\x53\x75\xe1\x23\xc6\xc5\x21\x2e\xd6\x0b\x94\x95\x1f\xf9\xc2\xe0\x6b\x04\x17\x7b\xa2\x2b\xfe\xf7\x7f\x04\x2f\xf7\x6c\xe0\xa6\xc4\xab\x97\x85\xe8\x13\xfd\x95\x21\xb9\x49\x36\xc2\xc0\x2c\xd2\xdc\x42\x8e\x7b\xa9\x24\x5f\xa4\x81\xa3\x1d\x14\xc8\xb2\x87\xd2\xd9\x74\x0d\xfb\x16\xac\x89\x82\x0e\x10\x03\x8d\xc8\x42\xb0\xab\xc0\x91\x4d\xee\x55\x50\xc4\x42\xc0\xe3\xa8\x8c\xc8\x1b\xcc\xa2\x14\x4a\x51\x06\xe0\x05\x30\xdc\xfd\xfe\xd5\xd9\x5b\xf1\xe2\xef\xdf\x0a\xf0\x3d\x49\x51\x8b\xd4\xa9\x87\x33\x99\xdf\xc4\x23\xb0\x20\x1c\xff\x3a\x06\x47\x32\x10\xf5\x9f\x25\xf8\x20\x5c\x46\x11\x2d\xe4\xa6\x42\xaa\x01\x34\x3b\x38\x40\xd0\x95\xbd\x25\x8f\x7a\x6a\x87\xb9\xef\x14\x08\x31\xc2\x61\x60\x06\x63\x96\x43\xad\x7d\xe3\xf3\xd8\xc0\xd7\xcb\xbe\x50\x84\x76\x4d\x74\xe7\xd2\x0f\x88\xb6\x17\x31\xc7\x11\x0a\x43\xab\xa8\xad\x90\x37\x92\x2a\x21\xf5\xa4\x0a\xfe\xf2\x36\x4e\xc1\x65\x34\x8b\x57\x24\xb0\x98\x13\xd9\x95\x50\x41\x0f\xd5\x31\xc0\xff\xa3\x05\xa0\xf8\xc0\x4b\xf6\xa5\xf8\x2b\xcc\xcb\x08\xc9\x8e\x1c\x46\x65\x4c\xab\x40\x5f\x25\x84\xee\xd4\xf5\xba\xf3\x0c\x1b\xae\x56\x0b\xa1\xdb\xef\xee\x69\xe8\xbd\xae\x0a\xc2\x8c\x8e\x1a\x28\xe7\x99\xfe\x9e\x04\x1b\x60\x8e\x33\x00\x98\xfe\xd5\xe0\x0e\x6e\xd7\xda\x9a\x38\xeb\x33\x30\xb7\xbf\x27\x9b\x50\xe6\x22\x69\xe0\x19\x96\xa5\xe8\x2c\x7f\x0b\xbe\x73\xee\xfa\x5e\xbc\x43\xe7\x15\xe6\xc1\x07\xde\x83\xfd\x97\x51\x3a\x92\x09\x72\x0f\xee\x2d\xc5\x81\xf0\x6b\x4b\x61\x44\x14\xdc\x4b\x08\x63\x99\xc8\x52\xde\xcf\x06\xb6\xf1\x4d\x6a\xc8\xf4\x3d\x2f\xb0\xb1\x6f\x32\xdf\xaf\xa5\x5c\xed\x42\x30\x79\x81\xee\x67\x18\x8d\xae\x29\x8e\xbe\x95\xc3\x22\x1b\x5d\xcb\x92\xbe\x4a\xe5\x92\x37\x8e\x3a\x49\xbe\x66\x22\x77\x45\x7c\xa9\xbb\x51\x62\xd5\x9f\x00\x63\xaa\x08\x05\xe7\x21\xf3\x0c\xdc\xe6\xa9\x08\x14\xb9\xa1\x8d\xc8\xb0\x66\x94\x25\x14\x69\x75\x91\xa7\xe2\xb8\x2b\x9e\x8b\xee\x2d\x04\x02\xe2\x18\xff\xed\x72\x46\x72\x87\x53\x50\xa7\xe2\x9c\xda\xf4\x45\xe7\x78\x7f\xbf\x63\x24\x60\x51\x4e\x33\xcc\x8b\xb2\x4e\x41\xaa\x32\x9a\x51\x40\xf8\xdc\xe5\xef\x14\x74\x41\x3f\x2e\xc2\x77\x59\x0c\x71\x88\x62\xd8\x0a\x0c\x3a\x82\xa5\xb2\xf8\x87\x1c\x9e\xd1\x77\x40\xdd\x73\x84\x63\x80\xc2\x2c\x9d\x01\x4e\x10\xa3\x23\x1b\x15\xb4\xe8\xa8\x91\x42\x14\x2d\x1d\x8c\x51\x61\x1d\x41\x89\xb5\xb1\x89\x2b\x75\x75\xa0\xb3\xcf\x98\x44\xfc\x4b\x01\x62\x26\x4c\x21\xce\x32\xbd\x5a\xec\xe7\x91\x31\xc2\xe8\xb2\x9d\x08\x08\x46\x60\x1d\x25\x41\x48\x93\xa0\x4b\x6b\x01\xcb\x28\x35\x1d\xab\x70\x78\x69\x87\x38\x29\xdf\x89\xe3\x1a\xe6\x72\x47\xeb\x86\xab\x13\x1d\x97\xd9\x1e\x1a\xb9\xb6\xd4\x13\x01\x2a\x78\xf4\x14\xe0\xe3\x5c\x6e\x3f\xee\xae\x60\xc0\x80\xa6\x9d\x71\x73\xaf\x80\xe0\x4d\x36\xd9\x28\x1a\x00\xe9\x6e\x11\x11\x58\xac\x9b\xc5\x03\x65\x54\x5c\x53\xf8\xfe\xcb\xfb\xd6\x35\x90\x48\xc9\xa6\x53\x30\x63\xe8\x0b\xcc\x16\x6c\x3d\x07\x23\xb7\x50\xc2\x38\xe0\xbb\xbb\x47\x68\xac\x8d\xfe\x6a\x0e\x4f\xb4\xb0\xd4\x17\xbf\x2f\x4f\xd8\xed\x0b\xcb\x08\xe5\x9e\x35\x37\xf4\xc1\x2c\x75\x7f\x0f\xbe\xd2\x71\x8d\x3f\x9b\x67\x44\x7b\x7b\x98\x67\x14\xbf\x17\xd7\x88\xac\x82\x62\xad\x13\xba\x97\x67\xc4\xfc\xe6\x0a\xd7\x68\x3d\xd0\x96\xab\x25\x07\xef\xaf\x13\xe9\xb4\x2d\xbe\xa0\x0b\xcb\x45\x2c\x8b\x35\x8b\xaa\xd5\x1e\x0e\x27\x5e\x76\x73\xab\x56\x4f\x56\x68\x62\x78\x27\x30\xe7\xfa\xe0\xb5\x5f\x8b\x77\xde\xce\x1f\x37\x46\xff\x6a\x57\x3d\x22\x07\x50\xed\xdf\xa7\x38\x1b\x62\x16\x6b\x29\xfe\x72\xf6\xb7\xbf\x22\x28\xac\x5e\x60\x1c\x72\x4e\x14\x25\xdd\x4e\x3e\xae\x55\x36\xa5\x7f\xe5\xba\xa6\x89\x85\x1f\xe6\x63\x66\x21\x15\xf2\x3d\xa8\x13\xad\xf3\x97\x62\x64\x41\x7d\x55\x59\x69\x64\x23\x2a\x47\xd3\x06\x45\x84\x57\x8b\x24\xb9\x4c\xc9\x7d\x53\xdb\x06\x8e\xbe\xa6\x55\x4d\xd1\x40\xc8\x03\x4c\x88\x97\x4a\x9b\x6a\x61\xe5\xc2\xaa\x89\xe6\x7f\x20\xbf\x3f\x2f\xc5\xb7\x84\xf2\xde\x66\xe3\xc6\x21\x84\xaa\x71\xcc\xfe\x90\xde\xfe\xfc\x94\x2f\xd2\xad\x68\x5f\xb7\x8a\x55\xe8\x2c\xfd\x4d\xfe\x93\x26\xc5\xe2\x81\xce\xf3\x4c\xcf\x88\xe4\xfd\xd1\x8b\xde\x48\xa1\x8c\x1e\x63\x71\x3a\x32\x10\x79\xd3\xc2\xc3\x24\xd5\xb8\x38\x41\xe8\x6d\xe2\x32\x66\x5d\x05\x31\xaf\xf0\xe3\x2c\x5b\xe4\x30\xf3\x74\xdc\xc8\xa9\xa3\xfc\x08\xfc\xd3\xf1\xe3\x23\xac\xa1\x5f\x7d\xf1\x41\xdc\xc6\xe5\x14\xbc\xe2\x18\xcf\x1c\x44\x49\x71\x2c\x70\xe3\x49\x2c\x79\x0a\xe7\x9e\x7e\xdb\x55\xa3\xa1\x41\xe2\x3e\xcc\x8a\xc0\xa8\x2d\x80\x21\xda\x94\xcc\x9a\x29\x53\x5d\x78\xc1\x8b\x95\x72\x05\xdb\xb2\x65\x81\x4a\xf0\x82\x85\xaf\x22\x31\x31\x5e\xd0\x31\x1c\xa2\x3c\x84\xe8\x85\x09\xfe\xb9\x17\xae\xab\x78\x6b\x62\xad\x85\xb3\x7b\x04\x65\x1c\x1b\xf4\xdd\xf0\xe7\x5e\x61\x19\xe5\xde\x57\xc4\x65\x6a\x37\x90\x4e\x67\x6d\x15\x97\xb9\x88\xb7\xcb\x62\xff\xfc\x81\x14\xd1\xdf\x1c\x49\xf9\x61\x89\xb3\x41\xf1\x4b\x45\x24\xee\x11\xae\xb6\x79\xc5\x25\x5a\xad\xa8\x7e\xc3\xd9\xbb\x95\x62\x6f\x36\x71\x68\xa6\x40\x8a\x45\x99\x44\x43\x99\xdc\x27\x0f\x6a\xb8\x77\xed\x48\x5b\xf8\xc6\x27\x39\xe9\x78\x15\xdb\x30\x6b\x50\x9b\x29\x4e\x6a\x97\x58\x7e\x52\x19\x0f\x78\x7c\x60\xf5\x70\xc0\xe3\x05\x5b\x8d\x04\x07\xa5\x19\x08\x3f\x6d\x30\x06\xf8\x3c\xcf\x43\x8d\x7f\xe5\x02\x82\x24\x03\x4b\x07\x3e\xab\xb5\x72\x25\x40\x20\x1b\x74\xb7\x8f\x47\x15\x10\xb4\xad\x57\xef\xe4\x5d\xc3\xa1\xbb\x3a\x19\x2f\x19\x7a\x3b\xbe\x9b\x63\xb0\x86\x08\x7e\xc1\x07\x46\x56\x0c\x59\x84\xd8\x60\xc4\x22\xeb\x04\x7a\xff\x8e\x17\x9b\xf5\xeb\x44\xfc\x6e\xc7\x21\x09\xbe\x2f\xda\x88\xb0\xfe\xa2\x41\xce\xf5\x71\xdf\xd6\x7d\x6d\xd8\xfb\xfd\xdf\x5b\xf1\x74\x20\x96\xe1\xf9\xec\x09\x9e\xa0\x1d\xe1\x10\x0e\xc5\xb7\x57\x22\xcd\x4a\x96\x5d\xd1\x17\xb1\x3a\xd5\x79\x25\x41\x12\xdc\xc4\x9c\xa6\x45\x17\xd2\x68\x45\xec\x0c\xea\x46\x84\xbe\x00\x66\x63\x3a\xc1\xf9\xe8\xa7\x90\x7e\x06\x2a\x71\x55\x39\x22\x1c\x83\xf0\x12\x98\x31\xc6\x15\xfa\x75\x3c\x70\xe9\xc8\x6c\x87\x10\x85\xea\x58\x92\xaa\xe2\x30\x40\x89\x93\x01\xc0\xcb\xcc\xe2\x42\xaa\x40\x40\x75\x2a\x93\x42\x32\x77\xab\xc4\xa6\x80\x89\x34\x76\x45\x08\xac\xdd\x11\x1d\x15\xa9\x8c\xa1\xa0\x17\x62\x7b\x7b\x18\x67\x1e\xdd\xe1\xd9\xd6\x1e\x93\x4c\x44\x9e\xaa\xb2\x93\xd5\x5c\x2c\x7b\xe1\x88\x0c\xd1\xca\x73\x0d\xdf\xea\x60\x47\x2b\xfb\xcb\xad\x66\x08\x7d\x3e\xd2\x71\xaf\x5b\x47\x40\x7c\x84\x8b\xd4\x2a\xa6\x32\x99\xa3\x11\x6a\x50\x3a\x3b\xac\x48\x35\x49\xef\x82\x9a\xe1\x61\x2d\x30\x41\x68\x39\x5f\x50\xb0\xc2\x27\xa2\x18\x1b\x88\xdd\x73\xff\x5c\xaa\x8c\x4d\xe1\x33\x22\x23\xa4\xce\x09\x95\x8f\x74\x81\xee\xb9\xd3\x39\x11\x4b\xbf\x96\xce\x8c\x5d\x2a\x1a\x1e\x3f\x16\xaa\x14\x49\xb9\x54\xa4\xb4\x21\xa8\xb5\x77\x00\x6b\x75\xa1\xe2\x87\x46\xb5\xf8\xf7\xbf\x2d\x2a\xaf\x85\xdb\x6f\x58\xd0\x72\xc8\x6b\xe9\x68\x56\x8b\xbd\x98\x46\xdb\xc8\x1c\xe1\xab\x52\x85\xa2\xdf\xa3\x48\x91\xf3\xad\x24\x09\x0d\x1a\x04\x98\xcb\xab\x87\x0a\x10\x50\xfc\x1e\x05\x88\x9c\x6f\x25\x40\x68\xd0\x20\x40\xbd\xaa\xde\x46\x88\xaa\x4d\x55\x90\xaa\xf8\xf7\x28\x4c\x2d\x85\xcd\x04\xca\xc7\xdf\x18\x76\x53\x6f\xcd\xb7\x9e\x82\x2e\x3b\x04\xf0\xd6\xfc\xc3\xab\x53\x54\x40\xa5\xfa\xe5\xd5\x82\xe9\xe2\x6e\xd3\x34\xf2\x4a\x41\xab\xb4\x3f\x75\xb5\xfd\xd1\xb8\x49\x1e\xdd\x40\xec\xbe\xa1\xd7\xa7\x50\xb2\x30\x8d\x08\x43\x3c\x43\xa1\xe1\xad\x9d\x49\x0c\x0b\x7a\x0a\xea\x66\x51\x9c\x08\xba\x20\x55\x31\x0f\xdd\xb2\xc5\x3e\xb0\x89\x63\x1e\xf8\x29\x68\x5f\xcf\xcd\x27\xd4\x54\xad\xbf\x79\xef\x6f\x7f\xbf\x90\x23\xbc\x33\xa4\xfb\xc2\xd3\xc4\xfb\xfc\x73\xbf\xb3\x87\x38\xf7\x3a\xcf\x8b\xd3\xa7\xcf\x1e\x8f\x4f\x67\xb3\x4e\xc3\x78\xd0\x2d\xdf\x44\xf9\xa6\xa3\xe2\x3e\x92\x11\x8d\xa2\xa1\x4e\xb7\x90\xcf\x2f\x24\x9e\x83\xc3\xba\x7c\x36\xb3\x6e\x8d\x18\x4c\x52\xff\x6c\xac\x27\x46\x1d\x20\xfa\xee\x6d\x68\xc0\x42\xa0\xb2\x84\x50\xb1\xee\x5f\xb3\xdb\xb5\x7a\xa2\xea\xc5\x2c\x42\x6f\x1f\x8d\xf1\x18\x3c\xb7\xe7\x84\x80\xbe\x95\x05\xc1\x66\x34\xc7\x9c\x59\x19\xcf\xc0\xd9\xc9\xf2\x56\xaa\xb3\xca\xac\xc4\x45\x1a\xbf\x17\x94\x98\x55\x37\xd8\x18\x89\x8a\x49\xb9\x55\x20\xdf\x87\xe2\x60\x20\x66\x71\xba\xa0\x25\xc6\x24\xeb\x85\x04\xe7\x2a\x5c\xd1\xdd\xa2\x6a\xec\xc2\xf5\x94\xce\xb7\x82\x55\x31\xb2\xb0\x2a\x9e\x65\x78\x5a\x35\xc0\xdc\xcd\xd7\x78\x83\x0d\xdb\x7c\x7c\x30\x18\x0c\x7a\xbd\xd0\xf4\xd6\x60\xef\x65\xf6\xb5\xbe\x9b\x76\x0f\x21\xee\xd4\x65\xc8\xa2\x1a\x1b\xa4\x10\xa1\xc8\x51\x86\x57\x07\x58\x34\x62\x0a\xd3\x11\x09\xf0\xd0\x48\xa9\x57\xf5\x15\x96\xaa\x16\x11\x29\x9c\xfe\xaa\x8c\x65\x10\xea\xbe\x35\x50\x5f\x74\xd4\xaf\x4e\x2f\x24\x06\xe8\x52\xa8\x15\x86\x70\xa5\x81\xea\x7d\x98\x24\x26\x9e\x24\x8c\xd1\x34\xf0\x88\x8a\x5a\x6b\x02\x9b\x28\x38\xcb\x67\x11\xac\xc0\x93\xa4\xdb\xdb\x7a\xcc\x2a\xeb\xc0\x23\xe4\xfc\xcb\xab\x65\x2a\x29\xf9\x86\x3f\xaa\x75\x4a\xd4\x5c\xaf\x3e\xcc\x38\x6e\x3f\x95\x67\xaf\x81\x05\x8f\x0a\x3e\x6b\xaf\x52\xa2\xbc\x68\x07\x9d\xf1\xd9\x64\x35\xe0\x61\xc8\xab\x6b\x04\xb1\xba\x1c\x3c\x1e\xe7\x94\x89\x42\xa5\x30\xa8\xbe\x8e\xaa\x2e\x09\xd0\xae\x02\x8d\x3c\xc1\x5d\x84\xd8\x06\x57\xb6\xd5\x23\x1f\x59\x1e\x53\x74\xae\xfb\xd9\x68\x8d\xbe\xcb\xf7\x1b\xbd\xcb\x8b\xab\x56\x94\x8a\x86\x05\xdf\x8f\x54\x55\xb4\xdf\x40\x0a\x33\x37\x56\xfe\x2c\x53\x89\x9b\x47\x9c\xcc\x9c\x65\xa5\xb4\xb9\x58\x75\xb5\x4e\x1f\x14\xdf\xa8\x43\xbd\x31\xd5\xd4\xe3\x66\xc7\xf4\xd5\x85\xa3\xc0\xbb\xbb\xe7\x68\xd0\xac\x35\x5b\x03\x0d\x7b\xc9\x4c\xdf\xb9\x89\x61\xc8\x90\xc7\x00\xf9\x8e\x65\xae\x17\xec\x98\x8b\xed\x16\x2a\xb0\x1f\xa1\x4f\xe5\x13\xfa\xfa\x8e\x6e\xe3\x01\xf1\x8a\x19\xf1\x95\x51\xba\xed\xab\xce\xb2\x16\xe6\x22\x87\x32\x2d\x7d\x9f\x63\x97\x53\x1e\x74\x53\x0b\x0d\xc3\x69\x1a\x52\xe1\x89\x82\xc0\xbd\x63\x51\x85\xc0\x42\x0d\x80\x3b\xcc\x94\x54\x3e\x65\x6c\x74\xee\x8a\x01\xb4\x5a\x7f\x53\x9b\xaa\x1c\x92\xd8\xd5\x37\x51\x30\x53\xa8\x69\xdf\xa4\x2b\xda\xcc\x6b\xea\xaa\x9a\x01\x91\x79\xee\x35\xd4\x1b\x67\xf0\x6f\x23\x6d\xfe\xc1\x7d\xa8\x52\x27\xf8\xb1\x7c\x2b\x0a\xd5\x12\xe5\x54\x3f\x58\x10\xc6\xc5\x8b\x3c\x8f\xee\x02\x97\xe6\x9e\x78\xee\xf1\x20\x8e\xc5\xf9\xc5\x43\x18\x51\x95\x8d\x5b\xd0\xde\xd5\x1f\x82\x08\xfc\x53\x09\x6d\x6c\xa9\x19\xdf\x11\x3d\x5e\xb1\x02\xf3\xc1\xdc\x1d\x6e\x91\x9a\x5c\x92\xbe\x2e\xad\xec\xa1\x79\x2b\xbc\x72\x05\x69\x13\x4a\x56\x93\x70\x15\x25\x45\x8d\x06\x46\x6f\x2f\x32\x69\xdd\xd9\x0b\x4a\xde\x96\x29\x0e\x1e\xf0\xcb\x15\x7c\xe8\x19\x02\xac\x8a\x4f\x07\x27\xf1\x17\x9e\x6a\xc3\x44\xa6\x93\x72\x7a\x12\xef\xed\x69\xf2\x10\x92\x1d\xc5\xa9\xf0\x60\xcf\xe3\x8b\xca\xf6\x6b\x58\xe0\x1a\x2e\x1d\x49\xda\xaa\xe4\xb5\x9d\x2e\xb2\xbb\xc4\xe0\xf4\x20\x30\x91\x27\x38\x1b\xc4\x93\x34\xcb\xe5\xae\xdd\x76\xc5\x3c\x23\x6f\xcf\x9b\x25\xb1\xe0\xab\x6f\xae\xac\x0c\x01\x68\x2b\xd8\xf3\x89\x5b\xfb\x08\xaf\xfd\xdf\xe9\xcd\x50\x2d\x00\xab\xd3\x5d\x13\xfb\x51\x5d\x45\x0f\x4a\x10\x74\x99\xd0\xd9\xce\x6d\x44\xee\x5d\xc9\xf2\x1c\xf2\x1a\x7f\x6c\xaf\x66\x34\xf8\xdc\x15\x2e\xd7\xcc\xe3\xe8\x65\x9b\x3d\xb0\xe3\x7b\xf1\xf0\x24\x39\x94\xbc\x90\xdf\x42\x78\xe3\x79\x58\x3e\xff\x0a\xeb\xec\x03\xe3\x88\xf9\x4c\x6d\xd5\x13\x53\xe9\xc9\xaf\xe2\xce\x35\xd9\xb8\xc5\xce\xaf\x82\x18\xb3\xc5\x8a\x12\xd7\x78\xa6\x6c\x57\x5d\x42\x8d\xcb\x98\x36\x3d\x6c\x33\xe7\xe2\x8b\xc5\xd7\x90\x92\x47\x1b\x30\xad\x1a\xd7\x00\xf0\x3f\x2e\x35\x6c\x43\x7a\x68\x81\x25\xdf\xc8\x5c\x1f\x36\x7d\xcd\x71\xdb\x07\x86\x3f\x46\xd0\x3e\x94\x27\xb0\x7a\x3c\x26\x8a\xd5\x91\x0b\x62\x44\xe6\x48\x8f\xb9\x0a\x08\x33\xc5\xab\x84\x6e\xc4\x7d\x75\xf7\xed\x38\xe8\x60\x7d\x87\xc1\xf1\x67\x18\x43\xd0\x95\x7f\xf3\xf6\xbb\x37\xd0\x08\xd3\x22\xbb\x3c\x52\x0a\xef\x74\x8b\x1d\x30\x59\xb9\x98\x2f\xe8\x3a\x30\xdf\x7d\x6c\x72\x18\xfe\x99\x61\x37\x34\x8e\x54\x82\xbd\xd2\xf3\xde\xa9\x66\x18\xc2\x9e\x6f\xca\x59\x12\x38\x47\x5d\x51\x92\xa8\x1d\x33\xca\x91\xba\x11\xc6\x36\x96\xb4\xac\x2c\xb3\x99\xde\x18\x9e\x53\x5a\xec\x4a\x48\xba\x36\x3d\xe6\x46\x3a\x78\xe4\x96\x6f\xb3\x60\x60\xcf\x10\x1b\x59\x0d\xb3\xf1\x9d\x82\xf8\x46\xc6\x93\x69\xe9\x9d\x28\xf1\x9e\x5d\xf9\x23\x2e\x58\x15\x17\x18\x7b\xb1\x01\x81\x4b\x99\x36\x91\x8d\xe3\x82\x06\x12\x4d\x9c\x8c\x37\x05\xfc\x6a\xed\xc3\xd1\xfe\x3e\x39\xb8\x38\x31\x4e\xf9\xbc\x8b\x77\xe1\x61\xbc\x41\x1c\xdc\xbd\x8e\x21\x3a\x1e\x77\x2f\xc0\x0e\xc7\xf2\xfd\xdf\xae\x02\x07\x21\x5d\x89\x86\x79\x05\xe7\x9a\x4f\x0e\xb4\xe5\x01\x77\xe3\x0c\x77\xf1\xa6\xfc\xea\xd0\xce\x92\x77\xb9\x10\x75\xad\x31\x1f\x6d\x57\xf7\xc4\xba\x0e\x0a\xe5\x32\x5c\x11\x69\x4f\xa0\x5d\x3f\xa3\x25\x5f\x4b\x4d\xec\x36\x1a\x1d\xda\xd6\x2b\xf6\xab\x38\x8d\x0b\xdc\x11\x34\x2e\x49\x0d\xca\x26\x59\xab\x5b\x09\x2b\x37\xcf\xd6\xbb\x1e\xf2\x36\x8d\xbe\x67\x1b\xef\xc3\xf0\x35\xf7\x53\xf1\x01\x5e\xe0\xa7\x06\x62\xbb\x5d\xb6\x59\xa6\x1e\xb8\x6a\x42\x7d\x50\x98\xd8\x70\x07\x51\x29\x56\x19\xb9\x02\xd8\xce\xd0\xd7\x5a\xfa\x36\xa6\xbe\x46\x48\x2d\x32\x5a\x3a\x5b\xde\x0a\xa4\x7e\xd3\xd0\x67\x95\xeb\xff\x13\x39\x15\xdb\xb2\xaa\xe7\xfe\x0a\xa3\xaa\xf8\x23\xfc\xd7\xb6\xd9\x32\x4e\x6e\x09\x60\x4d\xdc\xa4\xa4\x56\x89\x10\xfc\xf8\x75\xb9\xdb\x1c\xbd\x36\x78\x49\x1b\xb1\xfa\x92\x64\x12\x1a\x44\x58\x0b\x3d\xf5\xfc\x4f\x86\x6e\x03\x14\x67\xaa\xb3\x9d\x6f\xe1\xf8\x9a\x1d\x9c\xf2\x6f\x78\x16\x0d\x66\x0d\xcc\x2f\xda\x1e\x09\x99\xd3\xb6\x12\xb4\x99\x00\x79\x77\xdb\x74\x88\xf3\xfc\x8a\x0d\x8a\x9b\xa1\x0a\x17\x6c\xc3\xa4\xc9\x4b\xda\x99\xba\x5f\xd6\x44\xed\x98\xb5\xa5\x4d\x1c\xd4\x7f\xe4\x4d\x7e\xcf\xf1\x91\xcd\x9b\xb0\xc6\xff\x48\x9c\xfc\x91\x38\xf9\x23\x71\xf2\x0b\x24\x4e\x36\x9f\x15\x1c\xdf\x0a\x0e\xdf\xf9\xea\xad\x73\xf8\xe6\x29\xc2\x35\xee\x9e\xb7\x9b\x95\xbb\x37\xd7\xde\xa6\x19\x78\x51\x7e\x9f\xaa\xf1\x66\xe0\x2a\x6f\xdf\x90\x9b\xf9\x0f\x71\xbd\xda\xbd\x11\x85\xb8\x4c\x1f\xc7\xc5\x3c\x89\xee\x70\x5b\x91\x9e\xd1\xa4\xc5\x54\x9e\xcd\xf1\x15\xa9\xd0\x8c\x22\x72\x7e\x9b\xfa\xe5\x5f\xd7\xe7\x79\x79\x38\xe7\x21\xc0\x9a\xd2\x23\x40\x79\x13\x71\xae\x08\x16\x4a\x15\x7d\x37\xea\x58\xa1\xb2\x5a\xd6\x5b\x5c\x75\x15\x1b\x12\x61\x98\xb8\xfe\xae\x48\x16\x13\xcf\xdf\xd1\xd1\x5e\x2a\x5d\xe3\x6c\xab\x0f\x86\x75\xf7\xa8\xd5\x03\x97\x12\x75\x79\xe9\xa7\x01\x6b\x02\xc3\x37\x05\x59\x5c\x6b\xc4\xa4\x31\x34\xc9\x69\xf5\xc0\xf8\x23\xee\xf9\x6d\xe3\x1e\x55\x49\x4f\x0b\xaf\x9c\xa4\x69\x9a\xe1\xf2\x8d\x63\x84\xa6\x85\xe4\x03\x0c\xd7\x92\xdb\x7c\x0d\xd4\x23\x58\x9d\x24\xdf\x84\xe0\xda\x38\x7b\xf0\x10\xb3\x94\xd2\x35\x99\xd3\x0f\x4b\xcf\x3d\x90\xf9\xba\xd4\x13\x94\x7b\x3e\xc5\x8d\x72\xf8\x9d\xe5\xa6\xf8\xc7\x79\x58\xdb\xac\x46\xeb\xf5\xe7\xf4\x4f\x78\x2d\xef\x2e\x4e\xf9\xe7\x4d\x94\xa8\xd9\xbd\x4e\x65\x5d\xcc\x35\x6a\x01\x93\xa2\x46\xe9\xa1\xa1\x4f\xec\xcd\x71\x37\x9b\xcf\xf6\x66\x66\x55\x17\xd0\x8a\xc6\x35\xa0\xe3\x9b\x15\x9c\xfa\x6a\x84\xb4\x6f\x9f\x7a\xde\xaa\x7d\xc5\xe8\xdd\xaf\x31\x6f\x09\x57\x0f\x56\xb0\x10\xf0\x75\x67\x7e\x00\x9a\xa6\x53\xfd\x74\x37\x1e\x4f\x23\xeb\xd0\x07\x21\xd5\x0d\x04\xf5\x1c\x23\x9e\x63\xa3\x03\x67\x31\xbd\x60\x3d\x8b\x4a\xf1\x27\x82\x3f\x7d\xbe\x5b\x33\xaf\xfa\x93\x1a\xf6\xb5\xf4\xe0\xb3\xea\x14\xa8\x9f\x24\xc6\x83\x1d\x55\x8f\x4e\xaf\xf0\xe9\x0b\x22\x02\xd6\xf6\xe8\xdf\x9b\xaf\x15\x79\x1c\xab\xe5\x2a\xdf\x9c\x7a\x48\x40\xb3\xc9\x55\x81\xad\x9c\xaa\xf3\xac\x28\xd2\xb6\xab\x2e\x0e\x6f\x11\xb1\x30\x7c\xa5\x27\xdc\x23\xd3\x31\x89\xeb\x28\x21\x6e\xa0\x93\x22\xa7\x1f\xde\xe0\xf5\xb3\x63\xd1\xe9\xd0\x9d\x4f\x9d\x9b\xa3\x2b\x7f\xb5\x47\x07\x75\x2b\x9d\xbf\x62\x0a\x29\x10\x30\x55\x1b\x79\x55\xdd\x12\xc3\xed\x86\x2c\xec\x1a\x22\x1b\xfc\x53\x2e\x6f\x00\xb2\x46\x70\x59\xa7\x56\x39\xd4\xb2\x89\x58\x77\xf5\x43\x49\x7b\xbb\xfa\x51\xad\x75\x2a\xdf\x79\x26\xbe\xc2\x53\x81\xaf\xb6\xcb\x80\x00\xfb\xe2\xa0\xd7\x1e\xb3\x98\xf7\xa6\xd7\x5b\x78\x34\x1a\x65\x0b\x3c\xe1\xa3\x2e\xe1\x41\x83\x39\xa6\xcf\xd4\x86\x14\xcc\xc5\x74\x34\x8d\xa2\xc3\xf1\x0c\xb3\xf6\x30\x7a\xf1\x5d\x59\x91\xa5\x49\x3d\xd6\x31\x3d\xfb\x03\xc3\x38\x82\xdf\x2e\xc6\x60\x8c\x1b\xdb\x3c\x81\xb7\x63\x53\x50\x74\xc7\xe2\x94\x8f\x64\x37\x07\xb7\xee\xcd\x3d\x26\x81\x8c\x9a\x8b\x37\x49\x38\xab\x46\xab\xed\xd9\xa5\xa3\xc1\x86\xcb\x6c\x32\x49\xda\xae\x97\xd1\xe5\x31\xd2\x2d\x66\x8c\xed\xd7\x89\x43\xf2\xa2\x0c\xec\xbd\x36\x6f\x70\xd0\x1f\x53\x68\x47\x6c\x46\x05\x95\x57\x07\x45\xeb\x98\xe0\xa6\x7a\x48\x38\x97\xb7\xbc\xfa\xf5\x03\x62\xf3\x59\xd5\x7f\x13\xbf\xef\xcf\x6b\x8d\xd0\x0e\x60\x2b\x4c\xe1\x00\xf9\x39\x58\x64\x9a\x37\xa8\xfa\xe2\xec\xed\x7f\xbd\x79\x75\xd6\x17\xfa\x5d\xea\xbe\xc0\xf1\x50\xc6\x12\x7f\xbd\x2f\x61\x25\x8e\x13\xcb\x37\xf2\x3d\xff\x15\x8e\xbe\xb8\x8c\xe1\x3f\x18\xd7\x04\xbc\x2b\xc4\xe5\x65\x81\x92\x00\xf9\x9d\x5f\x84\xf4\x13\x8c\x94\xb1\x62\xec\x03\x10\x5d\x79\x35\xe8\x1e\x8b\xee\x28\x4b\xb2\xfc\xf8\x4f\x83\xc1\xa0\xdb\xe7\xe2\x03\xa7\xf8\x85\x2d\x3e\x74\xa1\x5f\x98\xe2\x27\x2e\xf4\x91\x29\x7e\xea\xe1\x7e\xa1\x8b\x8f\x3c\xdc\xa6\xf8\x53\x0f\xb7\x29\xfe\xcc\x85\xb6\xc5\xcf\x9c\xe2\xa3\xa3\x23\x5d\xfc\xb9\x53\xfc\xda\x16\x1f\xb8\x6c\x1e\xbd\xb6\xe5\x2e\x9f\xaf\x9d\xf2\x43\x0f\xfd\x6b\x53\xfe\xc4\xc3\x6f\xcb\x9f\x7a\xf8\x6d\xf9\x91\x87\x5f\x97\x0f\x89\x1c\x7c\xc2\x60\x92\xe3\xcb\xe4\x9f\xd4\x14\x30\x3c\x68\x86\xb0\xba\x18\x1e\xb6\xe0\x30\x6a\x19\x3e\x69\xc1\x61\x34\x34\x7c\xda\x46\x87\x96\xf3\xf0\xa8\x8d\x0e\x03\xf1\x69\x1b\x1d\x06\xe2\xb3\x16\x1c\x16\xe2\x59\x33\x84\x55\xec\xf0\xf3\x66\x08\xab\xe3\xe1\x41\x8b\x50\xad\xba\x87\x07\x2d\x52\x7d\xed\x80\xb4\x88\xd5\x1a\xc1\xf0\xa0\x45\xae\xaf\x1d\x90\x16\xc1\x5a\xd3\x18\x1e\xb4\x48\x16\xad\x64\x17\x77\xe6\x9c\xb1\xed\xc5\x44\x0b\x5a\xf1\x08\xdc\x9e\xc4\x2d\xed\xc5\x0c\x1c\xf9\x99\xfa\xf3\x3f\x9f\x82\x0f\x11\x42\xfd\xc5\x1e\xac\xe2\x4c\xab\xf8\x42\x1c\x72\x23\xdd\xac\x33\xc0\x77\x4f\xe0\x37\xc2\x2f\xe1\x3f\x75\xb6\x9b\x4a\xb0\xf7\xf3\x01\xf8\xce\xbe\x38\xec\x8b\x27\x7d\xf1\xb4\x2f\x8e\x2e\xf0\x6c\xf7\xab\xc8\x5d\xd7\xe5\x9c\xd6\x34\x8d\x37\x69\x33\xc1\xbc\xa0\xa6\x65\x8b\x76\x43\x58\x7a\xe9\x66\x42\x50\xba\xb8\x2f\x46\x7d\x01\x7e\x0f\x93\x4a\xf0\xff\x93\xe1\x89\xaa\x1d\x01\x83\x07\x9f\x02\x7f\x48\x21\xc4\x2f\x4f\x3e\xed\xe1\x07\x75\x0d\x9f\xf4\x35\xa4\xa5\x1c\xc3\x63\x7c\x80\x90\x5f\x8a\x81\x78\x2e\xb8\xcd\xd3\x01\x00\x1d\x1d\x89\x63\x31\xd0\x60\xa8\x06\xc6\xc1\x80\x1a\x5f\x03\xe8\x10\x40\xb1\x07\x05\x49\x3f\x1b\x01\x81\x6a\x00\x0d\xfc\x90\x50\x08\xcb\x25\x39\xf5\x04\x5f\xa7\x01\xd7\x7e\x65\x1d\xfc\x89\x81\xc2\x72\xf4\xf1\x39\x09\x63\x78\xe1\xd5\x10\x2c\xcd\x00\xb6\x98\x52\xf3\x97\x31\x94\x0e\x18\x37\xfc\x42\x24\x3a\x2d\x0f\x7d\x82\xc1\x60\x05\xfe\xe4\x1c\xbd\x30\xff\xa7\xa1\xcf\x2f\x63\x07\xa7\xed\x8c\x83\x12\xc7\x78\x83\xb4\xd7\xb3\x80\x4b\xf3\x4b\x29\xbf\xca\x10\x4e\x84\x3d\xe7\xad\x42\x2e\xe5\x69\xeb\xbc\x23\xaf\xd0\x6e\x47\x98\x92\xef\xa8\x01\x43\x4f\xfb\x58\xe5\x2b\xb4\xa6\xc1\xd0\x36\xa8\x0f\x36\xaf\xed\x92\x7a\x5b\xd2\x64\xec\x5e\xf6\x51\x3a\xa9\x49\xd3\x91\x23\xcb\xec\x54\x1c\x3e\x51\x22\xfb\x50\x91\xc7\x65\xdc\x3b\x71\xc7\x99\xe5\x7a\xd9\x0b\x39\xd9\x8f\x97\x0a\x7a\x4d\x03\x26\xba\x63\x02\xe8\x2c\x4b\x5f\x24\xd8\xf7\x88\x6c\x31\xba\x03\xfa\x0f\x9f\x1c\x62\x09\xee\xec\xbb\x52\xa7\xda\x8f\xf1\x02\xd0\x9e\x78\x46\x9c\xad\x91\x61\xa2\xff\x3b\xd9\xbd\x87\x14\x9d\xd6\x24\x3d\x8e\x50\xaa\x87\x10\x98\x89\xb1\xc4\x97\x2d\xaf\xfb\xf8\x00\x08\xfd\x0f\x44\x34\x37\x60\x8a\xef\xd8\x1c\xb1\x7f\x04\xc1\x6c\x78\x3e\xa1\x63\x37\xc5\xf9\xe0\x82\x21\xa1\xf0\x10\x25\x6d\x6a\xb4\x8b\x7b\xae\xe3\x9d\x10\x9f\xfc\x08\x4c\x3d\x86\x80\x2a\x51\xae\x55\xf6\xce\x33\x7d\xc4\x6a\x4d\xff\x9d\x35\xfd\x77\xd6\xf4\x01\x46\x41\x9e\x5f\xbe\x53\x66\x4f\xb8\xae\x31\x11\x01\xe5\x8e\x6b\x62\xc0\xf3\x6b\x33\x3a\x90\x17\xf8\x84\xf2\x1b\x65\x68\xbe\xcf\xc5\x7a\x76\xba\x3a\xd4\x53\xe1\xd9\xd5\x04\x66\x08\x13\x36\x0c\xe9\x4b\x87\x08\xfa\xc4\x12\x6f\xb9\x61\x89\x2c\x46\xd1\x5c\xfe\xf3\xbb\x37\x4e\x99\x3a\xe4\xc4\x05\xd4\x05\x47\x97\xe8\x73\x2a\x8a\x31\x8b\x35\x75\x40\x2a\x9b\xe3\x57\xa1\x19\xc3\xf4\x9a\x2a\x12\xa7\x38\xed\x24\x89\xe5\xd9\x54\x88\x0f\x4b\xcb\xa2\xa0\x7b\x32\x61\x36\x27\x86\xd8\x20\xf8\xef\x99\x99\x88\x56\x77\x72\x62\xc1\xe3\x94\x9f\xdc\xd0\x1e\x8b\x5f\x0a\x2b\xf9\xb9\xa7\x4a\x61\x3c\xba\xbe\x3b\xf3\xaa\xf0\x0e\x95\xe2\x80\xdf\x64\x2d\xef\x68\xa5\x83\xe7\xaf\x5c\x63\xa4\x5e\x34\x03\xbc\xf9\x78\xd5\x40\x04\xb6\x86\x35\xaf\xfa\xc4\x63\x20\x7c\xb3\x0a\x9f\x76\x3d\xa7\xd2\x0b\xb0\x2d\xfa\xc1\xad\x01\xcd\x0a\x32\xcd\xe8\xb6\xc2\xbf\xa4\x61\x6f\x24\x59\xbd\x7d\x25\xf9\xac\x99\xeb\x82\xb5\x07\x51\xcf\x48\xe0\x25\x9d\x52\xfe\x6d\x51\xe2\x72\x4c\x81\x87\xea\x41\x33\xfd\x89\x4b\x43\x67\xf7\x76\x34\x5d\xa4\xd7\xbe\x57\x37\x57\x8c\xaf\xd8\x5f\x31\x88\xe3\xb6\xcd\x6f\xad\xe0\x1e\x3b\x2c\x57\x75\x35\xdf\x55\xe9\x68\x55\x27\xcb\x55\x36\xe0\x34\x74\x27\x86\xe5\x49\xa3\xb6\x15\x19\xae\xba\xdd\xd7\xe4\x6a\x1a\x67\x9d\x75\xbb\x55\x02\xb6\xd7\x56\x4d\xb0\x88\x1a\xcf\x02\x63\xf9\x49\xb3\x06\x49\x55\x78\x0d\x10\x60\xfb\x95\x4c\x52\x5f\xf0\xb6\x9f\xab\xa9\x46\xbd\x3b\xd0\x7d\xf3\x32\x60\xcf\x9d\x9e\xe9\x29\x14\x33\x1e\x43\x76\x0c\x3e\xe6\x0a\x61\xbc\x75\x71\x66\xad\xd7\xa3\xc9\xc5\xbd\xdc\xd8\x4c\xe8\xe8\xb3\x19\xd0\xca\xeb\xd6\xe4\x69\xde\xc6\xd3\x7f\x27\x41\x96\x67\xe5\x5d\x22\x8b\x40\xe3\x59\xb6\x6b\xdf\x97\x4c\x2d\x39\x57\x13\x92\xea\xbc\xb8\x8d\xf1\xc0\x85\xcd\xe0\x31\x45\xa3\xa8\x90\xa2\x5b\x82\xf3\xea\x1e\x57\xf5\xe7\x93\x89\x16\xfd\x16\xe0\x02\xfd\x72\x9f\x8b\x40\x6d\x16\xd7\x71\x50\xd3\x69\x94\x8e\x13\xf9\x35\xc3\x04\x2d\x4a\x64\x44\xef\xf1\x8c\xe9\xe1\xd1\xa7\x9b\x50\x43\x32\x0b\xd4\x74\xef\x52\xb5\x42\x7a\x35\xa5\xb7\x08\xd0\x1d\x48\x69\x56\xbe\x84\x46\x93\x2c\xbf\x63\xfc\x4e\x81\x3f\x08\xb9\x6c\x85\xb7\x6b\xf0\x73\xa6\x19\xf9\x5f\x9c\x77\x30\xc7\x8c\xb3\xbc\x2a\xc6\x53\x20\x16\xf5\xe3\xc7\xc2\xab\xe9\x82\x58\xba\x55\xa3\x74\x8c\x91\x32\xb8\x04\x48\x4a\xb6\x04\x34\x4c\x31\x75\x77\xce\x53\xa5\xc3\x6f\xa0\xfe\xa8\x05\x7f\xbd\xce\xf2\x97\xf8\xe7\xcb\x58\xf8\xbd\x4a\x88\x5a\x43\x47\x4e\xd1\x0a\x80\x68\x3b\x56\x8f\x53\x9a\x52\xc4\x75\xcc\x46\x6c\xca\x74\x7f\xc7\xa2\xbd\xfb\x5d\x7f\x84\xae\xb0\x01\xcf\x1c\x3d\x05\x02\xb2\xfa\xc8\xc1\x52\xe1\x1c\x00\x65\xa8\x83\x81\x33\xe4\x19\xc4\x1c\x3d\xd7\x44\x2b\x83\xed\x7e\x31\xcc\xf7\xbf\xec\xf6\xdc\xc8\xc1\x6b\x35\xb0\x8d\xd6\x38\x10\xb1\x81\xef\xd0\x5d\x34\x74\xd4\x44\x9d\x1d\xdc\xd1\x24\xe8\x0e\xbb\xbd\x76\x3a\x0f\xcd\x1d\x61\x5b\x19\x40\xb4\xca\x22\x42\xcb\xc4\x7f\xbf\x10\x47\xbd\xb5\xfd\x2c\x1a\xfa\x09\x9e\xd6\x51\x7d\xb6\x1e\xd5\x10\xe2\xc4\xeb\x55\x64\x7f\xd6\x40\xb6\xa9\x7c\xb6\x0a\x3f\x7b\x18\xed\xdd\x8e\x53\xca\xa1\xb6\x77\xf4\xf9\x5a\x5a\x31\xba\xba\x5e\x89\xe3\xf0\x69\x1b\x12\x7a\xd5\xb3\x5d\x78\x87\x9f\xd7\xa5\xf7\xe4\xd9\x4a\xf1\x79\x0e\x94\x49\xf8\x44\x3c\x19\xf4\x56\x90\xf7\x64\x25\x8f\x0a\x21\x2f\x9b\xe8\xe1\x59\x33\x21\x5f\x4d\x1a\x68\x7e\xd2\x40\xf3\xd3\xcd\x68\x1e\xba\x34\x3f\x5d\x49\xf3\xd3\x4d\x68\xae\xad\xfa\x7c\xf2\x87\x4d\xe4\x3f\x6b\x20\xff\xf3\x6d\x44\xfe\xcc\xe1\xe1\x73\xe4\xa1\xde\xc7\xe7\x0d\x7d\x1c\x0c\xdc\x4e\xd6\xce\x8f\xc3\x5a\x5f\x07\x83\x4a\x67\x2d\x9e\xb2\xe2\x68\xab\xbe\xf2\x3e\x1e\x72\x50\x23\xdc\x99\xc1\x9c\xeb\x39\x4d\x3e\x4b\x37\x18\x66\xc9\xb8\xde\x62\x9d\x27\xd2\xad\xf1\x19\x97\x1c\xd7\x96\x0d\x28\xd6\x78\x20\x43\x00\xb9\x9c\x76\x9a\x9f\xd5\x9b\x4c\xe3\x71\x43\x87\x4d\xae\x43\xb7\x50\xbe\xa2\x81\xcf\xe6\x91\x8e\x61\x83\x33\x4e\xf1\x73\xbd\x85\xea\xce\x60\x29\x20\x5d\xf3\x6f\xe8\xb6\x65\xb0\x7a\xdd\x3e\xe5\x6e\x37\x36\xda\x5a\x7e\xd8\xef\xb7\x02\x8d\xc1\xd1\x5a\x9b\x55\xbe\xd6\x8b\xeb\xa2\x09\x5e\xa6\xba\x4b\xa4\xbb\xda\xa7\x82\xfa\x5a\x5f\x15\x9b\xf5\xd2\xd2\x6f\xa0\xd3\x31\xc0\x18\x7f\xeb\xed\xba\xee\x31\x04\x57\xd5\x18\x40\x23\x53\x79\x26\xfa\xbc\xa8\x65\x10\x0a\x1b\x1d\x01\xa9\x3d\x6f\x4d\x78\xde\xf9\x82\x3c\x11\xb2\xa0\x48\x7e\x2e\x3a\x8c\xf8\xf4\xc7\x0e\xd6\x71\xe9\x9e\xe8\xe0\xe7\xb1\xb8\xc9\xe2\x31\x0c\xb3\xbe\xe8\x7c\xd9\xb9\xd8\x64\x3d\xa9\x23\x7b\x4f\x64\xea\x2f\x69\x6a\xde\xad\x27\x34\x69\x98\x9a\x32\xf5\xf6\x5d\x28\x53\xd4\x39\x80\x30\x9a\x55\x2a\x45\x80\x8d\x54\x7a\xa6\x24\x69\xcf\x4f\xba\xfa\x74\x23\x4e\x3d\xd9\x76\x8a\x79\x84\x7f\x8f\x9e\x01\x57\xf0\xaf\x27\xd6\x56\xec\xb8\x08\x48\xa2\xa2\x6c\x5c\xe3\x51\x4e\x2e\x00\xa5\x9f\x0f\x2e\x48\xff\x5e\x53\x41\x0d\x6d\x6c\x4d\x8a\xce\xe6\x41\xcd\xd1\x13\xd8\x47\x55\x63\xd4\xaf\x4a\x7d\xb1\xef\x29\xfa\xcb\xce\x5a\x99\x39\x91\x61\x3d\x49\xc9\x2c\x11\x35\x9c\x77\x67\x74\x3a\xd3\x6e\x69\xed\x8b\xf3\x8b\x8b\xbe\xd0\xe9\x29\xca\x8b\x63\xa6\xd2\x4b\x5a\x51\xe9\x81\x9f\xca\x60\x4e\x73\xfc\x53\xc0\xf8\x14\x79\x38\x8b\xe6\x81\x3b\x1e\xdb\x58\x84\x2a\x8f\xc1\xde\x26\x06\xac\x53\x0c\x55\x03\xae\xc7\xf2\x74\x96\x3f\x2d\xe2\x6f\x68\x09\x90\xf7\xe9\xe3\x3b\x3c\xcd\xa7\x7e\xca\xa2\xe8\x8b\xa9\xae\x8d\xfb\x82\x87\x7b\x5f\xe7\x23\xf1\x6f\xbc\x66\x23\x82\xca\x65\x94\xbc\xa5\x5e\xf8\x3c\x80\xfe\xf7\x9f\x6a\x09\xab\x8f\x45\xd9\xc4\xaf\xdd\xdd\x38\x60\xf6\x4c\xef\xf6\x6a\x81\x2e\x56\x14\x42\xc5\x13\x2d\xd8\xea\xa1\x83\x59\xdd\x9d\x76\xbd\x05\xa0\x4f\x8f\xd7\xb4\x2f\x26\x8d\x4b\x15\xb3\xfe\x26\x80\x93\x95\xe8\x95\x48\xbc\x5c\xeb\x9a\x04\x92\x97\x91\xa9\xa4\x6c\x14\x3a\x3f\x67\x63\x29\xd3\x29\x86\x3e\x3a\x58\x9b\x9d\xa9\xb8\x15\xbf\x0d\x2d\x79\xfb\x62\xb6\x6a\x7f\xa6\x5b\x5b\x3d\xab\x94\x8e\xa3\x22\x7c\xff\xa8\x5d\x7a\x7c\x07\x17\x43\x1e\x37\xc3\x5f\xd5\x2f\xdf\x9c\xb0\x9c\x4f\x0e\x42\x98\xe0\x67\x30\x36\xd4\x8c\x52\x89\x8e\x04\xf4\x81\xd3\xd0\xa0\xeb\x2f\xeb\x54\xb9\x6a\xfe\x3d\x5e\x7a\x0f\xba\x27\xdd\x1e\x9d\x0b\xe1\x9f\xba\x41\xd3\x6e\x00\xb4\x5b\xb3\x17\x40\x22\xe4\x88\x6e\x72\x60\xb7\x03\xda\xb4\x41\x81\x60\x95\xc4\x36\x7b\xe4\x11\xd3\x62\xc4\x2b\xf4\xd6\x8c\xcf\x9c\xd0\x3b\x57\x60\x96\x81\x39\x9e\xbd\xcc\xd3\x63\xb1\xff\xaf\x1f\xdf\x0f\x9e\xed\xed\xdb\x64\x42\xb1\x18\x1e\xab\xa1\xa1\xa9\xee\xb7\xb5\x3c\x18\xfe\x78\x7e\x3e\x38\x38\xbc\x78\xfe\xff\x1f\x80\xe1\xc9\xb3\x93\xa3\x93\xe0\xc7\xf1\x5e\x6f\xd6\x8c\x45\x0f\xd1\x75\xd8\xd2\x1a\x1f\x6a\xd0\x6c\x44\x46\x10\x3c\x3f\xfe\x71\xfc\xe1\xa0\xff\x64\x79\xf2\xbc\xb7\xf7\xef\x3a\x35\xda\xd8\x37\x42\xf7\xfc\xfc\xc7\xf1\xc9\xc5\x87\x01\xa0\xbb\x97\x6c\x82\x73\x46\x04\xea\xf9\x31\xbd\xd8\xeb\xd5\x91\xb0\xb5\x78\xa6\xa5\x8c\x51\x39\x61\xd7\x90\xac\xd3\xf6\x47\xe6\x0c\xc7\x9f\x2c\xdc\xa1\x17\x8b\x2f\x3d\x1f\x0b\xb1\x9c\x19\xa9\xf5\x0c\x9d\xb1\xed\xaa\xa7\x69\xf1\xde\x76\x14\xa8\xae\x71\xf0\x03\x1f\x21\x7d\x6a\x3a\x43\x25\x09\x63\xe2\x25\x0f\x0c\x82\xcc\x25\x0c\x2e\x88\x2a\x2a\xb0\x66\x66\xc2\x33\xbe\x3d\x97\x23\xd3\x93\x0d\x20\x3c\x5a\x96\x66\x82\xe7\xe9\xc7\xd9\x7b\x50\x87\x29\x02\xed\x85\x98\x02\x9d\x78\xfa\xd2\x75\x49\xe4\x4f\x70\x3f\xb8\xe2\x53\xf4\xc9\xda\xba\x5f\x41\xe0\xbd\xbd\xcb\x77\xae\x54\xa7\x66\x66\xe3\x76\xe7\xee\x3e\xbb\x52\xac\xab\xcd\xaa\x54\x29\xfe\xb2\x34\x92\xdf\xac\xe7\xc9\x86\x60\x3e\xd7\xad\xaa\x33\x82\xe0\xa8\x5b\x85\xcc\x7e\x4f\x4b\x37\x9e\xf1\x26\x6e\x0e\x43\x54\x0d\x47\x23\xe6\x49\xd8\xff\x0b\x00\x00\xff\xff\x88\xc7\xab\x11\xf2\x8b\x00\x00") + +func cmd_drone_server_static_scripts_drone_min_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_drone_min_js, + "cmd/drone-server/static/scripts/drone.min.js", + ) +} + +func cmd_drone_server_static_scripts_drone_min_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_drone_min_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/drone.min.js", size: 35826, mode: os.FileMode(436), modTime: time.Unix(1431897870, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_filters_filter_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x94\xd1\x8e\xf2\x20\x10\x85\xaf\xe1\x29\xe6\xf7\xc2\xd2\xe6\x4f\x7d\x00\x1f\xc6\xb0\xed\xd4\x92\xd0\xe2\xc2\x70\xb5\xfa\xee\x3b\x55\xaa\xa2\x6e\xb2\xcd\x5e\x79\x83\xe4\x9c\x39\xc3\xf0\xd9\x50\xc4\x80\x10\xc8\x9b\x86\x8a\xad\x94\xaa\x8b\x63\x43\xc6\x8d\xa0\x4a\xf8\x92\x52\x6c\xaa\x4a\x0a\xa8\x40\x47\xea\x9d\x07\x13\x40\x43\x8f\xf6\x80\x1e\xae\xa5\xd4\x6b\x02\x8f\x14\xfd\xb4\x47\xf8\x88\xc6\xb6\xe1\x1c\x6b\xdc\x30\x18\x02\x4e\x1e\xa2\xb5\x5c\xf4\x19\x31\x50\xea\x56\x4b\x51\x6d\xa4\xb8\xf6\xb9\xa8\xe7\x83\x85\x48\xfd\x66\x53\x9d\x9b\x5e\x2c\x61\x3a\x50\xff\x66\x61\x3e\x79\xb5\xda\xc2\x29\x77\xeb\x1e\x75\xbb\x4b\x33\xac\xd7\x90\xd4\x69\x94\x5d\x1a\xe5\xa7\x06\x4f\xf9\xbb\xc2\x27\xaf\x4e\xf7\xb1\x6e\x6f\x46\x38\x1e\x6f\xad\xb2\xc4\xfd\xb9\x75\x70\xd1\x37\x98\x25\xb7\x9c\xe0\xd4\xe9\x0e\x7b\xe8\xf5\x12\xe6\x53\xfd\x23\x55\x96\xde\x11\xe9\x74\xf3\x45\x24\x39\xf0\x02\xa0\xc7\xee\xaf\x00\xb9\xc5\x3b\x02\x9c\x6e\xbe\x08\x20\x07\x5e\x00\x1c\x30\x04\xbd\xc7\x45\x10\x53\xe6\x11\x64\x92\xdf\x11\xe6\x4c\xe1\x77\x40\xc9\x90\x9d\x6b\x6f\x44\xf5\xb8\x8f\x56\x7b\x16\xea\xc1\xb5\xd1\xa2\x2a\x5a\xef\x46\x2c\xca\x49\xea\x8c\x25\xf4\xaa\xb8\x3c\x08\xc5\xff\xf4\x1a\x66\x5e\x9a\x82\xcd\xb4\xcb\x5c\xfe\x74\xd9\xe1\x35\x53\xf9\x5f\x65\x95\xd7\x92\x9f\xf7\x53\xa9\xf8\xe7\x3b\x00\x00\xff\xff\xd6\xd4\xaf\xd7\xf4\x05\x00\x00") + +func cmd_drone_server_static_scripts_filters_filter_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_filters_filter_js, + "cmd/drone-server/static/scripts/filters/filter.js", + ) +} + +func cmd_drone_server_static_scripts_filters_filter_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_filters_filter_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/filters/filter.js", size: 1524, mode: os.FileMode(436), modTime: time.Unix(1428551034, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_filters_gravatar_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x90\xcf\x6a\x84\x30\x10\xc6\xcf\xc9\x53\x0c\x1e\x9a\xe8\x16\x43\x4b\x0f\xa5\x22\x7d\x81\x3d\x15\xfa\x00\x41\x47\x0d\x98\xb8\xe4\xcf\x5e\x8a\xef\x5e\x93\x6d\xa4\x50\x2f\x3d\xec\x2d\x93\x6f\xe6\x37\xf3\x7d\x2c\x38\x04\xe7\xad\xea\x3c\x6b\x28\xe5\x43\x30\x9d\x57\x8b\x01\x5e\xc2\x17\xa5\x44\x54\x15\x25\x50\xc1\x68\xe5\x55\x7a\x69\x41\x39\x90\x30\xe1\x7c\x41\x0b\x7b\xb3\x9f\xa4\x07\x8b\x3e\xd8\xf8\x46\xd8\xa0\x96\xb9\x7d\x28\x11\x94\x96\x23\xc2\xe7\xc7\x19\x46\x75\x45\x03\xd2\x00\x6a\xa9\x66\x98\xa4\x9b\x6a\x4a\x2a\x41\xc9\x0e\xcc\x93\xe9\x0a\x42\x7e\xd0\x59\xe6\x71\xe4\xa6\x10\x35\x40\x2a\x01\xda\xb6\x85\x60\x7a\x1c\x94\xc1\x7e\x53\xf3\x41\x45\xd1\xc0\x1a\x5b\x73\x3d\x79\x7f\x71\x6f\x42\x38\xec\x82\xc5\x3a\xef\xaa\xbb\x45\x8b\xdb\x53\x14\xa7\xc8\x3c\x15\xef\xae\x7d\x79\x7d\xe8\x5b\xad\x8b\x66\x43\x6c\x98\xf5\x20\x94\xb3\xb4\x9b\xb5\xbb\x25\x03\x87\xd1\xa4\xa5\xff\xc8\xe7\x4e\xf1\x3c\x3d\xff\xcd\x47\x9a\x31\xcc\xd1\x1c\xa9\xf5\xd2\x87\x19\x39\xeb\xed\x62\x90\x95\xf1\x6b\x50\xb3\x47\xcb\x59\x06\xb3\xc7\xdd\xd3\xa1\x9e\x8c\xfe\x6a\x4a\x75\x49\xe9\x5a\xf2\xb2\xa1\xdf\x01\x00\x00\xff\xff\xad\x07\xf9\xff\xc1\x02\x00\x00") + +func cmd_drone_server_static_scripts_filters_gravatar_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_filters_gravatar_js, + "cmd/drone-server/static/scripts/filters/gravatar.js", + ) +} + +func cmd_drone_server_static_scripts_filters_gravatar_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_filters_gravatar_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/filters/gravatar.js", size: 705, mode: os.FileMode(436), modTime: time.Unix(1428551034, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_filters_time_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xa4\x92\xcd\x6e\x1c\x21\x0c\xc7\xcf\xf0\x14\x6e\x2e\xc0\x2a\x9a\x6c\x7a\xcd\x35\xe7\xbe\x03\x59\x3c\xb3\x48\x7c\x44\x0c\x74\x57\xad\xf6\xdd\xcb\xd7\xd2\x99\x7e\xa8\x55\x2b\x8d\x46\xc6\x36\xf6\x9f\x9f\xcd\xd2\x8a\xb0\xc6\xa0\x4f\x91\xbd\x50\xca\xe7\xe4\x4e\x51\x7b\x07\x5c\xc0\x57\x4a\x01\x9e\x0e\x87\xfc\x87\x03\xcc\xc1\xdb\x4f\xfe\x02\x7a\x05\x09\x67\x34\xef\x18\x60\x64\xc7\xb3\x8c\x10\x30\xa6\xe0\x6a\x38\x59\xe9\xf2\x59\x2a\xf9\x66\xb0\xdd\x2f\x4d\xdc\x02\xb3\x0f\x39\x1b\x01\x8d\x7c\x5f\x51\x41\xd4\x16\xe1\x0d\xe3\x05\xd1\xd5\xc0\xa2\x3f\x67\x2b\x39\x7d\x05\x25\x23\x82\x74\xaa\xf8\x5b\x91\x53\x0a\x01\x5d\x6c\xb7\x38\x5e\x27\x78\x3e\x82\xd5\x2e\x45\xcc\x7d\x17\x2f\xa6\x9a\xf7\x44\xc9\x90\xd6\x75\xd7\xf7\x10\xd2\x34\x0e\xe1\xbc\xb4\x68\x11\xa2\x67\xe0\x1f\x36\xe7\x9e\xfb\x52\xec\x1b\x85\xe1\x00\xeb\x6d\xd6\xc0\x1d\x5e\xe0\x35\xa7\xd7\x1a\x87\xe7\xe3\xf1\x28\xc4\x34\xba\x95\x6b\x37\x9a\x3f\x4a\x0a\x42\x92\xc5\x47\xff\x9a\x82\xac\xa2\xfe\x01\x22\xf9\x99\x61\x43\xa5\x46\x51\x07\x2b\x9e\xbc\x53\x6b\x47\x03\x67\x9f\x42\x05\xf8\x71\x50\xca\x84\xc8\x8e\xcf\x77\x55\xbf\x41\xd4\x6b\x76\x2a\x3b\x06\xd3\xbd\xf7\x3d\xe9\x11\x1e\xba\xf5\x20\xa6\xfa\x00\xfd\x05\xb7\x30\x60\x4b\xa3\x8c\xf7\xff\x48\x2c\x3b\x12\x63\x69\x7e\xf1\xc6\x32\xa8\x3f\xae\xc0\xdf\x0c\xd8\x07\x2b\x23\x67\xc6\xb0\xed\x8c\xa5\x5b\x92\x91\x21\x3b\x26\xeb\x55\x32\xc8\x99\x0a\xde\x21\x13\xc5\x35\x6b\x13\x31\x70\xd6\xb7\x83\x3d\xde\xb7\x72\x17\x6d\x2a\x73\xb0\x19\x3f\xc6\x3a\xea\x16\xef\x07\x41\xe9\x4d\x14\xbe\xdf\x02\x00\x00\xff\xff\x35\xe0\xd7\x85\xc8\x03\x00\x00") + +func cmd_drone_server_static_scripts_filters_time_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_filters_time_js, + "cmd/drone-server/static/scripts/filters/time.js", + ) +} + +func cmd_drone_server_static_scripts_filters_time_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_filters_time_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/filters/time.js", size: 968, mode: os.FileMode(436), modTime: time.Unix(1428551034, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_services_agents_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x8f\x31\x6e\xf4\x20\x10\x85\x6b\x38\xc5\x14\xbf\x04\xb6\x7e\xd9\x07\x58\xa5\xd8\x22\x8a\xd2\x45\x59\x5f\x80\xc0\xc4\x46\xb1\x07\x0b\x86\x6d\x22\xdf\x3d\x80\x93\x48\x69\x28\xde\x3c\x7f\xdf\xb3\xca\x09\x21\x71\xf4\x96\xd5\x45\x4a\xfd\x9e\xc9\xb2\x0f\x04\xba\x83\x4f\x29\xc5\xd8\xf7\x52\x40\x0f\xd3\x82\x70\x9d\x91\x18\xf6\x18\xee\xde\x61\x02\x63\x2d\xa6\x04\x1c\xe0\x2d\xfb\xd5\x81\xa9\xe7\x56\x76\x86\x0d\x18\x72\xb0\x19\x2a\xe9\x56\x3f\xcb\xc9\xd3\x0c\xaf\x8f\xb7\x09\xae\x2f\xcf\x60\xcd\xba\xa6\xa1\xb6\x47\x29\x7e\xa5\xcd\x70\xc3\x78\xf7\x16\xf5\xbf\x85\x79\x3f\x57\x9c\x33\x2a\xfa\x09\xb9\x98\xe9\x94\x15\xf7\x07\xd2\xd0\x2e\x05\x23\x78\xf1\x69\x98\x91\xa7\x1a\xc3\x03\xfc\x70\xdb\xbf\x08\x21\x22\x72\x8e\x04\x0d\x5c\x7b\x5a\x8d\x66\xf7\x63\x63\xa5\xb1\xc1\x54\x77\x29\xcd\xa3\x3c\x47\xf1\x1a\x9a\xf3\x6a\x62\x49\x86\x2d\xb8\xbc\xa2\x56\x2e\x06\x42\xd5\xd5\x28\x7d\x0f\x55\x27\x40\xfd\xff\xb3\xbf\x80\x8e\x4e\x97\xf7\x2b\x00\x00\xff\xff\x46\x91\x94\x20\x63\x01\x00\x00") + +func cmd_drone_server_static_scripts_services_agents_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_services_agents_js, + "cmd/drone-server/static/scripts/services/agents.js", + ) +} + +func cmd_drone_server_static_scripts_services_agents_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_services_agents_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/services/agents.js", size: 355, mode: os.FileMode(436), modTime: time.Unix(1430442399, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_services_builds_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x94\x4b\xca\xdb\x30\x14\x85\xc7\xf2\x2a\xee\xe0\x07\xd9\x49\xb0\x17\x10\x0a\x7d\x50\x4a\x27\xa5\xfc\xc9\x06\x14\xf9\xc6\x11\xc8\x92\x91\xae\x12\x4a\xf0\xde\xab\x47\x12\xd2\x92\x91\x07\xed\xc4\x06\xe9\xdc\x73\xbe\x23\x2c\xf3\xe0\x11\x3c\x39\x25\x89\x6f\xab\xaa\x3e\x06\x23\x49\x59\x03\x75\x03\xd7\xaa\x62\xdd\x6a\x55\x31\x58\xc1\xfe\x84\xf0\x39\x28\xdd\xfb\x1d\xba\xb3\x92\x08\x93\xb3\x67\xd5\xa3\x07\x21\x25\x7a\x0f\x64\xe1\x90\x04\x59\xde\x0b\x12\x10\xbc\x32\x03\xbc\x7f\xdd\xed\xe1\xd3\xcf\xef\x20\x85\xd6\xbe\x4d\xdb\x5d\xc5\x1e\x39\xd9\xf4\xe6\x59\xbf\x9d\x88\xa6\x0d\xbc\x5d\x94\xe9\xed\xa5\x10\x14\x84\x64\xfa\x0d\x29\xa6\x81\x56\x9e\xc0\x1e\x4b\x5a\x32\x8c\x7b\x45\xf0\x71\x12\x4e\x8c\x70\x4d\x7d\xcc\x30\xc3\x0f\x31\x62\x52\x52\x84\x77\x38\x59\xaf\xc8\xba\x5f\x65\x22\x32\x30\x3a\x29\xdf\x66\xbb\x0f\x70\x07\xaa\x93\x30\x0d\xa6\x74\xc6\x98\x43\x0a\xce\x40\x26\x6b\x07\xa4\x9a\x77\x62\x52\x5d\xb6\xeb\xf8\xfa\xae\x5e\xf3\xae\xf0\xf0\x66\x1b\xc7\xe6\xed\x2b\xf2\xac\x58\x0a\xfc\x10\x9b\x30\x1e\xd0\x45\x71\x7e\xdf\xe5\x4f\xde\x8f\x6a\x11\xf7\x55\xb3\x4d\x11\x97\xf9\x85\x35\xe3\xda\xb3\xc9\x8b\xce\xef\xe8\x49\xb8\xff\xd2\xdb\x95\xe8\x45\xdd\x63\xf8\x5f\xe5\x61\x0d\x0b\xea\x7f\x11\x46\xa2\x4e\xed\x5d\x30\x26\x5d\x84\x7f\x7d\x0a\x32\x13\x2c\x3a\x84\x1e\x35\x12\x2e\xfb\x06\xd8\x1c\xcf\x41\x98\x21\x68\xe1\xe2\x4a\x3b\xda\x3e\xe8\xe8\xd5\x3b\x6b\x90\x37\x69\xc9\xdf\xae\x3b\xbf\x5d\x99\xcd\x1f\x7f\x81\x68\x34\x37\x75\x7c\xfe\x0e\x00\x00\xff\xff\x3e\x0e\x27\xbc\x9c\x04\x00\x00") + +func cmd_drone_server_static_scripts_services_builds_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_services_builds_js, + "cmd/drone-server/static/scripts/services/builds.js", + ) +} + +func cmd_drone_server_static_scripts_services_builds_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_services_builds_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/services/builds.js", size: 1180, mode: os.FileMode(436), modTime: time.Unix(1429247585, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_services_feed_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x53\xcd\x8e\x9b\x30\x10\x3e\x93\xa7\x98\xae\x56\xb2\x91\x10\xdc\x77\x85\xf6\x56\xa9\xbd\xe6\xd0\x43\x55\xad\x8c\x19\x12\x37\xe0\x89\x6c\x13\x0e\x15\xef\xde\xb1\x43\x80\x6a\x57\xbd\xc4\x19\x7b\xfc\xfd\x0d\x16\xa3\x47\xf0\xc1\x19\x1d\xc4\xeb\xe1\x20\xbb\xd1\xea\x60\xc8\x82\xcc\xe1\xcf\xe1\x90\xad\xf5\x57\xc4\xf6\x88\xee\x66\x34\xca\xe7\x73\x08\xd7\x02\x9e\x27\x63\x5b\x9a\xee\x8d\xd9\x4d\x39\xd0\xaa\xef\x1b\xa5\x2f\x05\xd7\xd9\x84\x8d\x27\x7d\xc1\x90\xaa\x40\x17\xb4\x50\x43\x4f\xdc\x74\x0c\xe4\xd4\x09\xcb\x13\x86\x6f\x01\x07\x29\x94\xd6\xe8\xfd\x7b\x6a\x12\xf9\x6b\xc4\x0b\x67\xe3\x4b\x3f\x36\x5e\x3b\xd3\x20\xdf\x7c\x48\x91\xef\x0f\x9a\xc8\xcc\xd0\x8f\x92\x7b\xd6\xa3\x04\x91\x34\x5d\x1d\x05\xe2\x23\xb9\xc8\x2d\xa3\x82\x88\x53\xa6\x13\x4d\x3d\xd4\x75\x0d\x22\x7a\xf2\x2f\x02\xde\x40\x4c\xde\x0b\x78\x89\xab\xc8\x93\xf8\xcc\xd1\x18\xa2\x86\x9f\xe9\x4e\x01\x4f\x2f\x55\xf5\xb4\x26\xb0\x41\x9e\xc9\x87\x02\x44\xa5\xae\xa6\xe2\x54\x51\x0d\x15\x07\xec\xde\xf6\xfe\x6a\x51\x40\xfa\xf3\xab\xfc\x4d\xc6\x4a\xb1\x18\xde\x02\x63\x22\x8b\x13\xfc\xc0\xe6\x98\x6a\x99\xe8\xb9\x6b\xdf\x54\x92\x1d\x18\x93\x63\xdc\x65\x03\x12\x6f\x68\xc3\x12\x4c\x66\x3a\x90\x6b\x3a\x5f\xd8\xe5\x68\x5b\xec\x8c\xc5\xf6\xd1\xb1\x86\x27\x95\x3d\x8d\xbd\x72\x65\xe7\x68\xf8\xee\x39\xe6\x84\x54\xb6\x2a\xa8\xfc\x4e\x9d\xcd\xf1\x77\xfe\x20\x43\xf7\xe4\xff\x23\x42\x93\xf5\xd4\x23\x87\x74\x92\xf1\x73\x73\xb0\x19\x4d\x57\x5b\x71\xc7\x4f\xc8\xf3\x36\xfc\xd1\x7e\x3a\xfe\x8f\x53\x5f\x5d\x25\x98\x68\x7a\x63\xf8\xd4\xf5\xa6\x3e\x09\x90\x8b\xbf\xfd\x00\xfe\xc5\x9c\xef\xca\x78\x3d\x64\x4b\x50\xbc\x53\x0e\xd4\x8e\x3d\x4a\xd1\x3a\xb2\x28\xf2\xb8\xe5\x97\x37\x22\x3a\x7e\x30\x3c\xe9\xdd\xbb\x61\x96\x39\x8f\x5c\x7f\x03\x00\x00\xff\xff\x57\x7c\x45\x66\x75\x03\x00\x00") + +func cmd_drone_server_static_scripts_services_feed_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_services_feed_js, + "cmd/drone-server/static/scripts/services/feed.js", + ) +} + +func cmd_drone_server_static_scripts_services_feed_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_services_feed_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/services/feed.js", size: 885, mode: os.FileMode(436), modTime: time.Unix(1430355174, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_services_logs_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x54\x5f\x6b\xdb\x30\x10\x7f\x76\x3e\xc5\xad\x14\xe4\xb4\xc6\x7e\x6f\x09\xdd\x1e\xc6\x28\x8c\x31\x96\xc2\x1e\xc6\x28\xb2\x7d\x71\xb4\xd8\x52\x90\xe4\x84\x51\xfc\xdd\x77\x77\x8e\xe3\x96\x76\x63\x2f\x75\x4f\xbe\xfb\xfd\xd3\xc5\xaa\x0f\x08\x21\x7a\x53\x45\x75\xbb\x58\xa4\x9b\xde\x56\xd1\x38\x0b\xe9\x12\x9e\x16\x8b\xa4\xb8\xba\x5a\x24\x70\x05\x0f\x5b\x84\xcf\xae\x59\xa3\x3f\x98\x0a\x61\xef\xdd\xc1\xd4\x18\x40\x57\x15\x86\x00\xd1\x41\xd9\x9b\xb6\x96\xde\xd6\x35\x50\xeb\xa8\xa1\x0f\xc6\x36\xf0\xed\xe3\xfa\x01\x3e\x7c\xbd\x87\x4a\xb7\x6d\xc8\xb9\xa5\x58\x24\x67\xa2\x19\x35\xbd\xdc\xc6\xb8\xcf\xe0\xf2\x68\x6c\xed\x8e\xa3\x80\x51\x01\xc3\x7e\xc2\x48\x7c\x10\x75\xd8\x31\x05\x23\xd1\xf1\xf8\xee\xfd\x5e\x7b\xdd\xc1\x13\x3b\xb1\xcd\x00\x5f\x74\x87\xe0\x36\x10\x49\xb6\xc7\xbd\x0b\x26\x3a\xff\x3b\x7f\xd9\x6c\xfb\xae\x44\x4f\xcd\xf2\x9c\xda\xc5\xc7\x7f\x75\xb2\x92\xb1\x91\xfc\x24\x71\x6b\x42\xde\x60\x84\x15\x4c\xde\x52\xa6\x66\x29\x19\x8c\x08\x19\x45\x8d\x7b\x36\x96\x24\x89\xc7\xd8\x7b\x0b\x62\x9a\x07\x53\x55\xe8\xbd\x29\x44\x6e\xa1\xae\xa7\xd9\x6b\x55\xb0\x5b\x3a\x19\x31\xa8\x56\xd7\x02\x73\x4b\x28\xc3\x2d\x67\x74\xd0\x5e\xd2\x2d\x75\xb5\xcb\x18\xfb\x88\x65\x70\xd5\x0e\xa3\x54\xd1\xed\xd0\x92\xae\xd6\x51\xd3\x9a\x92\xd0\x0d\x32\xe3\x7d\xc4\x2e\x55\xe3\x15\x3e\x4a\x93\x5a\x0a\x9e\x78\x09\x7d\x19\x2a\x6f\x4a\x7c\xe6\x08\xfe\x62\x29\x83\xc7\x89\xff\xe4\x6e\x2a\x69\xf8\xfc\x4a\xb0\x45\x2c\xed\x0f\xad\xcc\x0a\xd2\xd3\x5d\xe7\x2c\x8d\x09\x72\x79\x53\xb9\x16\x56\xab\x15\x28\xce\x26\xdc\x28\xb8\x03\x75\x0c\x41\xc1\x0d\x3f\xd5\x52\x5c\x25\xde\xf5\x91\xc5\xfd\x90\x99\x0c\x2e\x6e\x8a\xe2\xe2\xbc\x3e\x33\xe4\xd6\x85\x98\xc1\x98\x2e\x2d\x08\xea\xae\x50\x19\xcc\x46\x14\x97\x93\x1b\x29\x46\x4b\xea\xee\x79\x34\x2b\x3a\x97\x7f\x7e\xe6\xbf\x9c\xb1\xa9\x3a\x65\x35\x67\x4d\x52\x2c\x1e\xe1\x3b\x96\x6b\xa9\x53\x11\x28\xd7\x34\x37\xe5\xce\x76\x84\x49\x37\xf0\x22\x56\x3c\xa0\x8d\xa7\xe8\x12\xb3\x81\xf4\x9c\xdf\x3b\xca\xa1\xb7\x35\x6e\x8c\xc5\x7a\xea\x38\xc7\x3b\x0e\xe6\xfc\x73\x1b\x89\x92\x81\xff\x0e\xaf\x48\xab\xd6\x85\x7f\x50\x56\xce\x06\xd7\x22\x85\xd6\xa4\x8a\xf7\x0d\x66\x5b\x32\x5a\xab\x11\x7f\x98\xb7\x4e\xb6\xa4\xb7\x6f\xef\xc9\xeb\x35\x38\x9b\x10\x1c\xf6\x38\x53\xbc\x69\x72\x96\x2f\x0a\xd2\x93\xc1\xe7\x79\xbf\xc4\x1c\x46\x69\xf4\x5c\x24\xda\x36\x7d\xab\x3d\x9d\xe4\x9d\xab\xfb\x16\x53\x55\x7b\x67\x51\x2d\xf9\x28\x9c\xbe\x38\x62\x95\x2e\x76\xfe\x08\x11\xc9\xb0\x64\xaa\x3f\x01\x00\x00\xff\xff\x85\x8a\x7a\x56\x1a\x05\x00\x00") + +func cmd_drone_server_static_scripts_services_logs_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_services_logs_js, + "cmd/drone-server/static/scripts/services/logs.js", + ) +} + +func cmd_drone_server_static_scripts_services_logs_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_services_logs_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/services/logs.js", size: 1306, mode: os.FileMode(436), modTime: time.Unix(1430882689, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_services_repos_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x96\x5f\x4f\xdb\x3c\x14\xc6\xaf\xd3\x4f\x71\x5e\x84\x94\x14\xa2\xe4\xfe\x45\xd5\x36\x6d\x68\x82\x0b\x36\x51\xd0\x2e\x91\x9b\x9c\xb4\x1e\x89\x5d\xd9\x4e\x33\x84\xf2\xdd\x77\x6c\xa7\xe9\x1f\x42\x07\x83\xdd\x50\x12\x1f\x9f\xe7\x77\x9e\x73\xe2\x24\xac\x35\x82\x36\x8a\x67\x26\x3c\x1b\x8d\xa2\xa2\x16\x99\xe1\x52\x40\x34\x86\xc7\xd1\x28\x48\x4f\x4e\x46\x01\x9c\xc0\xcd\x02\xe1\x1a\x97\x72\x8a\x6a\xc5\x33\x84\xa5\x92\x2b\x9e\xa3\x06\x96\x65\xa8\x35\x18\x09\x8a\x96\x35\x37\x52\x3d\xb8\x1d\x39\x33\x0c\x6a\xcd\xc5\x1c\xae\xcf\xa7\x37\xf0\xe9\xfb\x05\x64\xac\x2c\x75\x62\x97\xd3\x51\xd0\x4b\x6d\xe5\x8d\x8e\x17\xc6\x2c\x63\x38\x6e\xb8\xc8\x65\xe3\x19\x82\x15\x53\x6e\xeb\x8c\x65\xf7\x31\x5d\x07\x0d\xce\xb4\xcc\xee\xd1\xb8\x2b\x23\xef\x51\xc0\x04\x4a\x49\x41\x53\x02\x60\x73\x4c\xe6\x68\x2e\x0c\x56\x51\xe8\x01\xef\x5c\x50\x38\x3e\xb3\xf9\x5c\x51\x96\xf1\x2b\x1a\xaa\x00\x4a\xae\x0d\xc8\x02\x48\x62\x53\x05\x47\x4b\xea\x51\x03\xb3\xe0\x3a\x71\x61\x13\x58\x73\x3b\x87\x48\x5e\xa1\xa9\x95\x00\x47\x6e\x65\xa3\x30\x65\x4b\x9e\x92\xb1\x2a\x75\xd9\xac\x6a\x10\xb4\x83\xd2\x1b\xd3\x60\xf6\x00\x82\x55\xe8\x45\x7d\xd0\xc7\x25\x53\xac\x82\x47\xdb\x20\x31\x6f\xe1\x8a\xd6\x2d\xa8\xa1\x6e\x6c\x76\xee\x61\x12\xc2\x36\xa5\x8d\xb3\xfb\x0e\xd3\xba\x6c\x69\x78\xda\x47\x0f\x20\x7f\x56\xc8\x8c\x6d\x39\x08\x6c\x9e\xe8\xef\x12\xcb\xd9\x4f\xcc\x4c\x0b\x97\xd3\x6f\x57\x36\x54\xa1\x46\x61\x98\xeb\xb7\x75\xfa\x79\x7c\xba\xfd\x62\x7e\x1b\xbb\x5b\x00\x9c\xc2\xa1\x12\x6e\x97\xb9\x2f\x41\x00\xfe\xa2\x76\xda\xe9\xfc\x57\x85\xd4\x4e\x6b\xbf\x94\xc1\x32\x98\xc9\x16\x03\x8d\x48\x8a\xba\x2c\xef\xec\x50\xc4\x4e\x66\xa8\xa2\x2f\x58\xa2\x6f\xca\xe1\x3a\x5e\x35\x42\xb9\x4b\xfa\xd2\x2e\xf8\xe8\x57\x0c\xd2\x0f\x5b\xef\xfb\x12\x37\x2e\xe5\x5f\x8f\x4d\x8f\x7b\x1a\xa6\x2e\xd5\xe0\x33\x7b\x2b\x9a\xf7\x27\xaf\xc5\xab\xd8\x0f\x9a\x4d\xf4\x5d\xba\x0d\xff\xd0\xf9\x89\x2b\x9a\x61\xfd\xc6\xc3\x73\x5a\xcf\x74\xa6\xf8\x0c\xdd\xe9\x6f\x4f\xd1\x15\x42\x37\xf4\x05\x62\x0e\x85\x54\x3b\x56\xbd\xd5\x29\xbd\x16\xdc\xf7\x2a\x86\xbb\x75\x79\x9d\x65\xeb\x4b\x8a\xec\x97\x1c\x7d\x57\x3a\xdd\xb7\x67\xd8\xb9\xbd\x98\xca\x5a\xd1\x9b\xe7\xc8\x39\x4a\x40\xc8\xaa\xf4\xa8\x3b\x47\xe8\xe7\xe8\xc3\xb6\x09\x13\xbb\xe2\xfe\x8b\xe1\x11\x1a\x6e\x16\x74\x2a\xe6\x94\x85\xb3\x52\xff\x0f\x46\xd5\x08\xad\xf3\xbe\x53\x4a\xa4\xa8\x68\x37\xb9\xba\x45\x0d\x91\x5b\xec\x60\x03\x5e\x40\xd4\x13\xff\x37\x99\x40\x2d\x72\x2c\xb8\xc0\x7c\x1d\xd1\x17\x14\x31\x31\xaf\x4b\xa6\x92\x42\xc9\xea\x52\x93\x01\x2e\x53\x62\xdf\xb6\x63\xaf\x1b\xb4\xf6\x6f\xbb\xcb\x80\x4a\x51\x37\x9e\x25\xd8\xf2\xab\xd7\x3e\xeb\xd9\x3a\xcf\x86\xc9\x3a\x89\xac\x94\x1a\xa3\x8e\x60\xe3\xf2\x5e\xb6\xd6\xab\x49\xa1\x65\x89\x49\x29\xe7\x91\xfd\x00\x51\xe0\xe2\xc1\x9b\x0f\x2e\x55\x0e\x39\x59\x49\x83\xe5\xc8\x93\x30\xf6\x31\x5e\xa0\xdd\x3c\x9c\xdd\x33\x34\x38\x1b\x4f\x87\x61\x17\xe7\x4f\xb5\x0d\x95\xf6\x4c\x65\xad\x07\xa2\xdf\x51\xd0\xb5\x88\xee\x24\x95\xcc\xeb\x92\x9e\xd6\x5c\x51\x0b\xc2\xb1\xbd\xa5\xbb\x2f\x9d\xd0\x7f\x1b\xc4\xdb\x9f\x3f\xa4\xd1\x8e\xad\xd2\xef\x00\x00\x00\xff\xff\x76\xe5\x85\x5b\x97\x09\x00\x00") + +func cmd_drone_server_static_scripts_services_repos_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_services_repos_js, + "cmd/drone-server/static/scripts/services/repos.js", + ) +} + +func cmd_drone_server_static_scripts_services_repos_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_services_repos_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/services/repos.js", size: 2455, mode: os.FileMode(436), modTime: time.Unix(1431832940, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_services_tokens_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x92\x4f\x6e\xf2\x30\x10\xc5\xd7\xce\x29\x66\x81\x94\x84\x0f\x25\x07\x88\x3e\xa9\x55\x5b\x55\xed\x82\x56\x85\x0b\x98\x64\x08\x6e\x8d\x1d\xd9\x13\x50\x85\x72\xf7\xfa\x0f\x50\xa0\x54\xea\x2a\xd2\xf8\xf9\xbd\xdf\x8b\x27\xed\x2d\x82\x25\x23\x6a\x4a\xab\x24\xc9\x96\xbd\xaa\x49\x68\x05\x59\x0e\xbb\x24\x61\xe5\x78\x9c\x30\x18\xc3\x7c\x85\x30\xd7\x1f\xa8\x66\x68\x36\xa2\x46\xe8\x8c\xde\x88\x06\x2d\xf0\xba\x46\x6b\x81\x34\x38\x2b\xe3\xbe\x4e\x14\xae\x34\x9c\xb8\x9b\x09\xd5\xc2\xdb\xc3\x6c\x0e\xb7\xaf\x4f\x50\x73\x29\x6d\xe1\x8f\xcb\x84\x1d\xb3\x4e\x8d\xb3\xd1\x8a\xa8\x9b\xc0\x68\x2b\x54\xa3\xb7\x91\x22\x62\x78\xd3\x47\x24\x17\x09\x52\x58\x02\xbd\x04\x67\x07\x06\x3b\x6d\x05\x69\x23\xd0\x5b\x47\x6f\x46\x2b\x61\x8b\x20\xfb\x0f\x87\xa0\xd0\x89\x31\x66\x90\x7a\xa3\x20\x24\x15\x2d\x52\x96\x96\xbc\x13\xa5\xe7\x2f\x03\xbf\x4d\xf3\xca\x09\x87\xea\x2c\xfb\xce\x20\x27\xdf\x18\x14\x6e\x63\xd1\x98\x17\x8f\x6f\x3a\x6e\xf8\x1a\x76\x7a\xf1\x8e\x35\x0d\xf0\x3c\x7b\x99\x7a\x38\x83\x16\x15\xf1\xd0\xd4\x23\x7f\x03\x7f\x5e\xe0\xba\xf1\x19\x6e\x88\xb8\xc6\xec\x85\x57\xa0\x27\x11\xea\x1a\xfb\x3d\x4a\x8c\xec\x97\xe9\xe7\xf0\x7e\x15\x54\x3b\xc0\x94\xaf\xd1\xd3\x92\x7b\xf7\x5f\x79\x9b\x60\xfa\x27\xe2\x28\xfd\xc9\x5c\xa6\xf0\x6f\xff\x2b\x25\x5f\xa0\x3c\xb0\xb3\xc1\xe1\x73\xd5\xf6\x92\x1b\x37\x29\xd6\xba\xe9\xa5\xbb\xdf\x18\xad\x30\xcd\xfd\xc8\xee\x17\x26\x3d\xb6\x3f\xdd\x23\x67\x34\xe4\x59\x5e\x7d\x05\x00\x00\xff\xff\x3f\x84\x0d\xbb\xe1\x02\x00\x00") + +func cmd_drone_server_static_scripts_services_tokens_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_services_tokens_js, + "cmd/drone-server/static/scripts/services/tokens.js", + ) +} + +func cmd_drone_server_static_scripts_services_tokens_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_services_tokens_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/services/tokens.js", size: 737, mode: os.FileMode(436), modTime: time.Unix(1428966528, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_services_users_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x54\x41\x6e\xdb\x30\x10\x3c\x4b\xaf\xd8\x43\x00\x49\xa9\x21\x3d\x40\xc8\xa1\x48\x8b\x22\xb7\xa2\x49\xce\x01\x43\xad\x6c\x16\x0c\xa9\x92\x94\x5b\xa3\xd0\xdf\xbb\x5c\xca\xa9\xe3\xc8\xa9\x9b\x9b\x44\x0e\x67\x66\x87\xdc\x2d\x46\x8f\xe0\x83\x53\x32\x14\x6d\x9e\x97\xfd\x68\x64\x50\xd6\x40\x59\xc1\xef\x3c\xcf\x9a\xcb\xcb\x3c\x83\x4b\xb8\x16\x72\x83\x1d\x10\xda\x81\x7d\xfc\x8e\x32\xd4\x71\xbd\xc9\xb3\xad\x70\xf0\x10\xd7\xdb\x03\xf8\xdd\x06\xe1\x9e\xd6\x6e\xd1\x6d\x95\x44\x18\x9c\xdd\xaa\x0e\x3d\x08\x29\xd1\x7b\x08\x36\x52\xa1\x63\x70\x27\x82\xa0\x5f\x65\xd6\xf0\xed\xf3\xed\x1d\x7c\xfc\x7a\x03\x52\x68\xed\xf7\x12\xcf\xa6\x0e\x28\xcb\x8b\x4d\x08\xc3\x0a\x2e\x7e\x24\xa3\x49\x3a\xd2\x7d\xc1\x40\x3a\xa0\x95\x0f\x60\x7b\x20\x22\xb6\x1d\xd9\x12\x5d\x16\x36\xca\xd7\xbc\x7f\x05\x7b\x6e\xae\x37\xcb\x32\x87\x61\x74\x06\x98\xbd\x5e\x63\x28\x8b\x46\x0c\xaa\x61\x86\xa2\x6a\x09\x32\xb5\x4b\x72\x9c\xcc\xe3\x0e\xb4\x5d\x2b\x73\x24\x45\x34\x87\x4a\x0c\x39\x43\xae\x29\x3e\x24\xe8\x29\xd5\x40\x29\xcb\xd1\x39\x34\x41\xef\x40\x8c\xf4\x6f\x82\x92\x22\xcc\x37\xf5\xda\xc6\x75\x42\xff\x5f\xdd\x8b\x65\xdf\x0f\x74\x6d\xf1\x42\x0d\xe0\x2f\x8a\x32\xde\x5e\x04\xbf\x94\x1c\xec\xcb\x90\x23\x62\x49\x30\xe2\x8e\x4a\x67\xe8\xfb\x85\xc7\xf3\x74\x45\x90\x9b\x05\xe1\x9a\x83\x5f\xc1\x29\x13\x9f\x50\x23\x9b\x58\xca\xb9\xe3\xcd\x73\xe4\x13\xf2\xa4\xfe\xbb\x2f\x1e\x7a\x67\x9f\x12\x3e\x42\xb5\xa5\x76\xa2\x96\xa2\x16\xae\xe1\xa6\x07\x63\x43\xca\xce\xaf\x40\x05\xf8\xa9\xa8\x45\x7a\xa4\x24\xd2\x91\x78\x98\xcf\x11\xd3\x76\xf1\x15\xa5\x61\xf0\xfa\x11\xc5\x59\xd0\x61\x4f\x06\xae\xa8\x31\x6b\xfe\x2c\x2b\x2e\x20\x6b\x1a\x50\x3d\xd3\xb2\x43\x45\xe1\x69\x87\xa2\x3b\xf2\x1f\xa1\x84\x2b\x1f\x0e\x32\xcb\x98\xa8\x76\xe8\xad\xde\xe2\xbc\xd5\xf2\xce\x1c\x67\x02\xd0\x94\x79\x52\x1e\x79\x67\xda\x8b\xa2\xa6\x09\xc7\xd5\xbd\x15\xdb\x0c\x66\x6b\x69\x14\x45\xf0\x7e\x1c\xc5\x08\x8e\x7b\xa8\xac\xea\x78\xfe\x79\x62\x96\x83\xd8\x69\x2b\xba\x2a\x59\x66\x93\x57\xf3\x5a\xfb\x76\x15\x53\x55\x4b\x7e\x88\x7f\xf3\xfc\x47\xdd\xd3\x1c\xea\xa9\xf2\xa7\x9c\x03\x10\x66\x3d\x6a\x11\x5b\xa3\x7e\xb2\xdd\xa8\xe9\xa9\x75\xce\x1a\x2c\xaa\xb8\xe4\xe7\x49\x5a\xa4\xe1\xb6\x3a\x1c\xaf\xc4\x3f\x55\xf1\xea\xfe\x04\x00\x00\xff\xff\x97\xfd\x4b\x2c\x21\x06\x00\x00") + +func cmd_drone_server_static_scripts_services_users_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_services_users_js, + "cmd/drone-server/static/scripts/services/users.js", + ) +} + +func cmd_drone_server_static_scripts_services_users_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_services_users_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/services/users.js", size: 1569, mode: os.FileMode(436), modTime: time.Unix(1430348836, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_term_js = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xa4\x1a\x6b\x6f\xdb\xc8\xf1\xbb\x7f\xc5\x9e\x0a\x1c\xc9\x33\xa3\x90\x92\xe5\xd8\x52\x62\x23\xb8\x9e\x91\xa2\x77\x38\xa0\xce\x87\x2b\x64\xd5\x20\xa5\x95\x4c\x9b\x22\x05\x92\x72\xe2\x3a\xfa\xef\x9d\xd9\xf7\xf2\x21\x29\xe9\x07\x2b\xe4\xec\xbc\x5f\x3b\xbb\xcc\x73\x54\x90\x9b\x24\xad\x68\xe1\x93\xdb\xcf\xff\xfe\xfd\xb7\x5b\x9f\x2c\xe8\x32\xda\xa6\x55\xe9\x13\x9a\x55\x49\x95\x50\x7c\xfa\x5a\xd1\x6c\xe1\x93\x2a\xff\x44\xbf\xde\x56\x45\x92\xad\x7c\x72\x9f\xc0\x5f\x41\x4b\x86\x7c\x42\xc8\xfd\x7d\x99\x26\x73\x4a\x3e\x90\xe9\xac\xcf\x1e\x27\x27\x27\x9c\x2b\xc0\x5e\x01\xc3\xa1\xcb\xc0\x19\x13\x67\x9e\xa7\x79\x31\xfe\x5b\x10\x04\x8e\xcf\xc1\xa1\x01\xfe\xa8\xc1\x03\x13\xfb\xa3\x02\x0f\x4d\xec\x91\x02\x9f\x59\xbc\x3f\x4a\xf0\xc8\xe2\xad\xc0\xe7\x16\x6f\x05\x7e\x67\x62\x6b\xf0\x85\x01\x1e\x8d\x46\x12\x7c\x69\x80\x6f\x34\x38\x34\xcd\x1c\xdd\x68\xb8\x69\xe7\x8d\x01\x1f\x58\xec\x6f\x14\x7c\x68\xf1\xd7\xf0\x33\x8b\xbf\x86\x8f\x2c\xfe\x12\x1e\x33\x75\xe2\x68\xfe\xb4\x2a\xf2\x6d\xb6\x78\xd3\x08\x40\x1c\xb6\x63\xe8\x58\xc4\x83\x0e\x1e\x2a\x2c\xf1\xb0\x83\x87\x8a\x50\x7c\xd6\xa5\x87\xf4\x73\x3c\xea\xd2\x43\x61\x9c\x77\xe9\xa1\x30\xde\x75\xf0\xd0\x18\x17\xed\x18\x3a\xb0\xf1\x65\x3b\x86\x8e\x71\x1c\x76\x38\x55\x87\x3b\x0e\x3b\xbc\x7a\x63\xa0\x74\xb8\x55\x27\x41\x1c\x76\xf8\xf5\xc6\x40\xe9\x70\xac\x4e\x8d\x38\xec\xf0\x2c\x66\xc9\xc9\x0e\x2a\xd5\xa8\x6d\x28\xd7\xe5\x36\x9b\x57\x49\x9e\xb9\xd9\x76\xed\xb1\xe2\x85\x07\x80\xc3\x6f\xbf\xca\x39\x9a\x1b\x9e\x7b\x13\x58\xf9\xf2\x90\xa4\x94\x20\x66\x3f\xa5\xd9\xaa\x7a\x20\xef\xc9\x80\x13\x49\xb2\x5e\xd0\x23\xa7\xf8\x8c\xf8\x3b\xf8\x2b\x68\xb5\x2d\x32\x0e\x41\xe9\xd3\xc0\x27\xa1\x4f\x06\x3e\x19\xfa\xe4\xcc\x27\xa3\x59\x7f\x99\x17\xbf\x45\xf3\x07\x57\xa9\x52\xd0\x05\xe7\x2a\x88\x8f\xa1\x59\x15\x94\x66\x52\x97\xef\xa0\x8b\xd3\x2d\x95\x64\x84\x60\x9f\x8c\x7d\x32\xf7\x09\xf4\xbd\xcc\x27\xd0\x2e\x8b\x55\x3c\x11\xab\x73\x30\x30\x3c\x07\xfb\x50\x43\xf2\x0b\x19\x9e\x7b\xf8\xc2\x44\xc3\x2b\x7b\x43\x7e\x12\xbf\x00\x7c\xc4\xbc\x22\x01\xb9\x26\x9c\xe6\x2c\x00\xa4\xd1\x88\x8c\x49\x20\xd1\x30\x0c\x9c\x07\x47\x94\xfc\x5a\x50\x63\x40\x45\x09\x02\x93\x3d\xb6\x22\x82\xd6\x80\xea\x6a\x3b\xb5\x8d\xdc\x4a\xd6\xd4\x21\x8a\xac\xb5\x2f\x75\x83\x9f\x28\x2c\x84\x63\x8f\x2f\x98\x33\xe2\x99\xb5\xc2\x70\xd9\x0e\xa0\xc1\xe0\x5b\xe2\xde\x27\x00\x0d\x38\x6f\x78\x42\x26\x22\x59\x26\x20\x13\x12\x06\x17\xf0\xf1\xf4\xd4\x54\x09\xf2\x47\x60\x4f\xef\x13\x83\xa7\x16\xd6\xdf\x6c\xcb\x07\xd7\x48\x5e\x37\xf3\x3c\x8d\xb8\x53\x4f\x22\xf8\x75\x83\x76\x9e\xeb\x79\xfd\xc7\x3c\xc9\x5c\xc7\x51\x84\x7c\xdb\x9a\xf6\xe8\x12\xf3\x76\x3e\xc3\x14\x16\x05\x83\x00\x23\xf8\x82\xad\x22\x88\x35\x41\xb3\xd8\x2c\xda\x1d\x93\x86\xbf\xf8\x77\x52\x8f\x49\xc3\x9b\x86\x1f\xb9\xcf\x3e\x90\xc1\x50\xb8\xec\xb5\xe6\x8f\xfb\xc4\x9b\x98\x75\xa6\xad\xde\x79\xfd\x68\xb3\x49\x5f\xdc\xea\x21\x29\xbd\xb6\x82\x89\x5e\xb8\x02\x98\x0e\x90\xf1\x29\xca\x9e\xb3\x5c\x8c\x5e\x40\xff\xc1\x70\x80\x90\x14\x20\xa6\xd7\xd9\xea\x2f\x24\xc4\x9c\xbb\x60\x96\x1d\xf0\x61\x2a\xff\x26\x27\x3f\xe0\x45\x83\x9a\x79\x8f\x4f\x28\x66\xe3\xd2\x46\x2c\x68\x59\xf9\xe4\xc9\x27\x79\xfc\xc8\x7e\x60\xa2\x79\x86\x54\x7c\xe4\xe9\x88\xf2\x11\x05\x88\xa3\x62\xb5\x5d\xc3\xd8\x53\x4e\x83\x19\xc7\x04\xe0\x00\x3d\xad\x56\x64\x8b\xbb\x96\xf3\x4e\x7f\x1e\xa5\xa9\xab\xd6\xa1\xb5\x78\x50\x71\x66\xc8\x1e\xad\xd4\x47\xae\x3a\xf5\x1f\x75\xea\x3f\xea\xd4\x07\x1c\x81\x39\xbd\x7f\x14\x69\xcf\x78\x3d\x91\x24\x43\xb8\xd1\x9a\x38\xe2\xf4\x49\x55\x07\xda\x02\xaf\x00\x7f\x16\x89\x66\xf7\x5c\x5c\xe7\x4d\x57\x8e\x7a\x62\x3c\x5b\xae\x60\x87\x50\x63\x43\xcc\xde\xe4\x88\x90\xd1\x2f\x69\x92\xd1\x31\x59\x46\x69\x49\x11\x42\xcb\x79\xb4\xa1\x7f\xfd\xf1\xbb\x01\x2b\xab\x82\x46\x6b\x01\x60\x22\xf8\x74\x89\x3d\xa7\x16\x18\xf9\x2a\xe6\x4f\x37\xdf\xe0\x5b\x29\x0d\x4b\x96\x44\x82\xc8\x07\xdc\x76\xd2\x54\xdb\xac\x16\xc8\xeb\x4e\x9b\x48\x08\xa6\x74\x1f\x16\x71\x85\x27\x84\xfb\xba\x33\x27\x5a\x29\x64\xa2\xd1\x93\x6c\xb3\xad\x8c\x8e\xc5\x80\x65\x05\x49\xd7\x04\x26\xf3\xa7\x97\x5b\x6b\x69\x77\x02\x3f\xdc\x82\xfe\xa6\xc8\xab\xbc\x7a\xd9\x50\xd8\x20\x3f\x55\xeb\xd4\x4c\x46\x26\x45\x1a\xc0\x76\x93\xed\xb2\x45\x09\xa4\xce\x97\x44\xbc\x82\xdd\x4e\xc9\xaa\xcb\x81\x74\x9b\x32\xe8\x0c\x72\x8b\x3d\x70\x6a\x60\xb3\x47\x4d\x55\xdd\xda\xf9\xf7\xac\xec\x95\x27\x45\x4a\xa8\x65\x9a\x52\xcc\x62\xb3\x05\xcb\x0e\xc2\x98\xaf\x68\x46\x8b\xa8\xa2\x7f\x6e\x2b\xd0\x41\xa2\x83\xc1\x4f\xb8\x65\xc8\xd7\x45\x54\x45\xbe\x66\x3a\x7f\xd8\x66\x4f\x76\x57\x17\x4c\x41\x7d\xde\xaf\x38\x8a\xd1\xb6\xd5\xb3\x0c\xb0\xc7\x1b\x96\x19\xba\x46\xef\xaa\x09\xda\x27\x64\xb7\x2f\x07\x0c\x42\x73\x63\xc0\x7c\x6e\x89\xb6\x50\xc3\x0c\x37\xb6\x04\xec\x5b\xad\x11\xe7\x31\x73\x9c\xba\x02\xdf\x1f\xad\x86\x63\x91\xf5\xe9\x07\xc2\xe0\x93\xf6\x08\xb2\x50\x25\xff\xa5\x2e\xe0\x1a\x31\x12\x11\xc4\xc8\xd9\x91\x6a\x8d\xbb\x81\x0d\x53\x91\x34\xd6\xdc\x9e\xb1\x7e\xef\x55\x3d\xf6\x79\x63\xb0\x39\xd7\x14\xdb\x6e\x80\x1d\xbd\xd5\xd9\x6b\xe9\x64\xf2\xde\x1d\x9d\x26\xa8\x85\x2e\x68\xd1\x75\x1b\xfe\x94\x06\x70\x54\xd8\x29\x69\x75\x5b\xbd\xa4\xb4\x74\x25\x9f\x5d\x77\xf4\x6d\xcf\x98\x49\xd0\xee\x24\x21\xbc\xfc\x92\x54\x90\x33\x1c\x49\x6b\x34\x8f\x4a\x4a\x9c\x0a\x9a\x97\x33\xae\xc7\xcf\x56\x13\x33\xfa\x33\xe0\xb9\xcc\x3d\xca\x0f\x9c\xc1\x22\x29\x37\x69\xf4\xd2\xe4\xc1\x48\x1f\xa2\x6c\x91\xd2\xbf\x73\x1c\xb7\x23\x88\x9c\x11\x34\xd1\x62\x3d\x18\x9d\x1f\xa3\x0d\xf3\x99\x2b\xb6\x7b\x53\xab\x3d\xde\x6b\x04\xbd\xc3\x81\x66\x21\x65\x79\xf5\x2b\x10\xad\xf2\xe2\x85\xf3\x37\x00\x76\x11\x72\xd8\x9e\x6e\xd7\xd2\xe7\x14\x19\xeb\xbf\xb8\xef\x90\x6f\xdf\x08\xee\xf2\x02\xfc\x13\x80\x35\xeb\x9f\x7f\x26\xd6\x8a\x03\x6e\x71\xea\x49\x69\x24\x23\x9a\xc4\x11\x59\x90\xb5\x02\x2d\x5b\x4c\xb3\x9d\xf3\xad\xd2\xb0\x97\x7b\x5f\x6a\x70\x93\x17\xbf\xe6\x0b\x2a\x52\xc2\xab\x8d\xa8\x0d\x76\xac\x29\x6a\x07\x30\xdd\xc6\xfc\x1f\x5f\x41\x91\xd7\x98\x27\xb1\x82\x49\x79\x63\xd2\x2d\xfe\xc4\xae\xd0\x3d\x39\x60\xa5\xa3\x15\x40\x60\xd6\xac\x1c\x84\x02\xd6\x26\x2a\x4a\xfa\x8f\xac\x12\x58\x61\x60\x94\x3c\x47\x01\x27\xbf\x09\xcd\xd2\x12\x09\xeb\xbc\x8f\x8b\xb7\x57\x8e\x67\x4e\x0e\x16\x55\xa0\x89\x0e\x34\x10\x72\x44\xef\x90\x22\x5a\x04\xb5\x69\xa7\x8b\x3b\x5a\xb9\x4e\xec\x78\xdd\x7a\xb2\x33\x76\x6d\xd1\x85\x69\x95\xbb\x08\x33\x13\xff\x7d\x4f\x46\xde\x41\x39\xdb\x16\x39\xee\x59\x93\xd5\xbb\xc3\xac\x62\x98\x13\x9f\xf6\xa9\xfd\xae\x45\x6d\xb5\x78\xb1\x8f\x3f\xef\x30\xb2\xbb\x8d\xb3\x3c\xa3\xfb\x04\x5d\x1e\xd4\x15\xa7\xab\xa7\xbd\x3c\x06\x67\x5d\x4c\xe6\x69\x5e\xd2\x6e\xe7\x0d\x2e\x9b\xde\x1b\x5e\xec\x75\x9f\xd5\x40\xb9\x0a\x6f\xc8\x30\xf0\xf6\xa8\x37\xdc\x6b\xa3\x60\xc8\x8f\x4d\xc8\x54\x6f\xc8\xcb\x55\x8b\xce\xc3\x16\x9d\xcf\x8e\xd3\x39\x36\x75\x3e\xdb\xab\xf3\xd9\x31\x3a\x37\x4e\x7d\xb6\xfa\x71\x9b\xfa\x17\x2d\xea\x5f\x7e\x8f\xcb\x2f\x0c\x1b\x2e\xd1\x86\xa6\x8c\xcb\x16\x19\x61\x60\x0a\x39\xb8\x3f\xc6\x0d\x59\x61\x50\x13\xd6\xd1\x29\x6b\x8d\xb6\xde\x2b\x7f\xa4\x43\x06\x0d\xc5\x8d\x1d\x6c\x07\x13\x3d\x4c\x01\x5d\x3d\x4b\x12\xc4\x79\xba\x68\x52\x1c\xea\x44\x92\x1a\x42\x4c\x0b\x3c\x5b\xb6\xb0\x38\xd0\x81\x94\x02\xac\xe5\x74\xeb\x7c\xd1\x24\x79\x48\x16\x2d\x02\xdb\x5a\x87\xa4\x10\xbd\xa2\xc5\xce\xf6\x4a\xc7\xb1\xc1\xa8\x53\x7c\x3d\x9c\xa1\x52\x18\x1c\x05\xa8\x99\xfe\x2d\x62\x3b\x8a\xd5\x12\x7b\xc6\xc5\x1e\x9d\xb4\x8d\xfb\x61\x5b\x6e\x0d\x1b\x87\xa3\x83\x39\x2b\x7a\xad\x35\xd7\x45\x2b\x9f\x94\x58\x0d\xe6\x69\x9f\x01\x9a\x67\x7d\x01\x56\xe7\xa5\x9d\x4d\x20\xaf\x63\xc0\x30\xfe\x9e\x40\x3a\x7d\xfd\x73\xe9\x3a\x63\x18\xae\xea\x33\x80\x64\x26\xee\x99\xd8\xeb\xac\x71\x83\x50\xea\xe9\x08\x54\xf5\xac\x33\xe1\xb4\xf7\x9e\x75\x22\x34\x41\xa8\x7c\x4d\x7a\x9c\xf1\x87\xbb\x1e\xae\x71\xe8\x29\xe9\xe1\xeb\x98\x3c\xe7\xc9\x02\xca\xcc\x27\xbd\xab\xde\xec\x98\xf3\xa4\x9c\xec\x2d\x97\xc1\xbb\xe9\x2c\xdd\x09\xd5\x35\x4c\x23\x98\xf2\xf3\x5d\x9f\x66\x18\x73\x40\xe1\x6c\xf6\x85\x14\x11\x8e\x0a\xe9\xad\xf0\xa4\xd2\xd0\x8a\xa7\x39\x71\xca\xcd\xb6\x57\x6e\xa2\xac\x27\x03\xbf\xc7\x7e\xb9\xb1\x76\x72\xc7\x43\x40\x1a\x95\x55\xeb\x19\x8f\xdd\xc9\xb9\x10\xf4\x69\x30\x63\xf1\xb7\x48\x09\x23\xd4\xb3\x35\x0b\x74\xbe\x71\x1b\x8d\x9e\xa1\xfd\x54\x4f\x46\x61\x57\xef\xfd\x5b\x2b\xd0\x57\xbd\x83\x3e\x33\x26\xc3\xe6\x25\x25\x37\x89\x69\xc3\xef\xdd\x39\x3b\x79\xd3\xae\x75\xf5\xc9\x74\x36\xf3\x89\xbc\x9e\x62\xf7\xe2\x78\x53\x69\x5d\x5a\x31\x68\x68\x5f\x65\x70\x4b\x0b\xfa\x4c\x61\x4f\x70\xbd\xfe\x3a\xda\xb8\x66\x3d\x76\x99\x08\x4b\x96\x81\xde\x31\x09\x2c\xaf\x18\xea\x09\xdc\x9c\xe5\xd1\xec\x28\x2b\x93\x4f\xec\x08\x50\xf8\xec\xe5\x8f\x08\x4e\xc6\xe2\x91\x96\xa5\x4f\x1e\xe4\x6a\xe2\x13\x5e\xee\xbe\xbc\x8f\xf4\x09\x88\x9d\x33\xac\x82\x46\xe9\x67\x26\xa5\xa0\xeb\xfc\x99\xca\x7f\xff\x12\x47\x58\x9f\x9f\x6c\x4a\x7d\xf1\xab\xbf\x6e\x84\xdc\x3c\x25\x1d\x35\xc7\x2b\x4c\x0d\x16\x1a\xc2\xc2\x50\x3a\x16\x99\x9b\x26\xae\x9b\xed\xd4\xb1\x0e\x80\xb6\x3e\x16\xa9\x4f\x56\xad\x47\x15\x75\xfe\x66\x08\x93\xbd\xec\x85\x4b\xac\xbb\xd6\x03\x17\x48\xd6\x8d\x4c\xed\xca\x46\xb0\xb3\xef\x6c\xb4\x66\xf2\x8a\xc1\xc7\x06\xab\x6f\x67\x6a\x6d\xc5\xa6\x61\x47\x5e\x9f\xac\xf7\x7d\x9f\x71\x1a\xa7\x67\x71\xa5\x63\x84\x08\xe2\xbd\xc7\x7b\xec\xbb\x05\x1b\x79\xcc\x1b\xfe\x7a\x7c\xab\x42\x7f\x90\x43\xcb\x57\x61\x1f\x36\xf8\x35\xd4\x86\xd8\x51\x6a\xd3\x11\x01\x19\xb8\x0d\x05\x8e\x7d\xac\x13\x70\x41\xfe\xaf\x64\xf5\x50\xb9\xce\xc4\xf1\xfa\xe0\x9e\x84\x3f\x4a\x82\xb6\xaf\x01\x40\x77\xe0\x5b\x00\x73\x21\x9f\xe8\x56\xa1\xfe\x1c\xd0\x15\x0d\x36\x08\xd6\x55\xec\xca\x47\x5e\x31\x1d\x49\xbc\x27\x6e\xed\xfc\x78\x7d\x61\xc7\x12\x68\xda\x80\x4d\x54\x41\x26\x67\x63\xf2\xf6\x3f\x77\x5f\x83\x8b\xd3\xb7\xfa\x32\xa1\xdc\xc6\x63\x51\x1a\x52\x6b\xbf\x8b\x32\x8c\xef\xa6\xd3\x20\x1c\xcc\xae\xff\xf9\x7f\x70\x18\x5e\x4c\x46\x13\xf7\x6e\x71\xea\xad\xdb\xb9\xc8\x12\x3d\xc4\x2d\x6b\xd8\x21\x8a\xe6\x28\x35\x5c\xf7\x7a\x7c\xb7\x78\x0d\xfd\xe1\x6e\x72\xed\x9d\x7e\x6b\x6a\x23\x93\xfd\x28\x76\xd7\xd3\xbb\xc5\x64\xf6\x1a\x00\xbb\x1f\xf2\x8d\x3b\xe5\x8c\x20\x3c\x77\xd9\xec\xd4\x6b\x32\xe1\xd9\x62\xa5\x96\x48\x46\xd1\x84\xcd\x44\xd2\x4d\xdb\xae\xcc\x35\xd6\x1f\x2d\xcd\xd2\x4b\xc8\x95\xd5\x63\x61\x96\x53\x95\xda\xbc\xa1\x53\xb9\x5d\xef\x34\x1d\xdd\x5b\x57\x81\x10\x8d\xc5\x0f\x76\xf4\xd9\xab\xd4\xb3\x2f\x3c\xa1\x52\xbc\xe2\x85\xc1\x30\x0b\x0a\xc5\x05\x53\x45\x0d\x57\xed\x4c\x7d\x70\x90\x67\x5a\xa4\x24\xe9\x01\xc2\xd2\x65\xa7\x36\x78\xbe\xfd\x18\xdf\x1e\xc4\x7f\xa6\x70\x65\x17\xe2\x1a\xc8\x8b\xa7\x2b\xb3\x25\xb1\x7e\x82\xdf\x83\x6b\x3d\x85\xd7\x61\x5b\x5f\x41\xe4\xd3\xd3\xfb\x47\xd3\xab\x0f\x6a\x67\xe3\x74\x53\xf3\x3b\xbb\x08\xac\x19\xcd\xba\x57\xd9\xfc\xa5\x75\x64\x7d\xb3\x79\x4f\x16\x43\xfa\x3c\x75\x86\x4e\x39\x82\x4f\xdd\x62\x64\xb6\x25\xed\xcc\x79\xc6\xda\xb8\xf9\x18\x22\x56\xf8\x34\x02\x10\xfc\xb0\x3f\x39\xf9\x5f\x00\x00\x00\xff\xff\x64\x9f\xab\x2e\xe2\x26\x00\x00") + +func cmd_drone_server_static_scripts_term_js_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_term_js, + "cmd/drone-server/static/scripts/term.js", + ) +} + +func cmd_drone_server_static_scripts_term_js() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_term_js_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/term.js", size: 9954, mode: os.FileMode(436), modTime: time.Unix(1430003382, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_views_agents_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x4c\xcc\x31\xae\xc3\x20\x0c\x80\xe1\xf9\x71\x0a\x2b\x3b\x0f\x75\x37\x0c\x3d\x43\x2f\x80\x62\x37\xa9\x40\x50\xb9\x64\x8a\x72\xf7\xda\x4c\x5d\x0c\xfe\x25\x7f\xb8\xdf\xd2\x79\xc2\xf1\x61\xf9\xaf\x7d\x7b\x35\xb8\x2e\x0c\x1a\x9d\xc3\x0c\xbb\xf0\x33\x2e\x61\x49\xf7\xbc\x16\x0c\xd9\x2a\xd5\xe4\xfe\x90\x46\x7a\xf4\xc2\x0d\x83\xfe\x6c\x27\x63\x86\xa5\x29\xe8\xee\x74\x56\xbb\x78\x0b\x27\x47\x7d\x2d\x2c\x20\x47\x03\x4f\x40\xd2\x1b\x87\x39\x7d\xde\xb8\x0d\xf0\x3e\x13\x49\x54\xc4\x5e\x35\xb4\x4c\x2e\xfe\xb8\x4a\x4e\xec\x1b\x00\x00\xff\xff\xbd\x7e\x76\x8c\xb6\x00\x00\x00") + +func cmd_drone_server_static_scripts_views_agents_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_views_agents_html, + "cmd/drone-server/static/scripts/views/agents.html", + ) +} + +func cmd_drone_server_static_scripts_views_agents_html() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_views_agents_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/views/agents.html", size: 182, mode: os.FileMode(436), modTime: time.Unix(1430881708, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_views_build_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x56\x5b\x4f\xdc\x38\x14\x7e\x66\x7e\x85\x49\xa5\x5e\xa4\x9d\x19\xa0\xfb\x50\x0d\x99\xec\x2e\x65\x79\x6b\xb5\x62\xfb\x8e\x9c\xd8\x33\xb1\x48\xec\xac\xed\x50\x68\xe1\xbf\xef\x39\x76\x2e\xce\x65\x80\x82\x94\xb1\x8f\xcf\xfd\xf2\xd9\x71\xce\x29\xe3\x3a\x59\x1c\xc5\x94\xe4\x9a\xef\xb6\xd1\x3a\x22\x59\x41\x8d\xd9\x46\x85\xda\xab\x28\x89\xd7\x14\x8f\x99\xb8\x6b\xe9\x56\xd8\x82\xe3\x01\xd0\x46\x47\xb5\xe1\x3a\x02\xda\x51\x6c\x2a\x2a\x93\x9f\x3f\x09\x52\x56\xa0\x49\x48\xf2\xf4\x14\xaf\x1d\x19\xcf\x45\xb9\x27\x72\xbf\x34\x3a\xdb\x46\x2d\xdb\x5e\xd3\x3b\x6a\xa9\xbe\x11\x8c\x3c\x92\x76\x07\x72\x11\x59\xa3\x21\x6f\x30\x5e\xf7\x4e\x4b\x7a\xe7\xb4\xe5\xa7\x68\x4b\xf3\x4a\xad\xd4\x77\xc9\x51\xa6\xf3\xc0\x51\x25\x2d\x79\xef\x40\x77\x96\xd6\xa2\x60\x2b\xc3\xff\xab\xb9\xcc\x78\x7f\xbe\x06\x85\x68\xd0\xeb\x8f\x4b\x2a\xc0\x6b\x30\x04\x71\xf1\xcc\x0a\x25\xdb\x80\x33\x55\x96\xc2\x2e\x1b\xaa\x0b\x1d\xb9\x82\x94\xb4\x1c\x96\xda\xda\xb4\x0c\x03\x0e\x7f\x44\xc0\x1d\x4b\xcd\xed\x0a\xb7\xdc\x05\x0d\xf9\x11\x50\x11\xa4\xf6\xe9\x7e\x46\xbc\x89\x66\x2c\x7f\x3c\x55\x30\x58\x4f\x9d\x2d\xb9\xa5\xbd\xab\xf9\x59\x9f\xaa\x92\x1b\x43\xf7\x3e\x95\x40\xef\x58\x3e\x26\xb4\xb6\xb9\xd2\x9c\x91\x51\x72\x33\xcd\xc1\x1f\x76\x43\x2d\xd4\x74\xa7\x55\xf9\x55\x7d\xef\x2b\x41\xd2\x87\x46\xe0\xcf\x4e\xc2\x6b\x22\x61\x35\x3e\xfa\xec\x1f\x35\x8d\xd5\xba\xab\x20\xeb\x19\x14\xa3\xf9\x5d\xee\xc1\x77\x1f\x42\x14\x54\x37\xa7\x2b\x53\xa7\xc6\xea\xf7\x27\xbf\x7d\xfa\x30\x68\xc3\x57\x69\x4c\x35\x95\x59\x1e\x68\xf4\x84\x5f\x53\x94\x15\x2a\xbb\x8d\x88\xb1\x0f\x05\xdf\x46\x29\xcd\x6e\xf7\x5a\xd5\x92\x6d\xde\x5c\x5d\x5d\x9d\x07\xca\x59\xad\xa9\xeb\xb0\x47\x62\xd5\x65\xbb\x79\x7a\x22\xed\x41\x6b\xf4\x35\x56\x0d\xb7\x56\xc8\xbd\xe9\x0c\x67\xaa\x50\x7a\x43\xde\x5c\x5c\xe2\xff\x39\x19\x3b\x52\x29\x23\xd0\xc8\x86\xa6\x46\x15\xb5\xe5\xe7\x56\x55\x9b\xb3\x93\xea\xfe\x5c\x8b\x7d\x6e\x37\xa7\xb8\xac\x28\x63\xa0\x76\x83\xeb\x9d\x92\xd0\xdd\xe2\x07\xdf\x9c\xfd\x0e\x5b\x55\xd1\x4c\xd8\x87\xcd\xc9\xea\xd3\x79\x49\x35\xcc\xbd\xe3\xc2\xf6\x3b\x98\xab\x92\x91\x92\x2d\x4b\xe8\x9e\x25\x14\x5e\xfc\xe8\xbc\x9d\x7a\x93\x2a\x6b\x55\x19\x3a\xe4\x96\x3e\xac\x36\xaa\x5f\x75\x69\x30\x13\x0b\xbf\x6e\x26\x7a\x34\xf5\xcd\x44\x35\x6d\x80\x5f\xb3\x2a\xb8\xdc\xdb\x9c\x24\xe4\xb4\x19\x99\xd8\xd2\xb4\xe0\x24\x55\x1a\x50\x6a\x1b\x9d\x76\xa8\x60\x11\xb8\xba\x0c\x58\xdd\x2e\xf1\x24\xf9\x5a\x97\x29\xd7\xf1\x1a\x96\x21\xf9\x5f\x37\xdd\x73\x64\x0d\x53\x35\xa1\x5f\x09\x29\x4c\x3e\x73\x70\xd9\x75\xcf\xe8\xe0\xef\x7b\x61\xc9\x67\xc5\xf8\xe4\xe4\x0b\xb5\x5a\xdc\x87\x64\x58\xeb\x0e\x41\xc2\x68\x62\x9b\x2a\xf6\x10\x84\x86\x99\x02\xe0\x85\xd1\xf7\xf8\x45\x00\xff\xc3\xac\x45\x81\x25\x96\xc0\xe5\x03\xfc\xfe\xfe\x69\x11\x7b\x57\x17\xc5\x4d\x03\xdb\xeb\x09\x54\x37\x44\x0f\x98\x3d\xcd\xcd\xd1\x98\x88\x37\x18\xb8\xcb\x06\x26\xc7\x68\xfb\x1c\x83\x9e\xc5\xaf\x03\xfc\xbb\xa6\x02\xaf\x16\x38\x34\xf0\x07\x05\x38\x54\xec\x26\x83\x8a\x3d\xcb\x24\xef\x84\x56\xb2\xe4\xd2\x8e\xd8\x86\x45\xec\xeb\x06\x1b\xec\x5b\xb7\x09\xfa\x1f\x76\xe1\x08\x34\xbc\x95\xe6\x44\x30\xa8\x2d\xd7\xe5\xe0\xa2\x22\x6f\xdf\x86\x89\x3d\xde\x6e\xc9\xbb\x8a\x4b\x84\x8b\x77\xae\x3a\xf0\x16\x30\xce\x23\x50\x31\xb6\xe5\x87\x2d\xad\x61\xc6\x3b\x70\xd8\xd1\x34\x1a\xce\x9d\xd7\xbc\x45\xcd\xba\x96\xd2\x69\x46\x8e\xac\x10\xd9\x2d\x7a\x21\x8a\xf7\x1f\x70\xba\xbd\x22\x77\x91\xfb\x1b\x1c\x48\x2e\x5c\xb8\x51\x6c\x59\xa0\xbd\x45\x67\x6e\xc6\xc4\xc0\x79\x0c\x6c\x72\x38\x67\x5f\x73\xd7\x32\xe8\xc2\xb5\x5f\x86\x9e\x1c\xb6\xb6\x1d\x58\x7b\x7c\x24\xaf\x8a\x36\x83\xab\x88\xbb\x78\x3f\xbb\x55\x6f\x0b\xfe\xe2\xe3\xe5\x12\xbe\xc1\xeb\xe8\xc5\xa9\xf2\x4f\x9f\x45\xff\x1c\x9c\x93\x8c\x92\x0b\xb8\x37\xdc\xcb\x70\x11\x7b\xd4\x6c\xd1\x33\x66\x85\x7b\x13\xda\xe4\x02\x55\x13\xc4\x2f\x80\x16\xd8\x23\x95\x25\x93\x67\x0a\x9c\x31\x44\x59\x14\xe9\x50\x6d\x96\x7d\x7e\x0c\x7b\xe9\x1e\xe2\xa6\xe2\x87\x87\xac\x97\xff\xf6\x50\xcd\x7a\x5a\x61\xe4\x1a\x53\x64\x2c\xf9\x83\x44\xb8\x27\xcd\x3e\x22\x1b\x24\x98\x3c\x1a\x2a\x1b\x16\x38\xd4\x10\x25\xff\xa0\xfc\xb5\xdf\xf5\xf6\x9e\x93\x98\x77\x65\xe8\xfd\x35\xdf\xcd\x39\x0f\x45\x1c\x27\x39\xa7\xb3\x09\xce\xe9\x88\xf1\x2f\xf7\x0e\x9b\xe3\x0d\x5e\x68\x3d\xfb\x17\xff\x34\x9c\xe3\x0f\x5f\x8d\x28\x00\x5f\x9c\xbe\x38\xd7\x83\x8e\xf9\x86\xf8\x31\xd3\x30\x23\xa0\x7e\xa1\x5f\x9e\x47\xed\x5e\xb8\xbf\x2a\x27\xd2\x87\x31\xfc\xa5\x6e\x7b\x01\xd1\x7b\xf1\xe0\xda\x9d\xc8\x0f\x01\x3e\xc8\x70\x73\x21\x4f\x05\x46\x60\x1f\xe4\x78\xb1\x5c\x26\x8b\xff\x03\x00\x00\xff\xff\xeb\xf9\x3b\x60\xe7\x0d\x00\x00") + +func cmd_drone_server_static_scripts_views_build_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_views_build_html, + "cmd/drone-server/static/scripts/views/build.html", + ) +} + +func cmd_drone_server_static_scripts_views_build_html() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_views_build_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/views/build.html", size: 3559, mode: os.FileMode(436), modTime: time.Unix(1431330647, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_views_builds_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x92\xc1\x8e\xd3\x30\x10\x86\xcf\xe4\x29\x8c\x2f\x0b\x87\xdd\x68\xaf\x95\x63\x44\xe1\x4a\x0f\x14\xc4\xb1\x72\xe2\x49\x63\x35\xb1\x8b\x3d\x56\x55\x95\xbe\x3b\x9e\x24\x6d\x09\x4a\xb4\xa7\x8c\xbf\x99\xf9\x33\xfe\xc7\xa2\x79\x95\x97\x0b\xf3\x70\x74\x2f\x75\x6c\xdb\x9d\x55\x1d\xb0\xeb\x55\xe4\x29\x91\x65\x42\xb1\xc6\x43\x5d\xf0\x9c\xcb\xb5\xaa\x0e\x22\x57\x92\xa0\xdd\x3f\x8f\x7c\xae\x39\x07\x6d\x90\xcb\x2d\x20\x1a\xbb\x0f\x7d\x53\x26\xca\x88\xe8\x2c\xb5\x56\xad\xa9\x0e\x05\x3f\x29\xac\x9a\x0f\xd4\xfd\x91\x13\x36\x49\xef\x7d\x2f\x16\x50\x79\x0f\x9a\xcb\x5f\x54\x22\xf2\xa1\x55\xce\x68\x44\x3b\xa7\x32\x15\xf9\x39\xd4\x3c\x64\x32\x81\xaa\x6c\x81\x95\xce\x6b\xf0\x05\x7f\xe5\x32\x7b\x27\xb0\x01\xa5\x53\x90\x22\x4f\x1f\x22\x72\x13\xbb\x12\xbc\xc8\x53\x78\x43\x5b\x54\x18\xc3\xff\xc8\x23\xe8\x09\xfb\x1a\xbd\x42\xe3\xec\x04\xfe\x38\x1f\x61\x02\xbe\x43\x3d\x39\x7f\x71\x5d\x67\x70\x82\x3e\x47\x6c\xdc\x74\x84\x6f\x10\x82\xda\xdf\x95\xd2\x97\x26\xa6\xe3\x70\x05\x81\xa5\xd3\xe7\xf1\x2e\x64\x4a\x32\x04\x14\x16\xbc\x8c\xa6\xd5\xcc\x58\xd6\x07\x81\xfd\x61\xbd\x05\xeb\xf3\xea\xe9\x39\xc0\xef\x08\xb6\x82\x27\x3e\xfe\x47\xcb\xb7\x37\x9d\x60\x2f\xf5\x72\xeb\x4e\x90\xcb\x39\x4a\xaf\x20\x4d\xa8\xef\xe2\x8f\xa2\x64\xe8\x50\xb1\x90\x25\x6f\x77\x0a\xd3\xb4\xb5\x77\xdd\xc6\x9d\x16\x8b\xf5\x68\x7a\x2a\x45\x77\xdb\xc0\x62\xf5\x91\x6e\xe2\x69\xc4\x80\xec\x13\xe3\x74\x66\xe3\x99\xb3\x15\x81\xd0\xf0\xc5\xf6\x64\xcb\xf2\xd4\x8d\x5a\xcc\xa9\x7e\xa1\x8b\xe9\x6e\x58\xee\x3f\xf9\xc7\x7e\x87\xb5\xa6\x80\xde\xaf\xfc\x1b\x00\x00\xff\xff\xfc\x9a\xf9\xb6\xbd\x03\x00\x00") + +func cmd_drone_server_static_scripts_views_builds_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_views_builds_html, + "cmd/drone-server/static/scripts/views/builds.html", + ) +} + +func cmd_drone_server_static_scripts_views_builds_html() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_views_builds_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/views/builds.html", size: 957, mode: os.FileMode(436), modTime: time.Unix(1431310892, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_views_login_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x91\xcd\x8a\xeb\x30\x0c\x85\xf7\x79\x0a\xe1\x7d\x5b\xee\x3e\xc9\x13\x5c\xb8\x17\x66\xf6\x41\x8d\x55\x5b\x90\xc8\x41\x52\xda\x49\x9f\x7e\x4c\x7f\x06\xba\x18\x86\x59\x59\xd8\x87\xef\x1c\x1f\xb5\xf9\x4f\xff\xb7\x24\x96\xf6\x50\xa7\xa6\x69\x23\x9f\x41\xd2\xce\x2e\xec\x63\xee\x02\xa9\x16\x0d\x7d\x03\xf0\xfa\xb2\xbb\x64\x92\x2e\xb0\x38\xa9\xe0\x34\x3c\x74\xff\xca\x62\x7b\x78\xcf\xa4\x04\x17\x34\x40\x81\x55\xe8\x63\xa1\xd1\x29\xc2\x4d\xb4\x87\xff\x13\xa1\x11\xb8\x6e\x80\x09\x59\xf6\xed\xa1\xb2\xbf\xf5\x58\x8d\x74\x90\xe2\xc3\xa9\xac\x12\x43\xff\x42\xbf\x21\x01\x57\xcf\x45\xf9\xca\x92\x60\x2b\x6b\xbd\x18\xc7\x2a\xf6\x1f\xc8\x55\x45\x66\x43\x24\x61\x8a\x43\xd1\x14\xee\x5d\x00\x1b\x28\x99\x2b\xdf\x62\x7b\x01\x5c\x16\x2d\xe7\x3a\x57\x11\x0a\x5f\xd1\xb9\x08\xcc\x34\x1f\x49\x0d\x8a\x4c\xdb\x2f\x9c\x42\xff\x46\xd3\x69\xa7\x94\xb8\x7a\xdc\x51\xd5\x31\xb2\xe1\x71\xa2\xf8\x55\xd0\x58\xc4\x71\x74\xf0\x4c\x60\x9b\x39\xcd\x80\x71\xae\xf1\x6a\xa0\xa4\x28\x0e\x77\xec\xf3\x97\x8f\xa3\x69\x11\xb2\xd2\xa9\x0b\x87\x67\x2f\x14\xc0\x51\x13\x79\x17\x06\xab\xde\xe1\xb9\x73\xec\x9b\xcf\x00\x00\x00\xff\xff\x4c\x95\xfd\x9a\x02\x02\x00\x00") + +func cmd_drone_server_static_scripts_views_login_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_views_login_html, + "cmd/drone-server/static/scripts/views/login.html", + ) +} + +func cmd_drone_server_static_scripts_views_login_html() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_views_login_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/views/login.html", size: 514, mode: os.FileMode(436), modTime: time.Unix(1430346040, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_views_repos_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x52\xc1\x8e\xd4\x30\x0c\x3d\xd3\xaf\x88\x72\xa7\xd5\xde\x33\x91\x80\xbd\x32\x07\x56\x9c\x2b\x77\xe2\x4e\x23\xb5\x49\x49\x1c\x8d\xd0\xce\xfe\x3b\x4e\x3b\x85\x69\xa9\xc4\xb0\x27\xdb\xcf\xcf\x8e\xf3\x6c\xd5\x3d\xe9\x67\x88\x5d\xe3\x21\x18\x55\x71\x54\x14\x0a\x44\x17\xb0\x3d\xc8\xca\xe1\x45\xea\x23\x5e\x54\x05\xfa\x0e\x1e\x83\x6f\x6d\x8f\x52\xbf\x20\x91\x75\xe7\xb8\xc9\xa7\x88\x21\x4a\xe1\xce\x1f\x2d\x87\x39\x2a\xc1\x0c\xd6\x49\xfd\x9d\x7d\xf1\x15\x1c\x9c\x71\x40\x47\x9b\x3a\x46\x1d\xed\x17\x7e\xca\xa9\x6d\x65\xa1\x08\x9a\x1e\x45\xe3\x83\xc1\x70\x90\x4f\x52\x17\x1f\x14\x75\x08\x86\x1d\xf6\x42\x36\x19\xd1\xdf\x70\xf4\xaa\x62\x67\x01\x5e\x08\x28\xc5\x15\x74\x4c\x43\x83\x61\xcb\x0a\x84\x66\x85\x3d\xa7\x00\x64\xbd\x5b\x81\x9f\x03\xb8\x53\xb7\x82\xbe\xf8\x61\xb0\xb4\x40\x6c\xf3\x34\x39\x9c\xc7\x53\xd4\x78\xf3\xf3\x36\x67\xfe\x72\xc0\x11\x81\x0e\x92\xad\x17\xd6\x89\x6c\xa3\xbc\xb5\x33\x9a\x65\x62\xd2\xac\xd4\xeb\xeb\x94\x2d\xdb\xd4\xf7\xb5\x83\x01\xc5\xdb\x9b\xd4\x7b\x68\xd6\x89\xdf\x34\xbf\xdb\x2c\xa4\x1e\x22\xd5\x4d\xb2\xbd\x29\x23\x4b\x31\x73\xef\x78\xff\x7a\xae\xda\x69\xe4\x26\x01\x57\xb3\xec\x65\x1f\x9c\x29\x0b\x5f\x03\x89\xab\x68\x83\x1f\x8e\xfe\xb2\x1d\x71\xa7\xcc\xdc\x76\xc3\x45\xe4\x97\x45\x3d\x50\x97\x77\x52\x9f\xa6\x85\x95\xfc\x65\x71\xbd\xfe\x45\x19\xf3\xe7\x03\xfe\x48\x18\xa9\x8c\x3e\x85\x13\x4e\xd4\xff\x6b\x1e\x3b\x78\x5f\xf3\x3f\xf7\x33\x9f\x0d\x3b\xf9\xf6\x75\xf1\x2b\x00\x00\xff\xff\x07\x8c\x9e\xcd\xc2\x03\x00\x00") + +func cmd_drone_server_static_scripts_views_repos_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_views_repos_html, + "cmd/drone-server/static/scripts/views/repos.html", + ) +} + +func cmd_drone_server_static_scripts_views_repos_html() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_views_repos_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/views/repos.html", size: 962, mode: os.FileMode(436), modTime: time.Unix(1430442399, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_views_repos_add_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x44\x90\x31\x4f\x03\x31\x0c\x85\xe7\xde\xaf\x30\x99\x60\x68\x23\xf6\xe4\x24\x98\x18\x11\x42\x62\x0e\xb1\x7b\x17\x35\x8d\x4f\x8e\xaf\xb4\xff\x9e\xa4\x27\xc1\x12\x29\x7e\x7e\xcf\x9f\xed\xe6\xe7\xf1\x05\x11\x3e\x68\xe1\x9a\x94\xe5\xe6\x6c\x2b\x0d\x83\x0b\x30\x0b\x1d\xbd\xb1\x66\x7c\x0d\xf1\xe4\x6c\xe8\x55\x4c\x17\x88\x39\xd4\xea\x4d\xc8\x24\x0a\xf7\x77\x4f\x22\x2c\x06\xca\xb4\x4f\xcd\x72\xff\xc1\x83\xf7\xb0\x16\xa4\x63\x2a\x84\x66\x1c\x76\x9f\x33\x09\xc1\x4f\xa8\x10\x0a\x6c\x3d\x01\x31\x95\x09\x6e\xbc\x0a\xc8\x1f\xc2\x01\xde\x33\x85\x4a\x40\xa5\xae\xcd\xa2\x33\x0d\xbb\x7f\x19\xe8\x9a\xaa\xf6\x14\xec\x4e\x98\xc3\x85\x5a\xd2\x39\x15\x58\x24\x5d\x52\xa6\x89\xea\x61\x70\xb6\xc1\x76\xe6\x23\xcb\xb9\x8d\x77\xa9\x2c\xab\x82\xde\x16\xf2\x46\xe9\xaa\x06\x96\x1c\x22\xcd\x9c\x91\xc4\x1b\x8e\xca\x31\xa8\x7d\xa3\x9c\x79\xff\xc5\x92\xf1\xbe\xd1\x99\x91\xb2\x37\x35\xaf\x93\x01\xdb\x83\xbe\x57\x55\x2e\x5d\x8b\x39\xc5\x53\x3b\x05\xe2\x63\xd7\x9f\x4c\x3f\xa6\xb3\x5b\xc3\xd8\x10\xb6\xd9\xbf\x01\x00\x00\xff\xff\xf9\xb4\xcc\x7c\x66\x01\x00\x00") + +func cmd_drone_server_static_scripts_views_repos_add_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_views_repos_add_html, + "cmd/drone-server/static/scripts/views/repos_add.html", + ) +} + +func cmd_drone_server_static_scripts_views_repos_add_html() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_views_repos_add_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/views/repos_add.html", size: 358, mode: os.FileMode(436), modTime: time.Unix(1430442399, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_views_repos_edit_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x53\xbb\xce\xda\x30\x14\x9e\x7f\x9e\xc2\xf2\x04\x52\x8b\xd5\xdd\xc9\x50\x95\xa9\x0b\x6a\xd9\xaa\x0a\x39\xc9\xa1\xb1\x62\xc7\xa9\x2f\x11\x08\xf1\xee\x3d\xb6\x29\x25\x0d\xf4\xf2\x4f\x91\xec\xef\x96\xef\xf8\xf0\xf6\x5d\x79\x3e\x13\x0b\x83\x59\x1f\x82\x52\xfb\x5e\x68\x20\x97\x0b\x61\x64\xd3\x48\xcf\x19\xde\x2f\x16\x5c\x90\xfe\xdb\xdb\xd6\xc2\xa1\xa0\xec\x11\x9c\x96\xef\x45\xdd\x71\x26\x22\xf8\x60\xac\x2e\x17\x2f\xbc\x91\x23\x7e\x5e\xb8\x12\x15\xa8\x72\xd3\x8b\x4a\x01\xd9\x06\xd7\x82\xe3\x2c\x1f\xc6\x6b\xd9\x0f\xc1\x13\x7f\x1a\xa0\xa0\x75\x0b\x75\x57\x99\x23\x8d\x7e\xda\x34\xa0\x0a\x9a\xcc\x06\xe3\xfc\xbe\x36\x5a\x4b\xef\x28\x61\x51\x9e\x65\xfd\x67\x36\x4a\x91\x4f\xf0\x3d\x80\xf3\xaf\x70\x8b\xbf\x66\xaf\xec\x89\xdd\xcc\x6f\x67\x83\xf3\xd0\xfc\xb7\x85\xcf\xbc\x3f\xfe\xcb\x4e\x6a\x30\xc1\x3f\xd3\xee\x83\xae\xc0\xce\x95\x33\xeb\x37\xe5\x90\xf9\x4a\x46\x38\xe2\x40\xf8\x82\x2e\x3b\x38\xbd\x21\xa3\x50\x01\x56\x44\xf6\x79\xae\x83\xb0\x42\x3b\x1a\xe1\x3f\x83\xe0\xc8\x11\x89\x73\xbe\x8b\x32\xcd\xe2\xe1\xe8\xe7\x35\x26\xa5\x2f\x48\xfd\x4a\x59\xe6\x54\xc1\x7b\xd3\x47\x60\xad\x64\xdd\x15\x14\xd1\xe0\x61\x1b\x91\x31\xcd\x8a\x96\x16\xb4\x19\x81\xb3\x0c\x4d\xa9\x99\x92\xd7\xf4\x7f\x77\x4e\xa6\x6b\x94\xca\x05\xfc\x13\x3a\x35\x70\xc3\xcf\x32\x8a\xa6\xc9\x01\x13\x1a\x23\xe2\xc1\x83\x7c\x9c\xc5\x92\x67\x53\xdc\x86\x0a\x65\xc8\x47\x38\xdd\x0f\x72\xb0\x70\x5b\x3c\x0c\x3b\x08\x69\xf1\xd9\x25\x64\xac\x39\x5e\xdf\x3f\xba\x59\x26\x27\x46\x58\x46\x36\xc6\xf9\x2c\x26\x7d\x3d\x2b\x79\x39\x5d\x5b\x24\x7e\x48\xe7\xbf\xa8\x9c\xe5\xdd\xfd\x11\x00\x00\xff\xff\xbd\x8d\x6c\x54\x16\x04\x00\x00") + +func cmd_drone_server_static_scripts_views_repos_edit_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_views_repos_edit_html, + "cmd/drone-server/static/scripts/views/repos_edit.html", + ) +} + +func cmd_drone_server_static_scripts_views_repos_edit_html() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_views_repos_edit_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/views/repos_edit.html", size: 1046, mode: os.FileMode(436), modTime: time.Unix(1431309133, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_views_user_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x53\x41\x6f\xd3\x30\x14\x3e\xaf\xbf\xe2\xcd\x87\x01\x87\x36\x20\x6e\x5b\x12\x09\xd0\x40\x48\x63\x42\x62\x1c\x38\x4d\xaf\xf1\x6b\x63\xd5\xb1\x23\xdb\x69\xa8\xc6\xfe\x3b\xcf\x71\xc2\xba\xb6\xc0\xa5\xb1\x3f\x7f\xdf\xe7\xf7\xde\xe7\xe6\xf5\x9b\xf2\xe1\x01\x3a\x4f\x6e\xa1\xed\x5a\x19\x78\x7c\xcc\x33\x06\x67\xb3\x1c\xa1\x76\xb4\x2a\x44\x26\xca\xf7\x58\x6d\xf2\x0c\x23\x2a\x75\x39\x3b\xcb\x65\x28\x6f\x22\x3d\xcf\x78\x15\xf7\xf2\x84\x0d\x83\xb3\xc4\xfd\xd8\x69\x0d\xb7\xd8\xd0\x09\xbe\x61\xf8\x80\xfe\xc1\x11\x06\x92\x27\xc8\x55\x3a\xb9\xc7\x00\xbf\x60\xe5\x6c\x73\x6b\xfb\x03\xf1\xf7\x56\xfe\x45\xdc\x0d\x27\xff\xd2\x5e\x37\xa8\xf4\x09\x25\x45\xfc\x80\xfb\x4d\x05\x82\x77\xb2\x39\x39\x04\x8c\xf8\x81\xe0\x93\xc3\x2d\x06\x74\x7b\xf4\x5c\x35\x6b\x30\xeb\xb9\x77\x55\x21\x26\xed\x7a\xe4\xdd\x2b\xc9\x85\x4e\x3b\x36\x13\xc9\x8d\x7f\x39\x03\x8e\x62\x65\x5d\x13\x8d\x94\x69\xbb\x00\x61\xd7\x52\x21\x34\x2e\x49\x8b\xe8\xd9\x58\x49\xba\x10\x86\xfa\x3b\xbb\x21\xb3\x18\x4f\xb2\xa8\x58\x76\x21\x58\x13\x59\x95\x56\xd5\xa6\x10\x69\xae\x03\xf1\xe5\xa4\x78\x25\xc6\x20\xf2\x2c\xf1\xe3\xd5\xe9\x4e\x7e\x06\x6a\x0b\x95\x46\xef\x0b\x81\x9a\x5c\x18\xae\x54\xfc\x5a\x42\x94\x7a\xb8\xb8\x80\xb4\x5a\x68\x32\xeb\x50\x43\x51\x14\xf0\x5a\x94\xb7\x16\xbe\x92\xf3\xd6\xa0\x86\xbb\x44\xbd\xfe\xa9\x7c\xe0\xa6\xd4\x36\x1a\x07\x5c\x6a\xfa\x9f\xd9\x79\x32\xe3\x4e\x42\x4d\xc8\x33\x39\xe3\x95\x8b\x9f\x88\x94\x37\xb1\xd5\x3c\xe3\xd5\x84\x7c\xf6\xbe\x8b\x6f\x62\x0f\x9a\x36\xfc\x8d\xca\xb8\x4d\x56\x79\x58\x5a\xb9\x1b\x3d\x63\x25\x8e\x5a\x1e\xc3\xdc\x73\x0a\x61\xac\x09\x38\xdd\x54\x92\x18\x0d\x87\xec\xc3\xd3\xa4\x87\xf0\x83\x3c\x3e\x55\x43\x29\xc7\xaf\x70\x8f\x7b\x9c\x8f\xa3\x2d\x8b\x53\x3e\x61\x0c\x87\xe3\xa5\xbd\x70\x26\x87\xb1\x9f\x83\xe2\xc9\xc8\x67\x43\x5d\xd4\xe8\xeb\x3f\xb5\x43\x65\xb5\x6f\xd1\x14\xe2\x6d\xc2\xce\xf2\xb8\x2d\xbf\xe0\x86\xc0\x77\x8e\xb8\x76\xe6\xb4\x3b\xd8\xd9\x8e\x6d\xa9\x87\x76\x4a\x11\xab\x8a\xbc\x4f\xcd\x81\xb1\xfd\x02\x7e\xd8\x0e\x7a\x6b\x5e\x04\x58\x12\x0c\x71\xb2\xda\x13\x81\x0a\x80\x6b\x54\xe6\x3c\xcf\x06\xfb\x74\x53\xcb\xf6\x3e\xec\x34\xbf\xde\xbe\xe6\x3f\xd5\x9c\xcf\x2a\xba\x04\xc6\xe7\x5a\x19\xba\xb2\x5b\x72\x2b\x6d\xfb\x79\xef\xb0\xbd\x84\x25\x3f\xca\xcd\xbc\xb7\x4e\x5e\x89\xa7\xb1\xc6\x7e\x86\x39\xb2\x2c\xb5\xf5\x7c\x1e\xfc\x49\xb1\xf2\x22\xd6\x54\xfe\x0e\x00\x00\xff\xff\x74\x1b\xc5\xc1\xfb\x04\x00\x00") + +func cmd_drone_server_static_scripts_views_user_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_views_user_html, + "cmd/drone-server/static/scripts/views/user.html", + ) +} + +func cmd_drone_server_static_scripts_views_user_html() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_views_user_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/views/user.html", size: 1275, mode: os.FileMode(436), modTime: time.Unix(1428967959, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_scripts_views_users_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x52\xc1\x8e\xe2\x30\x0c\x3d\x2f\x5f\x11\x72\x62\x0f\xbb\x15\xf7\xb4\x12\xbb\xda\x9d\xcb\x88\xcb\x88\x33\x72\x1b\x53\x22\x92\xa6\x4a\x53\x66\x10\xc3\xbf\x8f\xdd\x02\xa3\x52\xd0\xcc\x29\xf6\xb3\xfd\xec\x67\x47\x6d\xe7\xd9\xaa\xc1\xd0\xa8\x84\xac\xc9\x44\x81\xd8\x06\xdc\xa4\x32\x91\xd9\x1f\x28\x76\x2a\x01\x46\x23\xe4\x16\x45\xee\x83\xc6\x90\xca\xb9\xcc\x26\x3f\x54\xdc\x22\x68\x32\xc8\x0a\xfc\x30\x92\x3d\xfb\xd2\x54\x2a\x21\xeb\x82\xfc\x6f\xad\x15\x4b\x70\x38\x40\xff\x06\x84\x88\x7a\x80\xad\x6a\x3d\xc2\xfe\x39\x30\x76\x80\xbc\x98\x88\x62\xa1\xdd\x4d\x9b\xa7\x00\x7b\x88\x10\x06\xe0\x5d\x87\x5e\x9e\x97\xdd\x5e\x80\x8a\xb9\xd7\x87\xb3\x12\x51\x95\xbf\x02\xd6\x34\x5d\x2a\x5b\x5a\x8c\x30\x95\xe0\xb7\x91\x67\x22\x9d\x1d\x8f\x1d\xf2\xdb\xb2\x56\x71\x3a\x11\x93\x1e\x05\x2b\x52\xfc\x28\x56\xf4\xe2\xd7\x10\xc5\xbb\xd8\x04\xef\x96\xfe\xf5\x51\x6e\xdb\x2f\xe5\x5b\xb9\xc8\xcb\xba\x13\x9c\x4e\xbb\x30\xf0\xd2\x6e\xc3\xca\xb8\x92\x35\x37\xa1\x48\xe5\x85\xa8\x3c\x2f\x73\x6d\x34\x75\xbd\x78\x54\x2a\x45\x92\x0d\xcb\xf3\x36\x46\x5f\x31\x43\x61\x4d\xb1\x4b\x65\xf4\x65\x69\x71\xc6\x3c\x3f\x65\xd6\x7b\x02\xfa\x7b\xf5\xc9\x5f\x31\x04\x74\x7e\x7f\x65\xd0\x68\x31\xe2\xa8\xf6\xf3\x8a\xfd\xf1\xc8\xe0\x3f\xca\x9f\x75\xe3\x83\xe3\x90\xa9\xea\x36\x8a\x78\xa8\x91\xa6\xc2\xb7\x28\xb9\x87\xf3\x44\x98\xca\xee\x76\xac\x86\xf2\x46\x03\x80\xd6\xb3\x2e\x81\xda\x2f\xb4\xbe\xf6\xa6\x26\x1d\xf7\x47\x00\x00\x00\xff\xff\xac\x3d\xe0\xb7\x35\x03\x00\x00") + +func cmd_drone_server_static_scripts_views_users_html_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_scripts_views_users_html, + "cmd/drone-server/static/scripts/views/users.html", + ) +} + +func cmd_drone_server_static_scripts_views_users_html() (*asset, error) { + bytes, err := cmd_drone_server_static_scripts_views_users_html_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/scripts/views/users.html", size: 821, mode: os.FileMode(436), modTime: time.Unix(1428551034, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _cmd_drone_server_static_styles_drone_css = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\x59\x4b\x6f\xe3\xba\x15\xde\xfb\x57\x08\x1e\x14\x33\xbe\xb0\x3c\xb2\x6c\x25\xb1\x82\x2e\x8a\xde\x04\xe8\xe2\xa2\x8b\x2e\xa7\x41\x41\x4b\x94\xcd\x46\x12\x05\x91\xca\x63\x2e\xe6\xbf\xf7\xf0\x21\x89\x94\x28\x39\xc9\x1d\x74\x51\x74\x34\x88\x6d\xbe\xce\xfb\x3b\x87\x47\x67\x5e\xe4\xde\xef\x0b\xcf\xcb\x68\xc9\xfd\x0c\x15\x24\x7f\x8d\x3d\x86\x4a\xe6\x33\x5c\x93\xec\x16\xa6\xfc\x82\xf9\x1c\xbf\x70\x9f\x91\xef\xd8\x47\xe9\xbf\x1b\xc6\x63\x6f\x1b\x04\x7f\x92\xb3\xcf\xf8\xf8\x48\xf8\xe4\x8a\x1f\x8b\x23\x4d\x5f\x25\x8d\x02\xd5\x27\x52\xc6\x5e\x20\x46\x51\xcd\x49\x92\xe3\xf5\x02\x31\x92\xc2\x47\x8a\x39\x22\x39\x5b\x2f\x32\x72\x4a\x50\xc5\x09\x2d\xe5\xf7\xa6\x86\xc9\x8c\x52\x8e\xeb\xf5\xe2\x8c\x51\x2a\x3f\x4f\x35\x6d\xaa\xf5\xa2\x40\x04\x56\x15\xb8\x6c\xd6\x8b\x12\x3d\xad\x17\x0c\x27\x6a\x27\x6b\x0a\x20\xa7\xe8\xa6\x84\x55\x39\x02\xb9\x8e\x39\x4d\x1e\x25\xf1\x26\x25\x74\xbd\x48\x50\xf9\x84\x80\x64\x55\xd3\x53\x8d\x19\x7c\x7b\x02\x5e\xa8\xbd\x89\x94\x39\x29\xb1\xaf\xf7\x7a\xde\x13\x16\x9c\xa3\xdc\x47\x39\x39\x81\x34\x47\xc4\xb0\x58\xd1\x9d\x1b\x97\x94\x7f\xf9\x96\x80\x42\x6b\x9a\xb3\x87\x95\x7d\x5c\x49\xc5\x52\xcf\x3b\x63\x72\x3a\x73\xad\x8c\x6f\x67\x92\xa6\xb8\x7c\x58\x2f\x38\x2e\x60\x1d\xc7\xae\x4d\x70\xbe\x1c\x3e\xa2\xe4\x51\x28\xa0\x4c\xfd\x84\xe6\xb4\x8e\x3d\x5e\x83\xc5\x2a\x54\xe3\x92\xcb\x65\x31\x02\x35\x3c\x09\xe5\xc6\x67\x0a\x0c\xcb\x6d\xb4\xe1\x82\xcf\x56\xff\xc7\x63\xfd\x8d\x13\x9e\xe3\x07\x75\x28\xad\x41\xb5\xfe\x91\x72\x4e\x0b\x30\x5e\xf5\xe2\xa5\xf0\x1d\xa7\xd2\x84\xa0\x50\x90\xa6\x3c\xf5\xbe\xf2\xac\xf9\x3f\xd2\x5c\x2e\x49\xb3\xb2\x9f\x64\xfc\x35\x07\x42\x84\x83\x8e\x12\x31\x7b\xde\x1a\x93\xe0\x24\xb1\x17\xe2\xe2\xd6\xf4\x89\xcd\xd5\x35\x2e\x14\x6b\x30\xf6\x38\x10\x34\xf6\x3e\x65\x59\x20\x36\x68\x89\x3f\x05\x81\x5c\xcb\x0a\x94\xe7\xc3\xb3\x6f\x94\xe3\xb1\x46\xf0\xdd\x54\xc3\xe9\xeb\x48\x7a\xae\x34\xab\x61\x06\xcf\xab\x28\x23\xc2\x7d\x62\xaf\xc6\x60\x04\xd0\xe0\x25\x83\xb7\xa7\x73\x5a\xc5\x9e\x1f\x6c\x22\x21\x95\xa4\xac\x95\xaa\xb4\x09\x33\xa1\x9e\x22\xc5\xc9\xd0\xb7\x36\x06\x7b\x3a\x49\xaf\x89\x6b\x70\x74\xe5\x30\xc2\x6c\x59\x4e\x9f\x63\x4f\xf9\x86\x58\xa6\xc2\xc1\x8a\xa5\x2d\x28\x6d\x1f\x54\x2f\x52\xc9\xca\xce\x7e\x41\xbf\x83\x1d\x5f\x84\xb4\xa4\x3c\xc5\x9e\x70\x45\xf0\x0c\x31\x76\x2b\x29\x4f\x4e\x59\x4e\x59\x69\x52\x3d\x27\xa8\xe1\x54\xcc\x24\x54\x44\xec\xe3\x31\x15\xa1\x03\xdf\x18\x2a\xaa\x31\x8a\x14\xb4\xa4\xe0\x94\x09\x5e\xf7\x5f\x6f\x6d\x4b\x6c\x95\x4e\x8e\x0d\xa8\x09\x82\x96\x94\x55\xc3\xd7\x0b\x5a\x71\x1d\xdf\xa0\x68\x08\x68\x11\x15\x2f\x1c\xbc\x5b\xb9\xbf\xf6\x00\x52\x9e\x01\xa1\x78\x7b\xa2\x35\x60\x21\x8d\x3a\x7d\x20\xca\x13\x61\xe4\x98\x63\x93\xba\x22\xa6\xcc\x29\xc0\x4c\x06\x55\x46\xeb\xa2\x8f\xbf\x76\xa9\x84\x4d\xc9\xed\x37\xfe\x5a\xe1\x3f\x2f\xd5\xc4\xf2\x41\xcb\xa0\x47\x01\x53\x30\x1f\x0e\x82\x6f\x14\x04\x46\x95\xad\x34\x7a\xa2\xaa\xc2\x08\xe8\x25\xa0\x14\x75\x96\xf4\xf5\xa6\x66\x42\xd4\x8a\x12\x30\x53\xdd\x73\xf0\x0d\x90\x01\x01\xfb\xe9\x83\xc5\x4b\x37\xaa\xf4\xa4\x77\xa7\x38\x43\x4d\xce\xfb\xdd\x71\x2c\x5d\x24\xa3\x49\xc3\x7c\x52\x96\x02\x51\xe5\x01\xe3\x89\xa1\xab\x42\x8c\xa0\x34\x95\xae\x23\x75\x2b\xb7\xc9\x45\x56\x34\x95\xa0\x35\x94\x77\x0b\xb4\xe4\xc9\x19\x27\x8f\xe0\x69\x23\x35\x21\x40\xcd\x65\x0b\x43\xbd\x73\x76\x90\x24\x7d\xf3\xeb\x2f\xde\xd6\xfb\xe5\xeb\x80\x05\x39\x1e\x8a\x71\x9b\x56\xd9\x14\x47\x5c\x2f\x1f\x40\x24\xad\x62\x29\x8f\xcf\x2a\x52\xfa\x96\xbf\x4d\x6e\x00\xbc\xb4\x37\x48\x06\x5b\x11\xdb\x58\xb0\x4c\x0b\x36\x4c\xce\x33\xa6\x15\x7e\x95\x11\x2c\x10\xf3\x72\x9c\xb6\x07\x7c\x24\x94\xdd\x7c\xf5\xb2\xa9\x11\x3f\x11\x6c\xe5\x4e\x7d\x4c\xee\x49\x71\x42\x6b\x24\x60\x72\x52\xcc\x36\x5c\xa4\xa8\x10\x02\x96\x17\x89\xcc\xc2\x68\x4e\x52\xef\x53\x12\x88\xc7\x0a\x58\x2f\xac\x5e\x6c\x37\xdb\xec\x22\x91\x18\x36\x57\xa1\xfa\xbc\xd6\x40\x9a\xe3\x13\x2e\xd3\x4b\x0e\x6a\x21\xc7\x18\xc9\x5a\xa8\x99\xce\x6b\x5c\x44\x94\x99\x21\x01\x7e\x72\x54\x31\x2c\x34\xae\xbe\xdd\xf6\x93\x02\xe4\x0c\xe2\x00\x90\xfc\x2c\x37\xdb\x5c\x89\x98\x5d\xf7\x85\xd1\x33\x49\xf9\xb9\x2f\xa9\x5a\x17\x1b\x15\x50\x16\xbc\x7e\xfe\x7b\x85\x4b\xef\x1f\x80\x51\x9f\x87\xa8\xba\x57\x3a\xb4\xd2\xe7\xdd\xdd\x9d\x99\x88\x73\xfc\x02\x0b\xe1\x51\x9a\x18\xd5\x3b\x96\x51\xd4\x71\x56\x84\x5f\xeb\x41\x33\xa3\x87\xc6\xd0\xf3\x00\x09\x3a\x0d\xf8\x39\xce\x60\x7c\xaf\xf7\xb7\xe9\xfc\x70\x27\x1e\xcd\x21\x68\xb1\x34\xa1\xfe\x53\xb8\x15\x8f\x31\x1b\x1f\x31\x20\x33\xd6\x8b\xa4\xe3\xc7\xde\xf2\xeb\xb2\x67\x5b\xd3\x89\x14\x19\x3d\x56\x2b\xa6\x22\x9d\x2f\x65\x35\x69\x45\x75\x2b\x56\x01\x8b\x47\x63\xe8\x65\x34\xe6\xa8\x9a\xb4\x6f\x63\xf9\xcf\xd2\xac\x50\xba\x41\x17\x0a\xd6\xb7\xda\xc2\xda\x93\x93\xf9\x02\xd5\x61\xa7\x6e\xbf\x28\x95\x3f\xec\x00\xbd\x0f\x5b\xbf\x5b\xad\x86\x7a\x58\x26\x4f\x5d\x2b\xc9\xa9\x21\xfd\x3f\x2c\x00\x1c\x80\xcc\x90\x14\x09\xa4\x61\xb1\x77\x38\x1c\x54\x55\xd9\x71\x7a\x0d\x06\xd9\xde\x98\xb6\xb2\x8c\x74\x17\x88\x67\xca\x69\x1c\x21\xa5\x1d\xb2\x3e\x1d\xd1\x97\x60\xed\xe9\xff\x9b\xfd\x7e\xd5\x49\xde\xe3\x63\x0f\x84\x43\xe6\x37\x55\x4d\xba\xeb\x49\x8f\x2b\xd2\xd7\xf7\x7f\xfd\xcb\x7d\x64\x95\xba\xed\xc8\x0f\x75\x57\x32\x21\x23\x54\x88\x21\x5c\x73\x30\x02\xc2\xe8\x91\x5d\x14\x38\xf0\x20\x43\xe2\xe9\x92\xc8\x19\xa5\x02\x17\x7d\xa1\x9c\x40\xaa\xc8\x87\x70\x1e\x09\x7a\x58\x59\xea\x0d\xbb\x30\x70\x67\xed\x96\xe3\x94\x3c\x99\xa2\xca\x6a\xb9\x37\xc3\x90\x48\x10\xad\x0c\x93\xc8\xc5\x3b\x1d\xb2\xdd\x71\x71\x46\x6a\xc6\xfd\xe4\x4c\xf2\xd4\x28\x88\xd5\xea\x70\xb8\xda\x3b\xef\xde\x41\xdf\xb4\xa6\x51\x04\x36\x90\xe1\xea\x04\x29\xbc\xb7\x7c\x34\x1c\x83\xe1\x36\x9c\x75\x98\x9b\x95\x23\xe4\xfa\x08\x98\x0a\xbc\x6d\x20\xcc\x63\x41\x5a\x07\x3d\x96\xcc\x4d\xbe\x39\x8a\x64\x7c\xc6\xcc\x04\xd2\x91\x39\x83\xed\xe1\x6a\xbb\x72\x05\xb7\xc5\x82\xeb\x58\x1d\xc5\x39\x61\xdd\x7d\xaf\xbd\xdb\x0e\x6f\x4c\x05\xdc\x60\x72\xeb\xd6\xbb\x73\x0b\xb1\x9b\x26\xe6\x46\xfc\x7f\x66\xe1\xe1\xb0\xbc\x1d\xe6\xc6\xe5\x6f\x70\x85\xae\x09\x70\xf0\x2b\x66\xc0\x82\xff\x37\xd8\x42\x12\xff\x1e\x16\x2d\x67\x35\xdf\x46\x91\x36\x5f\x67\xe1\xd0\xc2\xfb\x16\x70\x22\x15\x6c\xb3\xc8\x32\x0f\x19\xd3\xaa\xb2\x53\xd6\xd6\x01\xae\x09\x56\xb7\x82\xa1\x37\x86\xd3\x5a\xdc\xb0\x26\x49\x30\x63\xa6\x36\xdf\x8d\x3f\x83\x23\x33\x44\x72\xb8\x96\x4e\x1b\x08\x2d\x6f\xc7\x64\xee\xf7\xfb\xdd\xee\xca\x24\xd3\x8e\x18\x64\x1a\x86\xeb\x9f\xed\xc0\xea\xcc\xff\x86\xf7\x76\x94\xda\x3b\xff\x87\x9c\xeb\x7d\x1e\xd2\x35\xd6\x26\xb2\xfc\xf4\xfd\xaa\xd3\xdf\x7e\x90\xde\x55\x4e\xbc\x19\x1c\xaf\x3b\x6d\x5e\xdb\x25\xb0\x92\x4b\x5b\xaf\x19\xc6\xbd\xbf\xb7\x88\x44\x26\x64\x76\x25\xed\xaf\x35\x85\xe0\x11\x35\xad\xf7\x1b\x2d\xa9\x2c\x6c\xdd\x4d\x99\x8b\xf8\xbb\x73\x78\xc1\xc8\x62\xed\xc6\xe7\x33\xe1\x58\x16\xef\xb0\x15\x24\xf2\x9f\x6b\x54\xc9\x09\x50\x91\x7f\x84\xfb\xc3\x23\xa8\x4b\x7c\x80\x15\x64\x35\x3b\x6e\xcf\x0c\x8a\x41\x65\x96\xce\x98\x7b\xa5\xbd\x4d\x4e\x4f\xd4\xaa\x38\x23\x47\x75\x19\xb9\x2a\xee\x76\x50\x3b\x51\x64\x4b\xa4\x8c\xb4\xb5\x07\x55\x9e\x0b\x5c\x25\xf0\x36\x98\xf3\x39\x2a\xae\x31\xfc\x55\xdc\xbe\xae\x3b\xb6\x9d\x01\xfe\xf9\xb3\x05\xa7\x1d\x8e\x0e\xb9\x36\xdd\xa3\xa9\xf3\x2f\xcb\xcd\xe6\x2b\x94\x40\x27\xcc\xbe\xa6\x35\x04\xde\xbf\x76\xe1\x86\x3d\x9d\x96\x2b\x08\x43\xbf\xc6\x70\x97\xe4\x1a\xdf\x0c\x98\x33\x1a\x9f\xca\xca\xbb\xfd\xa8\x92\x9f\xf0\xc3\x8f\x16\xf8\xa3\xe2\xbd\xad\xda\x2d\x3a\xda\xbb\x7f\x12\x91\xb9\x6b\xc5\x7d\x24\x9e\xf9\x35\x77\xf2\x9f\xed\x6e\xff\x73\x5e\x23\xce\xfe\x03\x1e\xa3\x78\x33\x9a\xe3\x2d\xef\xf2\x96\xb9\x91\x8d\x71\x27\x84\xc2\xa4\xc0\xf5\xbe\x4d\x68\xdf\x74\x26\x6e\x2f\x6a\x8f\xdd\xfb\x1d\xaa\xaf\x2d\xd7\xf7\x76\x76\x68\x7f\xbf\xf9\x85\xc4\x54\x82\x08\x9d\xb6\x8f\x4c\x06\xbb\x8b\xb7\x89\xa4\x57\xe3\x4a\x36\x8c\xa2\xb5\xd7\xff\xb9\x58\xcf\x4e\xb1\xf8\x43\xbe\xc1\xb1\x1b\x24\x22\xfd\xc8\x6c\xd3\xa5\x9c\x36\xd5\xfc\x6e\xe3\x79\x97\xd3\x8c\xdb\xcf\x36\x08\x5c\x97\x1d\x1d\x9f\xd3\xd7\x94\xff\x67\xb3\x0b\xd9\x4c\x78\x8b\x9d\xcc\xde\x96\xef\x12\x5a\x14\xb2\x77\xd8\x9b\x70\x84\x76\x6e\x9d\xb4\xe5\x87\xba\xff\x0d\x6a\x92\xae\xe4\x72\xd6\x2a\x3b\x1b\xa6\xe0\x84\x39\xfe\xc5\xb4\x83\xf9\x09\xf5\x8e\x65\xea\x7e\x73\xc4\x1b\x66\xa2\xed\x95\x91\x07\x86\x43\xbd\xcf\x5e\x5d\x38\xb7\xc0\x1c\x4d\x41\xd1\xdc\x96\x73\x38\x8c\x18\x57\x99\x3c\xd1\xad\x33\xfb\x7a\x6e\x75\x44\xe3\xa4\xb1\x7b\x83\x20\x1b\x0a\x83\x09\x2d\xc7\x1d\x57\x27\xf1\xf6\x1e\xed\xf6\x7c\x75\xdb\x1f\xb4\x12\xaf\x23\xf1\xcc\xe2\x91\x13\xb8\xad\x98\xd7\xbd\x3b\x1b\x45\xba\xdc\xdb\x29\xf1\xc6\xe8\x2f\xd9\x3e\xb8\x8d\xa6\x1a\x9c\x6f\x52\x8f\x99\x36\xdd\x75\xfe\x25\xdb\xf7\x6f\x46\xc7\x8a\x71\xa6\x7f\x43\xeb\x07\xd5\x78\x9e\x27\xb1\xfb\x39\xee\x35\x68\xad\x75\x5c\x5e\x20\x3f\xd3\x23\x9e\xdd\x57\x59\x9b\xf6\xa1\x78\x5c\x8c\x0f\xe4\x7a\x03\xc3\xef\x8f\x85\x6a\xc3\x91\xe3\x95\xfa\x47\x03\x61\x1b\xb9\x3b\x43\x97\xe3\x63\x3e\x30\xdc\x81\x0f\xf9\x02\xf1\x0b\xe1\xd3\x27\x48\x88\x13\x67\xfd\xd1\x96\x1f\x19\x52\x6f\xcc\xfb\x5c\x90\x91\x17\x9c\x2a\x98\xb6\xd3\x5b\x3d\x5d\x23\xca\xe2\x64\x1b\xdd\xac\xbd\xfe\x8f\x78\x63\xb4\x32\xea\xab\xf6\x7a\xdb\xa6\xdb\xf6\xf7\x77\x9f\x94\xa9\x00\xd8\xf0\x4d\x15\xae\x6a\x5d\x8c\x5f\xd0\x0a\x49\xa6\x5b\x21\xd7\xe3\x5e\xd5\xe7\x99\x5e\x95\x2c\x19\x8c\x16\x64\x4d\x21\xc7\xe0\x2f\x10\x9e\xab\x51\xd9\xb0\x9f\xed\x10\x0d\x84\x1f\x5b\x7e\x50\xda\x38\xde\xeb\x8c\xf9\xf0\x0f\x41\x8a\x4f\x2b\x29\xb6\x91\xfd\x66\xcb\xdb\x68\xa0\xfe\x68\xe0\x9d\x0e\xfa\xae\xe2\x6a\xd9\xbd\xfd\x5a\x8e\x60\xe6\x2a\x08\xcc\x7a\x3a\x1a\xd4\xd3\x8e\xee\xfe\x95\xf6\x42\x25\x84\x69\x3e\x4b\xc5\xed\x56\xb7\x8a\xc7\x3a\x7d\x8f\x9d\x05\x75\xd5\x9b\x1b\x17\xa0\x7d\x4b\xce\x5d\xd5\xaa\xee\x63\xd8\xdf\x00\xfb\x8e\x9d\xab\xe1\x67\xba\x64\x10\xee\x96\xa6\xfa\x8d\x9d\xba\xaf\xe7\xb8\xed\x76\xad\xbb\x37\xb2\xd3\x77\xf6\xde\xda\x2c\x1c\xf7\x04\xff\x13\x00\x00\xff\xff\x73\x54\xd2\x91\xaa\x26\x00\x00") + +func cmd_drone_server_static_styles_drone_css_bytes() ([]byte, error) { + return bindata_read( + _cmd_drone_server_static_styles_drone_css, + "cmd/drone-server/static/styles/drone.css", + ) +} + +func cmd_drone_server_static_styles_drone_css() (*asset, error) { + bytes, err := cmd_drone_server_static_styles_drone_css_bytes() + if err != nil { + return nil, err + } + + info := bindata_file_info{name: "cmd/drone-server/static/styles/drone.css", size: 9898, mode: os.FileMode(436), modTime: time.Unix(1431329644, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +// Asset loads and returns the asset for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func Asset(name string) ([]byte, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) + } + return a.bytes, nil + } + return nil, fmt.Errorf("Asset %s not found", name) +} + +// MustAsset is like Asset but panics when Asset would return an error. +// It simplifies safe initialization of global variables. +func MustAsset(name string) []byte { + a, err := Asset(name) + if (err != nil) { + panic("asset: Asset(" + name + "): " + err.Error()) + } + + return a +} + +// AssetInfo loads and returns the asset info for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func AssetInfo(name string) (os.FileInfo, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) + } + return a.info, nil + } + return nil, fmt.Errorf("AssetInfo %s not found", name) +} + +// AssetNames returns the names of the assets. +func AssetNames() []string { + names := make([]string, 0, len(_bindata)) + for name := range _bindata { + names = append(names, name) + } + return names +} + +// _bindata is a table, holding each asset generator, mapped to its name. +var _bindata = map[string]func() (*asset, error){ + "cmd/drone-server/static/favicon.png": cmd_drone_server_static_favicon_png, + "cmd/drone-server/static/images/logo.svg": cmd_drone_server_static_images_logo_svg, + "cmd/drone-server/static/index.html": cmd_drone_server_static_index_html, + "cmd/drone-server/static/scripts/controllers/agents.js": cmd_drone_server_static_scripts_controllers_agents_js, + "cmd/drone-server/static/scripts/controllers/builds.js": cmd_drone_server_static_scripts_controllers_builds_js, + "cmd/drone-server/static/scripts/controllers/commits.js": cmd_drone_server_static_scripts_controllers_commits_js, + "cmd/drone-server/static/scripts/controllers/repos.js": cmd_drone_server_static_scripts_controllers_repos_js, + "cmd/drone-server/static/scripts/controllers/users.js": cmd_drone_server_static_scripts_controllers_users_js, + "cmd/drone-server/static/scripts/drone.js": cmd_drone_server_static_scripts_drone_js, + "cmd/drone-server/static/scripts/drone.min.js": cmd_drone_server_static_scripts_drone_min_js, + "cmd/drone-server/static/scripts/filters/filter.js": cmd_drone_server_static_scripts_filters_filter_js, + "cmd/drone-server/static/scripts/filters/gravatar.js": cmd_drone_server_static_scripts_filters_gravatar_js, + "cmd/drone-server/static/scripts/filters/time.js": cmd_drone_server_static_scripts_filters_time_js, + "cmd/drone-server/static/scripts/services/agents.js": cmd_drone_server_static_scripts_services_agents_js, + "cmd/drone-server/static/scripts/services/builds.js": cmd_drone_server_static_scripts_services_builds_js, + "cmd/drone-server/static/scripts/services/feed.js": cmd_drone_server_static_scripts_services_feed_js, + "cmd/drone-server/static/scripts/services/logs.js": cmd_drone_server_static_scripts_services_logs_js, + "cmd/drone-server/static/scripts/services/repos.js": cmd_drone_server_static_scripts_services_repos_js, + "cmd/drone-server/static/scripts/services/tokens.js": cmd_drone_server_static_scripts_services_tokens_js, + "cmd/drone-server/static/scripts/services/users.js": cmd_drone_server_static_scripts_services_users_js, + "cmd/drone-server/static/scripts/term.js": cmd_drone_server_static_scripts_term_js, + "cmd/drone-server/static/scripts/views/agents.html": cmd_drone_server_static_scripts_views_agents_html, + "cmd/drone-server/static/scripts/views/build.html": cmd_drone_server_static_scripts_views_build_html, + "cmd/drone-server/static/scripts/views/builds.html": cmd_drone_server_static_scripts_views_builds_html, + "cmd/drone-server/static/scripts/views/login.html": cmd_drone_server_static_scripts_views_login_html, + "cmd/drone-server/static/scripts/views/repos.html": cmd_drone_server_static_scripts_views_repos_html, + "cmd/drone-server/static/scripts/views/repos_add.html": cmd_drone_server_static_scripts_views_repos_add_html, + "cmd/drone-server/static/scripts/views/repos_edit.html": cmd_drone_server_static_scripts_views_repos_edit_html, + "cmd/drone-server/static/scripts/views/user.html": cmd_drone_server_static_scripts_views_user_html, + "cmd/drone-server/static/scripts/views/users.html": cmd_drone_server_static_scripts_views_users_html, + "cmd/drone-server/static/styles/drone.css": cmd_drone_server_static_styles_drone_css, +} + +// AssetDir returns the file names below a certain +// directory embedded in the file by go-bindata. +// For example if you run go-bindata on data/... and data contains the +// following hierarchy: +// data/ +// foo.txt +// img/ +// a.png +// b.png +// then AssetDir("data") would return []string{"foo.txt", "img"} +// AssetDir("data/img") would return []string{"a.png", "b.png"} +// AssetDir("foo.txt") and AssetDir("notexist") would return an error +// AssetDir("") will return []string{"data"}. +func AssetDir(name string) ([]string, error) { + node := _bintree + if len(name) != 0 { + cannonicalName := strings.Replace(name, "\\", "/", -1) + pathList := strings.Split(cannonicalName, "/") + for _, p := range pathList { + node = node.Children[p] + if node == nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + } + } + if node.Func != nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + rv := make([]string, 0, len(node.Children)) + for name := range node.Children { + rv = append(rv, name) + } + return rv, nil +} + +type _bintree_t struct { + Func func() (*asset, error) + Children map[string]*_bintree_t +} +var _bintree = &_bintree_t{nil, map[string]*_bintree_t{ + "cmd": &_bintree_t{nil, map[string]*_bintree_t{ + "drone-server": &_bintree_t{nil, map[string]*_bintree_t{ + "static": &_bintree_t{nil, map[string]*_bintree_t{ + "favicon.png": &_bintree_t{cmd_drone_server_static_favicon_png, map[string]*_bintree_t{ + }}, + "images": &_bintree_t{nil, map[string]*_bintree_t{ + "logo.svg": &_bintree_t{cmd_drone_server_static_images_logo_svg, map[string]*_bintree_t{ + }}, + }}, + "index.html": &_bintree_t{cmd_drone_server_static_index_html, map[string]*_bintree_t{ + }}, + "scripts": &_bintree_t{nil, map[string]*_bintree_t{ + "controllers": &_bintree_t{nil, map[string]*_bintree_t{ + "agents.js": &_bintree_t{cmd_drone_server_static_scripts_controllers_agents_js, map[string]*_bintree_t{ + }}, + "builds.js": &_bintree_t{cmd_drone_server_static_scripts_controllers_builds_js, map[string]*_bintree_t{ + }}, + "commits.js": &_bintree_t{cmd_drone_server_static_scripts_controllers_commits_js, map[string]*_bintree_t{ + }}, + "repos.js": &_bintree_t{cmd_drone_server_static_scripts_controllers_repos_js, map[string]*_bintree_t{ + }}, + "users.js": &_bintree_t{cmd_drone_server_static_scripts_controllers_users_js, map[string]*_bintree_t{ + }}, + }}, + "drone.js": &_bintree_t{cmd_drone_server_static_scripts_drone_js, map[string]*_bintree_t{ + }}, + "drone.min.js": &_bintree_t{cmd_drone_server_static_scripts_drone_min_js, map[string]*_bintree_t{ + }}, + "filters": &_bintree_t{nil, map[string]*_bintree_t{ + "filter.js": &_bintree_t{cmd_drone_server_static_scripts_filters_filter_js, map[string]*_bintree_t{ + }}, + "gravatar.js": &_bintree_t{cmd_drone_server_static_scripts_filters_gravatar_js, map[string]*_bintree_t{ + }}, + "time.js": &_bintree_t{cmd_drone_server_static_scripts_filters_time_js, map[string]*_bintree_t{ + }}, + }}, + "services": &_bintree_t{nil, map[string]*_bintree_t{ + "agents.js": &_bintree_t{cmd_drone_server_static_scripts_services_agents_js, map[string]*_bintree_t{ + }}, + "builds.js": &_bintree_t{cmd_drone_server_static_scripts_services_builds_js, map[string]*_bintree_t{ + }}, + "feed.js": &_bintree_t{cmd_drone_server_static_scripts_services_feed_js, map[string]*_bintree_t{ + }}, + "logs.js": &_bintree_t{cmd_drone_server_static_scripts_services_logs_js, map[string]*_bintree_t{ + }}, + "repos.js": &_bintree_t{cmd_drone_server_static_scripts_services_repos_js, map[string]*_bintree_t{ + }}, + "tokens.js": &_bintree_t{cmd_drone_server_static_scripts_services_tokens_js, map[string]*_bintree_t{ + }}, + "users.js": &_bintree_t{cmd_drone_server_static_scripts_services_users_js, map[string]*_bintree_t{ + }}, + }}, + "term.js": &_bintree_t{cmd_drone_server_static_scripts_term_js, map[string]*_bintree_t{ + }}, + "views": &_bintree_t{nil, map[string]*_bintree_t{ + "agents.html": &_bintree_t{cmd_drone_server_static_scripts_views_agents_html, map[string]*_bintree_t{ + }}, + "build.html": &_bintree_t{cmd_drone_server_static_scripts_views_build_html, map[string]*_bintree_t{ + }}, + "builds.html": &_bintree_t{cmd_drone_server_static_scripts_views_builds_html, map[string]*_bintree_t{ + }}, + "login.html": &_bintree_t{cmd_drone_server_static_scripts_views_login_html, map[string]*_bintree_t{ + }}, + "repos.html": &_bintree_t{cmd_drone_server_static_scripts_views_repos_html, map[string]*_bintree_t{ + }}, + "repos_add.html": &_bintree_t{cmd_drone_server_static_scripts_views_repos_add_html, map[string]*_bintree_t{ + }}, + "repos_edit.html": &_bintree_t{cmd_drone_server_static_scripts_views_repos_edit_html, map[string]*_bintree_t{ + }}, + "user.html": &_bintree_t{cmd_drone_server_static_scripts_views_user_html, map[string]*_bintree_t{ + }}, + "users.html": &_bintree_t{cmd_drone_server_static_scripts_views_users_html, map[string]*_bintree_t{ + }}, + }}, + }}, + "styles": &_bintree_t{nil, map[string]*_bintree_t{ + "drone.css": &_bintree_t{cmd_drone_server_static_styles_drone_css, map[string]*_bintree_t{ + }}, + }}, + }}, + }}, + }}, +}} + +// Restore 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, path.Dir(name)), os.FileMode(0755)) + if err != nil { + return err + } + err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + if err != nil { + return err + } + err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + if err != nil { + return err + } + return nil +} + +// Restore assets under the given directory recursively +func RestoreAssets(dir, name string) error { + children, err := AssetDir(name) + if err != nil { // File + return RestoreAsset(dir, name) + } else { // Dir + for _, child := range children { + err = RestoreAssets(dir, path.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, "/")...)...) +} + diff --git a/server/static/favicon.png b/cmd/drone-server/static/favicon.png similarity index 100% rename from server/static/favicon.png rename to cmd/drone-server/static/favicon.png diff --git a/server/static/images/logo.svg b/cmd/drone-server/static/images/logo.svg similarity index 100% rename from server/static/images/logo.svg rename to cmd/drone-server/static/images/logo.svg diff --git a/server/static/index.html b/cmd/drone-server/static/index.html similarity index 100% rename from server/static/index.html rename to cmd/drone-server/static/index.html diff --git a/server/static/scripts/controllers/agents.js b/cmd/drone-server/static/scripts/controllers/agents.js similarity index 100% rename from server/static/scripts/controllers/agents.js rename to cmd/drone-server/static/scripts/controllers/agents.js diff --git a/server/static/scripts/controllers/builds.js b/cmd/drone-server/static/scripts/controllers/builds.js similarity index 100% rename from server/static/scripts/controllers/builds.js rename to cmd/drone-server/static/scripts/controllers/builds.js diff --git a/server/static/scripts/controllers/commits.js b/cmd/drone-server/static/scripts/controllers/commits.js similarity index 100% rename from server/static/scripts/controllers/commits.js rename to cmd/drone-server/static/scripts/controllers/commits.js diff --git a/server/static/scripts/controllers/repos.js b/cmd/drone-server/static/scripts/controllers/repos.js similarity index 100% rename from server/static/scripts/controllers/repos.js rename to cmd/drone-server/static/scripts/controllers/repos.js diff --git a/server/static/scripts/controllers/users.js b/cmd/drone-server/static/scripts/controllers/users.js similarity index 100% rename from server/static/scripts/controllers/users.js rename to cmd/drone-server/static/scripts/controllers/users.js diff --git a/server/static/scripts/drone.js b/cmd/drone-server/static/scripts/drone.js similarity index 100% rename from server/static/scripts/drone.js rename to cmd/drone-server/static/scripts/drone.js diff --git a/server/static/scripts/filters/filter.js b/cmd/drone-server/static/scripts/filters/filter.js similarity index 100% rename from server/static/scripts/filters/filter.js rename to cmd/drone-server/static/scripts/filters/filter.js diff --git a/server/static/scripts/filters/gravatar.js b/cmd/drone-server/static/scripts/filters/gravatar.js similarity index 100% rename from server/static/scripts/filters/gravatar.js rename to cmd/drone-server/static/scripts/filters/gravatar.js diff --git a/server/static/scripts/filters/time.js b/cmd/drone-server/static/scripts/filters/time.js similarity index 100% rename from server/static/scripts/filters/time.js rename to cmd/drone-server/static/scripts/filters/time.js diff --git a/server/static/scripts/services/agents.js b/cmd/drone-server/static/scripts/services/agents.js similarity index 100% rename from server/static/scripts/services/agents.js rename to cmd/drone-server/static/scripts/services/agents.js diff --git a/server/static/scripts/services/builds.js b/cmd/drone-server/static/scripts/services/builds.js similarity index 100% rename from server/static/scripts/services/builds.js rename to cmd/drone-server/static/scripts/services/builds.js diff --git a/server/static/scripts/services/feed.js b/cmd/drone-server/static/scripts/services/feed.js similarity index 100% rename from server/static/scripts/services/feed.js rename to cmd/drone-server/static/scripts/services/feed.js diff --git a/server/static/scripts/services/logs.js b/cmd/drone-server/static/scripts/services/logs.js similarity index 100% rename from server/static/scripts/services/logs.js rename to cmd/drone-server/static/scripts/services/logs.js diff --git a/server/static/scripts/services/repos.js b/cmd/drone-server/static/scripts/services/repos.js similarity index 100% rename from server/static/scripts/services/repos.js rename to cmd/drone-server/static/scripts/services/repos.js diff --git a/server/static/scripts/services/tokens.js b/cmd/drone-server/static/scripts/services/tokens.js similarity index 100% rename from server/static/scripts/services/tokens.js rename to cmd/drone-server/static/scripts/services/tokens.js diff --git a/server/static/scripts/services/users.js b/cmd/drone-server/static/scripts/services/users.js similarity index 100% rename from server/static/scripts/services/users.js rename to cmd/drone-server/static/scripts/services/users.js diff --git a/server/static/scripts/term.js b/cmd/drone-server/static/scripts/term.js similarity index 100% rename from server/static/scripts/term.js rename to cmd/drone-server/static/scripts/term.js diff --git a/server/static/scripts/views/agents.html b/cmd/drone-server/static/scripts/views/agents.html similarity index 100% rename from server/static/scripts/views/agents.html rename to cmd/drone-server/static/scripts/views/agents.html diff --git a/server/static/scripts/views/build.html b/cmd/drone-server/static/scripts/views/build.html similarity index 100% rename from server/static/scripts/views/build.html rename to cmd/drone-server/static/scripts/views/build.html diff --git a/server/static/scripts/views/builds.html b/cmd/drone-server/static/scripts/views/builds.html similarity index 100% rename from server/static/scripts/views/builds.html rename to cmd/drone-server/static/scripts/views/builds.html diff --git a/server/static/scripts/views/login.html b/cmd/drone-server/static/scripts/views/login.html similarity index 100% rename from server/static/scripts/views/login.html rename to cmd/drone-server/static/scripts/views/login.html diff --git a/server/static/scripts/views/repos.html b/cmd/drone-server/static/scripts/views/repos.html similarity index 100% rename from server/static/scripts/views/repos.html rename to cmd/drone-server/static/scripts/views/repos.html diff --git a/server/static/scripts/views/repos_add.html b/cmd/drone-server/static/scripts/views/repos_add.html similarity index 100% rename from server/static/scripts/views/repos_add.html rename to cmd/drone-server/static/scripts/views/repos_add.html diff --git a/server/static/scripts/views/repos_edit.html b/cmd/drone-server/static/scripts/views/repos_edit.html similarity index 100% rename from server/static/scripts/views/repos_edit.html rename to cmd/drone-server/static/scripts/views/repos_edit.html diff --git a/server/static/scripts/views/user.html b/cmd/drone-server/static/scripts/views/user.html similarity index 100% rename from server/static/scripts/views/user.html rename to cmd/drone-server/static/scripts/views/user.html diff --git a/server/static/scripts/views/users.html b/cmd/drone-server/static/scripts/views/users.html similarity index 100% rename from server/static/scripts/views/users.html rename to cmd/drone-server/static/scripts/views/users.html diff --git a/server/static/styles/drone.css b/cmd/drone-server/static/styles/drone.css similarity index 100% rename from server/static/styles/drone.css rename to cmd/drone-server/static/styles/drone.css diff --git a/docs/install-docker.md b/docs/install-docker.md new file mode 100644 index 0000000000..edd7af6700 --- /dev/null +++ b/docs/install-docker.md @@ -0,0 +1 @@ +install-docker.md \ No newline at end of file diff --git a/docs/install-source.md b/docs/install-source.md new file mode 100644 index 0000000000..39ba00b51f --- /dev/null +++ b/docs/install-source.md @@ -0,0 +1 @@ +install-source.md \ No newline at end of file diff --git a/docs/install-ubuntu.md b/docs/install-ubuntu.md new file mode 100644 index 0000000000..a5a056f3fd --- /dev/null +++ b/docs/install-ubuntu.md @@ -0,0 +1 @@ +install.md \ No newline at end of file diff --git a/docs/setup-bitbucket.md b/docs/setup-bitbucket.md new file mode 100644 index 0000000000..df13b856fb --- /dev/null +++ b/docs/setup-bitbucket.md @@ -0,0 +1 @@ +setup-bitbucket.md \ No newline at end of file diff --git a/docs/setup-database.md b/docs/setup-database.md new file mode 100644 index 0000000000..adeab5376c --- /dev/null +++ b/docs/setup-database.md @@ -0,0 +1 @@ +setup-database.md \ No newline at end of file diff --git a/docs/setup-github.md b/docs/setup-github.md new file mode 100644 index 0000000000..455e3acfab --- /dev/null +++ b/docs/setup-github.md @@ -0,0 +1 @@ +github.md \ No newline at end of file diff --git a/docs/setup-gitlab.md b/docs/setup-gitlab.md new file mode 100644 index 0000000000..ef13714c9f --- /dev/null +++ b/docs/setup-gitlab.md @@ -0,0 +1 @@ +setup-gitlab.md \ No newline at end of file diff --git a/docs/setup.md b/docs/setup.md new file mode 100644 index 0000000000..58dd902a0c --- /dev/null +++ b/docs/setup.md @@ -0,0 +1 @@ +setup.md \ No newline at end of file diff --git a/common/oauth2/oauth2.go b/pkg/oauth2/oauth2.go similarity index 100% rename from common/oauth2/oauth2.go rename to pkg/oauth2/oauth2.go diff --git a/pkg/remote/client/client.go b/pkg/remote/client/client.go index 55872cb210..638580b990 100644 --- a/pkg/remote/client/client.go +++ b/pkg/remote/client/client.go @@ -5,8 +5,8 @@ import ( "net/http" "net/rpc" + "github.com/drone/drone/pkg/settings" common "github.com/drone/drone/pkg/types" - "github.com/drone/drone/settings" ) // Client communicates with a Remote plugin using the diff --git a/pkg/remote/github/github.go b/pkg/remote/github/github.go index 4cf5b4b539..59e903b9b6 100644 --- a/pkg/remote/github/github.go +++ b/pkg/remote/github/github.go @@ -9,8 +9,8 @@ import ( "strings" "time" + "github.com/drone/drone/pkg/settings" common "github.com/drone/drone/pkg/types" - "github.com/drone/drone/settings" "github.com/hashicorp/golang-lru" "github.com/google/go-github/github" diff --git a/pkg/remote/github/helper.go b/pkg/remote/github/helper.go index 458dc33a1a..177c2c9d3a 100644 --- a/pkg/remote/github/helper.go +++ b/pkg/remote/github/helper.go @@ -9,7 +9,7 @@ import ( "net/url" "strings" - "github.com/drone/drone/common/oauth2" + "github.com/drone/drone/pkg/oauth2" "github.com/google/go-github/github" "github.com/gorilla/securecookie" ) diff --git a/runner/builtin/copy.go b/pkg/runner/builtin/copy.go similarity index 100% rename from runner/builtin/copy.go rename to pkg/runner/builtin/copy.go diff --git a/runner/builtin/runner.go b/pkg/runner/builtin/runner.go similarity index 100% rename from runner/builtin/runner.go rename to pkg/runner/builtin/runner.go diff --git a/runner/builtin/updater.go b/pkg/runner/builtin/updater.go similarity index 100% rename from runner/builtin/updater.go rename to pkg/runner/builtin/updater.go diff --git a/runner/builtin/worker.go b/pkg/runner/builtin/worker.go similarity index 100% rename from runner/builtin/worker.go rename to pkg/runner/builtin/worker.go diff --git a/runner/runner.go b/pkg/runner/runner.go similarity index 100% rename from runner/runner.go rename to pkg/runner/runner.go diff --git a/server/agent.go b/pkg/server/agent.go similarity index 100% rename from server/agent.go rename to pkg/server/agent.go diff --git a/server/badge.go b/pkg/server/badge.go similarity index 100% rename from server/badge.go rename to pkg/server/badge.go diff --git a/server/badge_test.go b/pkg/server/badge_test.go similarity index 98% rename from server/badge_test.go rename to pkg/server/badge_test.go index b1ca646d84..beb03da2d0 100644 --- a/server/badge_test.go +++ b/pkg/server/badge_test.go @@ -8,9 +8,9 @@ import ( "testing" "github.com/drone/drone/pkg/ccmenu" + "github.com/drone/drone/pkg/server/recorder" "github.com/drone/drone/pkg/store/mock" common "github.com/drone/drone/pkg/types" - "github.com/drone/drone/server/recorder" . "github.com/franela/goblin" "github.com/gin-gonic/gin" diff --git a/server/commits.go b/pkg/server/commits.go similarity index 100% rename from server/commits.go rename to pkg/server/commits.go diff --git a/server/hooks.go b/pkg/server/hooks.go similarity index 100% rename from server/hooks.go rename to pkg/server/hooks.go diff --git a/server/login.go b/pkg/server/login.go similarity index 99% rename from server/login.go rename to pkg/server/login.go index c52338e8eb..6cd019464d 100644 --- a/server/login.go +++ b/pkg/server/login.go @@ -9,7 +9,7 @@ import ( "github.com/ungerik/go-gravatar" log "github.com/Sirupsen/logrus" - "github.com/drone/drone/common/oauth2" + "github.com/drone/drone/pkg/oauth2" common "github.com/drone/drone/pkg/types" "github.com/drone/drone/pkg/utils/httputil" ) diff --git a/server/queue.go b/pkg/server/queue.go similarity index 100% rename from server/queue.go rename to pkg/server/queue.go diff --git a/server/recorder/recorder.go b/pkg/server/recorder/recorder.go similarity index 100% rename from server/recorder/recorder.go rename to pkg/server/recorder/recorder.go diff --git a/server/repos.go b/pkg/server/repos.go similarity index 100% rename from server/repos.go rename to pkg/server/repos.go diff --git a/server/server.go b/pkg/server/server.go similarity index 97% rename from server/server.go rename to pkg/server/server.go index bee2bfec93..a0f69dfba9 100644 --- a/server/server.go +++ b/pkg/server/server.go @@ -9,11 +9,11 @@ import ( "github.com/drone/drone/pkg/bus" "github.com/drone/drone/pkg/queue" "github.com/drone/drone/pkg/remote" + "github.com/drone/drone/pkg/runner" + "github.com/drone/drone/pkg/server/session" + "github.com/drone/drone/pkg/settings" "github.com/drone/drone/pkg/store" common "github.com/drone/drone/pkg/types" - "github.com/drone/drone/runner" - "github.com/drone/drone/server/session" - "github.com/drone/drone/settings" ) func SetQueue(q queue.Queue) gin.HandlerFunc { diff --git a/server/session/session.go b/pkg/server/session/session.go similarity index 98% rename from server/session/session.go rename to pkg/server/session/session.go index 8d96c3b55a..a9551d6690 100644 --- a/server/session/session.go +++ b/pkg/server/session/session.go @@ -6,8 +6,8 @@ import ( "time" "github.com/dgrijalva/jwt-go" + "github.com/drone/drone/pkg/settings" common "github.com/drone/drone/pkg/types" - "github.com/drone/drone/settings" ) type Session interface { diff --git a/server/token.go b/pkg/server/token.go similarity index 100% rename from server/token.go rename to pkg/server/token.go diff --git a/server/user.go b/pkg/server/user.go similarity index 100% rename from server/user.go rename to pkg/server/user.go diff --git a/server/user_test.go b/pkg/server/user_test.go similarity index 97% rename from server/user_test.go rename to pkg/server/user_test.go index 2a99cd65aa..0045ca7858 100644 --- a/server/user_test.go +++ b/pkg/server/user_test.go @@ -8,9 +8,9 @@ import ( "net/http" "testing" + "github.com/drone/drone/pkg/server/recorder" "github.com/drone/drone/pkg/store/mock" common "github.com/drone/drone/pkg/types" - "github.com/drone/drone/server/recorder" . "github.com/franela/goblin" "github.com/gin-gonic/gin" ) diff --git a/server/users.go b/pkg/server/users.go similarity index 100% rename from server/users.go rename to pkg/server/users.go diff --git a/server/ws.go b/pkg/server/ws.go similarity index 100% rename from server/ws.go rename to pkg/server/ws.go diff --git a/settings/settings.go b/pkg/settings/settings.go similarity index 100% rename from settings/settings.go rename to pkg/settings/settings.go