From d08870b1356818a2ef5735767f7331530c83345b Mon Sep 17 00:00:00 2001 From: Sylvain Baubeau Date: Mon, 14 Dec 2020 09:47:52 +0100 Subject: [PATCH] Move workflow and shell cli to graffiti --- .gitattributes | 6 +- .mk/api.mk | 4 +- analyzer/server.go | 1 + cmd/client/client.go | 6 +- go.mod | 4 - graffiti/alert/server.go | 5 +- graffiti/api/server/workflow_runtime.go | 7 +- graffiti/assets/assets.go | 23 ++ {cmd => graffiti/cmd}/client/alert.go | 9 +- graffiti/cmd/client/client.go | 5 +- {cmd => graffiti/cmd}/client/liner.go | 2 +- {cmd => graffiti/cmd}/client/shell.go | 42 +-- {cmd => graffiti/cmd}/client/terminal_unix.go | 0 {cmd => graffiti/cmd}/client/workflow.go | 8 +- graffiti/go.mod | 2 + graffiti/hub/hub.go | 8 +- graffiti/js/bindata.go | 350 ++++++++++++++++++ graffiti/js/bootstrap.js | 2 + graffiti/js/otto.js | 18 +- graffiti/js/runtime.go | 29 +- statics/statics.go | 53 +++ tests/workflow_test.go | 9 +- 22 files changed, 507 insertions(+), 86 deletions(-) create mode 100644 graffiti/assets/assets.go rename {cmd => graffiti/cmd}/client/alert.go (97%) rename {cmd => graffiti/cmd}/client/liner.go (98%) rename {cmd => graffiti/cmd}/client/shell.go (87%) rename {cmd => graffiti/cmd}/client/terminal_unix.go (100%) rename {cmd => graffiti/cmd}/client/workflow.go (96%) create mode 100644 graffiti/js/bindata.go create mode 100644 graffiti/js/bootstrap.js create mode 100644 statics/statics.go diff --git a/.gitattributes b/.gitattributes index 9653b1365c..db1bca4fbe 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,10 +8,8 @@ statics/js/dev/*.js linguist-vendored=true *_easyjson.go linguist-generated=true *_gendecoder.go -diff -merge *_gendecoder.go linguist-generated=true -ebpf/statics/bindata.go -diff -merge -ebpf/statics/bindata.go linguist-generated=true -statics/bindata.go -diff -merge -statics/bindata.go linguist-generated=true +*/bindata.go -diff -merge +*/bindata.go linguist-generated=true topology/probes/vpp/bin_api/interfaces/* -diff -merge topology/probes/vpp/bin_api/interfaces/* linguist-generated=true topology/probes/vpp/bin_api/vpe/* -diff -merge diff --git a/.mk/api.mk b/.mk/api.mk index 1213764879..a29c954218 100644 --- a/.mk/api.mk +++ b/.mk/api.mk @@ -1,9 +1,9 @@ -.typescript: statics/js/bundle.js js/browser.js js/api.js +.typescript: statics/js/bundle.js js/browser.js js/api.js graffiti/js/api.js graffiti/js/api.js: graffiti/js/api.ts cd graffiti/js && npm ci && PATH=`npm bin`:$$PATH tsc --module commonjs --target ES5 api.ts -js/api.js: js/api.ts +js/api.js: js/api.ts graffiti/js/api.ts cd js && npm ci && PATH=`npm bin`:$$PATH tsc --module commonjs --target ES5 api.ts js/browser.js: js/browser.ts js/api.ts diff --git a/analyzer/server.go b/analyzer/server.go index 6ff4a2f93b..0241bef706 100644 --- a/analyzer/server.go +++ b/analyzer/server.go @@ -283,6 +283,7 @@ func NewServerFromConfig() (*Server, error) { Peers: peers, EtcdClient: etcdClient, TopologyMarshallers: api.TopologyMarshallers, + Assets: &statics.Assets, } if config.GetBool("etcd.embedded") { diff --git a/cmd/client/client.go b/cmd/client/client.go index 97f96cafb2..62661c4cf6 100644 --- a/cmd/client/client.go +++ b/cmd/client/client.go @@ -28,6 +28,7 @@ import ( gclient "github.com/skydive-project/skydive/graffiti/cmd/client" "github.com/skydive-project/skydive/graffiti/http" "github.com/skydive-project/skydive/graffiti/logging" + "github.com/skydive-project/skydive/statics" ) var ( @@ -56,15 +57,12 @@ func printJSON(obj interface{}) { // RegisterClientCommands registers the 'client' CLI subcommands func RegisterClientCommands(cmd *cobra.Command) { - cmd.AddCommand(AlertCmd) cmd.AddCommand(CaptureCmd) cmd.AddCommand(EdgeRuleCmd) cmd.AddCommand(NodeRuleCmd) cmd.AddCommand(PacketInjectorCmd) cmd.AddCommand(PcapCmd) - cmd.AddCommand(ShellCmd) cmd.AddCommand(StatusCmd) - cmd.AddCommand(WorkflowCmd) } func init() { @@ -92,5 +90,7 @@ func init() { config.BindPFlag("tls.client_cert", ClientCmd.PersistentFlags().Lookup("cert")) config.BindPFlag("tls.client_key", ClientCmd.PersistentFlags().Lookup("key")) + gclient.ShellAssets = &statics.Assets + RegisterClientCommands(ClientCmd) } diff --git a/go.mod b/go.mod index ba3997fe27..40acd63db6 100644 --- a/go.mod +++ b/go.mod @@ -50,9 +50,7 @@ require ( github.com/lunixbochs/struc v0.0.0-20180408203800-02e4c2afbb2a github.com/lxc/lxd v0.0.0-20200330183600-518f06676866 github.com/mailru/easyjson v0.7.6 - github.com/mattn/go-runewidth v0.0.0-20160315040712-d6bea18f7897 // indirect github.com/mattn/goveralls v0.0.2 - github.com/mitchellh/go-homedir v1.1.0 github.com/mitchellh/mapstructure v1.3.3 github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 github.com/networkservicemesh/networkservicemesh/controlplane/api v0.2.0 @@ -63,11 +61,9 @@ require ( github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d github.com/olivere/elastic/v7 v7.0.21 github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 // indirect - github.com/peterh/liner v0.0.0-20160615113019-8975875355a8 github.com/pierrec/xxHash v0.1.5 github.com/pkg/errors v0.9.1 github.com/pmylund/go-cache v2.1.0+incompatible - github.com/robertkrimen/otto v0.0.0-20200922221731-ef014fd054ac github.com/safchain/ethtool v0.0.0-20190326074333-42ed695e3de8 github.com/safchain/insanelock v0.0.0-20200217234559-cfbf166e05b3 github.com/shirou/gopsutil v2.18.12+incompatible diff --git a/graffiti/alert/server.go b/graffiti/alert/server.go index c3b5e0d64c..7559076a49 100644 --- a/graffiti/alert/server.go +++ b/graffiti/alert/server.go @@ -34,6 +34,7 @@ import ( "github.com/skydive-project/skydive/graffiti/api/server" api "github.com/skydive-project/skydive/graffiti/api/server" "github.com/skydive-project/skydive/graffiti/api/types" + "github.com/skydive-project/skydive/graffiti/assets" etcd "github.com/skydive-project/skydive/graffiti/etcd/client" "github.com/skydive-project/skydive/graffiti/graph" "github.com/skydive-project/skydive/graffiti/graph/traversal" @@ -394,10 +395,10 @@ func (a *Server) Stop() { } // NewServer creates a new alerting server -func NewServer(apiServer *api.Server, pool ws.StructSpeakerPool, graph *graph.Graph, parser *traversal.GremlinTraversalParser, etcdClient *etcd.Client) (*Server, error) { +func NewServer(apiServer *api.Server, pool ws.StructSpeakerPool, graph *graph.Graph, parser *traversal.GremlinTraversalParser, etcdClient *etcd.Client, assets assets.Assets) (*Server, error) { election := etcdClient.NewElection("/elections/alert-server") - runtime, err := server.NewWorkflowRuntime(graph, parser, apiServer) + runtime, err := server.NewWorkflowRuntime(graph, parser, apiServer, assets) if err != nil { return nil, err } diff --git a/graffiti/api/server/workflow_runtime.go b/graffiti/api/server/workflow_runtime.go index 0e108faeef..66836c22c2 100644 --- a/graffiti/api/server/workflow_runtime.go +++ b/graffiti/api/server/workflow_runtime.go @@ -24,14 +24,15 @@ import ( "github.com/robertkrimen/otto" "github.com/skydive-project/skydive/graffiti/api/types" + "github.com/skydive-project/skydive/graffiti/assets" "github.com/skydive-project/skydive/graffiti/graph" "github.com/skydive-project/skydive/graffiti/graph/traversal" "github.com/skydive-project/skydive/graffiti/js" ) -// NewWorkflowRuntime returns a new Workflow runtime -func NewWorkflowRuntime(g *graph.Graph, tr *traversal.GremlinTraversalParser, server *Server) (*js.Runtime, error) { - runtime, err := js.NewRuntime() +// NewWorkflowRuntime returns a new workflow runtime +func NewWorkflowRuntime(g *graph.Graph, tr *traversal.GremlinTraversalParser, server *Server, assets assets.Assets) (*js.Runtime, error) { + runtime, err := js.NewRuntime(assets) if err != nil { return nil, err } diff --git a/graffiti/assets/assets.go b/graffiti/assets/assets.go new file mode 100644 index 0000000000..45816d4137 --- /dev/null +++ b/graffiti/assets/assets.go @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2020 Sylvain Baubeau + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy ofthe License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specificlanguage governing permissions and + * limitations under the License. + * + */ + +package assets + +// Assets is the interface by an asset provider +type Assets interface { + Asset(name string) ([]byte, error) +} diff --git a/cmd/client/alert.go b/graffiti/cmd/client/alert.go similarity index 97% rename from cmd/client/alert.go rename to graffiti/cmd/client/alert.go index 5f8216996e..b20e275245 100644 --- a/cmd/client/alert.go +++ b/graffiti/cmd/client/alert.go @@ -20,12 +20,11 @@ package client import ( "os" + "github.com/spf13/cobra" + gapi "github.com/skydive-project/skydive/graffiti/api/client" "github.com/skydive-project/skydive/graffiti/api/types" "github.com/skydive-project/skydive/graffiti/logging" - "github.com/skydive-project/skydive/validator" - - "github.com/spf13/cobra" ) var ( @@ -57,10 +56,6 @@ var AlertCreate = &cobra.Command{ alert.Trigger = alertTrigger alert.Action = alertAction - if err := validator.Validate("alert", alert); err != nil { - exitOnError(err) - } - if err := CrudClient.Create("alert", &alert, nil); err != nil { exitOnError(err) } diff --git a/graffiti/cmd/client/client.go b/graffiti/cmd/client/client.go index 5115ccab62..85953672a2 100644 --- a/graffiti/cmd/client/client.go +++ b/graffiti/cmd/client/client.go @@ -125,8 +125,11 @@ func init() { ClientCmd.PersistentFlags().StringVarP(&keyfile, "key", "", "", "private key file name") ClientCmd.PersistentFlags().BoolVarP(&skipVerify, "insecure", "", false, "do not check server's certificate") + ClientCmd.AddCommand(AlertCmd) ClientCmd.AddCommand(QueryCmd) - ClientCmd.AddCommand(NodeCmd) ClientCmd.AddCommand(EdgeCmd) + ClientCmd.AddCommand(NodeCmd) + ClientCmd.AddCommand(ShellCmd) ClientCmd.AddCommand(TopologyCmd) + ClientCmd.AddCommand(WorkflowCmd) } diff --git a/cmd/client/liner.go b/graffiti/cmd/client/liner.go similarity index 98% rename from cmd/client/liner.go rename to graffiti/cmd/client/liner.go index 11106a9e88..cc7ae1620d 100644 --- a/cmd/client/liner.go +++ b/graffiti/cmd/client/liner.go @@ -30,7 +30,7 @@ import ( ) const ( - promptDefault = "skydive> " + promptDefault = "shell> " promptContinue = "..... " indent = " " ) diff --git a/cmd/client/shell.go b/graffiti/cmd/client/shell.go similarity index 87% rename from cmd/client/shell.go rename to graffiti/cmd/client/shell.go index 8d8c40b9f6..f379abe52f 100644 --- a/cmd/client/shell.go +++ b/graffiti/cmd/client/shell.go @@ -27,12 +27,17 @@ import ( homedir "github.com/mitchellh/go-homedir" "github.com/spf13/cobra" + "github.com/skydive-project/skydive/graffiti/assets" "github.com/skydive-project/skydive/graffiti/js" "github.com/skydive-project/skydive/graffiti/logging" ) var ( shellScript string + historyFile string + + // ShellAssets holds the extra assets for the JavaScript engine + ShellAssets assets.Assets // ErrContinue parser error continue input ErrContinue = errors.New("") @@ -68,13 +73,6 @@ func (s *Session) completeWord(line string, pos int) (string, []string, string) } func (s *Session) loadHistory() error { - historyFile := "" - home, err := homeDir() - if err != nil { - return fmt.Errorf("Failed to retrieve home directory: %s", err) - } - - historyFile = filepath.Join(home, "history") f, err := os.Open(historyFile) if err != nil { if !os.IsNotExist(err) { @@ -139,24 +137,9 @@ func (s *Session) prompt() error { return nil } -func homeDir() (home string, err error) { - home = os.Getenv("SKYDIVE_HOME") - if home != "" { - return - } - - home, err = homedir.Dir() - if err != nil { - return - } - - home = filepath.Join(home, ".skydive") - return -} - // NewSession creates a new shell session func NewSession() (*Session, error) { - runtime, err := js.NewRuntime() + runtime, err := js.NewRuntime(ShellAssets) if err != nil { return nil, err } @@ -195,8 +178,8 @@ func (s *Session) Close() error { // ShellCmd skydive shell root command var ShellCmd = &cobra.Command{ Use: "shell", - Short: "Shell Command Line Interface", - Long: "Skydive Shell Command Line Interface, yet another shell", + Short: "Gremlin shell", + Long: "Gremlin shell", SilenceUsage: false, Run: func(cmd *cobra.Command, args []string) { s, err := NewSession() @@ -222,5 +205,14 @@ var ShellCmd = &cobra.Command{ } func init() { + var history string + home, err := homedir.Dir() + if err == nil { + if executable, err := os.Executable(); err == nil { + history = filepath.Join(home, fmt.Sprintf(".%s_history", filepath.Base(executable))) + } + } + + ShellCmd.Flags().StringVarP(&historyFile, "history", "", history, "path to the command history") ShellCmd.Flags().StringVarP(&shellScript, "script", "", "", "path to a JavaScript to execute") } diff --git a/cmd/client/terminal_unix.go b/graffiti/cmd/client/terminal_unix.go similarity index 100% rename from cmd/client/terminal_unix.go rename to graffiti/cmd/client/terminal_unix.go diff --git a/cmd/client/workflow.go b/graffiti/cmd/client/workflow.go similarity index 96% rename from cmd/client/workflow.go rename to graffiti/cmd/client/workflow.go index 3b8eace1e4..add7fbd559 100644 --- a/cmd/client/workflow.go +++ b/graffiti/cmd/client/workflow.go @@ -23,13 +23,11 @@ import ( "io/ioutil" "os" + "github.com/spf13/cobra" "gopkg.in/yaml.v2" "github.com/skydive-project/skydive/graffiti/api/types" "github.com/skydive-project/skydive/graffiti/logging" - "github.com/skydive-project/skydive/validator" - - "github.com/spf13/cobra" ) var ( @@ -60,10 +58,6 @@ func loadWorklow(path string) (*types.Workflow, error) { return nil, err } - if err := validator.Validate("workflow", workflow); err != nil { - return nil, err - } - return workflow, nil } diff --git a/graffiti/go.mod b/graffiti/go.mod index 38d2fcc7c5..9743a2f689 100644 --- a/graffiti/go.mod +++ b/graffiti/go.mod @@ -25,11 +25,13 @@ require ( github.com/gorilla/websocket v1.4.2 github.com/hashicorp/go-version v1.2.1 github.com/mailru/easyjson v0.7.6 + github.com/mitchellh/go-homedir v1.1.0 github.com/mitchellh/hashstructure v1.0.0 github.com/mitchellh/mapstructure v1.3.3 github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d github.com/olivere/elastic/v7 v7.0.21 + github.com/peterh/liner v1.2.1 github.com/pierrec/xxHash v0.1.5 github.com/pkg/errors v0.9.1 github.com/pmylund/go-cache v2.1.0+incompatible diff --git a/graffiti/hub/hub.go b/graffiti/hub/hub.go index 0a638bc2e8..9c6bf5130b 100644 --- a/graffiti/hub/hub.go +++ b/graffiti/hub/hub.go @@ -29,6 +29,7 @@ import ( "github.com/skydive-project/skydive/graffiti/alert" api "github.com/skydive-project/skydive/graffiti/api/server" + "github.com/skydive-project/skydive/graffiti/assets" gc "github.com/skydive-project/skydive/graffiti/common" etcdclient "github.com/skydive-project/skydive/graffiti/etcd/client" etcdserver "github.com/skydive-project/skydive/graffiti/etcd/server" @@ -62,6 +63,7 @@ type Opts struct { EtcdClient *etcdclient.Client EtcdServerOpts *etcdserver.EmbeddedServerOpts Logger logging.Logger + Assets assets.Assets } type podOrigin struct { @@ -323,14 +325,8 @@ func NewHub(id string, serviceType service.Type, listen string, g *graph.Graph, return nil, err } - alertServer, err := alert.NewServer(apiServer, subscriberWSServer, g, tr, opts.EtcdClient) - if err != nil { - return nil, err - } - hub.httpServer = httpServer hub.apiServer = apiServer - hub.alertServer = alertServer hub.podWSServer = podWSServer hub.replicationEndpoint = replicationEndpoint hub.replicationWSServer = replicationWSServer diff --git a/graffiti/js/bindata.go b/graffiti/js/bindata.go new file mode 100644 index 0000000000..0c9772d422 --- /dev/null +++ b/graffiti/js/bindata.go @@ -0,0 +1,350 @@ +// Code generated by go-bindata. +// sources: +// graffiti/js/api.js +// graffiti/js/bootstrap.js +// graffiti/js/otto.js +// graffiti/js/promise-7.0.4.min.js +// graffiti/js/promise-done-7.0.4.min.js +// graffiti/js/pure-uuid.js +// DO NOT EDIT! + +package js + +import ( + "bytes" + "compress/gzip" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "strings" + "time" +) + +func bindataRead(data []byte, name string) ([]byte, error) { + gz, err := gzip.NewReader(bytes.NewBuffer(data)) + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + + var buf bytes.Buffer + _, err = io.Copy(&buf, gz) + clErr := gz.Close() + + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + if clErr != nil { + return nil, err + } + + return buf.Bytes(), nil +} + +type asset struct { + bytes []byte + info 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 _apiJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x6f\x73\xdb\x38\x92\xf7\xfb\x7c\x8a\x5e\xd6\x56\x4c\x4d\x18\xd9\x49\xcd\x8b\x2d\x6b\xb5\xcf\xe3\x24\x1c\x5b\x17\x8f\xe4\xb3\x14\x65\xb7\x5c\x2e\x17\x25\x42\x12\x1d\x8a\x60\x48\xd0\x8a\xd6\xf1\x77\xbf\x6a\x00\x24\xc1\x7f\x32\xc5\x48\xb9\xd1\xde\xf8\x8d\x25\xa0\x01\x74\xff\xba\xd1\x68\x34\x21\x50\x8b\x42\x02\x21\x0b\x9c\x29\xd3\x3a\x2f\x8e\x7f\x79\x01\xbf\xc0\x7b\xea\xaf\x03\x67\xbe\x60\xa0\xbf\x6f\xc1\xdb\x93\x37\x7f\x83\x6b\x62\xc3\x85\xc5\x0c\xe8\x79\xd3\xf6\x0b\xe0\x64\x97\xce\x94\x78\x21\xb1\x21\xf2\x6c\x12\x00\x5b\x10\x38\xf3\xad\xe9\x82\xc4\x35\x06\x8c\x49\x10\x3a\xd4\x83\xb7\xed\x13\xd0\x91\x40\x93\x55\x5a\xab\x83\x5d\xac\x69\x04\x4b\x6b\x0d\x1e\x65\x80\x8c\xb0\x85\x13\xc2\xcc\x71\x09\x90\x6f\x53\xe2\x33\x70\x3c\x98\xd2\xa5\xef\x3a\x96\x37\x25\xb0\x72\xd8\x82\x8f\x23\x7b\x41\x4e\xe0\x5f\xb2\x0f\x3a\x61\x96\xe3\x81\x05\x53\xea\xaf\x81\xce\x14\x3a\xb0\x98\xe4\x19\xff\x16\x8c\xf9\xa7\xc7\xc7\xab\xd5\xaa\x6d\x71\x7e\xdb\x34\x98\x1f\xbb\x82\x34\x3c\xbe\xec\xbd\x37\xfb\x43\xf3\xf5\xdb\xf6\x89\x6c\xf4\xc9\x73\x49\x18\x42\x40\xbe\x46\x4e\x40\x6c\x98\xac\xc1\xf2\x7d\xd7\x99\x5a\x13\x97\x80\x6b\xad\x80\x06\x60\xcd\x03\x42\x6c\x60\x14\x79\x5e\x05\x0e\x73\xbc\xb9\x01\x21\x9d\xb1\x95\x15\x10\xec\xc6\x76\x10\xe7\x49\xc4\x32\x90\xc5\x2c\x3a\x61\x86\x80\x7a\x60\x79\xa0\x9d\x0d\xa1\x37\xd4\xe0\xdd\xd9\xb0\x37\x34\xb0\x93\xcf\xbd\xd1\xc5\xe0\xd3\x08\x3e\x9f\x5d\x5f\x9f\xf5\x47\x3d\x73\x08\x83\x6b\x78\x3f\xe8\x7f\xe8\x8d\x7a\x83\xfe\x10\x06\xbf\xc1\x59\xff\x5f\xf0\xb1\xd7\xff\x60\x00\x71\xd8\x82\x04\x40\xbe\xf9\x01\x4a\x40\x03\x70\x10\x4c\x62\x73\xe4\x86\x84\x64\x58\x98\x51\xc1\x52\xe8\x93\xa9\x33\x73\xa6\xae\xe5\xcd\x23\x6b\x4e\x60\x4e\x1f\x48\xe0\x39\xde\x1c\x7c\x12\x2c\x9d\x10\x75\x1a\x82\xe5\xd9\xd8\x8b\xeb\x2c\x1d\x66\x31\x5e\x54\x10\x4b\xda\xca\xf1\x8b\x07\x2b\x80\xbb\x3b\xf2\x8d\x11\xcf\x0e\xa1\x8b\xd6\xe0\x84\xf0\xf2\x25\x57\x79\x3b\xa9\x69\xc1\xf7\xef\xa0\xcf\x22\x6f\x8a\x1d\x82\xde\x82\xc7\x17\xa8\x33\x6c\x2e\x48\x86\x38\xd6\x14\xbb\x18\x4c\xee\xc9\x94\xb5\x43\xc2\xae\x02\xca\x28\x5b\xfb\x64\x30\x83\xef\xdf\x79\x03\xfc\xd3\x1f\xe1\xee\xce\xc7\xba\xbb\xbb\x53\xb8\xb9\x85\x27\x70\xbc\x90\xa1\x29\xd1\x19\x9c\x05\x81\xb5\x46\x0e\xd2\xd1\x6c\x03\x26\x2d\x78\x04\xbb\x9d\xb4\x83\x2e\x4c\x3a\xf0\xd4\x52\xfb\x2d\x36\x40\xe4\x74\xe4\xd1\x47\xed\x4f\x5a\xe0\xcc\x40\x9f\xb4\x17\x56\x38\x58\x79\x57\x01\xf5\x49\xc0\xd6\xba\xdf\x6a\x81\x7d\xe3\xdf\x62\x9f\x37\xfe\x6d\x07\x9e\x3a\xbc\xcf\x80\xb0\x28\xf0\x8a\xdd\x26\x03\x66\x24\x17\xb5\x9d\x22\x37\x77\x77\x08\x97\x00\x74\x4a\xbd\x90\x05\xd1\x94\xd1\x00\xba\x60\x77\xe0\x29\xa1\xb7\xdb\x7e\x0c\x17\x32\x02\xdd\x6e\x17\xbc\xc8\x75\xe1\xff\xc5\x88\x4e\x03\x62\x31\xa2\x4f\x5a\x70\x0a\xfa\xdd\x5d\x96\x3e\xfd\x66\x80\x47\x56\x7c\x54\xc9\xcd\x53\xe7\xc5\x53\x4b\x6f\x75\x5e\xc8\x7e\x6c\x32\x73\x3c\x92\x88\x4f\xbe\xf9\x34\x60\xa1\x01\xda\xdd\x1d\x09\x7f\xa7\x76\xe4\x12\xcd\x80\x47\x78\xb0\xdc\x88\x9c\x02\x0b\x22\x02\x4f\xad\x0e\xb7\x95\xa5\xf5\x85\x5c\x93\xaf\x11\x09\x19\x08\xfe\x44\xf9\x27\xcf\x8a\xd8\x82\x06\xce\xbf\x89\x0d\x5d\xd0\xd4\xef\x9a\x20\xb9\x0f\x4d\xef\x01\xba\xf1\x7c\xd5\xb5\x49\x40\x57\x21\x09\x5e\xd3\xe0\xb5\x47\x6d\xee\x7b\x50\x3f\x9c\x4e\x35\xb0\xaf\x11\x09\xd6\x38\x05\xbd\xb9\xd2\xfc\xe8\x6b\x78\x24\x05\x44\x22\x9b\xcc\xac\xc8\x65\xe1\x07\x42\x7c\x95\xca\xa5\xb6\x15\x2e\xda\x71\xb5\x4d\x88\x1f\x37\x3b\x3e\x86\xcf\x0b\xe2\x41\x14\x62\xcf\xc8\x82\x01\x2b\xc2\x1d\x9e\x67\xdd\x5b\xdf\xb8\xf9\xfc\xb5\xcd\x3f\x4e\x2d\xd7\x0d\x79\xab\x84\xc5\xb6\x13\xf6\xa9\x4d\xd0\x54\xff\x12\x17\xbc\x13\x22\xa9\x46\x82\xcc\x89\xee\x14\xae\x78\xc1\x91\x62\x2d\x73\x97\x4e\x2c\xb7\xfd\x57\xe8\xc2\x23\x68\x58\xab\x9d\xca\x66\xd2\x1a\x85\xa5\x64\xf1\x4f\x4d\x73\xea\x3a\xc4\x63\x06\x44\x81\x6b\xc0\x92\xb0\x05\xb5\x0d\xb0\x2d\x66\x19\x40\x7d\x16\xaa\x0c\x49\xb3\x46\x23\xb9\x0a\xe8\xd2\x09\x89\x32\xb1\x03\x12\x52\xf7\x81\x18\x10\x10\xb4\x15\xb5\x9d\xd2\x56\x80\xa2\xab\x98\xeb\x38\x8c\x91\x23\xe7\x76\x6d\x31\x6b\xb4\xf6\xc9\x29\x68\xf7\x21\xf5\x34\xa3\x40\x11\x05\xee\x29\x08\x01\xda\x13\x2b\x24\x9f\xae\x2f\xe1\x15\x97\xa4\xb4\xb3\x53\x21\x57\xa1\x6e\x4a\x3d\x46\x3c\x26\xc7\x92\x2b\x01\x4a\x75\x8c\xe3\x76\x60\xba\xb0\x82\x90\xb0\x6e\xc4\x66\xaf\xff\x56\xc2\x86\x40\xed\x54\xfe\xcf\x54\x3f\xb5\x5a\x05\xf2\xf6\xcc\x72\x5c\x05\xb9\xfb\xaf\xff\xbc\xb8\xce\xe3\x95\x18\x0c\x56\xb6\x43\x66\xb1\x28\x84\x6e\x17\x7e\x3d\x79\x53\x46\x2a\x20\x46\xe0\x75\x75\x02\x29\x76\x92\x70\x54\x28\x21\x6e\x48\x36\x77\x29\x38\x7c\xae\xaf\xa7\x12\x51\x6d\xea\xa9\x46\x22\xec\x4a\x48\x33\x22\xdf\x98\x01\xf5\x85\xff\x47\x17\xde\x9e\x9c\xe0\xa4\xc9\x14\xff\x1d\x7e\x3d\x39\xa9\x82\x04\xa7\xd0\x94\xd2\x2f\x0e\x7a\x3a\xd1\x6c\x4e\xd8\x35\x09\x7d\xea\x85\xe4\x82\x58\x36\x09\x74\x6d\x48\xd8\xeb\xf7\x9c\x4a\x2b\x11\x32\x66\x46\xf4\x53\x35\x12\xfe\x49\x4b\x4c\x06\x14\x1f\xca\x7b\x2c\xaa\x01\x38\xde\x7c\x12\x49\x9c\xea\xc1\x0e\x3b\x55\x61\x4a\xf1\xa4\x2c\x02\x2f\x94\x01\xd0\xf9\x91\xa3\x80\x40\x10\x79\x3c\x84\x70\xbc\xd0\xb1\x09\x0c\x18\xa3\x6d\xf8\x4c\x64\xdc\x47\xe0\x28\x10\xee\xe6\x48\x9d\x18\xc7\xc7\x20\x96\x0d\x11\x76\x0d\xbf\xac\x6d\xe7\x01\xe9\x2d\xc6\x5d\x54\xc8\x9b\xd3\x19\xef\xe1\xda\x1c\x8e\x24\xaa\x71\xe3\x90\xa2\xa7\x9d\x13\x06\x61\xe4\x63\x3f\xdc\xd7\xa2\xc5\x13\x8f\xc9\x69\xbb\xbd\xbf\x9b\x50\x7b\x5d\xf4\x77\x7c\x75\xb0\x98\xd5\xc9\x94\xd0\x88\xf9\x11\x93\x3e\x99\x84\x4c\x2f\xf4\xa4\x80\x88\x86\x23\x1b\xbc\x7c\x29\x9b\xb6\x5d\xe2\xcd\xd9\x02\xfe\x01\x05\xbb\xc5\xd1\xa0\x0b\xff\x35\x1c\xf4\xdb\x3e\x3a\x1d\xd9\x58\x55\xcb\x8b\x0d\x4a\x97\xed\xc5\xea\x5a\x6c\x21\x9d\xf0\x23\x1c\x21\x5c\x47\xa7\x90\x89\xcb\xe2\x6a\x2e\x32\x3c\x25\xcb\x07\xea\x3f\x21\xf4\xad\xc0\x5a\x86\x43\xbe\xa6\xea\xe2\x8b\xba\xe2\x62\x18\xa7\x69\xa2\x61\x1a\x43\x21\x19\xc6\x51\x59\xfa\x18\x1f\x51\xfd\x97\x6e\x17\xb4\x13\x2d\x8f\x48\x08\xaf\xba\xa0\x19\xa0\x95\xc9\x13\xae\x1c\x36\x5d\x80\x8e\xc1\x0b\x9d\xc9\xee\x6f\xf8\xbf\xdb\x7c\x47\x53\x2b\x24\xa0\x89\x60\x40\x3b\x2d\xcc\x03\x3e\xce\x91\x76\x04\xaf\xb2\xdd\xc0\x2b\x2c\x2d\xce\x9b\x49\x40\xac\x2f\xd9\x62\xb9\xa8\x55\xf4\x9d\xe9\xf5\xd9\xfe\x9e\x94\x95\x5b\xaa\x25\x44\x3d\x1c\x1f\xc3\x35\xff\x1a\x82\x05\x32\xb2\x91\x93\xc5\xf1\x1e\xa8\xb0\x7f\x2c\x39\x12\x06\x79\x24\xb6\x58\x0e\x0b\x05\x03\x84\x91\x20\x84\x23\xc1\xcc\x11\x76\xe7\x3a\x5f\x08\xfc\xbe\xfe\x9d\x93\xeb\x6f\x0c\x78\x6b\x80\x16\x6a\xad\x54\xe5\x18\xc1\x48\x85\x8b\x4e\x55\x85\x8b\x9e\xa0\x0b\x37\xb7\x39\xad\xdf\x39\xd0\x85\x37\x1d\xfc\xff\x77\xb0\x82\x79\xb4\x24\x1e\x0b\xa5\xf1\x63\xf1\xab\x57\xaa\x8e\x24\x3e\x77\x0e\xbc\x86\x37\x18\x51\x27\x4d\x6e\xee\x9c\x5b\x35\x92\x89\xed\x4c\x30\x03\xaf\x40\xd3\xa5\x75\x28\x40\x67\x2d\x54\xa9\xd6\x5a\x5a\xa7\x00\x2b\x76\x39\x24\x81\x63\xb9\xce\xbf\x39\x84\x17\xc4\xf5\x09\x46\xda\xc7\xbf\xfc\x02\xff\x7f\xea\x5a\x61\x08\xbf\x1c\x97\x6d\x64\x92\x92\x92\xf6\x09\x91\x60\xbc\x84\xa2\xcd\x68\x4f\xee\x60\x32\x5e\x8a\x4e\xee\x0d\xc0\xe8\x63\x30\xb9\xcf\xcf\x17\x69\xed\x74\x72\x7f\xa3\xcd\x02\xba\x44\x6f\xa1\xdd\xf2\xb0\x5f\x8b\x7b\x28\xcc\xa3\x1c\xb5\x1e\xf7\x5d\xd3\xb1\xa4\x73\x39\xa0\x7e\xdf\x5a\xa2\xb9\x95\xf1\xa7\x0e\x17\x93\xa2\x32\x25\x69\x5a\x96\x9d\x01\x4f\xd5\xce\x8a\x4e\xee\x13\x3f\x54\x05\x62\xe4\x2d\xad\x20\x5c\x58\xae\xd8\x02\xaa\x40\x8a\x95\x74\x9a\x77\xeb\x0e\x23\x19\xab\xcd\xc8\x48\x27\xf7\x28\x1e\x36\xcd\xcb\xc6\x63\x72\xb2\x1a\x41\xf7\x19\x6d\xea\x18\x25\x4f\xf5\x96\x88\xa5\x6f\xe8\xe4\xfe\x36\xb7\xfa\x72\x16\xda\x7e\x14\x2e\x90\x76\x54\xaa\x09\x89\x01\x27\xad\x8f\xc2\xef\x96\xbf\x35\x10\x8f\x4f\x25\x40\x7c\x21\xeb\x2a\x20\x78\xbb\x9b\x2f\x64\x8d\xda\xe5\x3b\xd4\xac\x12\xf8\x78\xbc\x1e\x07\xdd\xa9\x6c\x3f\x2c\xd6\x4f\xd4\x2f\xaf\xc0\x15\x99\xac\x46\x5b\x81\x20\x2b\x4a\x98\xe8\xbc\x78\xe2\x1b\x74\xb9\xfb\x6e\x97\xfb\xad\xd2\x86\x28\xdd\xd9\x55\x4f\xec\xe6\x37\x39\xb7\xbb\x30\xf2\xd3\xcd\x68\x92\xcc\xd1\x93\xc6\x06\x48\x92\x4e\xd6\x09\x26\x04\x7a\xc9\xc6\x51\x34\xe1\x2b\x3d\xcf\x4f\xbc\x7c\x29\x8b\xda\xb8\xe7\x5a\xf3\x0c\x92\x91\xfa\x7d\x9e\x3a\xc2\xb2\x4e\x71\x31\x4c\xc6\x41\x34\xc4\x27\x15\x13\x55\x48\x85\x94\xcb\xef\x92\xa0\x99\xec\xd8\xb0\x52\x6e\xac\xdc\xb7\xcc\x38\x06\xca\x9b\x48\x94\x11\x59\xca\x25\xa9\x50\xd4\xcf\x34\xf8\x32\x73\xe9\xaa\x89\xb4\x71\xdb\x2a\x81\xe3\xfa\x3d\xcb\x1c\x0f\x53\x29\xb6\x22\x63\x4a\x2b\xed\x7c\xab\xe5\xfb\xec\xaa\x97\xec\x0d\x70\x1b\x16\x05\x53\x92\x73\x2c\x22\x11\xc7\x69\x70\x77\xc7\x3f\x74\xb2\xb5\xd7\xb2\x25\xdf\x1e\x88\x8f\x39\x8a\xdf\xac\x29\xa3\x01\xfa\xe6\xa9\x2a\xef\xd9\x55\x2f\x4d\xc4\xc9\x84\x5d\x3e\x22\xc8\x3b\xb9\x20\x1d\x2c\x33\x78\x27\xaf\x10\x85\xf1\x76\xbc\x6b\xd1\x8e\x2d\xdf\x39\xd6\xe0\x95\x22\xad\x76\x35\x18\x8e\x34\x43\xec\x3f\x44\x74\xe9\xcc\xd6\x7c\x68\x03\x1e\x73\xfb\xfb\x36\xee\x21\x72\x7b\xfb\x8a\xac\x4f\x0d\x57\x4a\x27\xf7\x6a\x8e\x33\x76\xac\xe5\xfb\xd1\x22\x60\xae\x93\xdb\xe6\x6d\x8f\x15\x52\xcd\x12\xe5\xa8\xba\xaa\x85\xe7\x11\xc7\xf3\x28\x8b\xe7\xb9\x89\x70\x6a\x5a\x33\xf4\x54\xbe\xf3\x8b\x19\xd4\x5c\xd0\xf2\xfd\xdc\xbd\xa9\xb7\xb4\x49\x24\x36\x2d\x70\x20\x13\x16\x9c\xbd\x78\xa1\x4b\xc7\xa9\x8a\xf0\x14\x1c\x93\xd6\x35\xb5\x8c\xdb\x7e\x55\xc9\x8e\xfd\x07\x50\x33\x6e\x40\xf8\x3c\x72\xec\x1f\xd6\x78\xfd\xf9\x92\xd3\x4f\xdd\x79\x62\x13\x97\xe4\x1c\x4b\x13\x10\x7f\x00\xa0\x0f\xe6\xa5\x39\x32\x63\x8c\x40\x8b\xb3\xbc\xda\x29\x68\x5a\x9e\xf9\x74\xb5\xcf\x47\x3d\xc2\xbd\xf3\x0a\x64\xf9\x3c\xb0\xfc\x85\xe9\x92\xa5\xf0\xcd\xf5\xdd\xbe\xda\x30\xb7\x5d\x93\x83\xab\x14\x79\x2e\x72\xc3\x66\x49\x13\xbe\x78\xb2\xbf\xc1\x1a\x9c\x34\xae\x5a\x84\x13\x82\x3d\xaf\xc2\xc9\x38\x28\xbf\x2a\x64\x01\x0b\x29\xaa\xd2\x20\xd5\x8e\x3d\x6f\x8e\x02\x36\xde\x88\x02\x12\xfc\x0c\x14\x70\x9c\x67\x51\x90\xa2\x2a\x0d\x12\x14\xb6\x37\x4e\xdd\xa3\x36\x09\x0d\x20\xf6\x9c\x84\x85\x70\x84\x57\xe2\x06\x83\xff\xff\xfe\x3d\xb3\x48\x70\x0a\xde\x0e\xba\xa2\xbd\x4a\x51\x14\xae\xd4\xbc\x63\x41\x62\x21\xc8\xd2\x75\xbc\x6d\xa3\xab\xb4\x99\x0c\xb2\xea\xc5\x55\x82\xc5\xb4\xb1\xe2\xc9\xf8\xb3\xbd\x8c\x23\x2b\x7b\x56\x55\xed\xa1\x18\xf5\xa9\x4b\xe7\xeb\xa3\xca\xb0\xe7\x11\x8e\xe4\xc8\xff\x8d\x63\x1d\x9d\x42\x08\x4f\x0d\x03\x21\x67\x26\xca\x93\x87\xb3\xc5\x67\x25\x92\xe3\x9b\x5c\x6a\x84\x67\xfc\xc2\xc8\x65\x30\xb5\x3c\x98\x10\xb8\xc1\x79\x75\x0b\x34\x80\x9b\x1b\xe1\x1c\x78\xc1\x6d\xe9\x78\x4a\xae\x19\x4d\x9f\x2f\xe5\x27\xb7\x85\xa7\xe6\x45\x6e\x64\x26\x59\x36\xe8\x94\xad\x52\xd9\xd4\x78\xce\x73\x97\xea\xec\xbc\x32\x44\x53\x1e\x2d\x9e\xf3\x39\x59\xba\x0e\xa4\x9d\x16\x2d\x55\x31\x4b\x95\x8c\x67\x22\x7f\x27\xcc\x92\x02\xd5\x37\xd9\xa4\x55\x21\x96\x2c\xe4\x3c\xa1\x90\xf7\x3c\xa9\x9d\xf7\x04\x35\xf7\x59\x91\xf7\x84\x4c\x00\xc5\x6d\x3a\xe1\x41\x7c\x50\xa7\x4b\xc2\xb8\x82\x3c\xa3\xc3\xf8\x31\xf8\x46\x05\x68\x89\xd0\x5a\x92\x09\x97\xa9\x54\x65\xd8\x16\x2e\xe9\x71\x1e\x35\xab\xa2\x64\xf0\xbc\x86\x54\x25\x28\x44\x09\x37\x05\xb4\x6b\x64\x97\xeb\xa3\xfc\x1c\xc2\x19\x5f\x88\x56\xa8\xa7\x28\x4e\x1c\xcf\x96\xab\x45\x52\x68\xc0\xcd\x03\x75\x6c\x38\xb9\xc5\x5d\xcb\xd4\x62\x71\xa6\xb9\xc5\xcf\x4b\x3c\x25\x62\x2b\x52\xa7\x42\xf3\x74\x33\xe3\xc7\x0d\xb6\xc8\x2f\x33\xe2\xeb\x96\xef\x18\xe0\x07\xe4\xc1\xa1\x51\xf1\x41\x8a\x2c\xe7\x4e\x46\xb0\xd7\x82\x47\x48\x8b\xc5\x83\x21\xc5\x94\x6a\x5a\xf3\xdb\x66\xd6\x0c\xaf\xe1\x6d\x7d\x8b\xb6\x7c\x1c\xca\xf2\x9d\xdc\xfa\xa5\xb0\x1f\x7f\xcc\x53\x54\xcf\x05\x04\x4d\x99\x06\x9e\xb5\x24\xf9\x29\x90\x98\x7e\xcf\x7b\xb0\x5c\xc7\xc6\x26\x5a\x72\x94\x27\xd7\xc1\xb3\xf3\x88\x27\xe8\x33\x6c\xc7\xa1\x47\xd9\xee\x6e\x2e\x3c\x55\x1c\x68\xc7\x6d\x92\x61\x74\x3e\xd3\xda\x5a\xa9\xff\x8d\x1b\xbf\x52\x9e\xd0\x48\x3b\x15\xca\x37\xe0\x46\xc4\x08\xd6\x92\xe8\xad\xc4\x52\xd5\x89\x5c\x37\xff\xaf\x2e\xa7\xa2\xbb\xc2\xb3\xaa\x52\xbc\x42\xb9\x93\x21\x85\xa4\x6d\xd5\x62\x9d\x60\x90\x34\xd5\x95\x0d\x4e\xf9\x28\x81\x58\x20\x37\xed\xff\xe5\x1c\x8c\x2d\x4d\x84\x0f\x02\x8a\x14\xec\x56\xf9\x0e\x67\x13\x27\xf1\x8e\x8d\x11\xbf\x90\x98\x15\x33\x5c\x54\xf1\xd8\xa9\x51\xf8\x5b\x19\xf6\xa2\x33\xa8\x8c\x78\xdb\x68\x13\x71\x74\x8b\x74\x25\x71\xed\x79\xdd\x99\x71\x9e\xce\x87\xf3\xa6\xca\xcd\xda\x93\x86\x31\x4b\xa8\x9d\xd6\x78\x9c\xa3\xcb\x18\xa4\xdd\x17\x71\x70\xb2\xb7\x68\x65\x4f\xe2\x68\x18\x69\x6f\xd9\x25\x6f\x62\xa4\x81\xba\xd2\xe5\x53\x36\x9c\x51\xc4\x7e\x4f\x3d\x46\xbe\x6d\x36\xb7\xff\xe5\x10\x41\x59\xc8\x24\xb7\x7a\x6c\xf9\xad\x4a\xb9\xc6\x07\x22\x91\x3e\x56\x97\xe4\x71\xb2\x14\x1b\xc9\xec\x16\x9f\xca\x97\xe6\x0a\xe1\xcd\x43\x11\xde\x54\x85\x37\x9b\x0b\x1f\x87\xd4\xe8\xb5\xd0\x45\x65\xa2\x69\x0c\xa2\x85\xcf\x4a\x8d\x7d\x6b\xcf\x25\x9b\x56\xf9\xaf\xd8\x30\xff\x33\x43\x1a\x3e\x10\x3f\x12\xdd\xad\xe5\x91\x39\x74\xcf\xc7\x3b\x77\xd5\x01\x8f\xa2\xd4\xbb\xbc\xa7\x97\x58\xd7\xf5\xf7\x92\x5c\xcb\x1f\x68\x96\xe5\x3c\xff\xa1\xda\x4b\x6a\x24\x09\x05\x0f\x71\xa3\xc9\xfc\xb9\x9c\x47\x95\xf1\xc4\x6d\xab\xac\x27\xae\xdf\x87\xf9\xec\x41\x6f\x55\x8a\x89\xc5\xa8\xab\x99\x98\xbe\xa0\x9a\xb8\xa2\xa0\x1b\x45\x09\x29\x4d\xba\xeb\x72\xbe\x39\x1e\xdf\x59\xbc\xb3\x42\x62\x00\x0e\x1e\x83\x28\x7b\xae\xa9\xba\xac\xfa\x38\xfd\xdd\x9b\x9c\xf6\x32\x1a\x94\x24\x7a\x59\x5c\x6c\x05\xf3\xfc\xf4\x2d\x4e\xe1\xed\x3c\x2e\xfe\x61\xb7\x9b\x7d\x2e\x54\x3d\xaa\x28\x4f\x1a\xe6\xf3\x85\xd9\xe6\x52\xc2\x9a\xba\xc5\xba\x44\xab\xca\xc8\xb2\x17\x69\x35\x5c\x4f\xad\x56\x7c\x68\x69\xdc\x64\x6e\x8d\xab\x26\xd5\x78\x5f\x19\xd4\x71\x5d\xfb\x1e\xa7\x86\x3d\x6e\x1a\x69\xd6\x8c\xff\xd4\x48\x32\xb3\x32\xaa\x03\x5f\x58\xe1\xa1\x04\x06\x17\x56\x98\x09\x8c\xf0\x7b\xf3\xf0\x20\x07\x82\x29\x7e\x77\x74\x38\x50\x08\x86\xf3\x80\xc8\xd2\x9d\xc1\xf2\x91\xac\x0f\x08\x93\x8f\x64\x9d\x07\x04\x8b\x76\x86\x46\x9f\x1e\xca\xa6\x48\x17\xdc\xe6\xd1\xc0\xa2\xdd\xa0\xf1\x81\xd8\x91\x7f\x28\x60\x70\x66\x33\x58\x88\x92\xdd\x40\xd1\xf3\x0e\x05\x87\x9e\xa7\x62\xd0\xf3\x76\x23\xff\x20\x3a\x98\x59\x31\x88\x98\x8a\xc0\x20\x62\xbb\x81\xe0\x1d\x65\x8b\x43\xc1\x00\x79\x55\x41\xc0\xef\xbb\x41\xe1\xda\xf2\xe6\x85\xc8\xe7\x8f\x0a\x03\x67\x36\xe3\x13\x44\xc9\x6e\xa0\xb8\x74\x96\xce\xc1\xcc\x0a\xce\x6c\x06\x0a\x51\xb2\x2b\xf7\x78\x30\xa9\xa7\x9e\x67\x66\x1d\xe4\x0f\xa4\x9f\x72\x1e\xf2\x60\x30\x40\x5e\x73\x3e\x72\x47\x28\xa0\xa3\x39\x18\x18\x38\xb3\x79\x37\xb9\x23\x20\x86\x0b\x1a\x30\x12\xb2\x2b\x8b\x2d\x46\xf4\x50\x10\x51\xb9\x56\x81\x51\xcb\x77\x84\x4f\x9a\xd1\x79\xf6\x30\x45\x92\x26\xcb\x8e\x57\xdd\xf9\x7b\x1a\x79\xd5\x9e\x39\xf3\x5c\x21\xf2\x58\xed\x6e\xc7\x96\x1b\x91\x83\xd9\x4a\x0b\x6e\x33\x4f\x19\x78\xc9\x6e\xf4\xf7\x91\xac\x0f\x06\x09\xe4\x55\xc5\x01\xbf\xef\xca\x8a\x97\x7f\x82\x30\xa4\xc1\xc1\x84\x41\xc8\x6b\x26\x0a\xe2\x05\x3f\xfc\x00\x6a\x5c\xf6\x00\x6a\x0c\x5d\xac\x40\x19\xcd\x26\x19\x4e\xb3\x2a\xc3\x69\xee\x2b\xc3\x69\xd6\xcd\x70\x9a\x69\x86\xd3\xfc\x39\x19\x4e\xfe\x60\x3b\x03\xbd\x79\xb0\x19\x4e\x33\x9f\xd0\x6b\x6e\x7f\xe6\x7f\x44\x86\xb3\x00\x88\x28\xdd\x19\x2c\x07\x97\xe1\xcc\x03\x82\x45\x3b\x43\xe3\xe0\x32\x9c\x79\x34\xb0\x68\x37\x68\x1c\x5e\x86\xd3\x2c\x64\x38\x77\x04\xc5\xe1\x25\x76\xcc\x42\x62\x67\x47\x50\x1c\x5e\x62\xc7\x2c\x24\x76\x76\x04\x45\xcf\x3b\x98\x03\x55\x3d\x6f\x9c\x4d\xec\xfc\x40\x58\x67\x66\x13\x3b\x07\x83\x01\xf2\x9a\x4b\xec\xec\x08\x85\x77\x94\x2d\x0e\x06\x06\xce\x6c\x3e\xb1\xb3\x23\x20\x76\x9e\xb8\x30\xf7\x93\xb8\x30\xff\x4c\x5c\x94\x62\xf1\x7f\x37\x71\x61\x1e\xf0\x9e\xdd\xcc\xef\xd9\x7f\xfc\xd0\xa8\x59\xb6\x67\xc7\x8d\xba\x29\xf6\xec\x17\x56\xd8\xe8\x60\x92\x38\xb2\x52\xbe\x73\xc7\xba\x3d\xff\xc0\x13\x87\x40\xc9\xd2\x43\x71\x63\x03\xb4\x0b\x2b\xd4\x5a\xad\x56\x22\x59\xa3\x84\x84\xd8\xaa\x56\x4a\xb6\xb7\xb4\x44\x2a\x99\x99\x95\xcc\x2c\x93\x4c\x9c\x8e\x69\x2a\x5f\x7c\xb6\xa6\x5a\x4a\x41\xf1\x13\x64\x15\x03\x95\xea\x52\xd4\x95\xc8\xdd\x58\xaf\xf1\x8e\xfb\x19\xb9\x7f\x86\x8e\xc5\x40\xa5\x9a\x2e\x91\xfb\x23\x59\x37\x55\xb6\x38\x37\x54\x29\x31\x56\xef\x5f\x5c\x1c\xa5\x54\xc7\x1f\xc9\x3a\x2f\x68\x53\xed\x8a\xf4\xc1\x26\x41\x7f\x82\x5e\x71\x94\x52\xa5\xe6\x05\xed\x53\xd6\x54\xa3\xe2\xec\x53\xa5\xa0\x58\xbd\x7f\x41\x71\x94\x52\x8d\xf6\x29\xcb\x0b\xda\x54\xa3\x22\x05\xb2\x49\xd0\x9f\xa0\x51\x1c\xa5\x54\xa3\x19\x41\xc5\x31\xac\x26\x72\xc6\x07\xb8\xca\xc5\x14\xb5\x7b\x96\x52\x0c\x52\xd4\x26\x2f\xcf\xc9\xd8\x48\x97\x71\x0a\x67\x83\x8c\xfb\xd6\xa4\x18\xa4\xa8\xc8\x9c\x8c\xe2\xe8\x4c\x13\x19\xe3\x43\x37\xe5\x32\x8a\xda\x3d\xcb\x28\x06\x29\xea\x91\x97\xe7\x64\x6c\xa4\xc7\x38\xff\xb4\x41\xc6\x7d\xeb\x51\x0c\x52\xd4\x63\x4e\x46\x71\xee\xa7\x89\x8c\xf1\x89\xa1\x72\x19\x45\xed\x9e\x65\x14\x83\x14\xf5\xc8\xcb\x73\x32\x36\xd2\x63\x9c\x3c\xdb\x20\xe3\xbe\xf5\x28\x06\x29\xea\x31\x27\x23\x7f\x72\xd9\xe8\x57\x49\xe2\x91\x67\xc5\x4f\x92\xb0\x72\xcf\x02\xf2\x31\x8a\x3a\xc4\xe2\xac\x78\x8d\x34\x28\x77\x87\xd5\xe2\xed\x5b\x7f\x7c\x8c\xa2\xfa\xb2\xe2\x89\x03\xb5\x5b\x0b\xc7\x4f\xb3\x96\x8b\x36\x88\xf6\x76\x77\xe3\x20\xaa\xfd\xab\xbb\x41\x54\xfc\xc5\xdd\x20\xe2\xbf\xb6\x1b\xab\x1b\x6d\x21\x3f\xaf\x41\x38\xf8\xf9\xea\xad\xd1\xe8\x79\x55\x60\xf4\xbc\x7d\x61\xd1\xf3\xea\x5f\xc5\x50\x40\xa2\xe7\x15\x80\xe0\x92\x63\x39\xc2\x20\xcf\x18\x6f\x0d\x84\x38\xdf\x5b\x0e\x05\xd6\xed\x0b\x0c\x7e\xce\xb8\x26\x1c\x48\x5b\x00\x04\x0b\x0b\x90\x48\x14\x44\x9d\x9c\x2c\x8d\x3c\x9d\x48\x7f\x57\x4e\x97\xbd\xf9\x39\x9e\x86\xaf\x3f\x61\xc6\x65\x33\x66\x5c\x36\x65\xc6\x62\xce\x8c\xe3\x49\xd3\x08\x15\xfe\x64\xa4\x6a\xda\xec\x0d\x93\x9e\x57\x1b\x92\x9e\x57\x44\xa4\xe7\x15\x01\x11\xf2\xf3\x1a\x69\x25\x8d\x16\x0c\x71\xfa\xb5\xd2\x4a\xf6\xb6\x5c\xf0\x53\xb8\xf5\xad\xc4\x2c\xb3\x12\xbe\xce\x98\x39\x2b\x31\x85\x95\x98\xb1\x95\x34\x42\x85\x1f\x8c\xae\xb2\x92\xbd\x61\xd2\xf3\x6a\x43\xd2\xf3\x8a\x88\xf4\xbc\x22\x20\x42\x7e\x5e\x13\xbb\xd8\x46\x80\xc8\xc3\xc1\xd5\x4e\x76\x6f\xa0\x88\x73\xca\x5b\xb8\xd9\x22\x30\xbc\xb4\x00\x4d\x8c\x85\xac\x8d\xe1\x69\xe4\x55\xe4\x23\xb6\x6a\x78\xf6\xe6\x59\xc4\xd3\xbe\x2d\xe0\x29\x7a\x17\x5e\x5a\xba\x0e\x8d\x25\x3c\xd2\xc7\xa8\x07\xa1\x1b\x05\xa7\x99\x83\xd4\x15\x31\xaa\x42\xb3\x2f\xcc\x32\x07\xbd\xeb\xfe\x6c\x3f\x73\xa4\x5d\xb9\x5d\xaa\xbc\xaf\x3f\x6f\x99\x7a\xee\x96\xa9\x72\xdc\xea\x1d\xa2\x7c\xf8\x81\xf7\x3f\x28\x2f\x6d\xa8\x7b\xcd\x10\x9d\xdc\xdf\xaa\xbf\x35\xdf\xee\x65\x08\xf1\xc6\x48\x11\xb8\xec\xe1\x5b\x6e\x72\x65\xc9\x51\xa6\xab\x80\xd8\xce\x54\x5c\x2a\x5e\xff\xce\xb9\xa4\x95\xae\x5e\x0c\x01\xf5\x1f\x74\xd6\x7f\xff\x0b\xd4\x7c\x07\x0c\x14\x6f\x8e\x93\x53\x8f\x5f\xa0\x90\xad\xd9\x70\x33\x5c\x22\x5a\x83\x5b\x12\x6b\xcc\x84\x4d\xf3\x20\xab\xda\x84\x91\xf8\xfe\xb0\x64\xe8\xbe\x29\x1e\xc4\xc6\x1c\x28\x4f\x76\x53\xc5\x68\x7d\x53\x33\x84\x7c\x99\x8b\x07\xfb\xb8\x3a\xf5\x4d\xa5\xbb\xf3\x51\x9d\xee\xce\x47\xa5\xdd\x9d\x8f\xa0\x0b\xe7\x23\xa5\xbb\xcb\x5a\xdd\x5d\x96\x77\x77\x89\xdd\x5d\x8e\x32\xdc\xd5\x92\xf6\x7c\x54\x2e\xee\xf9\xc8\xe4\x0c\x9a\x19\x0e\x6b\x75\x79\x59\xd1\xe5\x25\xef\xf2\x32\xd3\x65\xef\x6a\xfc\xeb\xf5\x59\xff\xbc\x56\xc7\x09\x71\x69\xf7\x49\x2d\x86\x58\xf1\x67\x65\xa8\x6b\xf3\xdc\xfc\x67\x9d\x61\x38\x61\xe9\x10\xbc\x06\xba\xa2\x2b\xa5\xeb\xcf\xbd\xd1\x45\xaf\xff\x47\xb9\x69\x33\x9d\x89\xca\x41\x85\xa4\x50\x39\xac\xa0\x09\xbe\xb5\xe7\xee\xdc\x14\x64\xd0\x95\x72\xe6\x04\x1f\x7c\x1a\x1d\xa6\xe4\x83\x4f\xa3\x5a\xa2\x0f\x3e\x8d\xa4\xec\x83\x4f\xea\x0c\xeb\xf5\x87\xbd\x0f\xa6\x3e\x0b\xe8\xd2\x00\x46\x9f\xb1\x5d\x4e\xac\x19\x90\x90\x67\x6c\x97\xd7\xa2\xe1\xf2\x0f\xca\x20\x83\x4f\xa3\x2d\x46\x91\xd4\x55\xc3\xc8\x6a\xdc\x93\x89\x4f\xca\x40\xef\xcc\xd1\x67\xd3\xec\xd7\x1c\x48\x52\x57\x0d\x24\xab\x31\x60\x15\x9f\xd2\x95\xf5\xb7\xc1\xb5\x39\x36\xaf\xc5\x3b\x7c\xd4\x2e\x65\x85\xa6\xac\xc2\xfd\xc1\xe7\x22\x5d\x7f\xf0\x59\xa5\xf9\x60\x0e\xdf\x17\x89\xb0\x54\xa5\x3a\x2b\x23\x3a\x13\x34\x68\x9a\x7d\x79\xed\xf7\xd6\x51\xb4\xbc\x44\xb1\x3c\x7c\xe6\x95\xfb\x8a\x9b\x79\xe7\x75\x03\x66\x71\x3d\x64\x7e\xaf\xc1\x4b\x0b\x7b\x8d\x18\x0b\x59\xcb\xaf\x45\xb2\xdc\xa8\xd1\x65\xf3\xbc\x61\xe5\xf5\x48\x58\xb9\xb7\x2b\x92\xb0\xf3\xa6\x3f\x08\x4a\xaf\xe2\xce\xfd\xb8\x0a\x3b\x2d\xfd\x81\x95\x04\x48\x12\x88\x9b\xfe\xa2\xcd\xef\x4e\xa8\xc2\x8c\x37\xac\xbe\xe5\x2f\xf2\xf6\x96\x5c\xe7\x9d\xd7\xbf\xd4\x2e\xf2\xca\xae\xb4\x8b\xc4\x6b\x1d\x38\x12\xd9\x4b\xed\x04\x1e\x92\x22\x31\xab\x46\xd3\x2e\x3e\x86\xb9\xc1\xb0\xf6\x36\xf1\xe4\xa1\xd0\xba\x37\x70\x71\xea\x02\x4e\xa2\xb8\x14\xa8\x04\x95\x98\x06\xa1\x92\x67\x45\xb7\x06\x4a\x9c\xd3\x2c\x87\x09\xeb\xf6\x05\x12\x3f\x2f\x5a\x13\x22\xa4\x2d\x00\x84\x85\xa5\xf0\x48\x24\x44\xbd\xb8\x16\x71\xd9\xec\x46\xc4\x65\xf5\x65\x88\xcb\xbd\x65\x3b\xa2\x65\xfd\xbb\x09\x97\x25\xd7\x12\x2e\x4b\x41\x11\x18\xf0\x5a\xee\x7b\xe2\x97\x3f\xd4\xdf\x9a\x8a\x26\x3a\xf5\xf1\x5b\xe6\xe2\x47\x59\x04\xdd\xe4\x53\xd9\x6b\x31\xe2\xf7\x85\x27\x54\x37\x9a\x2c\xd2\x6e\xb1\x81\xa6\xe5\x1a\x44\x21\x09\xa4\xfc\x49\x8b\xb8\xac\xa2\x89\x6f\x85\xe1\x8a\x06\xb6\xda\x24\x2e\xab\x68\x92\xbc\x3c\x3a\x69\x20\x4a\x2a\xc8\x2d\x97\x04\x2c\x94\xa1\xc2\xd9\x55\x4f\xea\x54\xe3\xe5\x9a\x21\xde\x06\xd7\xca\x35\x5a\xc9\x17\xa5\x95\xb4\x8b\xab\x34\x23\x79\x9d\x5a\xbe\x75\x9a\x4d\xe2\x6f\x6b\x48\x5f\xec\xa1\x1c\xa4\x4f\x88\xcf\xe3\xa4\x93\x6c\xd5\x3e\x4f\x4e\x14\x0b\x0f\x2e\x5e\xcd\xa1\xbc\xc8\x8b\xce\x9d\xcd\x17\x46\x85\xc4\x9d\xc9\x5e\x3b\xc5\x84\x58\xa2\xa5\x97\x2f\xb3\x3a\xc8\xe7\x1a\xa4\x81\x2a\xaf\x89\x8e\x31\x38\xe6\x3c\x68\xe9\x7b\x41\xf8\x5d\xe1\xe2\xbd\x20\x99\xd7\x83\xa4\xea\x3f\xcd\x9a\x88\x01\xa9\x9a\x4f\x73\xa6\xc0\xdf\x20\x02\x9a\xf2\xce\x79\x2d\xf7\xd2\xf9\x6f\xaf\x57\xab\xd5\xeb\x19\x0d\x96\xaf\xa3\xc0\x25\xde\x94\xda\xc4\x2e\x79\xed\x7c\xc5\xab\x93\xa0\x2c\xb1\x24\xdf\xd7\xdf\x8e\x5f\x30\x9e\xcd\x44\x14\xb4\x10\x94\xbc\x38\x3b\xf3\x9a\x6b\xf1\xf3\xe2\xfc\x0b\xb3\x13\x2d\x94\xbf\x2b\x1d\xc9\x6f\xb4\x05\x7f\xeb\x7a\xa8\xe1\x2e\xe9\x11\x97\x65\x6e\xde\xa7\x19\xf3\x7f\xda\x20\x4a\x51\x63\x55\x9c\x95\x45\x44\xef\xe5\xdb\x65\xb2\x57\xb5\x27\xfe\x27\xae\xfe\x9f\x00\x00\x00\xff\xff\x6e\x2c\x19\x62\x46\x87\x00\x00") + +func apiJsBytes() ([]byte, error) { + return bindataRead( + _apiJs, + "api.js", + ) +} + +func apiJs() (*asset, error) { + bytes, err := apiJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "api.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _bootstrapJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4b\x2c\x52\x48\x2c\xc8\x54\xb0\x55\x28\x4a\x2d\x2c\xcd\x2c\x4a\xd5\x50\xd2\xd3\x4f\x2c\xc8\x54\xd2\xb4\xe6\x02\xc9\x25\xe7\x64\xa6\xe6\x95\x28\xd8\x2a\xe4\xa5\x96\x2b\x38\x83\x39\x1a\x9a\xd6\x80\x00\x00\x00\xff\xff\xd6\x98\xdc\xad\x36\x00\x00\x00") + +func bootstrapJsBytes() ([]byte, error) { + return bindataRead( + _bootstrapJs, + "bootstrap.js", + ) +} + +func bootstrapJs() (*asset, error) { + bytes, err := bootstrapJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "bootstrap.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _ottoJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\x41\x6f\x9b\x40\x10\x85\xef\xfc\x8a\x27\x9f\x70\xe4\xe2\x34\xa7\xaa\x96\x0f\xae\x93\x2a\xa8\x91\x5d\x19\xa7\x51\x14\xe5\xb0\x86\x01\xa6\x59\xef\xd2\xdd\xc5\x04\x45\xfe\xef\xd5\x62\x9c\x38\xcd\xb1\x5c\x60\x77\xde\xbc\xf9\x66\x86\xf1\x59\x80\x33\xcc\x75\xd5\x1a\x2e\x4a\x87\x70\x3e\xc4\xc5\xf9\xe7\x2f\x58\x51\x86\x6b\xe1\x46\x88\x55\x1a\x05\xe8\x64\x37\x9c\x92\xb2\x94\xa1\x56\x19\x19\xb8\x92\x30\xab\x44\x5a\xd2\x31\x32\xc2\x2f\x32\x96\xb5\xc2\x45\x74\x8e\xd0\x0b\x06\x7d\x68\x30\x9c\x78\x8b\x56\xd7\xd8\x8a\x16\x4a\x3b\xd4\x96\xe0\x4a\xb6\xc8\x59\x12\xe8\x39\xa5\xca\x81\x15\x52\xbd\xad\x24\x0b\x95\x12\x1a\x76\x65\x57\xa7\x77\xf1\x24\xb8\xef\x3d\xf4\xc6\x09\x56\x10\x48\x75\xd5\x42\xe7\x27\x3a\x08\xd7\x33\xfb\xa7\x74\xae\xfa\x3a\x1e\x37\x4d\x13\x89\x8e\x37\xd2\xa6\x18\xcb\x83\xd4\x8e\x6f\xe2\xf9\xd5\x22\xb9\xfa\x74\x11\x9d\xf7\x49\xb7\x4a\x92\xb5\x30\xf4\xa7\x66\x43\x19\x36\x2d\x44\x55\x49\x4e\xc5\x46\x12\xa4\x68\xa0\x0d\x44\x61\x88\x32\x38\xed\x99\x1b\xc3\x8e\x55\x31\x82\xd5\xb9\x6b\x84\x21\x6f\x93\xb1\x75\x86\x37\xb5\x7b\x37\xb2\x23\x22\xdb\x77\x02\xad\x20\x14\x06\xb3\x04\x71\x32\xc0\xb7\x59\x12\x27\x23\x6f\x72\x17\xaf\xaf\x97\xb7\x6b\xdc\xcd\x56\xab\xd9\x62\x1d\x5f\x25\x58\xae\x30\x5f\x2e\x2e\xe3\x75\xbc\x5c\x24\x58\x7e\xc7\x6c\x71\x8f\x1f\xf1\xe2\x72\x04\x62\x57\x92\x01\x3d\x57\xc6\x77\xa0\x0d\xd8\x0f\x93\xb2\x6e\x72\x09\xd1\x3b\x84\x5c\x1f\x90\x6c\x45\x29\xe7\x9c\x4a\xa1\x8a\x5a\x14\x84\x42\xef\xc8\x28\x56\x05\x2a\x32\x5b\xb6\x7e\xa7\x16\x42\x65\xde\x45\xf2\x96\x9d\x70\xdd\xd5\x87\xb6\xfa\x7f\x65\x1c\x04\x3b\x61\x50\x48\xbd\x11\xd2\x62\xda\x2d\x7a\x12\x04\x79\xad\x52\x9f\x79\x9c\x6d\xb8\x1d\xe2\x25\xf0\x4b\xf2\xf2\xad\xce\x6a\x49\x98\xe2\x65\xff\x7a\xf7\x44\xad\xcf\x5f\x6e\x7e\x53\xea\x22\x7f\x0a\x7b\xd7\x61\xa7\xf1\x3d\x84\x5e\xc8\x7e\x0f\x3e\x7e\x74\x3c\x71\xc0\xb4\x8b\x3c\xf0\xe3\x6b\xe4\x50\xeb\xe1\x89\xda\x47\x4c\x8f\xa0\xdd\xb1\x93\x1c\x00\x0c\xb9\xda\xa8\x5e\x3b\x09\xf6\x41\xf0\xd3\xe8\x2d\x5b\x8a\x2a\xa3\x9d\x76\x6d\x45\x51\xce\x4a\x48\xe9\x4b\xbc\x36\x17\xe6\x47\x86\xde\xc0\x77\x1f\xb9\x92\x54\xf8\xa6\xd9\x09\x59\xd3\x1b\x6b\xaf\x3c\xfa\x1b\xb2\x5a\xee\x28\xcc\xc3\xe1\xf0\xdf\xcc\xd3\x06\xfb\xb4\xce\x6c\xd2\xdf\xee\x87\x87\xaf\xfd\xe8\x04\x89\x8c\xf9\xef\x62\xae\x34\xba\x01\x19\xf3\xa1\x52\xf7\xde\x4f\x82\xbf\x01\x00\x00\xff\xff\xbc\x3a\x59\x74\x50\x04\x00\x00") + +func ottoJsBytes() ([]byte, error) { + return bindataRead( + _ottoJs, + "otto.js", + ) +} + +func ottoJs() (*asset, error) { + bytes, err := ottoJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "otto.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _promise704MinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x57\x51\x6f\xdb\x38\x12\x7e\xbf\x5f\x21\xeb\x00\x2f\x89\x30\x8a\x9d\xb4\xbb\xa8\x54\xae\xb1\xd8\xb6\xc0\xe1\xb6\xed\xa1\x68\x71\x0f\x86\x51\x28\xd2\xb0\x66\x57\x21\xbd\x24\x15\x37\xb0\xf5\xdf\x0f\x43\x4a\x94\x9c\xb8\x8b\xde\x8b\x2d\x71\x66\xc8\xe1\xcc\x37\xdf\x8c\x66\xa2\x55\x95\x93\x5a\x25\x8a\x38\x06\xcc\xd0\x43\x5c\xd1\xa4\x65\x82\x1e\xa4\x20\x33\x58\xb7\x9b\xf0\xe4\xfc\xd3\x7d\x69\x92\x8a\xa7\x83\x6a\xca\xb9\x7b\xd8\x81\x16\x89\x81\xbf\x5a\x69\x60\x3e\xef\x1f\x0a\xb4\x11\xf3\x79\x45\x0d\xb8\xd6\xa8\xa4\x22\x2d\x9b\x2d\x28\xae\xcb\x61\x4d\xf6\x6b\xb8\xab\xe5\x0a\xf6\xc9\x6b\x63\xb4\x21\xe9\xef\xa5\x52\xda\x25\x42\xaa\x3a\xb9\xd3\x75\xdb\x40\xf2\x53\x7a\xd1\x5e\xa4\x3f\xa5\xb4\x70\x5b\xa3\xf7\x89\xcd\x2a\x5d\x03\x4f\xdf\xbe\x7f\xf5\xe9\x8f\xd7\x9f\xdf\xbd\xff\xf8\xf9\xcd\xfb\x4f\xef\x5e\xa5\xcc\x76\xb8\x5f\xc3\xd1\x77\x7e\x80\x6f\x3b\x6d\x9c\xcd\x0f\x5d\x57\xe0\x1d\xd6\x8b\x4d\x56\x95\x4d\x43\x9a\xac\x17\xb1\xe1\x36\x44\x85\x0b\x02\xf7\x8a\xcb\xcd\x5a\x6d\x8a\xde\x55\x4d\x60\x05\xb9\xa2\x1d\x6b\xd8\x68\xa9\x58\x88\x5d\xd7\x6b\xe1\x91\x83\xb0\x13\xda\x10\xdc\x4e\xfe\x48\xbc\x58\xcb\x17\x45\xfb\xd2\x64\x0d\xa8\x2f\x6e\x5b\xb4\x17\x17\x54\x13\x83\x41\x8f\x2e\x74\xe4\xb0\xcc\xd7\xa3\xb7\x78\x38\x3d\xa4\xad\x85\xc4\x3a\x23\x2b\x97\x16\x31\x87\x86\xd0\x43\x37\xc9\xa8\xa2\x07\x67\x1e\x0e\xfd\x56\x2a\x73\x5b\x50\x5d\x55\xba\x6a\x4b\x1c\x1d\x96\x6b\xee\xd8\xbe\x1b\xcd\x24\x9e\x71\x6a\x48\x1c\xed\xcd\x60\x62\x06\x27\x66\xed\xe0\x1a\x1a\x7a\x78\x0d\x36\x66\x62\x63\x4e\x6c\x04\x7a\x28\x05\x49\xf5\xed\x57\xa8\x5c\x3a\x1b\x02\xe5\xb6\xd2\xd2\x90\x72\x04\xc8\xc7\x87\x1d\xf4\x20\xf9\x8f\xd1\x77\xd2\x82\x4d\xee\x5a\xeb\x92\x5b\x48\x2a\xad\xac\x33\x6d\xe5\xa0\x4e\xee\x65\x89\xfa\xa9\x07\xdc\x18\xff\xb8\xad\x3a\xbf\x27\xa2\xae\x4c\xa2\x3a\x82\x4d\xda\xec\xf3\xcd\x2f\x7c\xc1\xc2\xe3\xf2\x9a\xab\xb6\x69\xfa\xb7\xe7\x2f\xf8\x7a\xc3\xd4\x8c\x73\x33\x9f\xdf\xe3\xbd\xd1\xdd\xf1\x5a\xd5\x10\x8a\x21\x7e\xb0\x4f\x54\x16\x1d\xd5\x86\xc4\x74\x6a\x26\x03\xfc\x5a\x5f\x09\x82\x18\x5a\xb4\x3e\x4f\x5e\xc4\x2c\x51\x0c\x05\x3b\x5f\xaf\x2d\xa5\xdd\xe4\x1c\x1b\x32\x85\x90\x2b\x6e\x38\xe7\x0a\x7d\x2e\xa8\xc2\x87\xe5\xf5\x80\xa0\xc5\x20\x59\xdd\x6b\x59\x27\x0a\xfd\xcf\x76\xad\x45\x0c\xe4\x7e\xe9\x61\xf4\x67\xa8\x85\x65\x34\x72\x99\x56\x6f\xda\x46\xc8\xa6\x81\x3a\xc7\xb7\x0f\x80\xc9\x82\x1a\x83\x8c\x51\xe1\x9c\xc3\x50\xdc\xb8\x1f\x19\x8d\x1b\xe2\xb2\x5d\xc8\x18\xf3\x4e\xd1\xbc\x7c\xb2\x14\xa8\xc0\x70\x49\x86\x95\xc2\x70\xce\xf7\xab\xa9\x6a\x4d\xf3\xe9\x66\xe6\x24\x10\x4d\x08\x84\x14\xc4\xe1\xd1\x83\x33\x65\x1f\xbc\x49\xaa\x7f\x4b\xfa\x1d\x92\x2a\xb0\xcd\x2d\x24\x06\xac\x6e\xee\xa1\x4e\xf6\xd2\x6d\x13\xe9\x2c\x34\x22\x4b\xa9\x07\x91\x9b\xcf\x23\x3a\x63\x19\xbb\xe3\xf1\x4c\x71\x3b\x3a\x04\x4f\x13\xe7\x8d\x01\x6f\x31\x75\xa6\x8e\xcb\xa1\x16\xe7\x73\x97\x48\x65\x5d\xa9\x2a\xdc\x41\xd0\x58\xa9\x08\xbe\x9b\x10\x0d\xee\x98\xcf\xd2\x96\xa8\x47\xb8\x8e\x47\x9f\x84\x3f\xb9\x27\x90\xdd\x4a\x55\x13\x47\x99\xa2\x5d\xd8\x6c\x19\x37\xc3\x7d\xc6\xd0\x95\x21\x74\x41\xe9\xfa\x3b\x4a\xf8\x76\x18\x98\xcd\xf1\x45\xe1\x5e\x06\x18\xf5\xbc\xe5\x2e\x2e\xa8\x47\x2a\x2e\xae\xdd\x86\x16\xfe\xc9\xd7\xcc\xb8\xcb\x2e\x32\x04\x56\xd1\x04\x55\xe7\xa8\x52\xad\x54\x3e\x96\xdc\x08\xba\x73\xba\x6e\xe5\x26\xba\x7d\x82\x39\x8c\x27\xdf\x87\x4b\x86\xec\xcc\x96\xcc\x70\x64\xab\x69\x07\x80\xe3\x91\x00\x9f\x2d\x58\x43\x1c\x53\x94\x76\xe7\xa5\x65\x2f\xa5\x05\x1c\x8f\x66\xc6\xf9\x7e\x2a\xa9\x29\xf5\x5d\xe8\x81\x2b\x92\x96\xb6\xdc\x5d\x99\x72\x9f\x52\x56\x07\xf2\xd8\xf3\x43\x57\xb8\xa1\x53\x70\xc1\x44\xf6\xf9\xc5\x0b\x6e\x98\x40\x9f\x9d\xc6\xdb\x78\x58\xf0\x29\xdb\x07\x58\xe3\xc5\x26\x04\x32\xe3\x5c\x8c\x3d\x16\xa5\xd8\x95\x42\x21\xc1\xc8\x24\xbd\x86\xed\x35\x3c\x8f\x84\x1c\x50\x06\x5d\xc7\x0e\xa3\x97\xf9\xb3\x6e\xc3\xae\x7f\xbc\xd1\xf4\x5d\xd3\xf9\xc3\x34\xd1\x78\x95\x78\xa0\xeb\x21\xe7\x02\x73\x32\xe7\xc3\xa2\x31\x2c\xd9\x55\xa5\x0d\x64\x5f\x2d\xd2\x6c\x8c\x85\x2e\x42\xcf\x34\x64\xb6\xa0\xac\xc5\xff\x25\x65\x82\x1b\x4f\x30\x94\x55\xdc\x10\x8f\xed\x05\x65\x96\x1b\xb2\xa0\xac\xe1\x86\xa4\x29\x2d\x74\xd6\xd7\x2f\x9f\x66\x0c\xa9\x69\x5a\x5a\x3a\x96\xd6\x84\xb5\x22\x51\x08\x5c\x0c\xfb\x4f\x97\x2b\xaf\xcb\x39\x9f\x2d\xe2\xf0\x12\x97\x96\xc3\x52\x8b\x4b\x27\x76\xd6\x97\x69\x3a\x5d\x6a\x8a\x49\x9b\x1b\x41\x7e\x96\x48\x14\xc5\x16\xda\x47\xd7\x03\xe2\x3b\x65\xef\xe8\xa4\xc1\x68\xe2\x42\xd5\x23\x3e\x1f\x37\xeb\xa0\x70\x0a\x2b\x47\x00\x49\xb4\xd7\xc0\x8c\x76\x4c\x67\x65\xd3\xf0\xc7\xa3\x91\xe3\xbf\x19\x53\x3e\x4c\x50\x6a\x1b\x59\x41\x98\xa8\x54\xcc\xfa\x93\x43\x60\x32\x5e\x9a\x38\x5e\x8a\x73\x94\x2a\xce\x46\x42\xd0\x60\x71\x92\xc9\xf9\x5c\x84\x2a\xe1\x5c\x3f\x2a\x9c\x49\x2f\x14\xa1\x17\x0a\x7c\x18\x7b\xe1\x72\x90\xac\xbc\x3f\xa1\x23\x91\xeb\x61\x75\x3e\x07\x12\x16\x03\xe5\x86\x83\xc8\x34\x1e\x68\x87\x91\x82\xbe\xd6\x2b\x2e\xfe\x2e\x45\x55\x88\xa0\xed\xcb\xa4\x0a\x29\x12\x34\x06\xcd\x9f\x63\xff\xee\x9c\xae\xc3\xc1\x94\x0b\x86\x18\xbb\xbc\x94\xf3\xb9\x9f\xc7\x7a\xd0\xb9\x9e\x83\x23\x14\xc8\x7a\x43\x8b\x71\x0a\x1d\xe4\xfd\xa8\xe9\xa6\xa3\x26\x9e\xe1\x27\xfc\xce\xa7\xde\x78\x8a\x3d\xc9\xfe\xf9\xcc\x7a\x62\x00\x04\x4c\xb0\x2b\x2b\xf8\x51\x2b\x95\x09\x6d\x5e\x97\xd5\xf6\xe4\xb2\xb1\x86\x89\xa2\x21\x14\x7e\x7c\xec\xf7\x8f\x39\x5e\xa7\x1e\xd7\xe9\xe6\xdc\x69\x9e\x22\xbd\xad\x27\x5b\x45\x3d\xbf\x8d\x74\x93\x2f\xbb\x0d\xbb\xf9\x7f\x26\x69\x29\x48\x35\x44\x37\xcc\x8d\x55\x66\xb7\x52\x38\x42\x1f\x0d\xd9\xbe\x48\x0a\xc7\x45\xaf\xbe\x12\xd9\x4e\xef\x08\xcd\x31\x04\x92\xb9\xcc\x95\xf6\x4f\xae\x58\x8b\x89\x9b\x0c\xda\x7d\x2b\x0c\x52\xec\x95\xfd\x24\x88\x34\x19\x5a\x87\xc0\x49\xb3\xc2\x1f\xcb\xdb\xec\xae\xfc\x13\x3e\xc0\x5f\x2d\x58\xf7\x7b\xd9\x34\x6f\x8c\xbe\xfb\x28\xef\xc0\x20\xd7\x4f\xc8\x94\xc9\x49\x5d\x54\x27\x15\x1d\xc6\xf3\x78\x6a\x28\xe1\x81\x2f\x7c\x26\xb4\x02\x1c\x95\x56\xf1\x89\x28\x9a\x93\x2a\x4c\x8c\x0a\x27\x52\x4a\x3b\x21\x55\xd9\x34\x0f\x8f\xdc\x67\x62\x3d\x44\x60\xc3\x51\xd4\xf5\x39\x88\x0d\xe6\xd9\xd3\xf8\x9f\x00\xe1\x7c\x32\xc0\x8f\x1f\xfd\xce\xc7\x23\x69\x09\x76\x04\xec\x14\xd3\x03\x55\x77\x92\x3d\xcf\x04\xf6\xe5\x20\x2f\x42\x96\x14\xf7\xe4\x6c\x2f\xf8\x92\x89\xb5\xea\xbf\x0a\x29\xb3\xbf\x36\x27\x13\x0e\x83\x98\xcc\x4b\x5b\xc0\xaf\xce\xcf\x38\x62\xed\x36\x5c\xac\xdd\x85\xdd\x14\x51\xcc\x2d\xb3\x7c\xd1\x75\xc3\x02\x5f\xe0\x3b\x3a\xb8\x3c\x07\x13\xbe\x64\xa1\x43\x97\x18\x4d\xc3\x6b\x5d\xb5\x77\xa0\x5c\x56\x19\x28\x1d\x7c\x84\x6f\xee\x9d\xae\xc1\xf7\xb6\xe1\x03\x33\xd3\xb7\x16\xcc\x3d\x10\xc3\x0e\xd5\xb6\x34\x65\xe5\xc0\xbc\x2a\x5d\x99\xcf\x16\x1d\x65\xd3\xec\xf2\x4b\xc7\x4c\x56\x97\xae\xe4\xee\xf4\xa3\x2e\x56\xca\x44\x3d\xca\x1d\xa1\x87\xaa\x81\xd2\x20\x9e\x74\x8b\xbd\x81\xf9\xf7\x7f\x29\x07\xe6\xbe\x6c\x88\xa1\x4c\x91\xc0\x79\xc0\x2d\xb8\x41\xd1\xb1\x05\x5e\xc3\x82\x8b\xaa\x8e\x3d\x5f\x20\x6d\x45\x44\x82\x6f\xef\xed\x80\xe6\xd9\xd2\x47\xa8\xe1\xcb\xc5\xf5\x33\x56\x72\x95\xbd\x6d\x5d\x89\x7e\xbc\x0f\xf7\x34\xc7\xa3\xca\xfe\x0b\xb7\xff\x96\xee\xb1\xa4\x68\xcf\x4d\x80\xe5\x4a\x13\x43\x73\x89\x5e\x42\x66\x42\x89\xbc\x69\x5a\xbb\xe5\x2d\x83\xef\xd6\x0d\x97\x1d\x0d\x08\xf0\x03\x52\xda\xaa\x1a\x84\x54\x50\x8f\x9f\x8c\x5f\x1a\x7d\x5b\x36\xab\xf0\x97\x9f\xd3\xc0\xcf\x85\x15\xfe\x9c\x95\xee\xa5\xaa\xf5\x7e\x15\xfe\xf2\x03\x32\xda\xa1\xdb\xb0\xe7\x67\x88\xe8\xe9\xf7\x6a\xff\xb1\x3b\xa9\xe6\x5a\x2b\x98\xcf\xc9\x79\xc1\xa3\xb9\x31\xa4\xaa\x34\x5f\x3c\xbe\xec\xc0\x4d\x91\x28\xb3\x72\xb7\x6b\x1e\xc2\xd5\xa3\x16\xcd\xf1\xbd\x80\x09\x95\x4e\x0b\x74\x92\xf8\x29\xea\xc2\x57\x75\xc7\x16\x3d\x69\xe3\x15\x7f\x7e\x7a\xc5\x7e\x2c\x4e\x69\x31\x09\x15\x7f\x74\xdb\xf1\x7a\x81\x08\x1b\x79\x3b\xce\x8c\x2c\x2e\x81\xfd\xf9\x12\xbe\x39\x50\x56\x6a\x65\xbd\xb0\x97\xee\x74\xf3\x80\x1f\x16\x97\x18\x13\x2f\x08\x2c\x34\xdd\x28\x5f\xb2\xef\xee\x93\x5f\xb3\x73\xbb\xe4\xcf\x19\x3a\x9f\xdf\x74\x1b\xbc\x20\x5b\xff\xbc\xa1\xc5\x3f\xae\xae\xfe\x99\x58\xdd\x9a\x0a\xde\x96\xbb\x9d\x54\x5f\x3e\x7d\xf8\x83\x47\x63\x7b\xd5\x7f\x8d\x5c\xfe\x92\x2d\xb2\x67\xd9\x9d\x54\xd9\x57\x9b\xdd\x95\xbb\xff\x05\x00\x00\xff\xff\x2b\xa7\x63\xcc\x8b\x13\x00\x00") + +func promise704MinJsBytes() ([]byte, error) { + return bindataRead( + _promise704MinJs, + "promise-7.0.4.min.js", + ) +} + +func promise704MinJs() (*asset, error) { + bytes, err := promise704MinJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "promise-7.0.4.min.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _promiseDone704MinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x5f\x4a\xc4\x30\x10\x87\xdf\x3d\x45\x5d\x61\x49\xa0\x3b\xdd\x07\x41\x70\x29\x5e\x40\x41\x44\x0f\x10\xd6\x69\x1b\x49\x66\x86\x64\xa2\x94\xd2\xbb\x4b\x14\xeb\xcb\x3e\xfe\xfe\xf0\xf1\xed\x86\x42\x67\xf5\x4c\xbb\xeb\x5e\x67\x41\x1e\x9a\xe7\xc4\xd1\x67\x04\x49\xac\x5c\x3b\x78\x67\xc2\xfd\xde\x5c\x1e\xfa\x3f\x82\xd1\x96\xec\xf2\xe9\x52\xc3\xbd\x4b\x63\x89\x48\x9a\x21\x20\x8d\x3a\x3d\xe8\xe4\x33\xe8\x84\x04\x4e\x24\xcc\xa6\xe6\x76\x7b\xd9\xfb\x9a\x4f\xfc\xf3\x30\x54\x42\x68\xff\xa9\x76\xc9\xa8\xaf\x3e\x22\x17\x35\x5b\x6d\x17\x9d\x12\x7f\x35\xba\xb6\x47\xbb\xda\xd5\x9e\xae\xba\xee\xa6\xc9\x5c\xd2\x19\x9f\x9c\x88\xa7\xf1\xed\xe5\xb1\xef\x84\xc3\x3c\xf8\x10\x72\x27\xbf\xfe\x87\x6a\x7d\xb8\x83\x23\xdc\x42\xf4\x04\x1f\x19\xa2\x93\xef\x00\x00\x00\xff\xff\x38\x68\xbc\x00\x09\x01\x00\x00") + +func promiseDone704MinJsBytes() ([]byte, error) { + return bindataRead( + _promiseDone704MinJs, + "promise-done-7.0.4.min.js", + ) +} + +func promiseDone704MinJs() (*asset, error) { + bytes, err := promiseDone704MinJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "promise-done-7.0.4.min.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _pureUuidJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x7d\xf9\x77\xdb\x46\x92\xf0\xcf\x9b\xbf\xa2\xcc\xdd\xf8\x03\x25\x90\xc2\x4d\x50\x32\x35\x2b\xeb\xb0\x39\x6b\x4b\x5a\x1d\x93\x64\xb4\x4a\x1e\x08\x34\xc5\x96\x40\x80\x01\x40\x89\x72\xec\xfd\xdb\xbf\xd7\xd5\xb8\xd1\xa0\x8e\x64\x66\xf2\xbd\x8f\xcf\x8f\xa6\x88\xae\xbb\xba\xaa\xfa\xe4\xd6\xc6\x9b\xef\x36\x36\x00\x4e\x97\x11\xe9\x5d\x5e\x8e\x0f\xa0\xd7\xc3\x3f\xe0\xaf\xce\xbd\x73\xee\x46\x74\x91\xc0\x7b\x27\x26\x1e\x5c\x06\xf4\x9e\x44\xb1\xe3\xfb\x8f\xec\xf3\xaf\x4b\x02\x63\x8f\x04\x09\x9d\x52\x12\x81\xc4\x80\xbb\x88\x6b\x3f\x5c\x3c\x46\xf4\x66\x96\x80\xe4\x76\x41\x53\x14\xa3\xa7\x29\xaa\x0d\x67\x8e\x3f\x85\xf3\x3e\x1c\x06\x37\xc4\x8f\xdd\x99\xe3\xfb\xf0\x2e\x8a\xc9\x7f\x92\xe2\x8b\xbe\x1b\xce\x77\xbf\xdb\xd8\xe0\x4c\x91\x68\x4e\xe3\x98\x86\x01\xd0\x18\x66\x24\x22\x93\x47\xb8\x89\x9c\x20\x21\x9e\x0c\xd3\x88\x10\x08\xa7\xe0\xce\x9c\xe8\x86\xc8\x90\x84\xe0\x04\x8f\xb0\x20\x51\x1c\x06\x10\x4e\x12\x87\x06\x34\xb8\x41\x4c\x0e\xb8\xe1\xe2\x91\xb5\x4e\x66\x34\x86\x38\x9c\x26\x0f\x4e\x44\xc0\x09\x3c\x70\xe2\x38\x74\xa9\x93\x10\x0f\xbc\xd0\x5d\xce\x49\x90\x38\x09\xa3\x39\xa5\x3e\x89\x41\x4a\x66\x04\x71\x74\xce\x53\xa8\x4e\x17\x89\x79\xc4\xf1\x81\x06\x90\xcc\x08\x64\x8f\xe0\x81\x26\xb3\x70\x99\x40\x44\xe2\x24\xa2\x2e\xc3\x23\x03\x0d\x5c\x7f\xe9\x65\xbc\x64\x4d\x7c\x3a\xa7\x29\x25\x86\x02\x35\x16\x33\xc4\xcb\x98\xc8\xc8\xaf\x0c\xf3\xd0\xa3\x53\xf6\x3f\x41\x11\x17\xcb\x89\x4f\xe3\x99\x8c\x78\x3c\xca\x48\x4c\x96\x09\x91\x21\x66\x0f\x5c\x12\x30\x48\x27\xf0\xb6\xc2\x08\x62\xe2\xfb\x0c\x0b\x25\x31\x97\xbb\xe0\x12\xdb\x40\x12\x22\x9a\x05\x53\x72\x92\xaa\x0d\xe9\x3f\xcc\xc2\x79\x55\x2a\x1a\xc3\x74\x19\x05\x34\x9e\x11\x0f\x45\x0f\x21\x0e\x91\xea\x2d\x71\x93\x0c\x13\x03\x99\x86\xbe\x1f\x3e\xd0\xe0\x06\xdc\x30\xf0\x28\x93\x2e\xde\xce\xec\x79\x31\x23\xe0\x4c\xc2\x7b\x82\xd2\x71\x17\x09\xc2\x84\xba\xdc\x10\x68\x9a\x45\x61\xf3\xf4\x51\x8c\x8e\x32\x21\xa9\x1a\x89\x87\xb8\x68\x00\x4e\x49\xc0\x88\x31\x13\x27\x4e\x90\x50\xc7\x87\x45\x18\x21\xe5\xba\xe0\xfd\x9c\x93\x8f\x87\x70\x7e\x72\x74\xf1\xc3\xde\xd9\x21\x8c\xcf\xe1\xf4\xec\xe4\x6f\xe3\x83\xc3\x03\xe8\xec\x9d\xc3\xf8\xbc\x23\xc3\x0f\xe3\x8b\x8f\x27\x97\x17\xf0\xc3\xde\xd9\xd9\xde\xf1\xc5\x4f\x70\x72\x04\x7b\xc7\x3f\xc1\x7f\x8d\x8f\x0f\xb8\xfe\x0f\x7f\x3c\x3d\x3b\x3c\x3f\x87\x93\x33\x18\x7f\x3e\xfd\x34\x3e\x3c\x90\x61\x7c\xbc\xff\xe9\xf2\x60\x7c\xfc\x01\xde\x5f\x5e\xc0\xf1\xc9\x05\x7c\x1a\x7f\x1e\x5f\x1c\x1e\xc0\xc5\x09\x12\x4d\xd1\x8d\x0f\xcf\xe1\xe4\x08\xd1\x7c\x3e\x3c\xdb\xff\xb8\x77\x7c\xb1\xf7\x7e\xfc\x69\x7c\xf1\x93\x0c\x47\xe3\x8b\x63\x86\xf7\xe8\xe4\x0c\xf6\xe0\x74\xef\xec\x62\xbc\x7f\xf9\x69\xef\x0c\x4e\x2f\xcf\x4e\x4f\xce\x0f\x61\xef\xf8\x00\x8e\x4f\x8e\xc7\xc7\x47\x67\xe3\xe3\x0f\x87\x9f\x0f\x8f\x2f\xfa\x88\x6a\x7c\x0c\xc7\x27\x70\xf8\xb7\xc3\xe3\x0b\x38\xff\xb8\xf7\xe9\x13\x92\xdc\xbb\xbc\xf8\x78\x72\x86\x7c\xee\x9f\x9c\xfe\x74\x36\xfe\xf0\xf1\x02\x3e\x9e\x7c\x3a\x38\x3c\x3b\x87\xf7\x87\xf0\x69\xbc\xf7\xfe\xd3\x21\x27\x77\xfc\x13\xef\xc1\x9f\xf6\xc6\x9f\x65\x38\xd8\xfb\xbc\xf7\xe1\x10\x21\x4f\x2e\x3e\x1e\x9e\x61\xd3\x94\xcb\x1f\x3e\x1e\xe2\x57\xe3\x63\xd8\x3b\x86\xbd\xfd\x8b\xf1\xc9\x31\xd3\xd1\xfe\xc9\xf1\xc5\xd9\xde\xfe\x05\xd7\xd1\xc5\xc9\xd9\x45\x0e\xfe\xc3\xf8\xfc\x50\x86\xbd\xb3\xf1\x39\x53\xd0\xd1\xd9\xc9\x67\x19\x98\x8a\x4f\x8e\x50\x87\xc7\x0c\xf6\xf8\x90\x63\x62\xea\x67\xdc\x23\x96\xdc\x52\x27\x67\x28\xd1\xe5\xf9\x61\xc1\xd3\xc1\xe1\xde\xa7\xf1\xf1\x87\x73\x86\xa0\x6c\xd6\xfe\x77\x1b\x5b\xdf\x7d\xb7\xb5\x01\x45\xe0\x82\xcf\xa1\xb7\xf4\x09\x1c\x90\x29\x0d\xd0\x37\x41\xba\xfc\x7c\xd0\x05\xd8\xd8\xfa\x4e\x9a\x2e\x03\x97\x7f\x17\x85\x61\x22\x43\xe0\xcc\x89\x0c\x53\xc7\x4d\xc2\xe8\xb1\x0b\xbf\x7d\x07\x00\xb0\xb5\x01\x37\x7e\x38\x71\x7c\xf0\x18\x12\xb2\x0d\x53\xc7\x8f\x09\x43\x50\x7d\x3c\x47\x52\xb5\xc7\x74\x0a\x52\xf2\xb8\x20\xe1\x34\x05\x87\xd1\x68\x04\x9d\x8c\x72\x07\xde\xbe\x85\xca\xf3\xbe\x33\xf7\xe0\x0d\x6b\xb3\x0c\xf8\x37\x5e\xa7\x8b\xa8\x52\x6a\xb0\xf7\xf9\x00\x48\x70\x4f\xa3\x30\x60\x91\x0b\x32\x52\xec\xc5\x21\x4a\x82\x75\xe1\x37\x88\x48\xb2\x8c\x82\x4c\x2e\x94\xb5\xbb\x03\xdf\xba\x3b\x08\x46\x18\xb7\x25\x36\xb9\x18\x9c\xcd\x10\x7b\x7b\x99\x49\xfe\xb4\x4f\x56\xac\xc3\xc5\x95\x56\x99\xc2\x32\x3e\xf7\xc3\xf9\x3c\x0c\xfe\x7a\xde\xca\x6c\x1d\x57\x8d\xc3\x96\x76\x57\x1d\x8f\x4c\x9d\xa5\x9f\x74\xae\x61\x54\x7b\xc6\x61\xbe\xe5\x72\x55\xf8\x79\x1f\x85\x0f\x31\x89\x5a\xd9\x61\x54\xaf\x98\x0b\x5c\x37\x59\xf9\x26\xb1\x50\x25\x43\x87\xe5\xbc\x8e\x0c\x85\x82\xb7\x36\x10\x10\x36\xb6\x98\xfc\x99\x4b\x80\x13\x45\xce\x23\x0b\x9c\x33\xb2\xea\xb1\xa8\xcd\xe3\x23\xf3\x4a\x06\x96\xd1\xbd\x77\x22\x70\xb4\x19\x0a\x9f\xa3\x9c\x3c\x26\x24\x96\x61\x42\x6e\x68\x20\x03\x09\x3c\x19\x96\x8b\x05\x89\x5c\x87\x05\xfb\x38\x89\x64\x58\x84\x71\x59\xdd\x0c\xcd\xfc\xee\x78\x39\xaf\xe0\x09\x96\xf3\x12\x64\xb9\x7d\x06\x33\x71\x62\xa2\x5a\x30\x82\x60\x39\xef\x27\xe1\x39\xf2\x29\xa9\x56\x49\xf9\x99\x13\xf3\xa6\x7d\x9f\x04\x37\xc9\x0c\xde\x81\xd6\xad\x34\x61\xaf\x1c\x5b\x47\xe9\xc0\x66\xfa\x67\x13\x53\xc1\x51\x3b\x86\x94\x5a\x12\x5e\xb2\xc6\xfb\x4e\x4c\xa4\x1a\x4f\xa9\x53\xd7\x89\x7c\x2b\x3e\x4e\xc3\x08\x24\x26\x25\x65\x08\x99\x32\x77\x80\xc2\xbb\x11\xd3\xe8\x0e\xd0\xcd\xcd\x2a\xfd\x38\x89\xae\x16\x61\xbc\xb9\x89\x6e\xc5\x94\xc9\x0d\x71\x45\xaf\xcb\x5a\x2c\xf0\xa7\x1c\xc4\x49\x94\xba\xdd\x4e\x61\xfe\x92\xd5\x59\x91\x82\xce\xd0\x62\xfe\x59\xac\x39\x15\xb3\xa1\x81\xcb\xc6\x4f\xfd\xa1\x66\xf3\x27\xc4\x83\xcd\x51\xdd\x46\x5c\x9c\x5c\xc6\x85\x13\xc5\x64\x1c\x24\x8c\x60\x1f\x73\x69\x24\x51\x19\xb4\xae\x0c\xb9\x07\x94\x65\xba\x60\xc9\xda\xa7\x93\xc8\x89\x1e\x61\x11\x85\xf7\xd4\x23\x31\xfc\xdd\x36\xb7\xe1\xef\x24\x0a\x3f\xff\xf7\xff\x89\xb1\x6e\xec\xd9\x26\x90\xc0\x0d\x59\xf9\xb3\xe5\x11\xfe\x21\x67\x44\x8a\x09\x81\x59\x92\x2c\xb6\xb7\xb6\xa2\xa9\xdb\xff\x42\xa2\x70\xfe\x6b\x3f\x8c\x6e\xb6\xe2\x05\x71\xb7\x75\x0d\x25\xf3\x48\xe2\x50\x3f\xe6\x81\x3a\xd7\xd5\x17\xdb\xfc\x05\x51\x93\x08\x46\x20\xe5\x48\x3b\x8a\xaa\xe9\x86\x69\x0d\xec\x61\x07\x36\x0b\xa1\x3b\xce\xc4\xf5\xc8\xf4\x66\x46\x6f\xef\xfc\x79\x10\x2e\x7e\x8d\xe2\x64\x79\xff\xb0\x7a\xfc\x52\x6d\xb7\xf7\x7e\xff\xe0\xf0\xe8\xc3\xc7\xf1\x5f\xff\xeb\xd3\xe7\xe3\x93\xd3\xff\x3e\x3b\xbf\xb8\xfc\xdb\x0f\x3f\xfe\xf4\xf7\x6a\xbb\x7e\x6f\x7b\x73\xf4\xf3\x9b\xad\x8d\xbf\xbc\x7d\xb7\x2b\x75\xaf\xae\x7f\xfb\xf6\x9f\xdf\xff\xc7\xbf\x77\xb0\x49\xb7\x1f\x2f\x7c\x9a\x48\x9d\x4e\xaa\xbd\x8c\x65\x54\x02\xb2\x7c\x95\xe3\x52\x56\x8a\x22\x83\xb2\x32\x0c\x39\xff\x6c\xe2\x67\x53\xc7\x77\x0d\x9f\xda\xe9\xd3\x12\x9c\xf1\x1e\x9f\xec\xe3\xbb\x85\xef\x6a\x81\x43\x3f\xc2\xf7\x43\xfc\xde\x94\x1b\xf4\x14\xde\x16\xb1\x2b\x48\x49\xe1\x1c\x98\xf8\x8e\xf8\x94\x41\x05\x8e\xf3\x30\x44\x8c\x4a\x41\xc9\xe0\xdf\x70\x3e\xf7\xf0\xbd\x02\x67\x22\x25\x0d\xb1\x6b\x88\x5d\x43\xec\xda\x00\xdf\x11\xab\x86\x38\xb4\xbd\x32\x9c\x86\xf2\x69\x28\x9f\x76\x80\xef\x28\x8d\xc6\x25\xe3\x52\x22\x6e\x5d\x2b\xc3\xe9\x28\x8d\x8e\xf4\x74\xa4\xa7\x23\x3d\x1d\xe9\xe9\x48\x4f\x47\x7a\x7a\x85\x9e\x8e\xf4\x74\xa4\xa7\x23\x3d\xe3\xa0\x24\x25\xd7\xa4\xde\xb4\x43\xaa\x4f\x94\x5c\x41\x1c\x0a\xe2\x50\x38\x34\xc2\x29\xc8\xb3\x5a\x81\x53\x91\x77\x15\xf5\xa6\x22\x5e\x15\x79\x56\x91\x67\x15\x79\x56\x91\x67\xd5\xae\xc0\x21\xef\x2a\xd2\x53\x91\x9e\x8a\xf4\x54\xa4\xa7\x22\x3d\x15\xe9\x69\x15\x7a\x1a\xb7\x03\xd2\xd3\x90\x9e\x71\x54\xf2\xb9\x92\x45\x15\x05\xc1\xae\x77\x04\x1d\xae\x12\xa2\x3c\x27\x71\x64\x88\xe9\x97\x4a\x56\x61\xc1\x5d\x62\x5f\xc2\xf7\x60\x74\xb1\x88\x51\xaa\x11\x28\x99\x45\xe1\x03\x04\xe4\x01\x0e\xa3\x28\x8c\xa4\x4e\x81\x7f\x1b\x68\x70\xef\xf8\xd4\x03\x1a\x2c\xd8\x58\x89\x27\x1a\x69\xbe\xf4\x13\xba\xf0\x71\xdc\x67\x00\x59\x2d\x88\x9b\x10\xaf\xdb\x29\x05\x62\xc6\x68\x9c\xb0\xee\xd5\xe9\xc8\x18\x0e\x15\x19\xee\x1d\x7f\xc9\x98\x56\x8a\x76\x0f\x33\xea\x13\x90\x28\xbc\x6b\xb0\xce\xd1\x70\x08\x89\x7f\xd8\x00\xcd\xb4\xba\xb0\x09\x4c\xd8\x2b\xba\xb9\x79\xdd\x4c\x65\x12\xe5\xa2\x8e\x50\xd4\x1a\xbe\x8c\x35\x8f\xde\xd3\x38\x64\xec\xd9\x26\x6c\x54\xde\x76\x1a\x00\x29\x8f\x19\xcc\xee\x08\x54\x11\xde\x0c\x37\xf5\x56\x30\x82\xcf\x4e\x32\xeb\x4f\xfd\x30\x8c\x52\xde\xb7\x32\xa2\x5d\xf8\x5e\x48\x06\x78\xc2\x63\x49\xa2\x14\x53\xaf\xa8\xb7\xba\x16\x37\xce\x18\xda\x1a\x09\xf1\x7d\x13\x48\xde\xd0\x7f\xad\xe5\xb7\x75\x99\x14\x1a\xe1\xb3\x99\x23\x3d\x12\x27\xf5\x2a\xc8\x87\x11\xc3\x93\xd6\x29\x3b\x55\xdf\xf4\xe1\x7b\x30\x9f\xef\x98\x9c\xee\x73\x1c\xd3\x14\x3b\x66\xa5\xf8\x8f\x13\x5e\x2d\x8b\xca\x7a\xd4\x30\xb6\x40\x1e\xf6\x58\xbd\x20\xf9\xb0\x01\x06\x6c\x81\x59\x73\xf5\xd4\xc1\x6f\x9f\xe3\xe7\xbe\xa8\xea\xe3\x4e\xc3\xb4\xe4\xce\x9c\x68\x3f\xf4\xc8\x5e\x22\xb1\x7a\x08\x7a\xa0\x6b\x4d\x2f\x67\xed\xdf\x81\x02\x5f\xbf\x22\xe8\xee\xa8\x9c\xd4\x52\x4d\x0b\x6a\xb9\x88\x38\x77\x3b\xeb\x7b\x98\x6d\xb2\x0e\x56\xc2\x26\xf0\xc0\xbc\x9f\x99\xcf\xee\x67\x9a\x69\xf1\xee\xcb\xdf\x7f\x57\x2f\x63\x66\xb9\xba\xe5\x15\x13\xf6\xb3\x24\x5a\x06\xae\x24\xea\x68\x2c\x5e\x3c\xd9\x7b\x84\xfc\x3c\xbb\xfb\xac\xe9\x3d\x8c\xd1\xe7\x16\x6d\x45\x29\x1a\xc3\x84\x24\x0f\x84\x04\x60\x6f\xa9\xd6\x96\xae\xf5\x26\x34\xc1\x09\x36\xc7\x4d\x48\x94\x13\xe1\xc5\x6c\x8c\xb3\x36\xe5\x96\x13\x7a\xb3\xe5\xd3\x24\xf1\x49\x8f\x04\x1e\x75\x02\x78\x08\x23\x8f\x57\xbc\x71\xbf\xa8\xde\x18\x2f\xcf\x2c\x88\x1b\xf5\xb0\x0c\xbf\x84\x0b\x9c\xdd\xa9\x0f\x31\x3d\x92\x90\x68\xce\x46\xd5\x69\x83\xca\x80\x8e\x21\xcb\xbe\x1f\xc1\x6f\x40\x27\x34\x89\xb7\xc1\x96\x21\x2c\x7f\xba\xe1\x8c\x6f\x43\x12\x2d\x89\x70\x00\x11\x2e\x12\xa0\x41\xc1\x45\xc3\x3f\xd3\x4e\x9e\x3e\xbf\x0a\x17\xc9\x75\xfb\x18\x3e\x7b\x55\x5a\x8f\x72\xec\xf8\x77\x6a\xc1\x4c\x4e\xae\xa9\xa4\xa1\xc1\xba\xb4\x4c\x71\x57\xd7\x82\x70\x51\xfd\xca\x95\x61\xbf\xf6\xcd\x5d\xb3\xd5\x43\xed\x4f\x41\x93\x18\xc3\x6d\x23\xd8\xa2\xe2\x76\x76\xea\x5d\x8a\x49\x32\x25\x89\x3b\x83\x80\xac\x12\x08\xdd\x84\x24\x30\x8d\xc2\x79\x26\x57\x59\x9c\x4c\xb5\x8c\xb3\x66\xbc\x66\xaf\x7d\xa4\x5d\x0b\x61\xd5\xee\xe2\xb2\x60\xb3\x0f\xbb\xbb\x20\xa5\xda\xed\xa3\x13\x40\x0f\x11\x6f\x82\xdd\xed\x76\xe1\x2d\x28\xab\xa3\xa3\x1a\x24\x93\x36\x6b\x03\xdf\x43\x05\xbc\x64\x9d\x4c\xae\x85\xef\xb8\x84\xcb\x85\x1d\x80\x06\x42\x23\x65\x52\x65\xe8\x0a\xf7\x13\xc5\x1f\xd6\xf2\x21\x93\x1f\x1e\x00\x59\x82\x77\xef\xa0\x82\x00\xc5\xb1\xbb\x82\xd0\x83\x53\x3b\xf9\xeb\x01\xbe\x66\xf0\x92\x00\x1e\x7a\xf0\x70\x57\xc7\x52\x0d\x4c\x88\xef\x59\x6c\xba\x2f\x60\xe6\xe1\x6e\x2d\x51\xf4\x3b\x86\xbf\x66\x89\x90\x5b\xa2\x9d\x91\x26\xa3\x4e\x7f\xb1\x8c\x67\xd2\x83\x40\x55\x98\xe7\x58\x22\x88\xfd\xa6\xa7\x81\x38\x9d\xad\x09\xc6\x4e\x33\x12\xe7\x33\x42\x4f\xcd\x06\x55\x27\x83\x9c\x3f\x38\xfa\xe9\x9a\xcc\x3e\xfe\xf9\x83\x5e\x16\xf3\xea\x7a\xab\x89\x18\x63\xd9\x5f\x0b\x79\x73\x27\xc6\x68\xb5\x3a\x4a\x5f\xd5\x9a\xac\x1a\x0b\xde\x81\x5e\x9b\x28\xc9\xe0\x25\x95\xf9\x67\xa5\x35\xeb\x26\x6a\x95\x9a\xc3\x82\xa0\x23\x0e\x82\x45\x00\x06\x56\x8e\x39\x3e\x9f\x78\x6a\x06\xc6\x52\x5c\xc4\xf8\x81\x61\x91\x8b\x5e\x0b\x1f\x18\x8b\x19\xc5\x2b\x7a\x0d\x6f\x39\xaf\xcd\x80\x54\x8a\x47\x3c\xce\x62\x40\x6a\xaa\xb0\xc2\xe9\x2d\xe7\xf4\x16\x6a\x42\xb3\xaf\x36\x47\xac\xfb\x89\x3b\x7f\xa9\x71\x16\xcd\xc4\x23\x0e\x86\x85\x4f\x32\xf6\x99\x80\xfb\x69\xec\x96\xa4\x07\x8c\xd1\x8d\x20\x8d\x51\xe9\x36\x0f\xd1\x2d\x21\xee\x35\xb4\x6e\x5b\x70\xae\x1b\x9e\x34\xfb\x34\xae\x5f\xd1\x18\x6e\x97\x71\x02\x0e\x44\x04\x97\x4a\xe7\x34\xa0\x73\xc7\x87\xcb\xb1\x65\xe4\x3d\xd9\xf1\x69\xf2\x58\x0c\xcb\x11\x22\x5e\x4e\xa7\xd4\xa5\x24\x48\x80\x04\xe1\xf2\x66\x86\xa6\x48\x66\x04\x70\x5d\xf6\x5e\x85\x1b\x12\x90\xc8\x49\xc2\x08\x0b\xaf\xd3\xfd\x0f\x70\x7a\x76\xfc\xe1\x4d\xb5\xae\x42\x3a\x6e\x18\xe0\x62\x58\x5c\x89\x26\xec\xd1\x2f\x07\xe3\x0f\xe3\x8b\x73\x24\x3b\x02\x7b\x27\x05\x0b\x96\xf3\x09\x89\xd8\xe8\xc5\xa3\x37\x4c\xdd\x42\xb0\x5f\xde\x33\x50\x21\x18\xda\x88\x06\xe0\x70\x04\x6d\xf0\x7b\xe7\x87\xbc\x24\xdf\x41\x78\x26\x5d\xb0\x9c\x93\x88\xba\x8e\x8f\xd3\xb7\x0c\x57\x09\x47\x2e\x56\x16\x00\xb2\x02\x95\x06\xac\x8c\xf6\x96\x8e\x9f\x71\xcc\x97\x10\x09\x57\x40\x44\x16\x11\x89\xf3\xa5\xdc\x32\x3b\x4b\x6a\x19\xbf\x78\x1a\xad\xce\x61\x0c\x64\xf0\x2c\x19\x3c\x53\x06\xcf\x90\xc1\xd3\x65\xf0\x34\x19\x3c\x55\x06\xaf\x92\x3e\x52\xfb\x5f\x81\xa7\xa4\x8f\xb5\xb4\xb9\x91\x82\x33\x34\x83\x6c\xde\xa4\xea\x20\x04\xbe\x90\x28\x2c\xb8\x23\x1e\x38\x8c\x73\xce\x74\x83\x4b\x6c\x5c\x66\x53\xc0\x48\x26\x8e\xa4\xc8\x20\xf8\x27\x98\xba\x75\xfd\x30\x20\x85\xaa\x1a\x54\xf9\xf3\x32\xd9\x95\x80\xee\xaa\x1f\xfb\xd4\x25\x92\x90\x42\xcd\x58\xa9\x9b\x30\x0b\x3d\xcb\x3a\x41\xcd\x3a\x41\x7d\x60\xcf\x5a\xc1\xa8\x50\x52\x79\x3d\x40\x14\x6a\x4b\x9e\x2f\x8c\xb9\x0c\x11\x8b\xa0\x95\xd9\x93\x00\xbe\xaf\xfb\x6e\x2d\x3e\x04\x6c\x0c\x57\x6b\xb2\xd3\x1e\x33\x18\x95\xa7\x95\x25\xd2\x10\xd3\x5c\xaa\xc4\x86\xb2\xa8\x16\xb4\x1b\x8b\xb5\x0a\xaa\xa5\x7a\x45\x3f\xe5\x90\xc0\x72\x19\x60\xd9\xc3\xb4\xd6\xeb\xd5\x95\x14\xc0\xc6\x1a\x69\x79\x8b\xcd\x11\xac\xae\xe8\xf5\x1a\x25\x94\x15\x2c\x70\x1d\xc7\x4b\x7d\x44\x7a\xec\xb2\x3c\xcf\x3f\xaf\xba\xa8\x82\x14\x45\x78\x4f\xa2\xa9\x1f\x3e\x6c\xb9\x4e\x14\x3d\xb2\x1e\xd4\xa6\x1b\x86\xad\xa2\x1b\x19\x1e\xeb\xea\xe1\x48\xda\x55\xf4\x4c\x17\xe2\x68\x52\xf9\x61\x13\x1e\x2b\x6a\x60\x2f\x7c\x00\x55\x1f\xe3\x50\x4f\xf9\x19\x6f\x25\x82\xdc\x5a\x03\xd9\x50\x3d\x82\x34\x55\x9e\xce\x5d\x3d\x66\x5a\x64\xdd\xed\x77\x6b\x7e\xbe\xf4\x83\xba\xea\x1b\xdd\xf8\x1f\xa2\xfa\x0d\x08\xfe\x1f\xd3\xfb\xcb\xfd\x5d\x1c\xb8\xe7\x4b\xff\x49\x6f\xa7\x32\xdc\xd6\xe7\x13\x7c\xe2\x44\x90\x90\xf9\x22\xc4\x89\xa1\x88\xc4\x4b\x3f\x81\xc9\x72\x3a\x25\x11\x7c\x59\x35\x06\x12\x5f\x56\x95\xa9\xc9\x72\x0c\xd9\x2c\x1b\xab\x1e\x94\x4b\x26\x5d\x07\xd4\x5c\x8d\xfd\xb2\xe2\xc1\x59\xa9\x71\xbe\x20\xd1\x34\x8c\xe6\x99\x26\xa9\xcb\xa3\x65\xb8\x60\x65\x52\x39\xb3\x54\x1c\xae\x9d\xab\xa7\x1c\x0d\xb5\xe5\xf8\xee\xd2\x77\x12\x02\x0b\x27\xe2\xbb\x8d\xa2\xd0\x5b\xba\x09\x5a\x8c\xce\xe7\xc4\xa3\x4e\x42\xfc\x47\x0c\x65\x49\x58\x57\x60\xe1\x57\x8d\xf9\x3c\x64\xa7\x54\x76\x57\xd8\xb9\x6d\xb2\x53\xf1\x7d\x29\x75\xfe\xc7\xab\xdb\x6b\x9c\x47\x5d\x5d\x51\xd8\x84\x5b\xc1\x14\x7e\xfe\x08\xa7\x10\x9e\xd5\x13\x0a\x52\xeb\x32\x1e\xf7\xfe\x86\xca\x98\x22\x38\x70\xc2\x6a\x9f\x39\xdf\x98\x97\xd5\x6d\x34\x10\xa9\x08\x75\x01\x0d\x3d\x54\x7d\x05\x7a\x40\x9f\xd6\xcc\xbf\x4e\x13\x02\x9d\xa0\xdb\xf2\x99\xd7\xbc\xa3\x3d\x02\x2e\x15\x27\x4c\x29\x5f\x56\x7c\x70\xb6\x42\x77\x0a\xef\x2b\x8a\x79\xd2\x5f\x9b\x71\x8f\x8b\x7f\xdd\xd8\xa8\xf0\x25\xab\xdf\x4a\x38\x64\x41\xe7\x2d\x07\xac\xbd\xe3\x83\xa2\x6f\x6d\x17\xa1\xea\xed\xa8\x08\x61\xcd\x14\x1c\xac\x4f\xc1\xcf\x0a\xf8\x4d\xb9\xde\x8e\x6a\x19\x36\x2b\x4b\x9b\x6c\x9f\x9c\x09\xb9\xfe\xba\x8e\x6b\x5c\x39\xf8\xc3\x99\xfe\xfa\x7c\xa6\xa3\x30\x61\x31\x86\x6f\x92\xcc\x79\x9e\x3c\x82\x03\x9d\xb8\xc3\x87\x5b\xaf\x4a\xcc\x51\x18\x35\x12\x73\x63\xfb\x50\x78\xdf\x56\x5d\xf3\x65\xdd\x5a\x2f\x61\xee\xf2\xac\x85\xb4\x9c\x83\x6d\x08\x03\xff\x91\x89\xc1\x25\xc5\x89\xa9\x78\xb9\x58\x84\x11\x1b\x14\x3d\xd0\x64\x06\x0e\x94\x57\xd5\xf8\x90\x90\xc9\x5d\x5f\xed\xbd\xab\x26\xe8\xb8\x96\x9c\x05\x89\xa8\x66\xb9\x3b\x61\xb0\xaf\x4c\x84\xd4\xea\x64\x5e\x2b\xdf\xa6\xb5\xf2\x6d\xaf\x27\x98\xdb\xba\xbf\xba\x85\x4d\x50\x59\x17\x64\x9f\x6b\xd1\x27\xbc\xbf\x52\xd8\xa3\xd5\x95\x72\xfd\xec\x2c\x90\x92\xad\xfb\x16\xf7\xaf\x5b\x8e\x8e\x13\xad\x57\x40\xb7\xd7\xd5\x74\x23\x1c\x9b\xb0\xa1\x84\x14\xde\x0b\x7a\xfe\x3f\xd2\x1b\xd7\x3a\x23\xae\x14\x39\x01\x4d\x1e\xc1\x9d\x11\xf7\x0e\xe2\x19\x9d\x26\xf5\xe5\x01\xe6\x94\x31\xec\x56\xab\x8a\x8d\x86\x17\x3c\xd3\x39\x8b\x35\xde\xda\xf4\x46\x12\x72\xf2\xcc\x01\x6b\x01\x9d\x2c\x9c\x88\x94\x6a\xa8\x3f\xb4\x78\x42\x77\x7d\x7d\xd5\x92\x26\xb9\x52\x33\xee\x29\xf5\xf1\x49\xa9\xca\x2a\xdc\xa4\x6a\x09\x26\x7d\x36\xd5\x13\xb3\x14\x26\x10\xf0\x4e\x7d\x49\x7f\x44\x08\x0d\x46\x20\x88\x29\x02\x91\xef\xd4\x86\xcc\x8d\x92\x40\x6d\xd7\x42\x0f\xee\x58\x87\x6c\xf4\x1e\x49\xe2\xc2\xef\xee\xee\xc2\x9d\xd6\x85\xaf\x8d\x16\x20\xa5\x6a\x54\xaf\x71\xcd\xa4\x3e\x29\xd6\x63\x70\xdd\x2e\xbc\x15\xe0\xc6\x89\xe3\x46\xbc\xec\x81\x2a\x1c\x34\x7c\x59\x5d\xad\x95\x4e\x28\x84\xf4\x14\x54\x21\x5b\x95\xc3\xe7\x71\x97\xeb\xff\x69\xce\x98\x8a\x9e\xb0\xd1\x4b\x2a\xfc\x7f\x7a\xa9\x54\xeb\x29\xed\x85\x93\xf2\x54\xb9\x94\x06\x4d\x9f\x4c\x5f\x17\x33\xc5\x83\xbc\x28\x6c\x0c\xf2\xfe\xd5\x11\xd3\xff\xff\x23\x62\x2a\xe2\x70\x59\x9f\xef\xfa\x93\x45\x4c\x51\x1f\xc5\x69\xbe\x96\x59\xbe\x54\xf6\xf5\x71\xf2\xdd\xbb\xf5\x61\x32\x0f\x38\xff\xd8\x38\xa9\x64\x8c\x22\x59\x25\xe7\xeb\xed\x4b\xc3\x1a\x47\xd4\x9c\x01\xfd\x93\xc6\xa8\x3f\x66\x38\xf7\xe3\xc9\x59\x31\x02\x0a\x83\x96\xc9\xa7\x55\x33\x04\xad\xfe\x31\xa3\xa3\x9f\xc5\xa3\xa3\x97\x2f\xb4\xe9\xda\x2b\x17\xda\x3e\x1f\x98\x28\xfa\xf9\xc7\x3d\x95\x0d\x38\x48\x9c\xc4\xb5\xe5\xb5\xd8\x99\xe6\x73\x3b\x0f\x21\x33\x2e\xb9\x21\x51\x0c\x12\x0e\x59\x1e\x22\x67\xb1\x60\x76\x77\x12\xd0\x7e\xd6\xb5\xfa\xc8\x52\xd7\x9e\x35\x25\xed\xc7\x0f\xcc\xa7\x57\xe9\xaa\xe4\xd1\x51\x17\x36\x41\x7a\x2c\xfe\xac\x46\x83\x79\xd6\x7c\x77\x17\x54\x2b\x6d\x5b\x7c\x66\xd8\xf8\x5f\x0d\xb7\x91\x18\xe8\xbb\x77\xd8\xf2\x2b\x6f\x59\xa3\x51\xd6\xfb\x84\x26\x0f\x34\x26\x59\x62\x4b\x37\x7d\xa5\x21\x3f\x09\x51\x85\x98\xed\x1a\x42\xd7\x93\x16\x1e\x46\x71\x83\x44\xb0\xae\x24\x7d\x57\x0f\x0b\xc1\x72\x8e\xdb\x5c\xf8\xcb\x0d\x12\xe8\xe6\x5c\x22\xa7\x15\x88\xaf\x29\x04\x46\x1f\x5d\x83\x1e\xd2\x69\x83\x10\x2d\x5e\xe5\x13\x7c\x78\x74\xf0\xe3\x5e\x4f\xc5\x45\xc9\x20\x5d\x81\xc7\xdc\x76\x53\xde\xe0\x16\xf3\x03\x95\x0e\x0e\x67\xd3\x1d\xa1\x95\x3d\x6c\x33\x47\xfd\xc5\x0d\x23\x52\x37\xbc\x4f\x82\x7a\xea\xce\xa6\x34\x19\x6d\x67\xb1\x88\xc2\x45\x44\x91\x97\x88\x0d\x84\x13\x70\xc3\xf9\x84\x06\xe9\x01\xd5\x0c\x57\xe6\xbf\xee\x32\x8a\x98\x5b\xd3\x44\x34\x01\x9a\x37\x47\x7e\xa6\x09\x48\x89\x0c\x13\x19\x5c\x19\xbc\x7a\x16\xc0\x2d\x1d\xf0\x0e\x34\xa5\x9b\x1b\x66\x02\x6f\xc1\x45\x3f\x91\xfe\x77\xc2\x14\xea\x09\x4e\x06\x31\x20\xa3\x00\x9a\xc0\xcf\xe0\xc2\xcf\xe0\x89\x5b\x5a\x42\xf4\x13\xc4\xcd\x3e\xb9\x02\x2a\xed\x98\x6b\xb9\xb7\xd8\x11\x53\x57\xa6\xe3\x79\x34\xa1\x78\x0e\x95\xaf\x93\xbf\x4a\x83\x77\x4c\x83\x75\xc5\x65\xd2\x64\xca\xfb\x0b\x80\x6a\xaa\xb6\xa9\x28\x9a\x31\x84\xed\x66\xc2\x84\x42\x67\xac\xad\x6d\x0e\x07\x03\x53\x1f\xea\x6b\xda\x5a\xd8\xb6\xa7\xda\x43\x43\x51\x06\xa6\x6d\x8b\xdb\x96\x5f\x3d\x7b\x38\x34\x86\x03\x53\x35\x5a\xd5\xe5\x2c\x16\x24\xf0\x60\xc1\x94\x53\xab\x16\x57\x57\x3e\x09\x58\x0c\x31\x71\x0e\x4b\x59\xd9\x0a\x0e\x82\x34\x03\x7a\xcc\x89\xe1\x7b\xd0\xb5\x92\x99\x56\x57\x92\xc4\xbe\xde\x04\xcb\x60\x60\xc3\x2e\x6b\x6e\xb0\x68\xa4\x9a\x2c\x89\xf9\x24\x28\x25\xd1\x6c\x13\x0b\xaf\xef\x6c\xa5\x16\xde\x1c\x18\x01\xa8\x03\x5d\x33\x6d\x43\x1d\xea\xd5\x87\x13\xf6\xb0\xa7\x0d\xd4\x81\xae\xdb\x83\x61\x6d\x23\x23\x8c\xa0\x97\x43\x1a\xd5\x87\x2c\x0c\x03\x64\x90\x76\xf5\x21\x41\x48\x45\x19\x9a\xf6\x70\x30\xb0\x4a\xcc\x8a\x92\xdb\x2a\xdb\xef\xc3\x4f\x5a\xb1\x68\xda\xdc\x68\x1d\xfa\x1e\x93\xc4\xa9\xef\x82\xc6\x27\x4c\x8c\x89\xf0\x89\xdb\xdc\x40\x97\x3e\x61\x02\x78\xc2\x27\x8c\x7b\x22\x98\x55\xaa\x6d\xeb\xb1\x95\xd6\xc9\x73\xd6\x41\x59\x13\xd5\x12\x6f\xde\x79\xc8\xa6\x9b\xda\x66\xd6\x5b\xb7\xe2\xa4\x90\x59\x5a\x90\x1e\xae\x6e\x7b\xfa\x35\xfc\xcc\x1e\xf4\xec\xec\x83\x6a\xe4\x9f\xac\x6b\xb9\x52\xb4\x95\x65\x4d\x32\x4c\x8e\xe7\xd5\x13\x07\x7f\xe5\x4f\x73\x82\x8e\x0c\x66\x57\xce\x82\xa0\x74\x5b\xc4\xc0\xae\xfc\x0c\x14\xec\x03\x91\x51\x8c\x0c\xcb\x5d\x22\xdd\x76\x9b\x7a\x12\x6d\x50\x6a\x9a\x8c\xbd\x3c\xf1\x26\x49\xb7\xac\xa7\x89\x0c\xba\x22\x40\x39\x69\xfa\x14\x7b\x31\x57\x4b\xd6\xed\xa4\x74\xca\xaa\x73\x64\x74\xcf\x1a\xfa\x49\xb9\xc9\x04\x9b\x4c\x04\x7b\x6a\xf3\x26\x2e\x36\x71\x6b\x4d\xbc\x72\x13\x0f\x9b\xd4\x43\x3a\x29\x37\x21\xd8\x84\xac\x5b\x50\xbd\x02\x27\xb7\x9a\x0c\x44\xb4\xd7\xa6\x3d\x8b\xf3\x1d\x70\xb5\x4d\xc6\x59\x9a\xae\xee\x35\x17\x94\x27\x8e\x16\x57\x1d\x2d\x4f\xee\x4d\xff\x8b\x35\x47\x8a\x65\xd1\x5e\x73\x5d\x13\x6d\x36\x17\xf8\x5f\xb6\x9d\x1a\x36\xc0\xae\x3d\x7e\x62\x13\xe7\x93\x95\x0d\x2b\x76\x6b\x75\x4d\x73\xef\xfe\x53\xa5\xcd\xdc\x33\x9f\x5b\xd9\x4c\x9c\x98\xba\xc5\x4a\x4c\xcc\xb3\xb2\x7f\x13\x46\x34\x99\xcd\x61\x19\x93\x58\x9c\x6c\x91\xc6\x3c\x00\xe9\x57\x39\xb5\xfb\x4a\x86\x58\x86\xb6\xdc\xdb\xec\xf2\xcd\x1e\xec\xc8\xf0\x6b\x57\x2e\x9a\xae\x18\x3a\xd6\x9f\xbb\x32\x4c\x84\xae\x57\x61\x67\x3a\xc5\xbd\xb8\xb9\x0b\xae\x67\x28\x15\x40\x12\x55\x50\x75\x91\x9e\x24\x7d\x73\xf3\x6a\xd2\x45\x4d\x25\xfd\x2f\x8b\x76\x2f\x25\x3d\x9b\xbd\x86\x74\x5e\xa8\xbd\x98\x1e\xa5\xaf\xa1\xc7\x68\x49\x13\x26\xe9\x53\x42\xfe\xde\xf2\x47\x42\x2f\x17\xd4\x3e\x79\xf1\xd3\xc5\x61\x48\xb9\xfc\x31\xc4\xe5\xcf\x3f\xab\xc6\xf9\xf3\x96\x31\x8d\xe4\xc4\xfb\x59\xd5\x01\xae\xe8\x26\x28\xd7\x32\xc0\x40\x06\xe8\x59\xb6\x62\x0f\xac\xa1\x5e\x3f\x68\xe5\x15\xd0\xb9\xd3\xb9\x29\xb4\xca\xaa\x09\x8d\x41\xeb\xf6\xd0\xb4\x0c\xd3\xae\x43\xbb\x05\x34\xa7\x9a\x3a\x10\x83\xd6\x18\x34\xa3\x0d\x96\x62\xa9\x8a\x69\xab\x43\x41\xce\x4c\xa1\x73\xb6\x9d\x14\x5a\xbf\x96\x41\xd3\x64\x56\x58\x1a\x86\xa9\x99\x7a\x23\xa1\xaf\x93\xdb\xc8\xe5\x56\x07\x96\xa1\xda\xf6\x70\xf0\x02\xb9\xcd\x4c\x6e\x55\x53\x14\xc5\x56\x0c\xed\x25\x72\x5b\xa9\xdc\x3d\xd5\x18\xe8\x9a\xae\xea\x46\xbd\x22\x5b\x27\xf7\x20\x95\x1b\xa0\x67\x98\x03\xc5\x1c\xda\xfa\x0b\xe4\xb6\x33\xb9\xd5\xc1\x40\x51\x74\xd3\x68\xdc\x48\xb1\x4e\xee\x61\x2a\x77\x4f\x1d\xb2\x0e\x62\x18\x6a\x5d\x6b\x6b\xe4\x56\x95\xdc\xde\xc8\xbc\xa6\x58\x75\xce\xd7\xc8\xad\xaa\xb9\xbd\x87\x43\xc5\x50\x0c\xd5\xd2\x9e\x2f\xb7\xaa\xe5\x72\xdb\x8a\x61\x29\xba\x65\xd7\xa1\xd7\xc8\xad\xea\x99\xbd\xa1\x67\x28\xba\xa1\xaa\x4a\xdd\x62\xeb\xe4\x36\x72\x7b\x9b\x8a\xa6\x28\x9a\x36\xac\x7b\xea\x3a\xb9\xcd\xcc\xde\xaa\xa6\x5b\xa6\x6e\xea\xda\xb0\xdb\xd2\xc1\x6f\x6e\x9a\x06\x67\x6a\x03\x13\x1d\xdd\x32\x07\x43\xcb\x54\xeb\xc4\xbd\x02\xba\x61\x70\xe6\xaa\x30\xc4\x4e\x66\x0d\x4d\x45\xb5\xf4\xba\xda\xdc\x02\xba\x21\x38\x86\x07\x03\x3b\xb8\xa1\x0f\xd4\xc1\x40\x6d\x33\xf8\xcd\x4d\xd3\xd1\x99\xbb\x68\x0a\x06\x97\x81\x6e\x0f\x07\xba\xd2\x66\x70\x91\xdc\x66\x2e\xf7\x40\x51\x4d\xd3\xb6\x86\x75\x93\xad\x91\x1b\x5d\x95\xc9\x0d\x00\xba\xad\xa8\x96\xd2\xe8\x64\xeb\xe4\x36\x33\xb9\x7b\x96\xa5\x18\x03\x5b\xd7\xcd\x17\xc8\x6d\xe4\x72\x1b\x8a\x69\xea\x03\xdb\xb0\x5f\x20\xf7\x30\x93\x1b\x4c\xcb\x36\x0c\xcb\xd0\xeb\xd0\xeb\xe4\x36\x0a\x7b\xab\x43\x5b\xd1\xad\x86\xab\xae\x91\x1b\x43\x32\x97\x5b\xb5\x07\xba\xa5\x0f\xad\xb6\xc0\x26\x92\xdb\xce\xe4\x56\x55\x4b\x37\x75\xd5\x6c\x74\xb2\x35\x72\x63\x17\x65\x72\xf7\x54\xc3\x30\x2c\x5b\x35\xac\xb6\x80\x2e\xf2\x73\x2d\xb7\x77\xcf\x54\x0d\x85\x29\xfd\x05\x72\x0f\x32\xb9\xd5\x01\xeb\x9f\xb6\x31\x78\x81\x9f\x63\x68\x62\x72\xf7\xd4\xa1\x66\x59\xca\x60\xa0\x1b\x6d\x1d\x7c\x36\x6b\x71\x74\x83\x47\xd5\x9e\x3e\xb0\x4d\xb3\xcd\xe0\xb3\x59\x53\x70\xa6\x74\x55\x95\xa1\xa7\x29\x9a\x66\x0e\x0c\xa3\x11\x93\xdd\x02\x5a\xdc\xc1\x2d\x8c\xaa\xfa\x50\xd1\x15\xb3\x11\x93\x27\x05\x74\x43\x70\x74\x74\x1d\x95\xae\x9b\xba\x32\x34\x1b\x87\xbc\xd7\xc9\xad\xa6\x72\xf7\x54\x06\x3b\xd4\x14\xab\x2d\xb0\x89\xe4\x36\x52\xb9\x41\xd5\x06\x9a\x3d\xd4\x75\xf3\x05\x72\x73\x83\x5b\xe8\xe8\xa6\x69\x0c\x07\xcd\xb0\xb8\x4e\x6e\x25\x95\xbb\xa7\x2a\x43\x63\xa0\x2b\x96\xd1\x56\xb9\x08\xe4\xe6\x8e\xce\x83\xaa\xad\x6a\x83\xa1\x3a\xa8\xbb\xea\x3a\xb9\x95\x4c\xee\x9e\x6e\xda\xa6\x3e\xd0\xb4\xb6\x80\x2e\x92\x5b\xcf\xe5\x1e\x68\x9a\xa9\xa9\xc3\x41\x5b\xc5\x26\x90\x1b\x93\x09\xb7\x37\x0c\x2c\x45\x1b\xaa\x76\x1d\x7a\x9d\xbd\x87\x99\xdc\x3d\xcb\x50\x74\xcb\x30\xec\xb6\x0e\x2e\x90\x1b\x3b\x19\x97\xdb\xd0\x54\x5b\x35\xed\x46\x48\x5e\xe7\xe7\x66\x26\x37\x98\xba\x32\x30\x34\x53\x6b\xcb\xe0\x22\xb9\xb5\x4c\xee\xde\x70\x68\xea\xba\x6d\x99\x6a\x5b\x07\xa7\xb4\xa5\x44\xe7\xce\x36\xb4\x2d\x5d\xb1\x8d\x36\x83\x53\xda\x34\x38\xba\x2a\x8f\xaa\x9a\x65\x0f\x55\x43\x6d\x13\x9c\xd2\x96\xd2\x85\x47\x55\x16\x94\x8d\xa1\xd2\x96\xc9\x28\x6d\x0a\x8e\xa5\x8b\xca\xa3\xea\xc0\xd0\x59\x3a\x6b\x31\xb8\x40\x6e\x5e\xb2\x61\x70\x19\x28\x8a\x61\x9b\xe6\xa0\x2d\x83\x8b\xe4\xd6\x53\xb9\x71\x62\x7f\x68\x5b\x96\xd2\x56\xa2\x8b\xe4\x56\x52\xb9\x19\xeb\xaa\x62\xaa\xa6\xd6\x16\xd1\x45\x72\xab\xa9\xdc\x3d\x4d\x31\x8d\xa1\xa6\x0d\x86\x6d\x8e\x2e\xb2\xb7\x9d\xcb\x6d\x0f\x74\x5d\xd5\x75\xb3\x0e\xbd\x46\x6e\xee\xaa\x0a\x0f\xaa\x8a\xa5\xaa\x83\x86\xb7\xac\x91\x9b\x0f\x4d\xd0\xde\xa6\xc5\x2a\x00\xdd\x6e\x73\x74\x81\xdc\x18\x9a\xd0\xde\xaa\xae\x0c\x55\x53\xb5\x8c\x97\xc8\x6d\x14\x7e\x6e\x98\xa6\xa6\x2b\x83\xb6\x80\x2e\x92\x5b\xcd\xed\xad\x6a\x8a\xa6\x2a\x7a\x23\x34\xad\x93\x5b\xcb\xed\x3d\x50\xed\x81\x3d\xd0\x1a\x3a\x5f\x67\xef\x61\x26\x77\x4f\x37\x74\xe6\xa9\xe2\x0e\xfe\x67\x98\x20\x5e\x3b\xfb\xfb\xf4\xd4\x6f\x31\xcd\xd9\x3a\xf1\x3b\xf7\xcc\x97\xcf\xfb\x66\x33\x9f\xbf\x67\xda\x97\x5f\x0e\xfa\x47\xcd\xfb\x66\xd8\x9a\x1a\xc1\xa3\xc2\x31\x59\x7a\x61\xef\xcc\x09\xbc\x70\xde\x3b\xc6\x45\xfb\xde\x87\xfc\x44\xb1\x74\x7a\x76\xfc\xa1\x58\xc3\x48\xef\xe4\x7b\x78\x78\xe8\x2f\xdc\x9b\x5e\x84\x50\x78\x2f\xdf\xc2\x9b\x6e\xcd\xe6\x6e\xcf\x8d\x7b\x9a\xa2\x1a\x3d\x65\xa8\x98\xfd\x85\x37\xcd\x41\x2f\xd2\xdd\x19\x4c\xf9\xa7\xfb\x1f\x7a\x3f\x9e\x7f\xec\x9d\x9d\x31\x45\x53\x27\x48\x40\xea\xac\xc2\x88\x6f\x8b\x9a\xd1\x9b\x19\x48\x78\x90\x5e\x06\x4e\x22\xdf\x0d\xde\x29\x49\x3d\xc1\xfb\xa7\xc3\x20\xdb\x71\x10\x2e\x93\xc5\x32\x91\xc1\x32\xf0\x4f\x1a\x24\x24\x0a\x1c\x1f\x62\xdc\x96\x90\x9d\x03\x9e\x86\xd1\x7c\xe9\x3b\x71\xb1\x36\xca\x9f\x8f\xd2\xff\x37\xe0\xf3\xe5\x27\xd8\x84\xf1\xf1\x7e\xde\x82\x63\x86\x51\xba\xc5\x41\xd7\x24\x89\x37\xfe\x19\xd2\x0f\xbb\xbb\xa0\xda\xdd\x2e\xfb\x5f\x1b\xc8\x90\x7f\x69\x0e\x6b\xb7\x13\x32\x9d\x57\x9c\x8a\x10\xaf\xb1\xd8\x1f\x91\x9e\x1f\x3a\x1e\xc4\xe1\x9c\x40\x67\xee\xdc\x50\xb7\x23\x38\xbc\x0d\xc0\x37\xbd\xf4\xe7\x4b\x1f\x4f\xb2\x15\x87\x7e\x57\x26\x5e\x65\xc7\xaf\xd7\x9b\xf2\xeb\xf5\x3c\xbc\xd6\xcd\x65\xef\x43\xbc\x46\x6e\x30\xe5\xdf\x97\x7a\x15\xa2\xa3\x81\x5b\x47\xa7\x96\xee\xff\x1b\x4c\xf0\x9d\x20\x6a\xbc\x83\xce\xc2\x77\x1b\x89\x19\xd3\x3a\x3a\xbc\x28\xa1\x8a\x4e\xa9\x5c\x28\x57\xbc\x4f\xa7\xcd\xf7\xfa\x1e\xc1\xf4\xb8\x3b\xb3\x28\xe0\x7d\xbd\x78\xdf\x76\xc5\xd6\x0d\x05\x65\x26\x2e\x0e\x32\x4b\x99\xa4\x75\x6e\x03\xb2\x4a\xca\x27\x1b\xb2\xd3\x2a\x52\x81\x48\x2e\xe4\x2a\x35\x64\x96\xcc\x48\x04\x1a\x45\xcb\xe2\xe9\x87\xfc\xaa\x0b\xf8\x4b\xa5\xc7\xf2\x16\xbb\xbb\xbb\xa0\x74\x61\x1b\x24\x09\xf7\xfa\x71\x87\x97\xba\xb0\x81\xd2\xf3\x57\x37\x6d\x56\xe7\x2b\x8c\x2a\x6c\xa1\x33\xad\x91\x27\xbd\xc2\xe3\x74\xff\x43\x7f\x11\x85\x49\x98\x3c\x2e\x08\x36\x68\x3d\x4d\xce\xf7\x36\xdd\x17\x3b\x20\x9a\x0a\xe6\x37\xeb\x89\xf5\x8b\xdf\xd7\x0d\xe8\x78\xf7\x4e\xe0\x92\x75\x46\xcb\xce\x2d\x0a\x94\xbe\xf4\x1b\xc6\xf1\x04\xc6\xe1\x96\xad\xd0\xcd\x13\xc0\x36\xac\xed\xbe\xcd\x1b\x52\xb2\xee\x5f\x12\x2f\x93\xac\xc2\x49\x14\x46\x52\x16\x85\x54\xbb\xfe\x74\x55\x7a\xfa\x24\xb8\x36\x58\xc3\x7e\x29\xbc\x34\x98\x8d\xc2\xe7\x72\x1a\x85\x89\x0c\x58\x1e\x7c\xf7\x6f\xff\x56\xa3\x90\x07\xba\x2c\x2a\x13\x4f\x66\x5f\x76\x9b\x66\x62\x7d\x23\xe3\x5a\xd4\x2f\xb2\xb3\x38\xf9\x51\x92\xa8\x72\x71\x73\xa1\x60\xad\xca\x37\xff\xb2\xc9\xb8\x9f\x3e\xd1\x64\xc0\x7d\x5c\x77\xeb\xd4\xd8\x78\x58\x36\x42\x8a\xa7\xae\xe8\x34\xb5\x2f\x78\x66\x4c\x13\x50\xed\xa4\x0a\x88\x8e\xc8\x94\x19\x2e\x5d\x4f\xb8\x70\x6f\xd2\x9d\xca\xa7\xfb\x1f\xa4\x6e\x29\x01\x2f\x13\xea\xd3\xe4\x31\xef\x7b\xdb\x10\xd3\xf9\xc2\x27\x69\x56\x06\x9e\x95\x81\x67\x65\xa8\x67\xe5\x4a\xb1\xb2\x88\x82\x9b\x4a\x2f\xf6\x49\xc0\xb2\xa7\x47\x1b\x07\xff\xf1\x8a\xdf\xda\x25\x60\xa2\x75\x1f\x9f\x04\x82\x3d\x99\xd9\x7d\xc7\x30\x02\x69\xe1\xde\xa4\xf1\x05\xbe\x4f\x69\xed\xd4\xd5\x83\xed\x9b\xb5\x47\x4b\xe7\xc7\xdd\x1b\x74\x4e\x7e\xf1\x1d\xbc\xe9\x50\xd9\xa9\x7e\x1d\x93\x5f\xa1\xb4\xd7\x36\xbb\x3e\x63\xef\x74\xcc\xf3\x63\xb4\x74\x99\x82\x2a\xf7\x8c\x5c\x8e\x0f\x5a\xe3\x1b\x9d\x82\xe4\x44\x37\xf8\xf3\x0e\x79\x71\x35\x1a\x8d\x40\x2d\xdd\x67\x9e\x37\xc0\xb3\x59\xa3\x11\x74\x78\xb5\xd8\xa9\xef\x83\xa7\x71\x1f\x2f\x4c\xee\x3b\x8b\x85\xff\x98\x5e\x07\x9e\x43\x97\x74\x93\xdf\xa7\xde\xa0\xbd\xfb\x14\x69\xee\x88\x22\xd2\x73\xe7\xee\xf7\x52\x7e\x62\x63\x3f\x53\xe5\x76\x59\xd1\xc5\x0e\xff\x1c\x5d\xa7\x46\xac\x82\x51\xe4\x66\xaa\x25\xf0\xb2\x4c\xa8\x74\x6b\xf5\x4a\x51\x44\x2e\x34\x23\x11\x4d\x6f\x87\x73\x98\x23\x05\x9e\x13\x79\xe0\xfa\x4e\x1c\xc3\xc3\x8c\xba\xb3\xe2\x36\xc3\x64\x56\x70\x32\x21\x71\xc2\xdd\xa2\x76\x9f\x46\xfa\xb3\x1d\x78\x82\x9b\x45\x42\xf1\x3d\xf0\xc5\x6d\xfe\x97\x34\x48\x6c\xdc\x9e\xd6\x7a\xe1\xff\x7b\x3c\xbf\xd0\x7e\xe1\x7f\x81\x62\xfd\x85\xfe\x1f\x2f\x3e\x7f\x32\xe1\xe2\x71\x41\x3c\xde\x5a\x9a\x34\xaf\xaa\x8f\xb7\x61\x7c\xc8\xc6\x8e\x47\x47\x32\xec\x7f\x94\xe1\xfc\x48\x86\x93\xd3\xaa\x6a\xa5\xb4\x88\x77\x9d\x80\x2e\x63\xd2\x77\xc3\xf9\xd6\xbf\x4f\x89\x93\x8c\x18\x4b\x1e\xbf\x95\xb1\x1a\xe7\x99\xae\x8a\x8a\x21\x0d\x66\x05\xe7\xc5\x65\xf0\xf5\xdf\x09\xe0\xd2\xaf\x97\xec\x38\xf4\x48\xd6\x50\x8a\x49\x74\xdf\x90\x89\xb5\xe8\xdf\xc6\x32\x8c\x4f\xfa\xb7\xcf\x61\x8d\x63\xab\xb2\x55\xa1\x59\xfa\x15\x1b\xc9\x09\x1e\xcb\xf4\x9e\x81\xbe\x26\x74\xb5\x4d\xbf\x1c\x87\x46\xf8\xb0\x7c\x56\xfa\x74\x0c\x73\x92\xcc\x42\x6f\xbb\x54\xc8\x96\x3d\x0e\xfd\x32\x63\xa1\x86\x9a\xf5\xf0\x4a\x28\x4b\x2f\x87\x6b\xdc\xe6\x50\x4d\xaf\xcb\x25\x65\x95\x29\xeb\x4f\x3b\x95\xc8\x97\xdd\x2d\x87\x01\x4f\x74\xab\x41\xce\x22\xbf\x6b\x2a\x6d\xae\x82\xc4\x82\x31\xbf\x7e\x86\x59\x0f\x47\x62\xa5\x81\x4e\x19\x45\xb1\xdd\x36\x2b\x21\x73\x58\xfc\x10\x93\x5f\x97\x84\x95\x83\x6e\xb8\x64\x39\xa1\x71\xe4\x1f\x37\x2c\xf0\xf2\x92\x29\xff\xc0\x49\x1a\xf7\xfc\xe7\xe9\x21\x08\x1f\x60\x84\xad\xfb\x37\x24\xb9\xa0\xf3\x46\x53\x74\xce\xac\x29\xf3\xcb\x3c\xdb\x08\x02\x50\x96\x71\x1a\x87\x7c\x84\xdb\x18\xb3\xe6\x9b\x9b\xd5\xc6\xe5\x7c\x96\x91\x16\xdc\x0e\x99\x5d\xf8\x83\x5a\x49\x42\x50\x15\x65\x23\x88\x89\x2b\x54\x48\x52\x1e\x69\x64\x48\x6b\xa2\xe6\x17\xae\x48\xac\x1c\x55\x14\x05\x36\x00\xd7\x4c\x1b\xa4\x1d\x0f\x4f\x40\xb0\xe8\x1c\x4e\xa7\x31\x29\xdd\x3a\xc4\xec\x8e\x17\x34\x05\x74\x05\x87\x8b\xd0\x9d\x71\x06\xeb\x4c\x15\x95\xb8\x5c\x19\xe8\xe1\x98\xf0\xbd\x56\xdc\x41\x7e\x50\xba\xd3\x3c\x1d\x31\xa6\x03\xc0\xae\x88\x35\x37\x9c\x2f\x48\x10\x33\xfb\x33\xf6\xfc\xf0\x01\x22\x12\x87\xfe\x92\x6f\xb8\x7e\x8c\x13\x32\x07\xd7\x0f\xdd\x3b\x3c\x43\xe7\x55\x7e\x47\x20\xb7\xc0\x8c\x20\xd7\x5b\x09\x75\xef\x9e\xf6\xb8\xdc\x47\x98\xed\x77\x45\xd7\x8a\x36\xa4\xcd\xcd\x10\x93\x5f\x85\x72\xc4\x49\x18\xf1\x99\x27\x4b\x81\x4f\xe7\xef\xb3\xdf\x20\x42\x65\xa6\x79\xa7\xd2\xf5\xcb\xd6\x0e\xef\xab\x96\x2d\xce\xe1\x47\x61\x84\xe6\xb5\xbb\x3b\xd8\xcd\xaf\x74\x2c\xcc\xc2\x7b\xf1\xcd\x75\x6b\x00\xb5\xd7\x02\xaa\xaf\x05\x54\x5e\x0b\x68\xbe\x16\xd0\x78\x2d\xe0\xe0\xb5\x80\x56\x19\x50\x39\x12\x79\x46\x29\x0d\xa4\x63\x0d\xee\xce\xb9\x9b\x8a\x3c\x82\x37\x19\x61\xd9\x2f\x69\x32\x68\x8d\x05\x09\x24\x6f\x33\xf2\xd8\xb6\x71\x9f\x00\x3e\x1f\x16\xcf\xd5\xeb\x67\xf1\xe6\x87\xae\xe3\xf3\x1b\x18\x5c\x16\xd2\x30\xfe\x3b\x9e\x17\x91\x38\x16\x72\x1a\xf0\x6b\xd9\x91\x51\x4b\xc4\x28\x6b\xc0\x7c\x01\xb7\xd0\x29\xea\xba\x87\xb5\x7b\xc7\xeb\x07\xe5\xda\x0a\x49\xee\xa6\x0a\x6c\x02\x56\x93\x88\x53\x7c\x19\x59\x5e\xbf\x94\x33\xa3\xf1\xfc\xcc\x68\x80\x94\xea\xc9\x73\x12\xa7\x9c\x17\xeb\x6a\xc1\xe7\xa9\x5a\x54\xa1\x5e\xea\xd2\xb5\xd6\xc9\xa5\x42\x99\xff\x0c\xc1\xf3\x45\xd3\xe1\xeb\x57\x28\x7f\x61\x3e\x5f\x56\x7d\xcb\x04\xe9\xf3\x81\xb9\xc5\x77\x51\xaf\x91\x95\xdf\x89\x5f\xbd\x82\x35\x77\x8f\x38\x1d\x9f\x35\x27\xcc\x1b\x43\x20\xf5\xba\xf1\x8b\x53\x95\x87\x14\x27\x48\x5d\x2c\xab\x19\xd2\xbf\x34\x50\x56\x9a\x6f\xf3\x32\xf6\x72\x7c\x20\x75\xf9\xb8\x4d\x2a\x3f\xaf\x2a\xfa\xd5\xc6\xe1\xc2\xb7\xdc\x33\xca\xa5\xbf\xa2\xd7\xf5\x2a\x25\x03\x2a\x18\xd2\xae\x9b\xca\x63\xa3\xf8\xaa\x39\xff\x02\x73\xcf\x94\x10\xbc\x0b\xdb\xb8\x0b\x3d\xfd\xeb\xb5\xfc\x63\xe7\x41\xe7\xaa\xde\xa3\x2d\x5c\x8a\x69\xd4\x45\x2d\x43\x48\x56\xc8\x16\x63\xc7\x54\x84\xc6\x69\xf0\x09\xeb\x4b\xfc\xd2\x97\x7a\x81\x5c\xbf\x15\x39\xe7\xd4\xc2\x3b\x80\x58\xac\xdd\x69\x3c\xf8\x3a\x2a\xbc\x1f\x77\xde\x0a\xe9\x39\x71\x4a\x22\x5d\x99\xd0\x40\x3a\xd8\x3f\x04\xb5\xaf\x76\x9b\xe4\xec\x94\x9c\x5e\x27\x67\x73\x72\x2c\x68\x31\x5a\x56\x99\x56\x36\x71\xb4\xa4\x5e\x73\x54\x5b\x1e\x21\x4c\xc3\x68\xee\xa4\x43\x55\x3c\x2f\xbc\x8c\x97\x8e\x0f\x09\x59\x25\xec\xff\x96\xfb\x32\x6b\x83\x86\x14\x49\x79\xd8\xc0\xbe\xaf\x8f\x19\xf0\xd7\x32\x9c\x28\xaa\x8e\x10\xf8\xa8\x87\x75\xba\x2f\xb6\xd9\x69\xfc\x18\x16\x94\x7f\x1a\x24\x9d\x75\xa8\xec\xc3\xac\x0c\x08\x39\xa2\x89\x6a\x75\xea\x51\xc6\x89\xa2\xfc\xa0\x57\x63\x07\x8a\xa3\xcd\xe2\x14\xb7\xc2\x17\x37\x93\x68\x49\x90\xd9\xe2\x26\xd3\x2a\x53\x4e\x14\xf5\x6f\x43\x1a\x14\x3f\xb3\xd4\xf4\xd3\x2a\x5b\xc5\x24\xfd\xd7\xaf\x50\x30\x1b\x27\x5e\x0b\xb3\xc5\x40\xb0\xb1\xd1\xb8\xc4\x30\xe3\x18\x74\x99\x0f\xff\x53\x96\x19\xcf\xec\xd3\x15\x60\x7a\xee\xf4\x3a\xed\xe0\x06\xdf\x0b\x56\x01\x1f\xa6\xe0\xaa\xfe\x24\xb8\xc5\xf7\x8a\x96\xc1\x55\x23\x03\x7f\x9a\xba\xcd\xf7\x92\x55\xc0\x33\xea\xda\x93\xd4\xd5\xd4\x5a\x65\x70\xad\xbe\x86\xff\x3c\x7b\xad\xfb\x19\xb5\x3f\xbc\xc3\x64\xbf\x71\xb7\xb6\xcb\xa4\x1c\xe1\xc4\x1b\xa7\xca\x9b\xac\xe7\x0f\xb3\x0c\x67\x0f\x67\xad\x5e\xc3\x1e\xc7\xd1\xf8\xa1\x9b\x3a\x83\xa5\x59\x18\xa6\xe3\x37\x6b\xa6\x2d\x85\x21\x1a\xc9\x34\xe7\xf7\xd2\x2e\x93\x2e\x97\xaf\xfd\x45\x9b\xb6\xb8\x51\xfc\x94\x4b\xca\xf9\x8c\x0a\x67\x28\x6b\x21\xa3\x82\x63\x86\xab\xe9\x0c\x5a\x91\x41\x37\x39\x92\x6a\x34\xf8\x5d\x7d\x1c\xd7\xff\x9d\x05\x8c\x04\x87\x20\x3b\x01\xf5\x3b\xdb\xfc\xa3\x92\xbe\x7a\x82\xb7\xec\xd5\x69\xae\xe3\x77\x82\x78\xfb\xe0\xf8\x9c\x61\xe9\x58\x13\x67\x30\xb1\x55\xa5\x37\xf4\x1c\xaf\xa7\xaa\x9e\xda\xb3\x95\x89\xd1\x53\x14\x57\x31\xa6\x9e\xa1\x2b\xae\xdd\x82\xe2\xf2\xec\x53\x19\x85\xfa\x0a\x14\x27\xe3\x83\x32\x0a\xed\x15\x28\x7e\x34\x15\xa5\xb3\x9d\xa3\x30\xd6\xa2\xa8\x60\xf8\xd6\x9c\x9b\x99\x3b\x8b\xab\x38\x89\xae\xab\x2b\xa7\xcd\xba\x84\xc7\x8d\xac\x75\x73\x76\x06\x91\xbd\x89\x93\xa8\x3f\x77\x12\x77\x26\x6d\xfd\x7c\xa5\xf4\x86\x4e\x6f\xba\xd7\x3b\xba\xfe\xcd\xfe\xd6\x2b\xff\x69\xbc\xe4\x4f\x55\xfb\xf6\x1f\x5b\x82\x73\x9d\xcf\xeb\x47\x69\xc7\xa9\x75\xf5\xca\x0f\x08\x96\xd5\x2b\x65\x3d\x0c\xfe\xa7\xb3\x4a\x5f\x3d\xc1\x5b\xf6\xfa\x9f\x4e\xa5\x2b\x42\xa5\xab\x60\x32\x1a\x64\x7d\xa5\x91\x3a\x4b\x0d\x87\xfc\x94\x40\x96\x84\x5a\x1b\xaa\x06\x3f\x10\x90\xa5\x9b\xf6\x86\x43\xbe\xf7\x3f\x4b\x2c\xad\x0d\x35\xa3\xdc\x9f\x2b\x5b\xfc\x1b\xe9\xa0\x98\xd0\x6c\x8b\xb7\xfc\x27\x5f\x4b\xf9\x20\x5f\x24\xc8\x0f\x37\xf2\xf5\x94\xb8\x2d\xda\xa6\x18\xda\xd6\x8f\xf0\x90\x56\xa9\x78\xa9\x14\x3f\xcf\x5e\xed\x60\xf9\x14\x4b\xec\x74\x24\xd7\x58\x44\xcb\xeb\xb2\x36\x41\xe9\xbc\x10\x34\xfd\xb5\x9c\x17\x0a\x9a\x62\xa8\xfc\xac\x48\x14\xd5\x33\xca\x1b\x29\x1f\x95\x45\x82\xc1\x58\x54\x1e\x83\xa1\x46\x9e\xba\x2b\x8a\x77\x12\x4e\xbc\x35\xdb\xf0\x15\x8f\xd6\x64\xc3\xaa\x87\x74\x11\x8b\x45\x8d\xfa\xe1\xf4\x17\xd3\xdc\xcb\x0f\xbe\x72\xa4\xaa\x25\xa6\xbd\xce\xbe\xa2\x8b\x33\x72\xcd\x31\x63\xbf\x69\x5d\xcc\x7b\x11\xcf\xa8\x18\x9f\x20\xe3\xff\xde\x81\x4d\xa0\x6d\xa1\x24\xd5\x65\xba\x98\x2c\x14\xa8\xb0\x32\x8d\x8f\x68\x40\x13\x36\x22\x66\xdc\x76\x99\x79\x4b\x57\x51\x65\xdf\x32\x0f\x48\x3f\xff\x93\x64\x48\xd9\xc7\x41\x61\x7a\xcb\x4e\xfa\x3b\x68\x4f\x48\x94\xaa\x7d\x77\x04\x4a\xea\xab\x78\x63\xd5\x08\x67\x5e\xfe\xe5\xcc\xd3\x00\x22\x27\xb8\x21\xa0\xf4\xfb\x7d\xcd\x6c\xf9\xad\x40\xa8\x4c\xf6\x70\x11\x7e\x57\x7c\x74\xc3\x39\xde\xb7\xc6\xa7\xf9\x6f\x1c\xd6\x7b\xc1\x09\xc2\x64\x46\x22\x08\x03\xd2\x16\x2c\x32\xb8\x72\xb4\x40\xa0\x96\x0a\x94\x23\x7c\x53\xfe\x21\xf0\xe7\x74\xd1\x94\x4c\x6b\x5c\x40\xb6\x5b\xc3\xc2\x1b\xce\x52\x7d\x5a\xe8\x79\x11\xe9\xf5\xa4\x5f\x1a\x15\x52\x7b\xbe\xe3\x4a\x62\x5d\xa9\xe1\x3e\xa9\x3d\x7b\x6a\x4b\x9d\x93\xe1\xd8\x7d\x1a\xc7\xa6\xba\xc6\x61\x04\x8b\xec\x65\x6f\x99\x39\xf1\x8c\x0b\x3e\x79\x84\x1f\x4f\xce\x7a\xd3\xd0\xc7\x53\xd1\x34\x81\x3b\x5c\xc9\x68\xcd\x2e\xac\x65\xc5\x5b\xee\x5a\x3c\xe5\x6e\xfd\x0f\x60\xb6\x58\x8b\xa1\x17\x99\xaa\xb8\x77\x10\x19\x28\xdd\x32\xd0\xea\x35\x77\xcc\x5c\x6c\x80\x70\x07\xbb\x60\xfc\x2e\xea\x6a\xcf\x78\x1e\xdd\xec\xe7\x38\x54\x0b\xb6\x78\x98\x5d\x84\x0f\x92\x56\xdd\xbe\xc4\x1a\xa1\x05\xca\x73\x0f\xc1\x13\x8e\x17\x08\xfd\x0e\x51\xb5\x5c\x34\x5f\xba\x0c\x06\x2f\x71\x49\xbd\x17\x7f\xdc\x49\xf0\x93\x4d\x33\xf8\x39\x2b\x5b\x04\x57\xbe\x30\x7e\x79\xb0\x9a\xad\x71\x3b\xd6\xaa\xea\x79\xe8\x3d\x7c\xab\xec\xe9\xfe\x87\x92\x3b\xa6\xe5\x18\xf3\xca\xcc\xd3\x52\x24\x7c\xa1\xfd\x1b\x2e\xbe\xfd\xdf\x00\x00\x00\xff\xff\xe4\x8d\x3c\xa5\xbf\x86\x00\x00") + +func pureUuidJsBytes() ([]byte, error) { + return bindataRead( + _pureUuidJs, + "pure-uuid.js", + ) +} + +func pureUuidJs() (*asset, error) { + bytes, err := pureUuidJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "pure-uuid.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 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){ + "api.js": apiJs, + "bootstrap.js": bootstrapJs, + "otto.js": ottoJs, + "promise-7.0.4.min.js": promise704MinJs, + "promise-done-7.0.4.min.js": promiseDone704MinJs, + "pure-uuid.js": pureUuidJs, +} + +// 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{ + "api.js": {apiJs, map[string]*bintree{}}, + "bootstrap.js": {bootstrapJs, map[string]*bintree{}}, + "otto.js": {ottoJs, map[string]*bintree{}}, + "promise-7.0.4.min.js": {promise704MinJs, map[string]*bintree{}}, + "promise-done-7.0.4.min.js": {promiseDone704MinJs, map[string]*bintree{}}, + "pure-uuid.js": {pureUuidJs, 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, "/")...)...) +} diff --git a/graffiti/js/bootstrap.js b/graffiti/js/bootstrap.js new file mode 100644 index 0000000000..e234b85f0b --- /dev/null +++ b/graffiti/js/bootstrap.js @@ -0,0 +1,2 @@ +var api = require("./api"); +var client = new Client(); \ No newline at end of file diff --git a/graffiti/js/otto.js b/graffiti/js/otto.js index 5729948880..3d7a369b79 100644 --- a/graffiti/js/otto.js +++ b/graffiti/js/otto.js @@ -16,23 +16,17 @@ */ var globals = this; -var client = new Client(); function require(m) { - if (m === "./api") { - var module = {} - var keys = Object.keys(globals) - for (var i in keys) { - var key = keys[i] - module[key] = globals[key] - } - return module; + var module = {} + var keys = Object.keys(globals) + for (var i in keys) { + var key = keys[i] + module[key] = globals[key] } - return {} + return module; } -var api = require("./api"); - Promise.prototype.finally = function (f) { return this.then(function (value) { return Promise.resolve(f()).then(function () { diff --git a/graffiti/js/runtime.go b/graffiti/js/runtime.go index 953fa75d13..3a57daf3e1 100644 --- a/graffiti/js/runtime.go +++ b/graffiti/js/runtime.go @@ -28,12 +28,20 @@ import ( "sync" "time" + "github.com/pkg/errors" "github.com/robertkrimen/otto" + "github.com/skydive-project/skydive/graffiti/assets" shttp "github.com/skydive-project/skydive/graffiti/http" "github.com/skydive-project/skydive/graffiti/logging" ) +type bindataAssets struct{} + +func (b *bindataAssets) Asset(name string) ([]byte, error) { + return Asset(name) +} + type evalReq struct { fn func(vm *otto.Otto) done chan bool @@ -56,6 +64,7 @@ type Runtime struct { closed chan struct{} timers map[*jsTimer]*jsTimer timerReady chan *jsTimer + assets assets.Assets } // RegisterAPIClient exports Go function required by the API to run inside the client JS VM @@ -111,14 +120,15 @@ func (r *Runtime) RunScript(path string) otto.Value { } func (r *Runtime) runEmbededScript(path string) error { - content, err := Asset(path) + content, err := r.assets.Asset(path) if err != nil { - return fmt.Errorf("Failed to load %s asset: %s)", path, err) + return errors.Wrapf(err, "failed to load %s asset: %s)", path) } if _, err := r.Run(string(content)); err != nil { - return fmt.Errorf("Failed to run %s: %s", path, err) + return errors.Wrapf(err, "failed to run %s: %s", path) } + return nil } @@ -344,7 +354,11 @@ func (r *Runtime) Stop() { } // NewRuntime returns a new JavaScript runtime environment -func NewRuntime() (*Runtime, error) { +func NewRuntime(assets assets.Assets) (*Runtime, error) { + if assets == nil { + assets = &bindataAssets{} + } + r := &Runtime{ Otto: otto.New(), closed: make(chan struct{}), @@ -352,6 +366,7 @@ func NewRuntime() (*Runtime, error) { stopEventLoop: make(chan bool), timers: make(map[*jsTimer]*jsTimer), timerReady: make(chan *jsTimer), + assets: assets, } r.registerStandardLibray() @@ -378,11 +393,15 @@ func NewRuntime() (*Runtime, error) { return nil, err } + if err := r.runEmbededScript("pure-uuid.js"); err != nil { + return nil, err + } + if err := r.runEmbededScript("otto.js"); err != nil { return nil, err } - if err := r.runEmbededScript("pure-uuid.js"); err != nil { + if err := r.runEmbededScript("bootstrap.js"); err != nil { return nil, err } diff --git a/statics/statics.go b/statics/statics.go new file mode 100644 index 0000000000..84398d6626 --- /dev/null +++ b/statics/statics.go @@ -0,0 +1,53 @@ +/* + * Copyright (C) 2020 Sylvain Baubeau + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy ofthe License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specificlanguage governing permissions and + * limitations under the License. + * + */ + +package statics + +import "github.com/skydive-project/skydive/graffiti/js" + +// Assets implements the asset provider interface +type assets struct{} + +// Asset returns the content of a bundled file +func (a *assets) Asset(name string) ([]byte, error) { + if name == "bootstrap.js" { + // Load Skydive API + api, err := Asset("js/api.js") + if err != nil { + return nil, err + } + + bootstrap, err := js.Asset("bootstrap.js") + if err != nil { + return nil, err + } + + return append(api, bootstrap...), nil + } + + // Allow override Graffiti asset + content, err := Asset(name) + if err == nil { + return content, nil + } + + // Fallback to Graffiti asset + return js.Asset(name) +} + +// Assets is a asset provider singleton +var Assets assets diff --git a/tests/workflow_test.go b/tests/workflow_test.go index e21846fb35..e80ca2fce5 100644 --- a/tests/workflow_test.go +++ b/tests/workflow_test.go @@ -31,6 +31,7 @@ import ( shttp "github.com/skydive-project/skydive/graffiti/http" "github.com/skydive-project/skydive/graffiti/js" g "github.com/skydive-project/skydive/gremlin" + "github.com/skydive-project/skydive/statics" ) func lookupWorkflow(client *shttp.CrudClient, name string) (*types.Workflow, error) { @@ -49,7 +50,7 @@ func lookupWorkflow(client *shttp.CrudClient, name string) (*types.Workflow, err } func TestCheckConnectivityWorkflow(t *testing.T) { - runtime, err := js.NewRuntime() + runtime, err := js.NewRuntime(&statics.Assets) if err != nil { t.Fatal(err) } @@ -145,7 +146,7 @@ func TestCheckConnectivityWorkflow(t *testing.T) { } func TestCheckMTUWorkflow(t *testing.T) { - runtime, err := js.NewRuntime() + runtime, err := js.NewRuntime(&statics.Assets) if err != nil { t.Fatal(err) } @@ -213,7 +214,7 @@ func TestCheckMTUWorkflow(t *testing.T) { } func TestFlowValidationWorkflow(t *testing.T) { - runtime, err := js.NewRuntime() + runtime, err := js.NewRuntime(&statics.Assets) if err != nil { t.Fatal(err) } @@ -418,7 +419,7 @@ func flowMatrixClient(t *testing.T) { } func TestFlowMatrixWorkflow(t *testing.T) { - runtime, err := js.NewRuntime() + runtime, err := js.NewRuntime(&statics.Assets) if err != nil { t.Fatal(err) }