-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbindata_assetfs.go
465 lines (403 loc) · 43.7 KB
/
bindata_assetfs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
// Code generated by go-bindata.
// sources:
// html/css/launchcontrol.css
// html/css/ui/launch.css
// html/img/fleshlight.png
// html/img/icon-32.png
// html/img/ruler.png
// html/index.html
// html/js/launchcontrol-client.js
// html/js/launchcontrol.js
// html/js/ui/controls.js
// html/js/ui/launch.js
// DO NOT EDIT!
package main
import (
"github.com/elazarl/go-bindata-assetfs"
"bytes"
"compress/gzip"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
)
func bindataRead(data []byte, name string) ([]byte, error) {
gz, err := gzip.NewReader(bytes.NewBuffer(data))
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
var buf bytes.Buffer
_, err = io.Copy(&buf, gz)
clErr := gz.Close()
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
if clErr != nil {
return nil, err
}
return buf.Bytes(), nil
}
type asset struct {
bytes []byte
info os.FileInfo
}
type bindataFileInfo struct {
name string
size int64
mode os.FileMode
modTime time.Time
}
func (fi bindataFileInfo) Name() string {
return fi.name
}
func (fi bindataFileInfo) Size() int64 {
return fi.size
}
func (fi bindataFileInfo) Mode() os.FileMode {
return fi.mode
}
func (fi bindataFileInfo) ModTime() time.Time {
return fi.modTime
}
func (fi bindataFileInfo) IsDir() bool {
return false
}
func (fi bindataFileInfo) Sys() interface{} {
return nil
}
var _htmlCssLaunchcontrolCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x28\xc9\xcd\xd1\x49\xca\x4f\xa9\x54\xa8\xe6\x52\x50\x28\x48\x4c\x49\xc9\xcc\x4b\xd7\x2d\xc9\x2f\xb0\x52\x30\x36\x28\xa8\xb0\xe6\x52\x50\xc8\x48\xcd\x4c\xcf\x28\xb1\x32\x34\x30\x50\xb5\xe6\xaa\xe5\xe2\xd2\x4b\x2b\xcd\xc9\x29\x4e\x2e\x4a\x4d\xcd\x03\x6b\x82\xca\x2b\x58\x22\xcb\x43\x04\x51\xe4\x61\x06\x00\x02\x00\x00\xff\xff\x69\xd8\xd4\x64\x73\x00\x00\x00")
func htmlCssLaunchcontrolCssBytes() ([]byte, error) {
return bindataRead(
_htmlCssLaunchcontrolCss,
"html/css/launchcontrol.css",
)
}
func htmlCssLaunchcontrolCss() (*asset, error) {
bytes, err := htmlCssLaunchcontrolCssBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/css/launchcontrol.css", size: 115, mode: os.FileMode(420), modTime: time.Unix(1494513556, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _htmlCssUiLaunchCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xc1\x4e\xc4\x20\x10\x86\xcf\xe5\x29\xb8\x78\x9c\x4d\x3d\x6d\xd2\x3e\x0d\x2d\x53\x3a\x71\x60\x1a\x98\xee\x6e\xd6\xf8\xee\x06\xe3\xaa\xa9\x18\x8f\x84\x2f\x1f\xfc\x9f\xa7\xcb\x69\x86\x85\xb1\xac\x4c\x61\x55\xfb\x6a\xba\x4d\x0a\x29\x49\x1a\x6c\x46\x76\x4a\x17\x1c\x4d\xb7\x62\xbd\x1e\xec\x73\xdf\x3f\x8d\xa6\xbb\x92\xd7\xf5\xeb\xc4\x94\x10\x1e\x44\x3f\x9a\x37\x63\x7e\x89\x29\x86\x2a\x8f\xee\x06\x07\x17\x45\x17\x10\x32\x26\x8f\x99\x52\x18\x2c\x44\xb9\xc3\x9c\xa9\x6c\x80\x3e\x60\x69\x32\xf2\x2f\x71\xc5\xe9\x85\x14\x64\x53\x8a\x74\x47\x98\x25\x69\x76\x45\x5b\xf0\x46\xb7\xba\x15\x7d\xfb\xf3\x27\x39\x34\x9a\x44\x55\xe2\xc7\xd8\x47\x0b\xb7\xab\xfc\x08\x75\x3e\xd7\x6d\xdf\x2d\xdd\x54\x84\x77\xc5\x3f\x1f\xc8\x3b\x63\xae\xee\xb6\xef\x33\xd6\xc2\xe2\x74\xb0\x8c\x8b\x56\xd3\x7b\x00\x00\x00\xff\xff\x60\xde\x55\xd2\xc0\x01\x00\x00")
func htmlCssUiLaunchCssBytes() ([]byte, error) {
return bindataRead(
_htmlCssUiLaunchCss,
"html/css/ui/launch.css",
)
}
func htmlCssUiLaunchCss() (*asset, error) {
bytes, err := htmlCssUiLaunchCssBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/css/ui/launch.css", size: 448, mode: os.FileMode(420), modTime: time.Unix(1494513556, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _htmlImgFleshlightPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xe1\x03\x1e\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x34\x00\x00\x00\x67\x08\x06\x00\x00\x00\x4f\x62\x61\xb2\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xe1\x04\x1e\x0b\x27\x13\x06\xa4\xf8\xb1\x00\x00\x00\x19\x74\x45\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\x00\x03\x49\x49\x44\x41\x54\x78\xda\xed\x9c\xbf\x6f\x9b\x40\x14\xc7\xdf\x21\xd4\xa1\x69\x37\x4b\x8e\x9d\xad\x92\xd9\xba\xf0\x0f\x74\xef\x9a\x01\xa6\x4a\x99\xfb\x07\xf4\x6f\xe8\x1f\xd0\xd9\x52\x26\x3c\x78\xcd\x9e\xd5\xc3\x49\x56\x37\x23\x75\x4b\x5c\x4b\x59\x50\xd5\x25\xb2\x79\x1d\xec\x4b\x00\xf3\xe3\x38\xb8\x03\xbb\xef\x3b\x85\x18\xdf\xbd\x0f\xef\x17\x77\x90\x30\x68\x26\x04\x3d\x62\xc6\xbf\x28\x60\x7c\xdf\x07\x00\x80\xd5\x6a\x95\xfa\x70\xb3\xfe\x5d\xfa\xe5\xcb\xf1\x28\x75\x3c\x99\x4c\x00\x00\x20\x08\x82\x46\xb6\xd9\xaa\x30\x02\xa4\x6d\x89\x71\x83\x20\x40\x15\x28\x0b\xce\x4c\x04\xd4\xac\x82\xe0\x79\x01\xb1\x9c\x94\x40\xc4\xd3\x04\x42\x44\x23\x1e\xb2\x8d\x79\x87\xe9\xf7\x8e\x51\x20\x59\xc8\xae\x3a\x32\x1a\x4b\x3b\x53\x1e\xca\x36\xd6\xb2\x3b\x05\x44\x3c\xf2\xc6\x70\x74\x99\x3a\x76\x1c\x27\x75\x9c\xb8\x63\xa0\x3e\x74\x92\xb9\xd2\x3a\x90\x6a\x48\xe8\x1e\x5b\x05\x08\x7d\xdf\x07\xdf\xf7\x6b\x4f\x5c\xe4\x29\xcb\xb2\x52\x30\x62\x7c\x95\xe2\xa3\xb5\x6c\x3f\xac\x1f\x73\x7f\x7f\x35\x1a\xa7\x8e\xe3\x38\xee\x47\xd9\x4e\x56\xba\x6c\x95\xe3\x9c\x1f\x19\x9e\x04\x75\x5d\xb7\xb0\xca\x35\x59\x13\x29\xe7\x50\xd9\x7a\xa8\x0c\x46\x78\x88\x73\x0e\xbb\xdd\xae\xf6\xd8\xc6\xab\x1c\xe7\xfc\xe8\xea\xe7\xc9\x75\x5d\x58\x2e\x97\x60\xdb\x36\xd8\x76\x7b\x91\x6f\x75\x01\x93\x84\x5a\x2c\x16\xb4\xc0\x23\x20\x6a\xac\x2d\xc3\x34\x69\xac\x67\x17\x72\x2a\xf5\x92\x1d\xf6\xcc\x40\xc7\xde\x5c\xc6\xf3\xfd\x68\xac\x6d\x40\x51\x95\x23\x20\xea\x43\xd4\x87\xa8\x0f\x51\x1f\xa2\x3e\x44\x65\x9b\x80\xa8\x0f\x51\x1f\xa2\x3e\x44\x7d\x88\xaa\x1c\x01\x11\x10\x35\x56\x6a\xac\xd4\x58\xa9\xb1\x9e\x76\x63\xcd\x3e\x5f\xad\xab\xed\x76\xdb\x78\x8c\xc6\x45\x21\x4f\xae\xeb\x02\xe7\x5c\x7a\xa0\xb2\x27\x7e\x54\x14\x14\x93\x0e\x3d\xcf\x4b\xbd\x40\x91\x17\x2a\xc2\x4b\x65\x8f\xf5\x85\x47\xb3\x72\x1c\x27\xf5\x1e\xdd\x6c\x36\xab\x65\xa7\xa5\x23\x77\x64\x9f\x82\xeb\xc8\x47\x6d\x6f\x92\x5c\x8d\xc6\xd2\x6f\x92\x74\xdd\x87\xa4\xaf\xa4\xaa\xe1\x61\x18\xbe\xbc\x69\xaf\xb3\x28\xa0\xe7\x79\xe6\x92\xfb\x90\xa7\x87\x39\x51\x6b\x0e\x55\x79\xa7\xea\xef\x1e\x64\xce\x51\xcd\xa5\xff\x76\xf9\x60\x34\xdc\xb2\x12\x61\x17\xfc\xfc\xf6\xe1\xac\x3c\xe4\x7f\xfc\xfe\xcb\x38\x90\x4c\xfe\xa8\x9c\x4b\x39\x44\x40\x04\x44\x40\xdd\x03\xa9\x54\xad\xb6\x2b\x1d\x79\x88\x80\x08\xc8\x30\x50\x18\x86\xad\x27\x77\xd1\x77\x8b\xe6\x22\x0f\x11\xd0\x09\x01\x61\xd7\x8b\xbb\xec\x22\xaf\x6a\x7f\xa1\x6c\xd7\x07\xc5\xae\xcd\x61\xb3\x0f\xba\x02\x13\xf3\x0b\x7b\x1e\xd6\x8f\x85\xff\x9a\x80\xc9\x00\x09\x15\xed\xb3\x25\x27\x53\x55\x9d\xb1\x0f\xe7\xd6\x06\x12\x2e\x96\x32\xb6\xcc\x20\x19\xd5\x9c\xa3\xd0\x6e\x29\x0f\x89\x81\x74\xee\x78\xca\x80\x64\xec\x61\x75\x73\xe8\xe8\xea\xf5\x25\xe4\xca\x44\x21\xd7\xf7\x90\xab\xe5\xa1\xae\x43\x4e\xc6\x43\x55\x39\xc4\x70\x3a\x47\x76\x73\x5d\x69\xb4\xce\x90\x8b\xa2\x08\xe2\x38\x06\x9c\xce\x81\xdd\x5c\x33\xd5\xc6\xba\xbf\x93\x18\x0e\x00\xef\xee\x01\x36\x4f\x20\xc0\x84\xde\xbd\xbd\x68\xcd\x43\x51\x14\x15\x7e\xf6\xe7\xc7\xed\xfe\x87\xe1\x40\xdc\xdd\xc4\xaa\x40\xaf\x5f\x1c\x0e\x00\xa7\xf3\xc2\x13\xdf\x7f\xfd\xd2\x08\xe8\xc5\xe8\x3c\xed\x41\x8e\x6d\x52\x00\xba\x28\x19\x18\x60\xf3\x24\x67\x90\x8a\xb2\x73\xbd\xea\x0d\x00\x3c\xab\x02\xfd\xad\x3d\x69\x02\xb2\xa1\xe1\x45\x7a\x6e\xe2\xa1\x36\xaf\xac\x11\x49\x3d\x2e\xc7\xbb\x7b\x84\x1e\x88\x7d\xfe\x54\x69\x2f\xad\x58\xfb\x2e\xe9\x37\x34\xba\x0e\x3b\x99\x70\xab\x05\xd4\x15\x98\x2c\x88\x32\x90\x49\xa8\xba\x30\xca\x40\xba\xc1\x54\x40\x5a\x01\x6a\x1b\xac\x09\x88\xd0\x3f\x18\xe2\xaf\x20\xa8\xa4\xb5\x9b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xda\x49\xb9\x67\xe1\x03\x00\x00")
func htmlImgFleshlightPngBytes() ([]byte, error) {
return bindataRead(
_htmlImgFleshlightPng,
"html/img/fleshlight.png",
)
}
func htmlImgFleshlightPng() (*asset, error) {
bytes, err := htmlImgFleshlightPngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/img/fleshlight.png", size: 993, mode: os.FileMode(420), modTime: time.Unix(1494513556, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _htmlImgIcon32Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x25\x02\xda\xfd\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xe1\x05\x06\x10\x36\x28\x5c\xc8\x28\xd4\x00\x00\x00\x19\x74\x45\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\x00\x01\x8d\x49\x44\x41\x54\x58\xc3\xbd\x97\x51\x6e\xc2\x30\x0c\x86\x1d\xaf\x5a\xc5\x63\x9f\x90\xf6\x64\xe5\x06\xa8\x17\xe0\x0a\xc8\xe7\xac\x76\x03\xc4\x05\xb8\x42\x54\xed\x02\x3c\x4f\x14\x87\x07\x88\x58\x69\x19\x71\xd3\xf4\x97\x2a\x81\x13\xec\xcf\x8e\xeb\x52\x03\xd3\xe5\x9f\xbe\x9b\x29\x4e\xcc\xa4\xc0\x08\xc0\x3b\xee\x19\x9b\xef\x06\x40\xf4\x3e\x75\x00\x08\x9e\x77\x0c\xce\xb9\xd1\x65\x6b\x6d\x00\x31\x39\x00\x3c\xf3\x23\xf8\xe9\x74\xea\x2d\x56\x55\xf5\x80\x68\x9a\x68\xdf\x85\x22\x7b\x70\xce\x0d\x02\x07\x05\xbb\x73\x0e\x00\x21\x1c\xc7\x6c\xf2\xcc\xec\x89\xc8\xdf\x9b\xef\xe5\x45\x44\x9e\x99\xfd\x48\x93\xa6\x01\x6c\x36\x9b\xb7\xc1\xc3\xf5\x67\x6f\x4c\x61\xe3\x76\x59\x6b\xa3\x69\xad\xb5\xb1\x9e\x63\xb7\xe5\x13\xc6\xde\x7a\x5a\xf1\x8e\x01\xf0\xfd\x31\xa8\x2a\xc0\xcc\x40\x44\x2f\xd7\x89\x08\x98\x79\xe6\x0a\x3c\xa9\xae\xeb\x51\x08\x22\x82\xba\xae\xfb\x46\x99\x63\x0e\xc8\xed\x1e\x0f\x83\x26\x40\x0c\x82\x65\xeb\x81\x91\xa9\x17\xa3\x57\xe3\x7a\x5e\x00\xc4\x64\x68\x4c\xca\x48\x24\x29\x7b\x15\x80\xe6\x18\x34\x7b\x0b\xcd\xb9\x1e\x8f\xc7\xb7\x13\x51\x93\xbd\x1a\x20\x04\xb0\xd6\xc2\xe1\x70\xe8\xd9\xb7\xdb\xad\x3a\xf8\xe4\x51\xbc\xdf\xef\xef\x2d\x70\x01\x91\x4b\xcf\xb6\x08\x40\xff\xff\x8c\x49\xf2\x50\x24\x0d\x11\xc4\x65\x06\xd1\x28\x79\x59\x82\x88\x80\x88\x40\x51\x96\x59\x01\x4c\xfb\xd3\x0e\x8c\xdd\xf9\x3c\xfa\x39\xe8\xfe\x1b\x93\xa5\x02\x44\x04\xd2\x75\x80\x88\x80\x88\x20\x5d\xf7\xef\x53\x32\x5b\x0f\xc8\x45\x12\x5e\x49\x12\x01\x3e\x57\x2b\xe8\x3e\x7e\x6f\x4e\x56\xe5\xf2\x00\x5f\xeb\xf5\x72\x8f\xe3\x9c\x8a\x3d\x3d\x1f\x9a\x2f\x46\x6d\xdb\x46\xfb\x57\x01\xe4\x48\x50\xf5\x6e\x98\xa3\xba\x57\x31\xd1\xa7\x02\x5a\x9f\x06\xbc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x12\xd7\x11\xc8\x25\x02\x00\x00")
func htmlImgIcon32PngBytes() ([]byte, error) {
return bindataRead(
_htmlImgIcon32Png,
"html/img/icon-32.png",
)
}
func htmlImgIcon32Png() (*asset, error) {
bytes, err := htmlImgIcon32PngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/img/icon-32.png", size: 549, mode: os.FileMode(420), modTime: time.Unix(1494513556, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _htmlImgRulerPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xea\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\xe0\xf5\xf4\x70\x09\x62\x60\x60\x60\x65\x60\x60\x68\xe5\x60\x63\x60\x60\x98\x7c\xdf\xc8\x96\x81\x81\x81\x2d\xc9\xdb\xdd\x85\xe1\x3f\x08\x2e\xd8\xbb\x7c\x32\x03\x03\x03\x67\x81\x47\x64\x31\x03\x03\xb7\x30\x08\x33\x32\xcc\x9a\x23\xc1\xc0\xc0\xc0\x5e\xe2\xe9\xeb\xca\xfe\x90\x45\x8e\x4b\x8e\xa1\x37\x26\xee\x11\x03\x03\x83\x64\x89\x6b\x44\x89\x73\x7e\x6e\x6e\x6a\x5e\x09\x83\x73\x51\x6a\x62\x49\x6a\x8a\x42\x79\x66\x49\x86\x82\xbb\xa7\x6f\x40\x78\x23\x9f\x38\x03\x03\x83\x9d\xa7\x8b\x63\x88\xc7\xf1\xe4\x94\x84\x84\x1f\xe7\x1b\x58\x13\x38\x8c\x12\x83\x8f\xb6\x78\x7f\xe5\xb8\x70\xae\x63\xd9\xa4\x42\x93\x17\x27\x78\xad\x8c\x72\xe5\x45\x65\x44\x65\x8c\x9a\x16\x67\xd6\x85\x14\x98\x9c\xed\x0f\x9b\xb8\x78\x6d\x37\x63\x66\x2c\x03\xc3\x1e\x01\xdd\xb5\x0c\x0e\x11\x31\x0c\x0c\x0c\x0c\x9e\xae\x7e\x2e\xeb\x9c\x12\x9a\x00\x01\x00\x00\xff\xff\x9e\x62\x26\xd0\xd6\x00\x00\x00")
func htmlImgRulerPngBytes() ([]byte, error) {
return bindataRead(
_htmlImgRulerPng,
"html/img/ruler.png",
)
}
func htmlImgRulerPng() (*asset, error) {
bytes, err := htmlImgRulerPngBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/img/ruler.png", size: 214, mode: os.FileMode(420), modTime: time.Unix(1494513556, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _htmlIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x5d\x57\xdb\x38\x10\x7d\xef\xaf\x50\xb5\x6f\xec\xda\x6a\x12\x76\x43\x5b\x3b\xe7\xd0\xd0\x42\x68\xcb\x37\x01\xf6\x4d\xb6\xc7\xb6\x8c\x2c\x19\x49\x4e\xe2\xfd\xf5\x7b\x64\xe7\xcb\x21\xd9\x02\xe7\xec\x0b\x91\xc6\x33\x77\xe6\xce\x48\xba\x78\xef\x8f\xce\x87\x37\x0f\x17\x5f\x51\x6a\x72\x3e\x78\xe7\xd9\x1f\xc4\xa9\x48\x7c\x0c\x02\x0f\xde\x21\xe4\xa5\x40\x23\xbb\x40\xc8\xcb\xc1\x50\x14\xa6\x54\x69\x30\x3e\x2e\x4d\xec\x1c\xe0\xf5\x4f\xa9\x31\x85\x03\x4f\x25\x9b\xf8\xf8\xde\xb9\x3d\x74\x86\x32\x2f\xa8\x61\x01\x07\x8c\x42\x29\x0c\x08\xe3\xe3\xd1\x57\x1f\xa2\x04\x5a\x91\x82\xe6\xe0\xe3\x09\x83\x69\x21\x95\x59\x73\x9e\xb2\xc8\xa4\x7e\x04\x13\x16\x82\x53\x6f\xfe\x40\x4c\x30\xc3\x28\x77\x74\x48\x39\xf8\x9d\x05\xd0\x7b\xc7\x41\x37\x29\x20\x1a\xc8\x09\xa0\x1e\xaa\x81\x0d\x4d\x34\xda\xcb\x4b\x6d\xf6\x50\x28\x73\x40\x31\x53\xda\x20\x26\x90\x49\x01\x59\x6e\x9f\x11\x15\x15\x92\x26\x05\x55\xef\x17\xb9\x91\x0d\x6a\x62\xf6\x68\x6c\x40\xed\xd9\x10\x0d\x0d\xa4\xe3\xcc\xb3\x1a\x66\x38\x0c\x7e\xd0\x52\x84\xa9\x8d\x54\x92\x7b\xa4\x31\x36\x0e\x9c\x89\x47\xa4\x80\xfb\x98\x85\x52\x60\x64\xaa\x02\x7c\xcc\x72\x9a\x00\x29\x44\x82\x51\xaa\x20\xb6\x86\x84\x58\x07\xa7\xd7\x75\x6b\x33\x19\xbc\x5b\xf1\xca\x2e\x4b\x50\x15\xba\x1d\xad\x12\xaf\x70\xb5\xa9\x38\xe8\x14\xc0\x2c\xc0\xec\x20\x3e\x11\x42\x33\x3a\x73\x13\x29\x13\x0e\xb4\x60\xda\x0d\x65\x5e\xdb\x08\x67\x81\x26\xd9\x93\xc5\x2c\x19\xe9\xb8\x07\xee\x47\x62\x52\xc8\x41\x93\x80\x6a\x98\x7f\x72\x4a\xe6\x86\x5a\x2f\x4a\x36\x30\x33\xa4\xde\xe7\x10\x31\xea\x63\xca\x79\x5d\xe6\xb2\xca\x2f\x52\x1a\x6d\x14\x2d\x5e\x5e\xa5\xfe\x44\x48\x4e\x67\x61\x24\xdc\x60\x11\x6d\x37\xb6\xd4\xa5\x81\xf4\xdc\x9e\xdb\xb7\xb9\x57\x36\x37\x67\xa2\xa9\x8e\x09\x03\x89\x62\xa6\xf2\xb1\x4e\x69\xef\x60\xdf\xf9\x32\x7e\x60\xec\x7a\xf4\x0d\xbe\x77\xa2\xe3\xfc\xf4\xea\xf0\xb1\x0a\xcb\x93\xc3\x93\xab\xa4\xd7\x3d\xcf\x6f\xc3\xe9\xb4\x2f\x45\xef\xea\x21\x4a\xf6\xc7\xf4\xf7\x8b\xfc\xfa\x46\xff\x43\xbe\xff\x75\x30\x09\xa2\xaf\x59\xba\x5f\x62\x14\x2a\xa9\xb5\x54\x2c\x61\xc2\xc7\x54\x48\x51\xe5\xb2\xd4\xf8\xff\x26\xe5\xd4\x43\xf8\x2f\x6a\xea\xa4\x92\x67\x1d\x76\xa5\xc7\xf7\xe3\x7d\x71\xf4\xe1\xb4\x34\x5c\x1c\x53\xcd\x87\xa7\xe5\xb0\x5f\x4e\xb3\xa8\xbc\xfb\x78\x3d\x56\x3f\x26\x57\x0f\x52\x5e\x14\xdd\xe0\xee\x21\xc9\x93\xd3\xcb\xd1\xfd\x94\x93\xeb\xe2\x57\xd4\xec\x18\x9b\xc3\xfc\xab\x19\x6e\x1e\x8a\x86\xbe\xa5\x53\x32\xc2\x6b\x88\x9a\xc4\x33\xe0\xf9\x2d\x79\x3b\x3e\x5f\x87\x59\xe6\xf0\x48\xf3\x52\xd9\x65\x20\xa3\x6a\x2d\xef\x37\x36\x83\x08\x09\x3a\x09\xa8\x5a\xa5\x15\x74\x82\x42\x4e\xb5\xf6\xf1\xfc\x53\xf3\xe3\x44\x10\xd3\x92\x9b\xc5\x36\xb6\xd1\x8e\x91\xc5\x9c\x0a\x42\x5e\xc4\x96\xa1\xb6\x0c\xca\x04\x28\x27\xe6\x25\x8b\x96\x3e\x6d\xaf\x39\x94\xad\x10\xd4\x9a\x0f\x42\x1e\xdd\xf0\x09\x14\x15\xd1\x82\xee\x6f\x2d\x5f\x84\x3c\x96\x27\x48\xab\x70\xcb\x7b\x41\xb9\xf1\x31\x97\x89\xc4\xa8\x6e\xa3\x8f\x23\xa6\x0b\x4e\xab\x4f\x88\x09\xce\x04\x38\x01\x97\xe1\xe3\x67\xdc\x7e\xac\xd6\x4b\x21\x74\xad\x7a\x12\xb1\xc9\x92\xf0\x6a\xe3\x11\x41\x17\xcb\xdd\x6d\x40\x71\xc9\xb9\x0e\x15\xcc\x55\x64\xd3\x5d\xc9\x69\xed\x92\x02\x4b\x52\xb3\xa3\x69\xa1\xe4\x4e\x1e\x39\xfb\xdb\x3d\xdb\xbe\x05\x15\xc0\x51\xfd\x77\x39\xbf\x1d\x61\x5b\x02\xeb\xc1\x30\x91\x6c\xf8\xcd\x3d\x59\xd4\xf0\x53\x92\x6b\x3c\x68\x35\x66\x4b\xaf\x76\xa5\xb0\x67\x72\x5b\x5b\x9e\xa5\x8a\xed\x15\xe0\x75\xd9\x0b\x84\x75\x26\x2f\xc9\xbf\x61\xd8\x35\xcb\x76\x99\xb1\x94\x06\x54\xfb\xd4\x07\xd2\x18\x99\xaf\xcf\x87\x6e\xbc\x73\x09\x33\x69\x19\xd4\x4f\x5b\x5c\x8a\x8c\x86\x8f\xed\xfb\x89\x37\xb5\x91\x0e\x50\x50\xa1\x6f\x8d\xef\xb6\xf3\x55\x2f\x9f\x49\xdf\xea\xde\xea\x50\xb1\xc2\x34\xb7\x60\x51\xc5\x4b\x94\x8e\xf4\xdc\xae\xdb\x99\x6f\xea\x37\x36\x6b\x6b\x5b\x46\x27\xb4\x01\xb7\x5d\x6e\x56\x3b\x72\xbe\x46\x5c\x3b\xab\xac\x56\x51\x5f\x97\x78\x87\xac\x6e\xeb\xc1\x4b\x15\x27\xdb\x54\xd1\x6c\xab\xd2\xdc\x84\x7f\x8e\x2e\x59\xf0\xa1\xdb\x7f\x9a\x54\xd9\xf5\xcf\xf8\x24\x3b\xff\x49\x7f\x3c\xc6\xe5\xdd\x78\xf6\xf7\xec\xf6\x42\x0c\x4f\x0f\xfb\xbc\x9b\x0f\xef\xce\x46\xc5\xf1\xc7\xfc\x78\x78\x74\x30\x3d\x3e\x1b\x85\x17\x47\xfd\x9b\x19\xdd\xad\x34\x5b\x28\x6e\x4a\xce\x3a\xbf\x6c\x5d\x51\xde\x36\xb2\x06\x62\x71\x87\x5f\xd9\xfe\x1d\xaa\xb5\x81\xdf\x3a\xf4\x4e\xc8\x19\x08\xf3\xf6\x6a\xdb\x12\xf7\x42\x18\x8f\x34\xba\xe7\x91\xe6\xbf\xf9\x7f\x03\x00\x00\xff\xff\xd2\xf6\xb2\xf3\xde\x0b\x00\x00")
func htmlIndexHtmlBytes() ([]byte, error) {
return bindataRead(
_htmlIndexHtml,
"html/index.html",
)
}
func htmlIndexHtml() (*asset, error) {
bytes, err := htmlIndexHtmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/index.html", size: 3038, mode: os.FileMode(420), modTime: time.Unix(1494513556, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _htmlJsLaunchcontrolClientJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x56\x4d\x8f\xdb\x36\x10\xbd\xef\xaf\x98\xf2\x90\xc8\xb0\xaa\xb4\x40\x4f\x76\x85\x1e\x82\x22\x39\x34\x68\xd0\x6c\x81\x02\x8b\x3d\xb0\xf2\x78\x4d\x9b\x26\x59\x72\xb4\x6b\x37\xf0\x7f\x2f\x46\x92\x65\x4a\x96\x5d\x0b\xdb\x63\x75\xb0\x56\xdc\x79\x6f\xde\x7c\x90\xc3\x67\xe9\x41\xcb\xd2\x14\xab\xc2\x1a\xf2\x56\xbf\xd7\x0a\x0d\x41\x0e\xc9\xb2\x34\x05\x29\x6b\x92\x09\x7c\xbd\x03\x00\x10\x65\x40\x08\xe4\x55\x41\x62\x5e\xad\x30\xba\xf4\x1a\x72\x10\xd1\x4a\x28\xbc\x72\x74\xbf\x77\x18\x20\x87\x87\x6a\xfd\xf8\x7c\xed\x7c\x55\xac\x46\x6e\x51\xd4\x7f\xcf\x40\x78\xf9\x22\xd2\x73\x23\xdc\x11\x9a\xa0\xac\x09\x62\x06\x0f\xa2\x96\x2c\x1e\x07\x2c\xb7\xb8\x50\x92\x9d\x0b\xa6\x93\xce\x69\x55\x48\x8e\xe3\x9d\xf3\x21\xab\x81\x5e\xbe\x4c\xd7\xc1\x9a\x9e\xa7\x43\x3a\x4e\xeb\x46\x29\x6f\xed\x0d\x72\x1b\xc3\x7f\x97\x4b\xb8\xa3\x4a\xe7\x20\xf5\x58\x7d\x1e\xa5\x26\x5b\x16\xab\x1b\x24\x46\xb6\x20\x2c\xd1\x18\xb1\x97\xfc\x8c\xd5\xfb\x6c\xfd\xdf\x78\x83\xd6\xda\x6e\x84\xc0\x21\xe2\xb1\xe2\x06\xfa\x65\x48\x5b\x65\x36\xae\x2f\xff\x83\x4e\xe4\x48\x6f\x10\x47\xbb\xdb\xeb\xaa\xa5\x7a\xad\xaa\x22\x3c\xdf\x20\x8a\xad\x6e\x14\x75\x4e\xd8\x48\x7a\x9c\xdf\x9d\x8e\x1f\xa4\xdf\xab\x33\xa9\x3d\xc0\xca\x49\xa4\xb5\x3e\xaf\xca\xfa\xb8\x3a\x44\x38\xa7\xe5\x3e\x46\x2d\x95\xc6\x14\x0a\xa9\xf5\x9f\xb2\xd8\xc4\x14\x6c\xdd\x06\xc1\x10\xa5\x31\xe3\xd0\xb3\xe0\xb4\xa2\xe4\x6d\xf6\x76\x92\x39\xeb\x92\xc9\xbc\x83\x69\x23\x82\x1c\x9e\x90\x3e\x1d\x3f\x93\x96\x2c\x02\xac\x88\xdc\x67\x1b\x28\x29\xbd\x9e\x8a\x77\xcf\xdf\x73\x49\xf6\x22\x85\x5a\x57\xcb\x15\x49\x3c\x8f\x29\x90\x75\x71\x4c\x43\xd1\xb0\xa3\x0f\x18\xf9\x61\x90\xb8\x4a\xeb\x24\x8f\x82\xb1\xbc\x15\xea\x3a\xb1\xc7\x50\x6e\xc7\x33\xd7\xb0\xeb\xd4\x61\xa3\x3a\xa9\x20\xb5\xbd\x50\xde\xf3\x84\x6c\x94\xfb\xc9\xe5\x62\xca\x98\xa9\xd8\x86\xeb\x9e\x1a\x7c\xa7\x03\xbd\xbe\xdc\x4a\xbb\xad\xfe\x48\xc4\xe2\x0c\xbe\xc0\x1f\x9f\x7e\xe1\xaf\xdf\xf0\xaf\x12\x03\xc5\x2d\xd4\xd8\x65\xd6\x78\x94\x8b\x7d\x20\x49\x58\xac\xa4\x79\xea\x24\x6c\xd2\xdb\x97\x6a\x09\xc9\x11\x59\xe1\xbe\x30\x0e\xf2\x1c\x7e\x98\x9c\x6d\x3a\xb5\x6c\x13\x0e\x6f\xde\x00\xed\x1d\xda\x65\x2b\x9c\x41\xe2\xe8\x48\xf4\x1d\x1d\x9f\xa3\x75\xe4\x35\x38\x6b\x02\xde\xe3\x8e\xd2\x36\x0a\x96\x5f\x86\x28\xbc\x76\x4b\xb7\x2b\x87\x81\xd8\x1d\x9a\x44\x7c\xf8\xf9\x5e\xa4\x50\x25\x95\x7c\x89\x03\x39\x0a\x68\x16\x89\x29\xb5\xbe\x50\x1f\xde\x59\x67\x05\x5a\x48\x92\x29\xf0\x45\x08\x0d\xf5\xf6\xd6\xff\x35\x7b\x65\xcd\x3e\xff\xfa\xe5\x52\xd1\x38\xdc\x28\xeb\xf0\x4d\x9e\x43\x55\xbb\x9e\xda\x53\x71\xa9\x49\xf5\x47\x94\x0b\xf4\x89\x78\x5f\xa3\xbf\xad\xc6\x45\xa7\x84\x91\x9b\xc3\x70\x97\x70\xd5\x07\xba\x24\x3e\xa0\xe3\x5a\x9d\xce\xea\x48\xdd\xd2\x7a\x48\x18\xa5\x20\x87\xef\xe6\xa0\xe0\xc7\xf8\x1a\x9c\x69\x34\x4f\xb4\x9a\x83\x9a\x4e\xfb\x41\x75\x6f\xcc\x90\xc7\xb8\x07\xf5\xd8\xcd\x75\xeb\x67\x5d\xfb\x59\x77\xfc\x64\xa7\xc9\x3a\x87\xf5\xb9\xab\x63\xae\x07\x11\x0f\xeb\x47\xee\x95\xc1\xf0\xe2\xc7\x23\x95\xde\xc4\x5e\xdb\x51\x74\xad\x2f\x7a\x5d\x72\xd7\xa3\xe3\x72\x77\x6b\xd0\xfc\xa3\x33\xb8\x67\xcd\x70\x3f\xdd\x01\x78\x26\xce\xaa\xdf\xd3\x1a\xcf\xaf\x59\xf5\x1b\xd9\xf1\xec\x99\xd5\xaf\x34\x72\xce\x73\x63\xd6\xbc\x23\x86\x8d\x62\x86\x8d\x6a\x18\x0e\xf3\xbb\xc3\x84\xb7\xf5\x3f\x01\x00\x00\xff\xff\x5d\xe5\x08\x57\x2f\x0d\x00\x00")
func htmlJsLaunchcontrolClientJsBytes() ([]byte, error) {
return bindataRead(
_htmlJsLaunchcontrolClientJs,
"html/js/launchcontrol-client.js",
)
}
func htmlJsLaunchcontrolClientJs() (*asset, error) {
bytes, err := htmlJsLaunchcontrolClientJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/js/launchcontrol-client.js", size: 3375, mode: os.FileMode(420), modTime: time.Unix(1494513556, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _htmlJsLaunchcontrolJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\x3f\x6f\xb3\x30\x10\xc6\x77\x3e\xc5\xc9\x6f\xa4\x18\x05\x19\xbd\x6b\x22\x86\xaa\x5b\x87\x76\xc8\xd0\xd9\x31\x17\x40\x35\x3e\xca\x19\xa2\xa8\xca\x77\xaf\xf8\x6b\x5a\x95\xc9\xcf\xfd\x7c\x8f\x1e\x7c\xb7\x93\x39\x99\xae\x46\xe7\x63\xd5\xa2\xce\xef\xf2\xda\x39\xe3\x2b\x72\xd2\x92\x49\xc0\xd8\x6a\x60\xf0\x15\x01\x00\xec\x3b\x46\x60\xdf\x56\xc6\xef\x4f\xd1\x58\xea\x75\x0b\x86\x9c\x6f\xc9\x32\x64\xb0\x93\x20\xfe\x2d\x5a\x40\xac\x96\xb3\x9c\x1c\x86\xaf\xb1\xfa\x7e\x9c\x9d\x55\x8b\xdc\xd5\x98\x04\xa8\x3b\xc6\x95\x8e\x2a\x40\xf6\xd4\xac\x6c\x10\x01\x59\xd2\x79\x68\xb3\xfa\x3e\xa1\x47\xbc\xc9\x79\xb5\xc8\xa5\xad\x8a\xd2\x2f\x49\x43\x65\xc8\x1a\x94\x8c\x4f\x63\x97\x21\xc7\x64\x51\x59\x2a\xa4\x78\x32\x9f\x5d\xd5\x56\xae\x80\x1b\x5e\x98\xcc\x07\x7a\x31\xdf\x1b\xdc\xad\xee\x9c\x29\xcf\x63\x1d\x32\x70\x78\x83\x77\xbc\x4c\x5a\x8a\x1b\x1f\xd3\x54\xc0\x01\x2c\x19\x55\x12\x7b\x38\x80\x48\xfb\xff\xe9\x4f\xa3\xad\x89\x22\x57\x23\xb3\x2e\x10\x32\x58\xc7\x82\xfd\x66\x20\xbf\x33\x8e\x50\xe5\xda\xeb\xd9\x6f\x09\xa7\xc7\x66\xc8\xe0\xe5\xfc\xf6\xaa\x1a\xdd\x32\xfe\x7d\x39\xbc\xc1\xf6\x39\x44\x4d\x3d\x8a\x64\xb6\x51\x0d\xf1\x7a\xe6\x26\x9f\xdb\x1f\xd1\x63\x58\x1a\x3d\x94\x93\xf9\x4f\xe6\xf1\x3f\x4f\x6b\x14\x9f\xa2\xef\x00\x00\x00\xff\xff\x15\x0b\xe2\x81\x71\x02\x00\x00")
func htmlJsLaunchcontrolJsBytes() ([]byte, error) {
return bindataRead(
_htmlJsLaunchcontrolJs,
"html/js/launchcontrol.js",
)
}
func htmlJsLaunchcontrolJs() (*asset, error) {
bytes, err := htmlJsLaunchcontrolJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/js/launchcontrol.js", size: 625, mode: os.FileMode(420), modTime: time.Unix(1494513556, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _htmlJsUiControlsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\xdf\x6f\xea\x38\x16\x7e\xf7\x5f\x71\x14\x5d\x69\xe0\x6e\x0a\x33\xb3\x0f\x2b\xb5\xea\x43\x08\xa6\x58\x4a\x13\x26\x31\xed\x54\xab\xd5\xca\x24\x06\x3c\x37\xd8\x91\xe3\xb4\x42\xab\xfb\xbf\xaf\x8e\xa1\x2d\xd0\xcc\xdd\x3b\x7b\x79\x89\x39\x3e\xe7\x7c\xdf\xf9\x91\x0f\x31\xfe\x4c\x48\x22\xba\x72\x5b\x1a\xed\xac\xa9\x61\xc9\x20\x3e\x1c\x5b\xb2\x75\xae\x69\xaf\xc7\xe3\x8d\x72\xdb\x6e\x35\x2a\xcd\x6e\xbc\xee\xf4\x1f\xa2\xfc\x32\xae\x45\xa7\xdf\x82\x08\x89\x4d\xb3\xb7\x6a\xb3\x75\xf0\xeb\xcf\xbf\xfc\x03\x66\x07\x2f\x42\x72\x59\xa9\xd6\x59\xb5\xea\x9c\x32\x1a\x84\xae\xa0\x6b\x25\x28\x0d\xad\xe9\x6c\x29\xbd\x65\xa5\xb4\xb0\x7b\x58\x1b\xbb\x6b\x43\x78\x51\x6e\x0b\xc6\xfa\xa7\xe9\x1c\xd9\x99\x4a\xad\x55\x29\x30\x41\x08\xc2\x4a\x68\xa4\xdd\x29\xe7\x64\x05\x8d\x35\xcf\xaa\x92\x15\xb8\xad\x70\xe0\xb6\x12\xd6\xa6\xae\xcd\x8b\xd2\x1b\x28\x8d\xae\x14\x06\xb5\x3e\x68\x27\xdd\x35\xf9\x65\x04\xe7\x8c\x5a\x30\xeb\x57\x2a\xa5\xa9\x24\xec\xba\xd6\x81\x95\x4e\x28\xed\xf3\x89\x95\x79\xc6\xab\xd7\xf2\xb4\x71\xaa\x94\x21\xb8\xad\x6a\x49\xad\x5a\x87\x09\x4e\xa1\x74\x75\xc1\xa3\x52\x6d\x59\x0b\xb5\x93\x76\x44\x7e\xfd\x88\xaf\xf4\x69\xfd\xaf\xf8\x8d\x35\x55\x57\xca\x6f\x51\x20\x48\x01\xfe\x22\x05\x38\x96\x55\x99\xb2\xdb\x49\xed\x7c\x57\x89\xd0\xd5\xd8\x58\x30\x6e\x2b\x2d\xec\x84\x93\x56\x89\xba\x7d\xef\xae\x1f\x89\x0f\x3b\xa1\x3e\x22\x7f\x1f\x41\x2a\x95\x0f\xc2\x4b\x2d\x76\x12\xa9\xe0\xf9\x9d\xed\xd6\xd4\x95\xb4\xa0\xcd\xbb\x93\x6f\xba\x72\x2d\xf8\xf5\xc1\x74\xc6\xb6\x64\x27\xf6\xb0\x92\xb8\x1e\x15\x38\x03\x52\x57\xc6\xb6\x12\x37\xa1\xb1\x66\x67\x9c\x84\x43\x53\x5c\x0b\x95\xb4\xea\x59\x56\xb0\xb6\x66\xe7\x27\x01\xad\x59\xbb\x17\x1c\xf3\xeb\xd6\xb4\x8d\x2c\x71\x6d\xa0\xb1\x0a\x97\xc9\xe2\xc2\xe8\xc3\xea\xb4\xad\xa7\xcf\xe7\xac\x80\x22\x9b\xf1\xc7\x28\xa7\xc0\x0a\x58\xe4\xd9\x03\x9b\xd2\x29\x4c\x9e\x80\xcf\x29\xc4\xd9\xe2\x29\x67\x77\x73\x0e\xf3\x2c\x99\xd2\xbc\x80\x28\x9d\x42\x9c\xa5\x3c\x67\x93\x25\xcf\xf2\x02\x82\xa8\x00\x56\x04\x78\x41\xa2\xf4\x09\xe8\xef\x8b\x9c\x16\x05\x64\x39\xb0\xfb\x45\xc2\xe8\x14\x1e\xa3\x3c\x8f\x52\xce\x68\x11\x02\x4b\xe3\x64\x39\x65\xe9\x5d\x08\x93\x25\x87\x34\xe3\x90\xb0\x7b\xc6\xe9\x14\x78\x16\x7a\xd0\x63\x18\x79\x0f\x83\x6c\x06\xf7\x34\x8f\xe7\x51\xca\xa3\x09\x4b\x18\x7f\xf2\x44\x66\x8c\xa7\x88\x35\xcb\x72\x88\x60\x11\xe5\x9c\xc5\xcb\x24\xca\x61\xb1\xcc\x17\x59\x41\x21\xca\x29\x99\xb2\x22\x4e\x22\x76\x4f\xa7\x23\x60\x29\xa4\x19\xd0\x07\x9a\x72\x28\xe6\x51\x92\xf4\x56\x89\xdc\xcf\x6a\x9c\x50\x48\x58\x34\x49\x28\xf1\x48\xe9\x13\x4c\x59\x4e\x63\x8e\xe5\xbc\x9f\x62\x36\xa5\x29\x8f\x92\x10\x8a\x05\x8d\x19\x1e\xe8\xef\xf4\x7e\x91\x44\xf9\x53\x78\xcc\x59\xd0\xdf\x96\x34\xe5\x2c\x4a\xc8\x34\xba\x8f\xee\x68\x01\x83\xff\xd1\x92\x45\x9e\xc5\xcb\x9c\xde\x23\xe7\x6c\x06\xc5\x72\x52\x70\xc6\x97\x9c\xc2\x5d\x96\x4d\xb1\xd1\xa4\xa0\xf9\x03\x8b\x69\x71\x03\x49\x56\xf8\x6e\x2d\x0b\x1a\xc2\x34\xe2\x91\x07\x5e\xe4\xd9\x8c\xf1\xe2\x06\xcf\x93\x65\xc1\x7c\xd3\x58\xca\x69\x9e\x2f\x17\x9c\x65\xe9\x10\xe6\xd9\x23\x7d\xa0\x39\x89\xa3\x65\x41\xa7\xbe\xbb\x59\xea\x4b\xe5\x73\x9a\xe5\x4f\x98\x14\x7b\xe0\x9b\x1f\xc2\xe3\x9c\xf2\x39\xcd\xb1\xa1\xbe\x53\x11\xb6\xa0\xe0\x39\x8b\xf9\x89\x1b\xc9\x72\xe0\x59\xce\x4f\x6a\x84\x94\xde\x25\xec\x8e\xa6\x31\x45\x36\x19\x66\x79\x64\x05\x1d\x42\x94\xb3\x02\x1d\xd8\x01\xf6\x31\x7a\x82\x6c\xe9\x4b\xc6\x19\x2d\x0b\x4a\xfc\xf1\x64\x63\x43\x3f\x49\x60\x33\x88\xa6\x0f\x0c\x69\x1f\x9d\x17\x59\x51\xb0\xe3\x9e\xf8\x96\xc5\x73\x38\xb4\x7b\x44\xc8\xe7\x31\x21\x37\x83\x75\xa7\x4b\x7c\x87\x07\x9f\x42\x94\x82\x21\xfc\x87\x00\x00\x04\xa8\xcd\xf8\x86\x97\x2e\xb8\x21\xde\x34\xfe\xec\x1f\xf0\x19\x8e\x5a\xdf\xc2\x8b\xaa\x36\xd2\x1d\xcd\xaf\xb7\x8b\x5a\xec\xa5\x7d\x75\x82\x55\xe7\x9c\xd1\xed\xe8\xdc\x6b\xec\x9f\x9f\x46\x87\x0c\x03\x08\xce\x7e\x45\x46\xaf\x08\x41\x78\xe4\x83\x1f\xd3\x78\x55\xbb\x3e\x31\xe1\xa7\xa9\xc5\xfe\x1a\x74\x57\xd7\xe1\xb9\x5d\x74\xad\xec\xbb\x68\x9d\x69\xfa\xec\x2b\x51\x7e\xe9\xb3\xaf\x8d\x7d\x11\xb6\xea\xbb\xaa\x8d\xf8\x60\xff\x1a\x92\xb7\xf3\xbf\x4b\x2b\x85\x93\xd7\xf0\xd6\xe6\xe1\x05\xfb\x67\x61\x61\x75\x67\x4d\xd7\xc0\x2d\x0e\x60\x74\x88\xa0\xb5\x44\x51\x1e\x04\x95\x7a\x0e\x86\x37\xe7\x3c\xbd\xfb\xa8\xac\x45\xdb\xa6\xa8\xb4\xb7\x10\xac\x9c\xbe\xda\xa0\x39\xe8\xf5\x6d\xa5\x8b\xdc\x41\x60\xe5\x20\xb0\xa6\x96\x41\x08\xc1\x21\xa0\x3f\xfb\x79\x84\xb0\x4a\x5c\xd5\x62\x25\x6b\x8c\x7b\x9b\xce\xf0\x86\x7c\x28\x46\xe9\xa6\x73\xfd\xb5\xf8\xab\x4b\x3c\x6f\xbc\x80\x73\xfb\xc6\x13\x5c\xab\x5a\xfe\x89\xbf\xdb\xd7\x72\x54\xa9\x16\xa7\x8f\x0d\xd0\x46\xcb\xfe\xda\x45\xd3\x48\x5d\xc5\x5b\x55\x57\x03\x1f\xdc\xc7\x1a\x91\xe0\x16\x3e\x0d\x8e\xfc\x2f\x40\xd1\x05\x67\x3d\xeb\x74\x09\xb7\xfe\x87\x66\x74\x5c\xc7\x11\xda\xcf\xbd\x31\xd9\xa8\xdc\x0a\xbd\x91\x83\xd3\xc1\xbf\xa5\x18\x78\x8f\xc6\x9a\x66\xf0\x13\x1e\xdb\x9f\x86\xff\xfc\xf9\x5f\xc3\x1b\xf8\xda\x3f\x8c\xd3\x12\x3c\xf6\x71\xaf\x26\xfe\xdd\x1a\x04\x9b\x7a\xdf\x6c\x55\x69\xf4\x95\x69\xa4\xbe\xf2\x6d\x3b\x5f\xd4\x33\x7a\xa7\x94\x3c\x13\x67\xd5\x66\x23\xed\x20\x28\x6b\x55\x7e\x09\x3c\x91\xcb\x2e\x8d\xc7\x7f\x99\x0c\xbe\x50\xf8\xe6\x5c\x70\x19\x8f\x4f\xbf\x9d\xf5\x12\x23\x86\x3f\xda\x03\x5c\x89\x6f\x94\x7f\x06\x88\xbe\x3f\x0e\x88\x4a\xf3\xdd\x88\xe8\xfc\xc3\x90\xa8\x61\xdf\x8b\x88\xbe\x97\x80\xff\xc7\x34\x8f\x32\xf8\xfd\xc3\x3c\x06\x5c\x42\x7b\x1f\x79\xd0\x84\x23\xfc\xe0\x40\xe6\xc4\xb1\x47\x44\x0f\x8c\x4e\xa4\xd4\x53\x0b\xa1\x14\x75\xed\xf7\xa6\x4f\x59\x7d\x4c\xbf\x1a\x1d\xee\x3e\xc8\x9f\xb7\x7e\x10\x57\x40\x81\xad\xe4\x5a\x74\xb5\xbb\x94\x99\x43\x44\xbf\x82\x7d\x13\xc4\x68\xff\xbe\xc1\xed\x5b\x0d\x3d\xca\xd4\x36\xe2\x4f\x0a\xc0\x9b\xcb\xcc\x68\x3b\x27\xff\x36\x40\x08\xe0\x6f\xe0\xbf\xf5\x84\xf4\xc8\xfd\x56\x55\x95\xd4\x58\x84\xb3\x9d\xfc\xa0\xf5\xc7\x1a\x4e\xf7\x07\x33\x5d\xf0\xb1\xd2\x75\x56\x1f\x9d\x4f\xa7\xeb\x1f\x98\xf3\xeb\x70\xf0\xc7\x6f\x9d\xb4\xfb\xf0\xed\xaf\xc8\xf0\x86\xfc\x37\x00\x00\xff\xff\xcf\xd9\xc1\x29\x8d\x0e\x00\x00")
func htmlJsUiControlsJsBytes() ([]byte, error) {
return bindataRead(
_htmlJsUiControlsJs,
"html/js/ui/controls.js",
)
}
func htmlJsUiControlsJs() (*asset, error) {
bytes, err := htmlJsUiControlsJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/js/ui/controls.js", size: 3725, mode: os.FileMode(420), modTime: time.Unix(1494513556, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _htmlJsUiLaunchJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\x7b\x6f\xe2\xc6\x16\xff\xfb\xfa\x53\x9c\xa2\xad\x16\x52\xc7\x26\xa9\x56\xf7\x16\x96\xad\x1c\x70\x82\x25\x82\xa9\x6d\x92\x46\x55\x55\x0d\xf6\x00\xb3\x6b\x7b\xac\x99\x71\x72\xd1\x2a\xdf\xfd\x6a\xc6\x0f\x8c\x21\x8f\x56\x37\x7f\x2c\xf6\xf8\x3c\x7f\xe7\x31\x67\x66\xcd\x33\x4d\x9b\xa1\x3c\xdc\x86\x34\x15\x8c\xc6\xb0\x74\xe0\x3a\xc6\x7c\x1b\x93\xcd\x56\x68\x5b\x21\x32\x3e\x30\xcd\x0d\x11\xdb\x7c\x65\x84\x34\x31\xd7\x79\xfa\x15\x85\xdf\xcc\x18\xe5\x69\xcd\xa6\x69\x63\x9a\xed\x98\xe4\x81\xcb\xfe\xc5\xbf\xe1\xba\xa0\xd2\x34\x0f\x47\x84\x0b\x46\x56\xb9\x20\x34\x05\x94\x46\x90\x73\x0c\x24\x05\x4e\x73\x16\x62\xb5\xb2\x22\x29\x62\x3b\x58\x53\x96\x70\x1d\x9e\x88\xd8\x02\x65\xea\x97\xe6\x42\x4b\x68\x44\xd6\x24\x44\x52\x80\x0e\x88\x61\xc8\x30\x4b\x88\x10\x38\x82\x8c\xd1\x47\x12\xe1\x08\xc4\x16\x09\x10\x5b\x0c\x6b\x1a\xc7\xf4\x89\xa4\x1b\x08\x69\x1a\x11\xc9\xc4\x15\x53\x82\xc5\x40\xbb\x30\xe0\xd0\x22\x0e\x74\x5d\x99\x12\xd2\x08\x43\x92\x73\x01\x0c\x0b\x44\x52\x25\x0f\xad\xe8\xa3\xfc\x54\xb9\x97\x52\x41\x42\xac\x83\xd8\x12\xae\xc5\x84\x0b\x29\xa0\xa9\x2a\x8d\x5a\x76\x44\x84\x87\x31\x22\x09\x66\x86\x76\x79\xac\x9f\xa4\x4d\xff\x2b\xfd\x19\xa3\x51\x1e\xe2\xd7\x4c\xd0\xa4\x09\xf0\x37\x4d\x80\xd2\xad\x88\x86\x79\x82\x53\xa1\x50\xd5\x50\x1a\x99\x94\x01\x15\x5b\xcc\x20\x41\x02\x33\x82\x62\xbe\x47\x57\x85\x44\xb1\x35\x4c\x37\xb4\x9f\x0d\x98\x63\xa2\x98\xe4\xc7\x14\x25\x58\x9a\x22\x9f\xf7\xd6\x6e\x69\x1c\x61\x06\x29\xdd\x13\x29\xd0\x89\xe0\xa0\xd2\x47\x8a\xa3\x8c\x6b\x09\xda\xc1\x0a\xcb\xf4\x88\x40\x50\xc0\x69\x44\x19\xc7\x32\x13\x32\x46\x13\x2a\x30\x14\xa0\x08\x0e\x11\x66\xe4\x11\x47\xb0\x66\x34\x51\x91\x00\x4e\xd7\xe2\x49\x86\xb9\xca\x1a\x9e\xe1\x50\xa6\x0d\x64\x8c\xc8\x64\x62\x32\x61\xd2\x22\x75\x38\x57\xe6\x07\x53\xc7\x07\xdf\xbd\x0e\xee\x2d\xcf\x06\xc7\x87\x85\xe7\xde\x39\x13\x7b\x02\x57\x0f\x10\x4c\x6d\x18\xbb\x8b\x07\xcf\xb9\x99\x06\x30\x75\x67\x13\xdb\xf3\xc1\x9a\x4f\x60\xec\xce\x03\xcf\xb9\x5a\x06\xae\xe7\x43\xc7\xf2\xc1\xf1\x3b\xf2\x83\x66\xcd\x1f\xc0\xfe\x7d\xe1\xd9\xbe\x0f\xae\x07\xce\xed\x62\xe6\xd8\x13\xb8\xb7\x3c\xcf\x9a\x07\x8e\xed\xeb\xe0\xcc\xc7\xb3\xe5\xc4\x99\xdf\xe8\x70\xb5\x0c\x60\xee\x06\x30\x73\x6e\x9d\xc0\x9e\x40\xe0\xea\x4a\x69\xc9\xa6\xed\xd9\xc0\xbd\x86\x5b\xdb\x1b\x4f\xad\x79\x60\x5d\x39\x33\x27\x78\x50\x86\x5c\x3b\xc1\x5c\xea\xba\x76\x3d\xb0\x60\x61\x79\x81\x33\x5e\xce\x2c\x0f\x16\x4b\x6f\xe1\xfa\x36\x58\x9e\xad\x4d\x1c\x7f\x3c\xb3\x9c\x5b\x7b\x62\x80\x33\x87\xb9\x0b\xf6\x9d\x3d\x0f\xc0\x9f\x5a\xb3\xd9\x49\x2f\xa5\xed\x07\x3e\x5e\xd9\x30\x73\xac\xab\x99\xad\x29\x4d\xf3\x07\x98\x38\x9e\x3d\x0e\xa4\x3b\xfb\xa7\xb1\x33\xb1\xe7\x81\x35\xd3\xc1\x5f\xd8\x63\x47\x3e\xd8\xbf\xdb\xb7\x8b\x99\xe5\x3d\xe8\xa5\x4c\xdf\xfe\x6d\x69\xcf\x03\xc7\x9a\x69\x13\xeb\xd6\xba\xb1\x7d\xe8\xbe\x01\xc9\xc2\x73\xc7\x4b\xcf\xbe\x95\x36\xbb\xd7\xe0\x2f\xaf\xfc\xc0\x09\x96\x81\x0d\x37\xae\x3b\x91\x40\x6b\xbe\xed\xdd\x39\x63\xdb\x1f\xc2\xcc\xf5\x15\x5a\x4b\xdf\xd6\x61\x62\x05\x96\x52\xbc\xf0\xdc\x6b\x27\xf0\x87\xf2\xf9\x6a\xe9\x3b\x0a\x34\x67\x1e\xd8\x9e\xb7\x5c\x04\x8e\x3b\xef\xc1\xd4\xbd\xb7\xef\x6c\x4f\x1b\x5b\x4b\xdf\x9e\x28\x74\xdd\xb9\x72\x35\x98\xda\xae\xf7\x20\x85\x4a\x0c\x14\xf8\x3a\xdc\x4f\xed\x60\x6a\x7b\x12\x50\x85\x94\x25\x21\xf0\x03\xcf\x19\x07\x0d\x32\xcd\xf5\x20\x70\xbd\xa0\xe1\x23\xcc\xed\x9b\x99\x73\x63\xcf\xc7\xb6\xb4\xc6\x95\x52\xee\x1d\xdf\xee\x81\xe5\x39\xbe\x24\x70\x0a\xb5\xf7\xd6\x03\xb8\x4b\xe5\xb2\x8c\xd1\xd2\xb7\x35\xf5\xd8\xc8\x58\x5d\x45\x12\x9c\x6b\xb0\x26\x77\x8e\x34\xbb\x24\x5e\xb8\xbe\xef\x94\x79\xa2\x20\x1b\x4f\xa1\x80\xdb\xd0\xb4\x33\x53\xd3\x86\xdd\x75\x9e\x86\xb2\x86\xbb\x1f\x74\xd9\x0a\x64\xd3\x4d\x7b\xf0\x5d\x03\x00\xe8\xc8\x06\x2d\xcb\x3c\x14\x9d\xa1\xa6\x96\xcc\x33\xf5\x03\x67\xb0\xae\x37\x07\x78\x22\xd1\x06\x8b\xf2\x43\xf5\xdd\x27\x49\x1e\x23\x81\xb9\x2a\xf6\x84\x3e\x62\xd9\x65\x54\xc1\xa3\xc6\xce\x02\x09\xcd\x53\xd9\xc0\x49\x0a\x08\x66\x6a\x2f\x31\x5a\xa2\xee\x49\x1c\x43\xc8\x30\x12\x18\x56\x31\x0d\xbf\x71\xc0\x71\x29\x4e\xb1\x6d\xc8\x23\x4e\xab\x35\x1d\x38\x2d\x9a\x67\xd5\x43\xe4\x76\x53\xc9\x52\xfc\x15\x29\xc4\xe4\x1b\x86\xcf\x11\x79\xfc\xd2\xd2\x69\xaa\xdf\x0f\x46\xe1\x5a\x17\x3a\x07\xbb\x9c\xb1\x77\xbe\xa3\x97\x60\xc9\x3f\x9a\xa9\xbe\x3b\x68\x2c\xc9\x3f\x96\xc7\x98\x0d\x40\xb0\x1c\xeb\x87\x1f\x50\xba\xc1\x03\xe8\x1b\x97\x97\x3a\x98\xa6\x44\x8a\x61\x20\x1c\x2e\x2f\x7f\x94\x40\x55\xa8\x35\xda\x2e\x5e\xa3\x3c\x16\x40\x12\xb4\xc1\xdc\x38\x56\xe3\x24\x9b\x01\x74\x48\xb2\x31\xd5\xab\x91\xa5\x9b\xce\xa1\xd2\xbd\xed\x7b\xda\xfd\x5a\x8b\xe1\x59\xd7\xea\xe7\xbf\x8a\x10\x0c\xa0\xce\x99\x5e\xcb\xd1\x47\xc4\x20\x9c\x90\x47\x18\xc9\x5c\x32\x0a\x7a\xbb\xc0\xba\xdb\x89\xc8\x63\xa7\x37\x3c\x60\x90\xc4\x46\x18\x23\xce\xe7\x72\xcb\x18\x41\x27\x3c\x6f\x60\x3b\xd4\x8e\xc4\x2b\xaf\x4e\xcb\x27\xc9\xa6\x2d\xbf\xc0\xe0\x40\x01\x3d\x57\x8b\x9d\x53\x84\x9c\x85\x30\x52\xdb\x88\x51\x86\xd2\xa8\x40\x1d\x6a\xff\x92\x74\xea\x5b\x65\xc3\x87\xae\x7a\xea\x1d\x5b\xd9\x28\x8e\xf7\x9a\xda\x08\x41\xcb\xde\x03\x40\x5e\x60\x39\x61\xf9\x41\x9c\x9b\xe6\x1f\x18\xf7\xa1\xbb\x7f\x6d\x39\xa2\x82\x83\xb2\x0c\xa7\xd1\x78\x4b\xe2\xa8\xf4\xf6\x44\x04\x9b\x44\x0d\x71\x87\x94\x4a\x77\x59\x78\x25\x47\x57\x72\xf7\x5a\x51\x26\x6b\xe8\xfe\x70\x1c\x83\x76\xae\x1d\x46\xc3\x58\xa3\x08\xbb\xb9\xe8\xf6\x5b\x5a\x9f\x4f\xa6\xb2\x69\xaa\xda\x92\xd3\x85\xa0\x75\x03\xc9\x28\x27\xc5\x70\x2a\xea\x35\x9e\x61\x1c\x19\x0d\xc6\xa6\x8c\x8a\x61\x00\x59\x8c\x42\x25\xae\x12\x4b\xd4\x84\x11\xca\xe2\xed\xf6\xcf\x2f\xfa\xfd\x5e\x53\x48\x21\x76\x50\xfc\xd4\x6c\x48\x1c\xb0\x5d\xb6\xf9\x24\x51\xa3\xfa\x2a\xed\x7a\x21\xa6\x0d\x50\xed\xcd\x68\xff\xf8\x19\xfa\xf0\x2b\xf4\x61\x50\x2f\x0d\xdf\xe4\xf9\x02\x17\x7d\xc9\x25\xff\x7d\x89\xaf\xf0\x63\x54\xfe\x7e\x86\x4b\xc9\x70\x29\xe9\xd5\xca\x6b\xc4\x87\xe2\x4b\xf2\xa3\x82\xca\x8e\xea\x52\xb6\x4e\x38\x7b\xc1\x1e\xc9\x12\xe5\x0c\x95\xbe\x28\x4e\x89\xde\xa4\x5c\x3b\xc2\xee\x44\xaa\x36\xab\x4b\xd0\xac\x2b\xdb\xf7\x1b\x74\x28\x25\x72\x66\xee\x7e\x5f\x51\x21\x68\x32\x80\x3f\xb2\x9f\x3a\x3f\x76\x74\xe8\xc4\x24\xc5\x88\x75\xfe\x7c\xd6\x6b\xbb\x1a\xb2\x5a\xa9\x59\x19\xc7\xe5\xf1\x23\x67\x69\xb1\x85\x86\x39\x63\x32\x2f\xea\xc0\xbc\x96\x62\xfb\xcc\x7c\xb5\x59\x17\x76\x2e\xfe\x2b\xe3\x8d\x18\xc7\xd7\x31\x45\xa2\xdb\x76\x2b\xe4\xbc\xdb\x29\x48\x3b\xbd\xde\x31\xd2\xc5\x26\x39\xc5\x92\xf8\xa4\xac\xaa\xea\x95\xa0\xad\xa2\x3b\x29\xa8\x74\xe7\x0e\xc5\xb9\xec\x7d\xb5\x75\x66\x5b\xc5\x99\x4c\x97\x56\x07\x57\x50\xc1\x2d\x12\x5b\x83\xd1\x3c\x8d\xba\x07\xd2\xcc\x13\xe9\xf3\x72\x04\x9a\xb9\x72\x10\x04\x41\x12\x75\x66\x4d\x48\x1c\x13\x8e\xe5\x59\x8b\x03\x91\x1b\x74\x1c\x83\x40\xdf\xea\x1e\xd0\x94\x26\xe8\x41\x6b\x79\x6f\x4b\x79\x4f\x9c\xf7\xad\xa4\x2e\xac\x37\x5b\x48\xe5\xd8\xfb\x5b\x89\x2a\x27\xc2\x05\x4a\x43\x19\x17\x85\x31\x5a\xf1\x9a\xed\x5c\x61\x5b\xbd\x75\xdb\xa1\x2d\x43\xa3\x88\xfe\x0a\x51\x1c\xd6\x65\x58\x09\x3d\x2e\xc3\x56\x40\x0e\xd8\xea\x88\xd4\x25\xae\x86\x4a\xd5\x43\xdb\xb1\x59\x53\x56\xf5\xf2\xa6\xbc\x4a\xb1\xf9\x6a\x30\x2a\xaa\x01\x20\x35\xa6\xd6\x9d\xfa\xff\xde\xda\x0f\xfc\x6b\x04\xa6\x0d\x10\x7c\x2f\x36\x72\x19\x91\x84\xc4\x55\x30\x32\xfa\xd4\x55\x04\xe6\xe5\xa7\x7e\xbf\xaf\xc3\x79\xdf\xf8\xe5\x53\xaf\xdc\xf5\x4b\xfc\x13\x12\x9b\xdd\x5f\xfa\x66\x25\xb3\xfa\x5c\xcd\xf4\x7b\x17\x02\x77\xe2\xc2\x9a\x6c\x72\x86\x81\xe6\xc5\x75\x0a\xc3\x28\x96\xe9\x4f\xd2\x4d\x71\xb1\xb0\xc2\x5c\xc0\x13\xda\x49\x1f\xa5\xf5\x6a\xda\x97\xa4\x89\xd1\x92\xd7\x16\xef\xd1\x7c\xb3\x85\x04\x23\x9e\xb3\x72\x8c\xff\xb8\xc6\xb1\xf8\x58\xcc\xe3\x08\x62\xba\xb9\xe8\x1b\x86\x01\x83\x9e\x52\x95\xe5\x42\x90\x74\x23\x8b\xfe\x47\x40\xa2\x2d\xef\xe7\x7e\x3f\xe1\xe5\x7e\x8d\x60\x9d\xc7\xb1\x3c\xb5\xd0\x6f\x58\x45\x3f\xa5\x4f\x83\xe3\x6c\xc6\x31\xda\x2d\x30\x5b\x94\x11\x19\x41\x57\x01\xa9\x34\x77\x2f\xfa\x7d\xb3\xc4\xfb\x0c\xfe\x63\x7c\x82\x9f\xe0\xe7\xd3\x39\x5d\x57\xc5\x59\x5b\x64\x09\xee\x99\xf9\x52\x4a\x97\x26\xca\x23\x05\x49\x73\x79\x4e\x2a\x73\x65\x85\xc5\x13\xc6\x29\x88\x27\xd9\x37\x88\x84\x47\x0d\x24\x1c\xbf\xd1\x3b\xb8\x40\x4c\x0c\x8a\x9f\x7d\xfb\x28\xef\x61\x4a\x75\x6f\x35\x13\x41\x33\x18\x00\x96\xa0\xff\x33\x01\xff\x24\xfb\x0b\xd1\x8d\xb4\x57\x2e\xe8\xca\x9a\x17\x5a\xd2\x13\x49\x8d\x30\xc6\x88\x05\x24\xc1\x34\x2f\x37\x1a\x51\xbc\x9c\xd8\x5a\xd6\x71\x39\x07\xb4\x47\x68\x35\x17\xd4\x0a\x4f\x0c\x03\xeb\xb8\x12\x0b\x23\xa5\x96\x63\x51\x29\x7d\x71\x73\x3d\x94\xbd\xf7\x62\x78\x44\xf5\x77\x24\x96\x52\x0b\xb8\x4e\x81\x74\x2c\xfe\x59\xaf\xec\xa8\x9b\x6e\x93\xa1\x3d\x2d\x9f\xa2\x6e\x20\xf3\xca\xcc\x12\xa3\x1d\xb0\x3c\xe5\xf5\x29\xbe\xba\x48\xe6\x62\x17\x63\xe0\x21\x23\x99\x28\x72\x53\x96\x72\x63\xc4\xae\x12\xed\xc5\xb4\x56\xac\x03\x40\x8c\xa1\x9d\x6a\xf5\x61\x79\x61\xbb\xfa\x8a\x43\xc1\x07\x4d\x62\x28\xbf\x1a\x48\x80\x8c\x78\xb5\x5f\x73\xe3\x24\x55\x46\x79\x73\xd6\x7d\x23\xb9\x6b\x36\x9e\xed\x07\xd8\x57\x33\xdb\x34\x81\x0c\x20\xcd\x93\xd5\xfe\xc6\xb5\xf0\x43\xd0\xb2\x50\x91\x68\x8c\x6d\x31\xda\x35\xcb\x40\x79\xae\x03\x69\x27\x03\x91\xae\xed\x32\x4c\xd7\x40\xe0\x87\xd1\x08\x3e\xe6\x69\x84\xd7\x24\xc5\xd1\x47\xf8\x15\x08\x0c\xa0\xff\xee\x1a\x90\x07\x2e\x02\x5f\x46\x25\xd0\x46\x8c\xd3\x8d\xd8\xf6\xe0\x7b\xd9\xe4\x86\x8d\x43\x14\x34\xfb\x27\x8c\xa4\x21\xa3\x91\x3a\x54\x14\xcc\x7f\x90\x3f\x25\xf2\x83\x83\xd7\xf3\xea\xe5\xfc\x42\xbe\x0e\x8f\x0a\xf9\x64\xfe\xbf\x52\x50\xb5\xec\x8c\x72\xbd\xa1\x8a\x67\xa7\x4a\x60\x1d\x1b\x12\xd7\x3d\x9a\x3f\x5d\x1c\xa7\xbd\x72\xe8\xe5\xf4\x56\x7d\x71\x8b\x62\xd9\x8b\xd3\x9d\x4a\x83\xc7\x3a\xa9\xab\x5e\xde\x6c\x68\x34\x7b\x65\xf4\x7e\x6f\xf3\x6a\x19\x21\xe8\x66\x13\x63\x4f\xdd\x3e\x44\x84\x4b\xa7\x38\x50\x06\x5b\x12\x95\xd7\x6c\xc5\xcd\x84\xba\x1c\xda\x1b\xd3\x60\x7b\xc5\xa6\xd6\x59\x3a\x50\x4c\xdd\x13\xc6\x3c\xf7\x86\xda\x73\xaf\xfb\xf5\xb7\x1c\xb3\x9d\x5e\xff\xff\x81\xba\x39\x8c\xe8\x53\x6f\xa8\xfd\x2f\x00\x00\xff\xff\x4d\xa4\x85\x69\x4c\x1a\x00\x00")
func htmlJsUiLaunchJsBytes() ([]byte, error) {
return bindataRead(
_htmlJsUiLaunchJs,
"html/js/ui/launch.js",
)
}
func htmlJsUiLaunchJs() (*asset, error) {
bytes, err := htmlJsUiLaunchJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "html/js/ui/launch.js", size: 6732, mode: os.FileMode(420), modTime: time.Unix(1495485319, 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){
"html/css/launchcontrol.css": htmlCssLaunchcontrolCss,
"html/css/ui/launch.css": htmlCssUiLaunchCss,
"html/img/fleshlight.png": htmlImgFleshlightPng,
"html/img/icon-32.png": htmlImgIcon32Png,
"html/img/ruler.png": htmlImgRulerPng,
"html/index.html": htmlIndexHtml,
"html/js/launchcontrol-client.js": htmlJsLaunchcontrolClientJs,
"html/js/launchcontrol.js": htmlJsLaunchcontrolJs,
"html/js/ui/controls.js": htmlJsUiControlsJs,
"html/js/ui/launch.js": htmlJsUiLaunchJs,
}
// AssetDir returns the file names below a certain
// directory embedded in the file by go-bindata.
// For example if you run go-bindata on data/... and data contains the
// following hierarchy:
// data/
// foo.txt
// img/
// a.png
// b.png
// then AssetDir("data") would return []string{"foo.txt", "img"}
// AssetDir("data/img") would return []string{"a.png", "b.png"}
// AssetDir("foo.txt") and AssetDir("notexist") would return an error
// AssetDir("") will return []string{"data"}.
func AssetDir(name string) ([]string, error) {
node := _bintree
if len(name) != 0 {
cannonicalName := strings.Replace(name, "\\", "/", -1)
pathList := strings.Split(cannonicalName, "/")
for _, p := range pathList {
node = node.Children[p]
if node == nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
}
}
if node.Func != nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
rv := make([]string, 0, len(node.Children))
for childName := range node.Children {
rv = append(rv, childName)
}
return rv, nil
}
type bintree struct {
Func func() (*asset, error)
Children map[string]*bintree
}
var _bintree = &bintree{nil, map[string]*bintree{
"html": &bintree{nil, map[string]*bintree{
"css": &bintree{nil, map[string]*bintree{
"launchcontrol.css": &bintree{htmlCssLaunchcontrolCss, map[string]*bintree{}},
"ui": &bintree{nil, map[string]*bintree{
"launch.css": &bintree{htmlCssUiLaunchCss, map[string]*bintree{}},
}},
}},
"img": &bintree{nil, map[string]*bintree{
"fleshlight.png": &bintree{htmlImgFleshlightPng, map[string]*bintree{}},
"icon-32.png": &bintree{htmlImgIcon32Png, map[string]*bintree{}},
"ruler.png": &bintree{htmlImgRulerPng, map[string]*bintree{}},
}},
"index.html": &bintree{htmlIndexHtml, map[string]*bintree{}},
"js": &bintree{nil, map[string]*bintree{
"launchcontrol-client.js": &bintree{htmlJsLaunchcontrolClientJs, map[string]*bintree{}},
"launchcontrol.js": &bintree{htmlJsLaunchcontrolJs, map[string]*bintree{}},
"ui": &bintree{nil, map[string]*bintree{
"controls.js": &bintree{htmlJsUiControlsJs, map[string]*bintree{}},
"launch.js": &bintree{htmlJsUiLaunchJs, map[string]*bintree{}},
}},
}},
}},
}}
// RestoreAsset restores an asset under the given directory
func RestoreAsset(dir, name string) error {
data, err := Asset(name)
if err != nil {
return err
}
info, err := AssetInfo(name)
if err != nil {
return err
}
err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))
if err != nil {
return err
}
err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
if err != nil {
return err
}
err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
if err != nil {
return err
}
return nil
}
// RestoreAssets restores an asset under the given directory recursively
func RestoreAssets(dir, name string) error {
children, err := AssetDir(name)
// File
if err != nil {
return RestoreAsset(dir, name)
}
// Dir
for _, child := range children {
err = RestoreAssets(dir, filepath.Join(name, child))
if err != nil {
return err
}
}
return nil
}
func _filePath(dir, name string) string {
cannonicalName := strings.Replace(name, "\\", "/", -1)
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
}
func assetFS() *assetfs.AssetFS {
assetInfo := func(path string) (os.FileInfo, error) {
return os.Stat(path)
}
for k := range _bintree.Children {
return &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: assetInfo, Prefix: k}
}
panic("unreachable")
}