From 773e7fd7ffa7a58def7bcec9592d394fe167836b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kurk=C3=B3=20Mih=C3=A1ly?= Date: Wed, 5 Jul 2017 19:46:14 +0300 Subject: [PATCH 1/6] cmd, dashboard: work in progress dashboard prototype --- cmd/geth/config.go | 26 +- cmd/geth/main.go | 5 + cmd/utils/flags.go | 41 +++ dashboard/assets.go | 235 ++++++++++++++ dashboard/assets/dashboard.html | 525 ++++++++++++++++++++++++++++++++ dashboard/config.go | 42 +++ dashboard/dashboard.go | 281 +++++++++++++++++ 7 files changed, 1148 insertions(+), 7 deletions(-) create mode 100644 dashboard/assets.go create mode 100644 dashboard/assets/dashboard.html create mode 100644 dashboard/config.go create mode 100644 dashboard/dashboard.go diff --git a/cmd/geth/config.go b/cmd/geth/config.go index d3600f1416..cfdc184a47 100644 --- a/cmd/geth/config.go +++ b/cmd/geth/config.go @@ -30,6 +30,7 @@ import ( "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/contracts/release" + "github.com/ethereum/go-ethereum/dashboard" "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/node" "github.com/ethereum/go-ethereum/params" @@ -76,10 +77,11 @@ type ethstatsConfig struct { } type gethConfig struct { - Eth eth.Config - Shh whisper.Config - Node node.Config - Ethstats ethstatsConfig + Eth eth.Config + Shh whisper.Config + Node node.Config + Ethstats ethstatsConfig + Dashboard dashboard.Config } func loadConfig(file string, cfg *gethConfig) error { @@ -107,12 +109,17 @@ func defaultNodeConfig() node.Config { return cfg } +func defaultDashboardConfig() dashboard.Config { + return dashboard.DefaultConfig +} + func makeConfigNode(ctx *cli.Context) (*node.Node, gethConfig) { // Load defaults. cfg := gethConfig{ - Eth: eth.DefaultConfig, - Shh: whisper.DefaultConfig, - Node: defaultNodeConfig(), + Eth: eth.DefaultConfig, + Shh: whisper.DefaultConfig, + Node: defaultNodeConfig(), + Dashboard: defaultDashboardConfig(), } // Load config file. @@ -135,6 +142,7 @@ func makeConfigNode(ctx *cli.Context) (*node.Node, gethConfig) { utils.SetShhConfig(ctx, stack, &cfg.Shh) + utils.SetDashboardConfig(ctx, &cfg.Dashboard) return stack, cfg } @@ -153,6 +161,10 @@ func makeFullNode(ctx *cli.Context) *node.Node { utils.RegisterEthService(stack, &cfg.Eth) + if ctx.GlobalBool(utils.DashboardEnabledFlag.Name) { + utils.RegisterDashboardService(stack, &cfg.Dashboard) + } + // Whisper must be explicitly enabled by specifying at least 1 whisper flag or in dev mode shhEnabled := enableWhisper(ctx) shhAutoEnabled := !ctx.GlobalIsSet(utils.WhisperEnabledFlag.Name) && ctx.GlobalIsSet(utils.DevModeFlag.Name) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 8166c9ce80..a0b15497dd 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -61,6 +61,11 @@ var ( utils.DataDirFlag, utils.KeyStoreDirFlag, utils.NoUSBFlag, + utils.DashboardEnabledFlag, + utils.DashboardAddrFlag, + utils.DashboardPortFlag, + utils.DashboardRefreshFlag, + utils.DashboardAssetsFlag, utils.EthashCacheDirFlag, utils.EthashCachesInMemoryFlag, utils.EthashCachesOnDiskFlag, diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index b257084719..9327f00270 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -36,6 +36,7 @@ import ( "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/crypto" + "github.com/ethereum/go-ethereum/dashboard" "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/eth/downloader" "github.com/ethereum/go-ethereum/eth/gasprice" @@ -177,6 +178,31 @@ var ( Name: "lightkdf", Usage: "Reduce key-derivation RAM & CPU usage at some expense of KDF strength", } + // Dashboard settings + DashboardEnabledFlag = cli.BoolFlag{ + Name: "dashboard", + Usage: "Enable the dashboard", + } + DashboardAddrFlag = cli.StringFlag{ + Name: "dashboard.addr", + Usage: "Dashboard listening interface", + Value: dashboard.DefaultConfig.Host, + } + DashboardPortFlag = cli.IntFlag{ + Name: "dashboard.host", + Usage: "Dashboard listening port", + Value: dashboard.DefaultConfig.Port, + } + DashboardRefreshFlag = cli.DurationFlag{ + Name: "dashboard.refresh", + Usage: "Dashboard refresh rate", + Value: dashboard.DefaultConfig.Refresh, + } + DashboardAssetsFlag = cli.StringFlag{ + Name: "dashboard.assets", + Usage: "Directory of the dashboard assets, useful for debugging (default = assets.go binary)", + Value: dashboard.DefaultConfig.Assets, + } // Ethash settings EthashCacheDirFlag = DirectoryFlag{ Name: "ethash.cachedir", @@ -1001,6 +1027,14 @@ func SetEthConfig(ctx *cli.Context, stack *node.Node, cfg *eth.Config) { } } +// SetDashboardConfig applies dashboard related command line flags to the config. +func SetDashboardConfig(ctx *cli.Context, cfg *dashboard.Config) { + cfg.Host = ctx.GlobalString(DashboardAddrFlag.Name) + cfg.Port = ctx.GlobalInt(DashboardPortFlag.Name) + cfg.Refresh = ctx.GlobalDuration(DashboardRefreshFlag.Name) + cfg.Assets = ctx.GlobalString(DashboardAssetsFlag.Name) +} + // RegisterEthService adds an Ethereum client to the stack. func RegisterEthService(stack *node.Node, cfg *eth.Config) { var err error @@ -1023,6 +1057,13 @@ func RegisterEthService(stack *node.Node, cfg *eth.Config) { } } +// RegisterDashboardService adds a dashboard to the stack. +func RegisterDashboardService(stack *node.Node, cfg *dashboard.Config) { + stack.Register(func(ctx *node.ServiceContext) (node.Service, error) { + return dashboard.NewDashboard(cfg) + }) +} + // RegisterShhService configures Whisper and adds it to the given node. func RegisterShhService(stack *node.Node, cfg *whisper.Config) { if err := stack.Register(func(n *node.ServiceContext) (node.Service, error) { diff --git a/dashboard/assets.go b/dashboard/assets.go new file mode 100644 index 0000000000..2c1a47b4b2 --- /dev/null +++ b/dashboard/assets.go @@ -0,0 +1,235 @@ +// Code generated by go-bindata. +// sources: +// assets/dashboard.html +// DO NOT EDIT! + +package dashboard + +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 _dashboardHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xe9\x92\xe3\xc6\x95\x28\xfc\xdf\x11\x7e\x87\x34\x5b\x6d\x15\x6d\x00\x05\x80\x04\x97\x62\x57\xf9\xd6\x2a\x6b\x42\xb2\x7c\xad\xf6\x9d\x3b\x9f\x42\xc1\x48\x02\x49\x12\x6a\x6c\x06\xc0\x5a\x4c\xf3\x7b\xa6\xef\x21\xbe\x07\xbb\x91\x1b\x90\x1b\x40\x56\x49\xe3\x99\x3b\xd3\x45\xcb\x4d\x02\x27\x4f\xee\x27\x4f\x9e\xf5\xc3\x6f\xee\xbe\xbb\xfd\xf8\x6f\x7f\xbe\x07\xdb\x3a\x4d\xae\x7e\xfd\xab\x0f\xf8\x5f\x90\xc0\x6c\x73\x39\x40\xd9\xe0\xea\xd7\xbf\x02\x00\x80\x0f\x5b\x04\x23\xf6\x9d\xfc\x4e\x51\x0d\x41\xb8\x85\x65\x85\xea\xcb\xc1\xae\x5e\xdb\xb3\x81\xf6\x7e\x5b\xd7\x85\x8d\xfe\xb6\x8b\x1f\x2f\x07\xff\xdb\xfe\xeb\xb5\x7d\x9b\xa7\x05\xac\xe3\x55\x82\x06\x20\xcc\xb3\x1a\x65\xf5\xe5\xe0\xeb\xfb\x4b\x14\x6d\x90\x5e\x3c\x83\x29\xba\x1c\x3c\xc6\xe8\xa9\xc8\xcb\x5a\x28\xf1\x14\x47\xf5\xf6\x32\x42\x8f\x71\x88\x6c\xf2\xc3\x02\x71\x16\xd7\x31\x4c\xec\x2a\x84\x09\xba\xf4\x30\x36\x01\x5f\x1d\xd7\x09\xba\xfa\x2a\x07\xf7\xf5\x16\x95\x68\x97\x82\x3b\x58\x6d\x57\x39\x2c\xa3\x0f\xe7\xf4\xa5\x04\x9f\xc4\xd9\x27\xb0\x2d\xd1\xfa\x72\x80\x3b\x51\x5d\x9c\x9f\x87\x51\xf6\x53\xe5\x84\x49\xbe\x8b\xd6\x09\x2c\x91\x13\xe6\xe9\x39\xfc\x09\x3e\x9f\x27\xf1\xaa\x3a\xaf\x9f\xe2\xba\x46\xa5\xbd\xca\xf3\xba\xaa\x4b\x58\x9c\x8f\x9c\x91\x33\x3d\x0f\xab\xea\xbc\x79\xe6\xa4\x71\xe6\x84\x55\x35\x00\x25\x4a\x2e\x07\x55\xfd\x92\xa0\x6a\x8b\x50\x3d\x00\xe7\x57\x3f\xab\xfa\x75\x9e\xd5\x36\x7c\x42\x55\x9e\xa2\xf3\xb1\x33\x75\x5c\x52\xb3\xf8\xf8\xd4\xca\x7f\x63\xdb\x42\xfd\xe1\xae\xaa\xf3\xb4\xaf\xac\x6d\xcb\x63\x57\x85\x65\x5c\xd4\xa0\x2a\xc3\x93\x5b\xff\xd3\xdf\x76\xa8\x7c\x39\xf7\x1d\xcf\x19\xb3\x1f\xa4\xc6\x9f\xaa\xc1\xd5\x87\x73\x8a\xf0\xea\x97\xa8\xc2\xce\xf2\x1a\xd7\x33\x76\xbc\xf3\x02\x86\x9f\xe0\x06\x45\xbc\x42\xfc\xca\xe1\x0f\x7f\xe9\xea\x6f\xb7\xb0\xac\x9d\x9f\xaa\x73\xdf\x71\x1d\xb7\xf9\xf9\x8b\xe1\xef\x5a\x7e\x3f\xa9\xab\xaf\xab\xce\xdf\xd8\xb6\x58\xad\x30\xed\x62\x09\x36\xd7\xf2\x7c\xe3\xc5\x20\xa0\xc2\x7f\x0e\x26\x0d\x35\xd8\xcb\x4f\xf1\xdf\x16\xc5\x9b\x6d\x7d\x01\x66\xee\xfb\x85\xfe\x96\x6c\xe6\xae\x97\x29\x2c\x37\x71\x76\x01\xe0\xae\xce\x95\xd7\x07\xa1\x3d\xe7\x6a\x83\x8c\x2d\x3c\xff\x9d\x5e\xc1\xc7\xef\xee\xbe\x03\xbb\x4d\xf2\x02\x60\x16\x81\x5d\x96\xc2\x38\xab\x61\x9c\xc1\x55\x82\x2c\x50\xa2\x2a\x4f\x1e\x11\xc0\x7b\x69\x9b\x3f\x81\xa7\xb8\xde\x82\x4d\x6e\xaf\xe2\x2c\x82\x35\x94\xd1\xfd\xee\x5c\x19\x90\x04\xad\xeb\x65\x98\x27\xfb\x15\x0c\x3f\x6d\xca\x7c\x97\x45\x17\xef\xfc\xeb\xd1\x43\x30\x3e\x38\x19\x7c\xb4\xab\x14\x38\x98\xc2\xc1\x38\x43\xa5\xb3\xca\xa3\x17\xfc\x3b\xb1\xd3\xc8\x1e\xb5\xa5\xe9\x00\x4d\xdd\xe2\x79\x51\xc0\x28\x8a\xb3\xcd\x85\xbb\xf8\xbb\x1d\x67\x11\x7a\xbe\x98\xcf\xe7\xf3\x45\x91\x57\x71\x1d\xe7\xd9\x05\x5c\x55\x79\xb2\xab\xd1\x2b\xd0\x3b\x29\xca\x76\xcb\x75\xfc\x8c\xa2\x7d\x83\x87\xfc\x5c\xb0\x79\xf3\x5c\xf7\xfd\x2b\x10\x02\x27\xbd\xfd\xfe\x66\xd9\xc0\x59\xaf\x2b\x4a\x16\xe1\xf7\x61\x99\x27\xc9\x4d\xfe\xbc\xcf\x1f\x51\xb9\x4e\xf2\xa7\x8b\xc7\xb8\xc2\x87\x48\xdb\x90\x6d\x1c\x45\x28\xb3\xab\x14\x26\xc9\x9e\xbc\x8d\x93\xb8\x7e\xb9\xa0\xcf\xbb\x1b\x5c\xe2\x4e\x91\x81\xe5\xa3\xe9\xb9\xc5\x33\xf0\xf1\xf8\xd2\xe5\x66\xe3\xf6\xd0\x01\xe7\xc3\xec\xb7\xf8\x32\xf8\xb8\x82\x25\xfe\x67\x49\x4e\x11\x61\x7e\xba\x81\x00\x04\x55\x01\xb3\x7d\x14\x57\x45\x02\x5f\x2e\xb2\x3c\x43\xbd\xd0\xf1\x9e\xd0\xf1\x2a\xfe\x3b\xba\xf0\xa7\x4d\xd3\x2e\xbc\x51\xf1\x0c\x5c\xe0\x82\x11\xae\xae\x8a\x6b\xc4\x8a\xc4\xfb\x55\x5e\x46\xa8\xbc\xf0\x8a\x67\x50\xe5\x49\x1c\x81\x77\xf7\xd7\xf8\xd3\xac\x9a\xa0\x78\x06\x93\xe2\x79\x41\x01\xed\x12\x46\xf1\xae\xba\x08\xc4\xd9\xc5\xcb\xbf\x9d\x3a\xe0\xd4\x79\xb1\xcc\xe0\x63\xd3\xee\x55\x92\x87\x9f\x4e\x1d\x26\xa7\x8a\x23\x64\xe3\xf5\x05\x92\x18\xc0\x7d\x8d\x9e\x6b\x1b\x26\xf1\x26\xbb\x08\x51\x56\xa3\x12\xfc\x26\x4e\xf1\x39\x0f\xb3\x7a\x41\xba\xfb\x44\x57\xdc\xd8\x75\x17\x6d\xf7\x3d\x71\xe5\x93\xb9\x0a\x94\xa1\x76\xc2\x6d\x9c\x44\x4b\x56\x93\x03\xc3\x3a\x7e\x44\x56\x67\x53\x18\x80\x5d\xa5\x7b\x3e\x14\xa4\xda\xa0\x1d\x39\xef\xfa\xe6\x66\x7e\xdb\x54\xb2\x4b\xd4\x6a\x76\xc9\x29\xf8\xc1\x2e\x01\xbb\xa4\xdd\x57\x55\x0d\xeb\x38\x5c\xd0\x15\xe3\xbb\xb8\x63\x02\x6d\x10\x17\xc5\x95\x8c\xf5\x4a\xc4\x7a\x05\xf7\x61\x9e\xe4\xe5\x05\x6b\xa6\x30\x8c\x7d\xe3\x0f\x62\xa7\xce\x37\x9b\x04\xd9\xbb\x42\x5a\x88\x27\x97\x17\xd7\x24\x1e\x2c\x61\xfa\xb4\xb9\x65\x9d\xc4\xc4\x43\x84\x63\x4b\x67\x95\xd7\x75\x9e\x5e\x88\x13\xa9\x8d\xf1\x9e\xac\x2f\x8c\x40\x27\x70\x8b\x3a\x2f\x2e\x5c\x3e\x90\x9e\xb8\x06\xc7\xae\xeb\x8a\xa3\xfa\x6e\x74\x1f\x8c\x26\xd3\x85\x71\xeb\xe9\x13\x9b\xc4\x0d\x5d\x70\x81\xe7\xf6\x35\x50\x5b\xd5\xb8\xc1\xc6\xc1\x2c\xca\x7c\x1d\x27\x48\xd9\xfe\x84\xf2\x56\x28\xc4\x3d\xdb\xcb\x03\x33\x22\x23\x23\x02\x80\xed\x88\x37\x8c\x6e\x3c\x7f\x54\x3c\x2f\xd8\x3a\x58\xaf\xd7\x74\x06\xea\x12\x66\xd5\x3a\x2f\xd3\x8b\x5d\x51\xa0\x32\x84\x15\x5a\x24\x88\xb0\x09\x55\x01\x43\xdc\x2b\x27\x28\x9e\xa5\xdd\xb6\xca\x93\x48\xdc\x6e\x5e\x4b\x08\x59\x6b\x5c\xfe\x9b\x8e\x3a\xa9\xa9\xda\xc2\x28\x7f\x22\xd4\x06\xff\xf7\xce\x75\x5d\xb9\xc1\x57\xbb\x64\x2f\x14\xa3\x43\xc9\x06\x62\x59\xc4\x21\xa3\x9b\xa3\xe0\xfd\x62\x9d\xe4\xb0\x26\xa3\x77\x70\xe2\x74\x63\x87\x71\x19\x26\xa8\x01\x8e\xd3\x4d\x43\x64\xdf\x4b\x53\x8b\xfb\x2d\x12\x23\x2f\x78\xdf\xac\x03\x0f\xaf\x83\x66\xe1\xc4\xd9\x16\x95\x71\x2d\x76\x84\x50\x7c\x8d\x68\x96\x9b\x15\x3c\x0b\x7c\x6b\x3a\xb2\xe6\x63\xcb\x75\xc6\xe3\x61\x43\x7c\xc6\x62\x17\xe2\x6c\x9d\x37\x4b\x85\x6c\x07\x42\x9b\xc8\x5a\xa4\xad\x9d\x28\x5d\x13\x4b\xd2\xe3\x40\x18\x75\x3c\x9b\x49\x9c\x21\x9b\x9d\xba\x23\xb7\x9d\xde\x9b\xeb\x9b\xd9\xcd\x4c\x41\xb0\xf5\xc5\xe2\xe3\x16\xfa\xfe\xf6\xc1\x7d\xf0\xf8\x81\xe1\x4a\x73\x3d\xc2\xb3\xc4\xd0\xe0\xa1\x5e\xfa\x3a\x55\x56\x00\x80\x61\xd2\x28\x4b\xd0\x0d\x06\xfa\xa7\x31\x70\xdf\x37\xe7\x99\x4b\xcf\xb3\x4e\x6c\xd2\x30\x7b\xcd\x30\xbb\x02\x7d\x51\x56\x2b\x99\x01\x71\xdc\xc9\xa1\x46\x36\x2c\x1e\x74\x67\x0d\xf7\xf4\x2d\xa1\xfa\x06\xca\x25\xac\x91\x66\xaf\xb4\x27\x51\x1a\x67\xf4\x02\xda\xac\x29\x36\xee\xb7\xe3\xdb\x87\xbb\xeb\x03\xa3\xd3\xec\xc4\xc7\xb5\x09\x35\x90\x2a\x0d\xf4\x90\x1e\x40\x63\xf1\x5c\x33\x50\x87\x0b\xb7\x79\xcd\x70\x5b\x46\x70\x4c\x2b\x8c\xe4\x2e\x89\xf1\xff\x78\xbb\x38\x48\x9c\x91\x85\x47\xce\x76\x02\x4a\xc9\x6f\x3b\x84\xd2\x9e\xbb\xbf\xc3\x1f\xce\x44\xf0\x31\x6f\x8f\xce\xbb\xf9\xdd\xfd\xfd\xd8\x34\x27\xc2\x8c\x35\xfb\xb2\x44\x09\xc4\xc3\x75\xf8\x1f\x29\x8a\x62\x08\xce\xda\xe1\x05\xe3\x99\x5b\x3c\x0f\xf7\x6d\x8b\x94\x73\xf4\x40\xfb\x95\x46\xa7\x73\xd1\xfe\x48\x66\xa3\xf5\x83\x85\x0f\x8a\x9d\x56\xf6\x3a\x41\xcf\xab\xfc\xb9\x79\x86\x7f\x4b\x9c\xf7\x2b\x1a\x20\xf2\xd9\x02\x63\xbd\x90\x79\xee\x03\x2f\xdd\xc5\xb3\x8a\x33\xf1\x30\xc5\x9f\xee\x36\xf4\x70\xba\xc0\x95\xe8\x26\x19\x96\x83\xc6\xd3\xd2\xd1\xea\x58\x07\xf4\x22\xa3\x30\x93\x2e\xbf\x34\x04\xd3\xe2\xb9\x9d\x53\xf8\xcc\xe7\x74\x3e\xf7\xf8\x9c\xf6\xb7\xd9\xea\x04\xe1\x3c\xa9\x46\x00\xf8\xf6\x38\x6d\x41\xe8\x1b\xa4\x7f\x0c\xc5\xd5\xcb\xce\x61\xba\x6b\xdd\x43\xd7\x48\x0b\xac\x80\x69\x2c\x3c\xc2\x01\x0e\xf7\xce\x33\xe3\xe1\xb7\x3e\xab\x65\xe2\xbf\x17\xc9\x0e\x1e\x4b\xa7\x8e\x13\x64\x39\x9b\x12\x16\xdb\xfd\xdf\xf3\x3c\xbd\x98\x05\xef\xf9\x68\x33\x4a\xd4\x51\x0b\x66\xd1\x87\xe4\x7e\x2b\xee\x2e\x6f\xee\x2b\x95\x03\x7a\x97\x92\x06\xe6\xa0\xde\xeb\x2a\x72\x35\xfb\x98\xe7\x49\xc5\x1b\x8b\x5b\xa7\x40\x45\x25\xdc\x6c\x50\xb9\xc7\xed\xd8\x36\x4c\xbd\x3c\x24\xce\x2a\xd9\x21\xce\xc9\x8e\xc6\xf3\xd9\xdd\xcd\xc1\x29\x76\x65\x91\x34\x4f\xe7\x37\xc1\xfc\x66\x72\x70\x36\x25\x42\x99\xcc\xf4\x1e\x1c\x88\xca\xbc\x01\xbc\xbd\xf5\x6f\x6f\x0e\x4e\x89\x22\xfe\xe8\x7e\x3a\xbe\x1d\xdd\x1e\x9c\x08\x96\x9f\xda\x5a\xc6\xf3\xe0\xfe\xe0\x70\xe2\x85\x1b\xc0\xbe\x4b\xed\x90\x9b\x49\x01\x58\xcb\x64\x70\xda\x40\x13\x38\x6d\xb2\x0c\x6d\x60\xd7\x19\x00\xe9\x8b\x82\x9a\x74\xc9\x04\x8c\x3b\x29\xc3\xd2\xbe\x9a\x60\x49\xef\xd5\x2e\xe2\x41\x90\x81\x37\xf6\xd3\x36\xae\xd1\x5e\x61\xae\xc4\x93\x4a\xbf\x5e\x2a\x00\x0c\xfd\x74\x34\x9b\xe2\xe9\x59\x6d\xf8\x18\x08\x38\xb5\x11\x30\xa0\xd5\x61\x5a\x2e\x97\xa0\x25\xfd\x17\x4f\x24\xb5\xf7\x06\xa4\x3a\x8c\x82\x94\xae\x05\xf1\xda\xa0\xae\x04\x03\x56\x1d\x46\xc1\x9a\x97\x30\xdb\xc8\x78\x1f\x46\xf3\x5b\xcf\xef\xc7\xab\xc3\x28\x78\xf9\x62\x14\xf0\x6a\x4b\xd1\x80\x57\x87\x31\x8c\x82\x5d\x7d\x7a\x91\x30\x07\xee\xad\x77\xfb\xd0\x8f\x59\x87\x11\x31\x37\x54\xd5\x40\x45\x19\xd5\x5e\xc1\xd2\xce\xe0\xe3\x55\x12\x5f\x51\xae\x06\x3f\x58\x95\x30\x8b\x2c\xf5\xf5\xbe\x45\x2d\xad\x62\x76\x30\x90\xbb\x2b\x01\xbc\x58\xe7\xe1\xae\xb2\x0c\x2f\xb6\xf9\x23\x2a\xe5\x17\xc0\xc9\x0b\x94\xe1\xca\x4d\x4f\x4d\xa8\x9a\x77\x04\x9b\x34\x64\x94\x09\x22\xa7\xf9\x5e\xda\x17\xa6\x23\x94\x50\xfa\x35\x4c\xe3\xe4\xe5\x62\xf0\x47\x94\x3c\xa2\x3a\x0e\x21\xf8\x13\xda\xa1\x81\x05\xfe\x92\xaf\xf2\x3a\xb7\xc0\x75\x19\xc3\xc4\x02\x83\xbb\x32\x8f\x23\xf0\x3d\xcc\xaa\x81\x05\x2a\x98\x55\x76\x85\xca\x78\xbd\x50\xee\x12\xaa\x3c\x45\xbc\x5b\x78\xce\x78\xea\x1d\xde\x20\xec\xe1\x7c\x42\x6e\xb3\xc9\x13\xee\xca\xe2\x4c\x14\x70\x83\x6c\x91\x93\x20\x13\xce\x6a\x9f\x04\xaa\x3c\xc7\x15\x4b\x00\x87\xfc\xb3\xc4\x15\xb2\xd2\x63\xe9\x22\xb5\x90\xda\xd7\x55\x14\xf3\xc0\x8c\x2d\x98\x77\x55\x41\x8e\x6d\x7e\x27\x79\x65\x1d\x94\x93\x77\x8a\x5d\x92\x50\x3e\x60\x2f\xdd\x68\x0e\x0e\xe1\xe7\x96\xb4\xcf\xcb\x91\xef\x72\xae\x6f\xe4\x93\x31\x94\x5f\xcf\xdb\xd7\x73\xfd\xb5\xef\x36\xaf\x09\xcb\x70\x70\xb8\x58\x74\x49\xa5\x9d\xad\x98\x94\x4b\x3f\x8b\x32\xdf\x94\xa8\xaa\x6c\xbc\x71\xe8\x21\xd0\x2c\xbc\x9e\x83\x40\x2a\xb6\x29\xe1\x8b\xa1\xd8\xcd\xdd\xed\xe8\x76\x2a\x16\xab\xe1\x2a\x41\x78\x55\xd0\x21\x00\x0d\x1a\x45\xaa\xe1\x0a\x6b\x0e\x65\xb5\xce\x96\x1e\x38\x9f\x16\x04\xda\x55\x51\xbc\x4a\x98\x6e\x0b\xd3\xc9\x8c\xf0\x33\x2a\x06\xdf\x7d\x7f\x30\xc1\xcf\x19\xff\x73\x2a\x7c\xc3\xad\x9d\x5c\x80\x54\xc0\xf8\x2e\x8d\x1f\xdb\xd3\x41\xab\x25\x81\x80\x23\xae\x24\xc6\x5e\x4e\xe5\xdb\xec\xc1\xa1\xb7\x54\x36\xd6\xcd\xcd\x90\xaa\x48\x28\xa0\x26\xd4\x6b\x9a\x6c\x91\xaf\xcf\x95\xed\xd1\x6f\x55\xca\xbf\xa5\x11\xff\x96\x6c\xf8\xb7\xe7\xca\xf6\x1b\x38\xbf\x81\xf3\x1b\x38\xbf\x81\x1b\x35\x70\xa3\x06\x6e\xd4\xc0\x8d\x1a\xb8\x71\x03\x37\x6e\xe0\xc6\x0d\xdc\xb8\x81\x0b\x1a\xb8\xa0\x81\x0b\x1a\xb8\xb6\x1f\x93\x06\x6e\xd2\xc0\x4d\x1a\xb8\x49\x03\x37\x6d\xe0\xa6\x0d\xdc\xb4\x81\x9b\x36\x70\xb3\x06\x6e\xd6\xc0\xcd\x1a\xb8\x59\x03\x37\x6f\xe0\xe6\x0d\xdc\xbc\x81\x9b\xb7\xe3\xec\xb6\x03\xed\xb6\x23\xed\xb6\x43\xed\xb6\xb0\xc2\xa4\x08\xb3\x22\x4c\x4b\x3b\x2f\x5e\x3b\x31\x5e\x3b\x33\x5e\x3b\x35\x9e\xbf\xd7\x2e\xd9\x44\x76\xc1\xcf\x00\xf9\x66\x27\x5f\x69\x44\x91\x3b\x93\xac\x91\xdd\x59\xe6\x4f\xf2\xe2\xb4\x3d\x55\x6d\x62\x53\xc8\x4d\x19\x47\xcb\x2a\x89\x23\x7c\xb0\xf0\x79\x11\x4e\x8b\x31\x86\xda\x7a\x96\xb3\xf5\xac\xad\x6f\x39\x5b\xdf\xda\x8e\x2c\xa7\x21\xda\x8d\xcc\xd0\xb4\xfb\x1b\x0e\x20\xb8\x9e\x8e\x66\xf7\x54\x84\x13\xa1\x30\x2f\x21\xe9\x2f\xb9\xb9\x40\x0b\x12\xa5\x51\x8d\x22\x8b\x1f\xdf\xf0\x82\xe9\x06\x9a\x37\xec\x05\x7f\xee\xac\xea\x8c\x1f\xf5\xf8\x2b\x7d\x2c\x3c\x71\xf4\x27\x1a\xb8\xa3\x81\xd3\x27\xfb\x7c\x57\xe3\x63\xf8\xc2\x3d\x70\x0e\x84\x35\x6c\x6f\xec\x01\xe3\x7b\x74\x22\xca\xf8\xa1\x2d\x82\x91\xc2\x77\xf0\x0b\x0e\x83\x30\x90\x13\x57\xe6\x93\x54\xa8\x46\xa8\x3e\x75\xf9\x79\x48\x5e\x77\x94\x02\x49\x6c\x14\x23\x89\x45\x17\xaa\xd8\xa6\x47\xd4\xd3\x59\x89\x2e\x30\x12\x5a\x14\x95\x79\x11\xe5\x4f\x19\xd7\x55\x48\x52\xca\x4e\x28\x00\x4d\xdc\xa8\xe7\x37\x67\x11\x2f\xa9\x29\x3f\x3c\xae\xb7\xc0\x4d\xa4\x9d\xc2\xeb\x55\xd5\x9f\x8a\x3a\x0a\xda\x96\x2a\x8e\x90\x38\x73\x92\x0c\x4d\x92\xb2\x8f\x27\x54\xbf\x27\xc2\x5f\xac\xe3\xb2\xaa\xed\x7c\x6d\xd7\x2f\x05\x12\x37\x0a\x5d\x13\x92\xba\xc8\xb0\xfb\x65\xbe\x2e\xdc\x95\x55\x5e\x5e\x14\x79\x4c\x85\xbe\x2a\x82\x2b\xa8\x2c\xbc\x09\xeb\xb4\x02\xc5\xb8\x5f\xb6\x23\x1f\xfc\x87\xe0\x61\xaa\x2a\x41\x8c\x45\x2c\x85\x4f\x37\x6e\x02\x91\x5f\x26\xca\x8d\x02\x96\x88\x63\x15\x74\x45\x9a\x34\x47\xd6\xd3\x08\x35\x1a\x95\x85\x3a\x9b\x43\xf4\x00\x7e\x10\x58\xfc\x3f\xd7\x71\x27\x43\x03\x6a\x59\x2b\x33\xe2\xa3\x64\xa7\x91\x51\x63\x74\xb1\x42\xeb\xbc\x94\xaf\x6e\x63\x3f\x98\x4c\x66\x0b\x36\xce\xe4\x20\x67\x2c\xd2\xc5\x60\xc0\xd9\xe6\x59\xf1\xbc\x68\x15\x3f\x22\x95\x24\xfc\xb4\x26\xc8\xa4\xdb\x9d\x20\xa3\x4b\x70\x26\x28\xc9\xbc\x2e\x25\x70\x57\xab\xe1\xba\x6e\x17\x2c\x3d\x11\xda\xcb\x9f\xdc\x7e\x57\x6c\x3c\x6d\xf1\xd4\xd8\xc2\x8e\x95\xcb\xee\x7f\x42\x03\xa4\x5b\xdf\xfd\x14\x7f\xa4\xfb\x4d\xe0\xba\x86\x89\xe9\x9b\x76\xe3\xcc\x77\x2d\x1e\x42\x00\xfa\x50\x01\xc8\x91\x89\x97\xde\xe6\xba\x7a\x6c\x27\x36\xa4\x67\x54\x3c\x03\xaa\xe2\xf0\x4d\x7b\xcd\x09\x77\x25\x5e\xfc\x36\xbe\x8d\x58\x5d\x0a\xe2\x53\x74\xda\x40\x41\x26\x0e\x82\x69\xe1\x07\x43\x5e\x8c\x8d\x5d\x57\xe1\x66\x04\x0d\x70\x00\xaa\xc3\x63\x6a\xfe\x15\xd3\x97\x30\xfd\x22\x69\x8d\x6b\x91\x8f\xe3\x07\x43\xe0\x02\xdb\x23\xf2\x6b\xa1\x56\x7c\xee\xd0\xfb\x4a\x14\xa3\xac\x3e\x7b\x37\x1a\x8d\x83\x60\x62\x81\x77\xfe\xed\xd8\x0f\xa6\x43\xab\x95\x56\x3f\xf7\x60\x26\x88\xad\x38\xab\x50\x0d\x0c\xc3\xe0\x4d\x1a\xa0\xc3\x11\x09\x85\xb2\x3a\x65\xd5\x9c\x41\xff\x43\xb6\x89\x78\x87\x96\x75\x81\xbe\x6c\xec\x41\x47\xa8\xb9\xf3\xa1\x24\x89\x8b\x2a\xae\x16\xca\x2d\xb0\xc7\xa6\xc2\xf7\x65\x7d\xcc\xcf\x6b\x5f\x30\x2f\x9e\x95\x35\xcd\xdf\x04\xad\xe9\x8a\x6b\xe2\x28\xdb\x4e\xf1\x0d\x26\x3c\x39\xc2\x1b\x75\xc9\x85\x02\x2f\x18\x05\x13\xed\x0c\xc2\xc7\x79\x4b\x4d\x4e\xde\x94\x2e\xdb\x94\x8b\xee\x5b\xb3\x2a\x56\x52\xce\x35\xed\x6c\x91\x0e\x32\xdc\xac\x0a\xc1\x32\xdc\xee\x05\x89\x58\xfb\x14\x38\xeb\xbc\x4c\x6d\x4c\x53\xcb\x3c\x91\x77\xb7\x2b\x2e\x68\xba\x6e\xd9\x02\x2d\x9e\x81\xb4\xc0\xdd\x69\x30\x54\x68\x3e\xd1\x59\xbb\xec\x3f\x3f\x50\x39\xfe\x1e\xf5\xb8\xef\x7b\x96\xef\x4f\x2c\x7f\xe4\x5b\xae\x33\x9e\x0f\xbb\xdb\xcb\x87\xe0\x34\x3c\x0b\xb9\x77\x32\xda\x38\x2b\x76\xb5\x8d\x07\xb2\xb0\x57\x75\x06\x56\xbb\xba\xce\x1b\x11\x3b\x57\x40\xb1\xbe\x00\xde\xbb\x53\xbb\xb0\x10\xcf\xb6\xce\x71\xf5\x8c\xe3\xca\x25\xf6\xa3\x6b\xff\xc6\x57\x6d\x27\x14\x11\xe5\x66\x93\x20\x51\xb5\xaa\x6d\x0e\x72\xa4\x4f\x9a\xed\x39\x65\xac\x28\x2e\x07\xa0\xa2\x09\x0f\x04\x4d\x1e\x3e\x77\x15\x96\x8e\x97\x92\x2d\x77\x1a\x3e\xce\x7c\xc0\x1a\x08\x1f\xee\xa3\xc0\xfd\xfa\x82\xfc\x6e\x4e\x4c\x22\x60\x86\x92\x65\x9d\xe7\xc9\x2a\x7f\x96\x94\xeb\x2d\x8b\x4f\xfb\x21\x41\x62\x2e\x55\x18\x09\xb5\xf5\x2a\xec\x55\xdb\x7b\x61\x3b\xde\x06\xb7\xd3\xdb\x9b\x85\x6c\x0a\x61\x2a\x6c\x90\xd2\x62\x56\xf5\xe1\xfa\xe0\x60\x5a\xb6\x1c\xb9\x7b\xd5\xfe\x42\x30\x1d\x58\xe2\xa3\x4a\xdc\xa0\xab\xca\x8e\xf2\xb0\xb2\x19\x8b\xde\xca\x96\xf7\x66\x3a\x32\xa6\xc6\x77\x87\x75\x9e\xd7\x4a\x33\xd6\xeb\xf5\x42\x9a\x57\xb2\xf5\x64\x09\x64\xb7\xc0\x8b\x21\xd4\xc5\xb4\x8d\xd6\xdf\x00\x41\x67\x83\xbe\xa0\x4a\x69\x0e\xa5\xdc\x61\xe8\x76\x20\xdb\x88\x2e\x67\xe9\xdc\xe8\x93\xc3\x99\x90\x4b\xa7\x89\x51\x68\x66\x2c\xdd\xd3\x11\xf7\x40\x35\xa3\xe4\x1a\x56\x39\x98\xaa\x7e\xc2\xd3\x28\xc9\x16\x75\x1b\x8f\x83\xf3\xd3\xdf\x2a\xbc\x3a\xea\xb8\x30\x5c\xa0\xc5\x83\x8e\x99\x29\xc9\xca\x4b\x7e\xbe\xe1\x73\x54\x33\x83\xd3\xce\x2a\x5e\x91\x34\xa5\x32\x5d\x88\x13\xc4\xa9\x24\xa5\x00\x2d\xdf\x16\x86\xa1\xce\xee\x0b\xc4\x22\xd0\xed\xb5\x28\x42\x5d\x2a\x8c\xc9\x29\xad\x4a\x2f\xc0\x5f\x01\x52\x56\x36\x2f\x22\x76\x00\x9a\x75\x12\xa3\x3b\xd4\x22\x75\x6a\xb0\x2a\x3b\xc0\xb2\x8e\xc3\x04\x39\x64\x9e\xc5\x5b\xf9\xef\xac\xdf\xb1\x8b\x90\xf5\xbb\xe6\x6e\xf1\x8c\x2b\xc3\x73\xd6\xdc\x8b\x9f\x0f\xef\x30\x31\xd8\xd0\xd1\xb4\x93\xb8\xaa\x4d\x6a\x7f\x2a\xfb\xe4\xa3\x4b\x04\xab\x7a\x41\x62\x88\xd9\x18\x7e\xb0\xa2\xcc\x16\x82\x33\x0e\x41\x60\x2c\x87\x09\x15\xfe\x6a\x13\xab\x72\x76\x2f\x35\xce\x55\x14\x45\x5d\x7c\x04\x9e\x26\x75\x42\x4c\x95\x5d\x24\xb0\xaa\x6d\x42\x9b\xf7\x9d\x46\x36\x51\x14\x75\xb5\xd4\x40\xe7\xd0\x1a\x7f\x0e\x0e\x7a\x2e\x60\x16\x29\x04\xca\x78\xeb\x6e\x07\x44\x23\xcb\x14\x49\x6b\xab\x30\x93\xad\xdc\x64\xb3\xb4\x99\xae\x89\x3a\xbc\xc3\x70\xd6\x3b\x2a\x75\x52\x26\xad\x12\x4c\x53\xc9\x23\x3b\x44\x49\xb2\x78\x44\x78\x21\xc1\x84\xed\xe1\x34\x8e\xa2\x04\xf1\x6b\x2d\xbe\xba\x46\xa8\x86\x71\xc2\xad\x31\x3b\x7a\x73\xeb\x8e\xe6\xfe\x8d\x41\x79\xc9\x5e\xf0\xa9\x9a\x70\x23\x33\xc5\xfa\x4b\xb8\x77\x37\xa2\x79\x5e\xb5\xac\xfd\x61\x36\x6a\x02\x15\x27\xed\x10\x77\x10\xe1\xc0\xb9\x2c\x36\x70\x5b\x4c\xd4\x32\xb0\xb5\x68\x21\x55\xd9\xb0\x2c\xf3\xa7\x66\xed\x37\xb2\x5b\x7a\xca\xf6\x58\x73\x52\x49\x16\x0c\xc3\xbc\x8c\xe2\x3c\x03\xf4\x60\xdc\x6b\x66\xb8\x9a\x1d\x4f\xe7\xd2\xe3\x8b\x49\xc5\x49\x84\x54\x71\xb6\x91\x4f\x58\x22\x0e\x92\x6e\xb8\xe2\xb5\x43\xd1\xb2\xa9\x28\x4d\x47\x36\x41\x78\x70\x9e\x97\xb4\x23\x3a\x1b\xdf\x6f\x17\x28\xb3\xf5\x53\x61\x86\x24\xf1\xa5\x7a\x3c\x1b\x0c\x0a\x26\xf7\xf3\xfb\xbb\x85\xfd\x84\x56\x9f\xe2\x1a\x33\xf6\xbb\x34\xb3\x57\x25\x82\x9f\xec\x38\xc3\x5c\xc1\x05\x7c\xcc\xe3\x68\x61\xa7\xf9\xdf\x7b\x5e\x77\xbf\xc9\x0b\x18\xc6\xf5\xcb\x85\xb7\x20\xf7\x05\x26\x3c\x49\x12\xe0\xf8\x15\x40\xb0\x42\x07\x6e\xbb\xa3\xd0\x09\x5f\x6b\x65\xd3\x6b\xba\xa8\x89\x17\x80\x41\xae\xde\xd8\x02\x39\xeb\x38\xa9\x1b\x6d\xfd\x58\x15\x05\x0b\xf6\x4a\x6c\x9d\x12\x46\x94\xa0\xed\xd2\xa1\x2e\x4e\xbc\xb3\x12\x3b\x14\x62\xac\x8c\x09\xed\x53\x09\x8b\x83\x6e\xa2\x24\xd9\xfc\x4a\x2d\x27\x9b\xa7\x51\x54\xe2\x0f\x7e\xa7\x2a\x1c\xdd\x66\x14\x7a\xd7\x8f\xc8\x9c\x26\x08\x96\x17\xab\xbc\xde\x2a\xe6\xa1\x02\x7a\xb0\x1d\x8b\xb4\x6f\xa2\xd0\xbe\xc0\x75\x0f\x09\xda\xa0\x2c\x6a\x44\x86\x6c\xf0\x19\x1d\x49\x73\xbb\x48\x60\x88\xb6\x79\x12\xa1\xb2\xd1\xf8\xce\x24\xcb\x69\x4a\x24\xaa\x8b\xac\xde\xd2\x43\xe2\x6c\x94\x0d\xf7\x6d\xf3\x34\xc8\xd6\x94\xf6\x31\x46\x4f\x66\x69\xbd\xac\x8d\x97\x85\x2b\x54\x5a\xd3\x8b\x14\x38\x51\xfc\x18\x0b\x12\x6d\xe5\x54\x44\x01\xfe\x74\x31\x2d\xcd\x40\x1e\xa9\x03\x53\xf4\x6c\x63\x60\x5d\x8e\x94\xa3\x80\x7d\x64\x69\x4e\x05\x4a\xc6\xb6\xd3\x1d\x74\xb4\x12\x62\xad\xa0\x18\x97\x9f\x54\x08\x14\xaa\xe9\xff\x29\x43\x21\xea\x75\x88\x18\x55\x21\x6d\x47\x31\xb4\xf6\xd9\x26\xbf\x21\x99\x6a\xf8\xc7\xf1\x29\x94\xe0\xe4\xb9\x54\x9c\x27\x16\xf2\xf6\x39\x3e\xb5\x65\x8c\xd6\xfb\xa3\x96\xee\x7a\x71\x32\x5d\xc2\x8a\x20\x54\x87\x98\x79\xc4\x19\x61\x1c\x84\xaf\x76\x55\x24\x71\xb7\xa6\x4b\xe2\x08\xe8\xe4\xf5\x62\x01\x50\x11\x59\x08\xa6\xfb\xd3\xc9\x6c\x34\x9f\xd3\x23\x43\x07\xe2\x67\x8d\xf6\xe6\xd0\xda\x12\x80\xed\xc8\x12\x7f\x8d\xc5\x5f\xad\xcf\x81\xc8\x2c\x18\x99\x2b\xdd\xbc\x83\x60\xa8\xb7\x22\xbe\x3a\x32\x78\x0f\x48\xd0\xdd\x1c\xec\xfd\xe4\xfe\xf6\xfe\xfe\x20\x63\x13\x3d\xd5\x5c\xf9\x1d\x66\xdf\xd5\xd5\x22\xc9\xab\x74\x78\x60\x60\xdb\x85\x3b\x88\x01\x5c\x52\x09\x9a\x01\xc0\x2a\xde\xec\xb9\xf4\x4d\x12\x75\x88\xeb\x00\x33\x3a\x07\xc5\xc2\xc3\x8c\x9a\x1a\x7f\xc8\x23\x29\x76\x8e\x2a\xea\x65\xd5\xa3\x5e\x1a\x14\x7b\xfd\xe0\xd4\xce\xd6\x8e\x23\xb8\xd9\x3f\x12\x7f\x3a\x33\x57\x14\xcb\xea\xe4\x99\xdc\x3a\xd9\x58\x85\x8f\xf6\x4c\xb9\x3d\x76\xe0\x66\xfa\x4d\x7a\xf5\x61\xcc\xfd\xe8\xfd\xa1\x8e\xe8\xc2\xd5\x30\x34\xea\xd1\xa7\x38\xda\xa0\x5a\xbf\xee\xa2\xb2\xcc\x4b\x3b\xdb\xa5\x2b\x54\x0a\x27\xf3\x5c\xbd\xcd\xce\x85\xdb\xac\xcf\xcc\xb7\x88\xcd\x02\xd9\x0a\x22\x9d\x0d\xde\x1f\x9c\x34\x8e\x96\x74\xad\x73\x17\xa6\xa9\x50\x9e\x5d\x46\x75\xaf\x12\xdd\xd8\x69\x3b\x72\x22\xb4\x29\x11\xaa\xf6\x8a\x64\x5e\x15\xdc\x1b\xe4\x17\xac\x24\xbb\x3c\x37\x1a\xb7\x7c\x60\x60\x69\x70\xcb\x6d\xcf\xd7\x6f\x33\x1a\xc1\x8c\x60\x9c\xbc\xd8\x4f\x08\xd6\x5b\x54\x02\x27\x82\x2f\xaa\x93\x91\x70\x4a\xfa\xb2\x48\xd5\xf3\x02\xcb\x1b\x05\x96\x17\x4c\x2c\xd7\x19\x4d\x86\x86\x41\xe8\x62\x54\x3b\x10\xc8\xf4\xc0\x61\xed\xb2\x23\xf8\x52\x81\xc6\x2e\x49\x9d\x77\xbe\xea\x26\xce\x84\xfe\x4d\xdf\x37\x45\x81\x68\xc2\xd2\x72\x10\xab\x5d\xf2\xc9\x86\xc4\x77\xa6\x92\x55\xc9\x74\x95\x86\xf9\x2e\xab\xcb\x18\x55\x4b\x45\x04\x61\x7c\x2f\x52\x32\x7a\x15\xd4\x65\x27\x1d\x8c\x12\xf9\xc3\xd3\x50\xc3\x8f\x18\x73\xb5\x64\x27\x88\x28\xfb\xc5\xf7\xd3\xb9\x2c\x77\x12\x99\x9b\x28\x8a\x74\x5b\x5d\x6e\xbc\x27\xbf\x64\x67\xd5\x66\xb9\xde\x25\xc9\x92\x6e\x94\x0a\x40\x7e\x6c\xa1\x65\xaf\x76\x7c\x34\xb3\xbc\x19\x9e\xae\xb1\xe5\x3a\xc1\x7c\xd8\x59\xeb\x31\xe8\x03\x15\xe5\x3b\x77\x1f\x3f\x7e\x5c\xd2\xef\x56\x14\x3f\x4a\xbf\xa1\xf8\xcb\xc4\xb3\x10\xb5\x70\xd7\x98\x18\xde\xb6\x02\x7e\xd5\x5c\x8e\xce\xe9\x4f\x30\x5d\xe5\x4b\xf2\xbd\x57\x7d\x41\xff\x73\x9d\xe9\x6c\xa8\x97\x04\x35\xbe\x15\x6b\xea\x55\xc1\xbf\x70\x3e\x1e\xca\xda\x37\x13\x12\xe2\x8b\x52\x97\xf4\x3e\x8c\x97\x97\x8a\x50\x1a\x5c\x77\x3a\x34\xaf\x2f\x1d\xd4\xf3\x86\x9d\x37\x7d\x23\x74\x4f\xeb\x9c\x0a\x25\x28\xac\xd1\x91\xd6\x79\x93\x93\x90\x90\x5e\x9e\xd6\x89\xf1\x6b\xfa\x30\x1e\x76\x6d\x2f\xf9\xce\xe3\xba\x94\x1e\x36\x90\xf8\x44\x2d\x44\x01\x79\x43\x5e\x85\xbb\x21\x71\xcc\xf1\xe4\x1a\xca\x3c\x44\x55\x45\x8c\xa5\x8d\x26\x10\x81\xfb\x9e\x8a\xd9\xf1\x17\x66\x52\x1a\xb8\xad\x74\x68\xa4\x9b\xd8\xf9\xca\xf5\xc9\xf6\x24\x9b\xea\x31\xb9\xc5\xf9\xc2\xad\x46\x95\x51\xea\x94\x99\xeb\xb0\xe6\xf3\x85\x4a\xf1\xd5\xcd\xcf\x98\x65\xa1\x8f\x09\xca\x36\xf5\x56\x13\x17\x50\xf7\x4b\x01\x4e\x12\x2b\x04\xb2\x58\x61\xa1\xba\x49\x4a\x25\x05\x06\x6a\xd2\x8d\x9f\xcf\x66\x97\x83\x27\xc5\x4b\x57\x5f\x53\x0c\xd4\x5b\x66\xb1\xa7\xbd\x88\x14\xc3\x3d\xbf\xcf\x4b\x85\x01\xd9\xf9\x7a\x5d\x21\x3c\x4b\xc2\x5d\x00\x2d\xa3\xb8\xc2\x38\xa3\x65\x51\xa2\xc7\x38\xdf\x55\x56\xfb\x0e\x65\x9d\xaf\x9a\x62\x19\x7a\xae\x0d\x45\xf0\xe3\xc6\x9f\x70\x2e\x73\x5f\xb2\xe4\x96\xcf\xb0\xe7\x79\xfa\x09\x60\x6c\x21\x57\x67\x77\xb6\x53\x03\x90\x5a\xdb\x59\xbc\x7d\x69\x14\xd7\x9e\xda\x3a\x6e\xb2\xd9\xdd\x3c\x0d\x42\x6e\x5f\x27\x02\xe1\x6d\x33\xf5\x54\x93\x73\xd2\x74\x4a\xb5\x70\x61\xd4\x64\x32\x39\xb1\x63\x3d\x3d\xd2\x23\x00\x98\x10\xf5\x2d\x15\xd9\xce\x57\x34\x25\x13\x84\x69\xdd\x6d\x13\x89\xe4\xae\x4c\xce\x06\x8e\x73\x1e\xa7\x70\x83\xaa\x73\xfc\xa6\x29\xe0\x14\xd9\x66\x30\x04\x59\x6e\x97\xa8\x40\xb0\x06\x75\x5e\x00\xe6\x05\xdf\xd9\xb9\x23\xb8\x19\xfc\x5b\x50\xeb\x82\xe4\x9e\x0a\x96\x04\xf8\x94\x6a\xe4\x89\xee\xc6\xbe\xce\xcb\x27\x58\x46\xfd\xa3\xc3\x68\x9e\x79\xda\x8e\xe3\xee\x1b\x9d\x3e\xd4\x47\x87\x46\xa9\xa0\x67\x74\x24\xea\x4a\x99\x68\xc5\x3d\x41\x38\x29\x35\x1e\x9a\x95\xa0\x1c\x13\xa8\x5b\x6b\x98\x59\xf1\x0c\xf0\x15\x12\xcc\x78\x78\x85\xae\xd3\x7e\x95\xc0\xf0\x93\xae\x0d\x51\x34\x58\x4a\x75\xeb\x3c\xaf\xc5\xea\x46\xbc\xba\x91\x52\x9d\xcc\x86\x98\xeb\x52\x91\x97\x0e\xd3\x8a\xf8\x02\x3f\xa3\x0b\x43\x20\x84\x6a\xc9\x48\x6e\x90\xdb\xdc\x98\x5b\x08\xe6\x09\xd2\x29\x83\x51\x47\x94\x13\x3c\xe3\xdb\xc8\x4c\xf0\x84\xc3\x95\x7a\xfe\x4a\xa2\x66\xed\xed\x4d\x1e\xbd\xec\x7f\x27\x71\x26\x82\xe0\x8a\x5f\xd4\x6c\x0a\x8c\x3b\x57\xe7\xbb\x70\x4b\xb4\xcf\x40\x3b\xee\x5b\x67\x96\x83\x43\x6a\xed\xaa\x1b\xa5\x45\xfd\x62\x1a\x06\x32\xb7\xc4\x6e\xa8\x59\x88\x4e\x80\x52\x39\x7a\x04\x23\xd0\xe3\xf1\x58\x2c\xe0\x50\xb3\xa3\x65\x9c\xc5\x0d\x0d\x9f\xcf\xe7\x87\x3a\x72\x88\x09\x92\xc1\x31\x2a\xf2\xc2\x75\xa4\x6a\xce\x04\x96\xe1\xda\x9b\xdf\xcc\xef\xcd\x37\x68\xf6\x12\xa3\x67\xc2\xca\x63\x15\x18\x0a\x3b\xe8\x19\xa6\x45\x82\x96\x30\xa9\x97\xad\xe8\x11\xe0\xbb\x94\x99\x97\x1a\x93\x38\x1e\xfa\x1d\xb0\x79\x2d\xf0\xa1\x44\x32\xa1\xaa\x30\x3b\x6e\x90\x3d\xa7\xa7\x06\xda\xcd\x09\x1c\xbd\x9e\xb2\xbb\xe1\xa9\xb7\x58\x8d\x15\x86\x10\x76\x48\x55\x31\x3f\x6d\x10\xc3\x8a\x6c\xb6\xcf\x34\xc4\x0d\x89\x23\x01\x79\x34\x23\xa6\x13\x3a\x60\x9a\xea\x28\x3a\xb1\xb0\x46\xc0\x39\x8a\x30\x0c\x8d\xca\xfd\x5f\xe2\xfe\xff\x6e\x3e\xbf\x19\x3d\x3c\xe8\xe4\x0e\x3d\xa2\xcc\x29\xf3\xa7\xa5\x74\x8f\xd3\x7d\x08\xdd\x9b\xfb\xbb\xb9\x5e\x3c\x8f\xa2\x13\x4a\xcf\x1f\xae\x1f\xee\xbc\x03\x5e\xd6\xab\xfc\x59\x08\xa7\xa1\x68\x41\x5a\x01\x28\x39\x7d\xf4\xf9\x9f\xb9\x33\xf7\xe1\x41\xbf\xe1\xbc\xbb\x0f\xee\x83\x87\x87\xc3\x2e\x71\xd2\x6a\x43\x85\x3a\x49\x2c\xdf\x10\xa7\xf8\x23\x4a\xa8\x8e\x87\x0e\x61\x2b\x65\x42\x75\x8f\x0d\x15\x9a\x4f\xc4\x10\x59\x4a\xa5\xa2\x39\x88\xe6\x8f\x21\xeb\x7c\xe4\x82\x82\xc0\x68\xc4\xd4\xbe\x9d\x95\x00\x08\x1c\x72\xdc\x83\x38\xdd\x28\xea\x09\xe2\x0f\xd3\xfe\xd7\xb1\x5f\x54\x28\xcd\xc2\x51\xf4\x2c\x63\xc4\xd7\x7b\x6f\x68\x46\x1d\xa7\x68\xaf\x44\xa3\xa2\x3f\x89\x10\x3f\xae\x61\x12\x87\xfa\x19\xdf\xe5\xff\x40\x02\x69\xe9\xb5\xa4\xa8\xaa\xe0\x06\x75\x5a\x64\x29\xf1\xb0\x0e\xb2\xf3\x50\x8b\x8d\x08\xa6\x65\xc9\x7b\x99\xc2\x44\x81\xe7\x94\x27\x45\x51\xbc\x4b\x01\xb3\x1f\x92\xe4\x4f\xb2\xa1\x88\x30\x7a\x8a\xdd\x25\x33\x4f\x55\xd4\x1a\x20\xdf\xd5\x55\x1c\x21\x8a\xba\x2f\xbc\x8d\x68\x5b\x4f\x80\xa9\x9f\x9d\xfb\x5e\x8c\x6b\x33\x33\x6c\x15\x16\xd6\xa7\x3d\xbc\xc8\x85\x41\xb3\x17\xc1\x2f\xa8\xc5\x0a\x7f\xa3\x8c\x85\x6c\xa9\x4d\xfc\xf7\x44\xff\x7f\xea\x53\xaf\x38\x6b\x19\x04\x27\x1d\x51\xc0\xa8\xcb\x55\x67\xeb\xdb\xb5\x2b\x0f\x3e\xd7\xe7\x90\xd1\x15\x5c\x66\x7c\xdf\x15\x3c\xbd\xba\x9a\xd7\x2c\x07\xae\x0f\xa0\x3e\xda\xf8\x98\x65\xca\x07\xe0\xac\x60\xb4\x91\xd6\xb5\xab\x88\xdf\xe9\xc2\x91\xdd\xf4\x47\xca\x69\x33\xe9\x71\xf4\xc1\x8b\x03\xf7\x7e\x46\xd7\x7b\x9d\x2f\xa3\x5c\xb0\x57\xe5\x8f\x34\x32\x36\xc2\x1f\xc5\xfa\x67\x64\x34\x8c\xe0\xc8\xa6\x9a\xf1\x48\x40\x18\x03\x69\x45\xb6\x15\x16\x82\x2d\x53\xc4\x23\x30\x73\x95\x8d\xd4\x94\x09\xfe\x88\xec\x91\xe0\xbc\x32\x9d\xdf\x8e\xee\x1e\x4c\xed\x14\x54\x04\x4d\x00\x36\xbd\x26\xa0\x3d\x61\xf1\x09\x0c\x73\xd0\xc9\xa6\x87\x5e\x18\x85\x51\x7b\xe0\x73\x3b\xaf\x85\x62\xcf\xa1\xd9\xd2\x8f\x4d\x3a\x80\xd3\x1b\x29\x3b\x1f\x0a\x96\x4d\x54\x1c\x38\x0a\x54\xc3\x34\x4f\x08\x1e\x37\x1a\x41\x2f\x9c\x2f\xc4\xb3\x60\x62\x32\x8b\x7f\x07\x57\xd1\x1c\x41\xd5\x31\x4c\x0e\x51\x49\x8c\x41\x76\x89\xf3\xb7\x5d\x1c\x7e\x12\xed\x31\xc7\xc1\x7b\x45\x1d\x6b\x34\xac\x92\xcb\x6a\xde\x73\x4c\x57\x22\xab\x6c\x35\x0b\x79\xfd\xfc\xa3\x2e\x93\xf8\x64\xd1\x95\xa0\xa7\xd9\x1d\x69\x0d\x03\xf1\xde\xe0\x13\xcd\xf5\xf4\xc1\x74\x32\x9d\xeb\x13\x68\x2b\x86\x46\xa4\x5d\x73\xd3\x54\x73\x48\xa0\x2a\x31\x5b\xd9\xa8\xd1\xda\x40\x51\xd6\xd7\x79\x71\x82\xad\x5a\xe7\xcc\xea\x62\x60\xc9\x6f\xb7\x25\x3d\x0b\x2d\x92\x23\x6d\xee\xb2\xda\xa5\x29\x2c\x5f\xf6\x06\xa3\x3e\xcc\x06\xb1\xb6\xab\xdc\x90\xf0\x58\xc5\x04\x9c\x27\x6a\x9d\x21\x9c\x81\x8a\x6a\xdc\x54\x84\x5d\x85\x45\xb9\xb0\x0e\x44\xcd\x66\xcc\x88\x99\x8c\xa4\xa3\x90\x1a\xae\x91\x9e\x0b\x4f\x4b\xdf\x15\x82\x40\xe0\xdf\x4d\x50\x88\x80\xfc\x6e\xe3\x58\x04\xef\x0f\xdb\x80\x86\xef\x12\x9d\xb8\x04\x85\xbf\x26\x87\x93\xe1\x55\xcd\x7b\x7b\x82\xb4\x41\xc2\x84\x18\x12\x9a\x7d\x68\x23\xd0\xd7\x0c\xcf\xa9\xfe\x1d\x76\x78\x95\xb5\x6a\x76\xee\xba\xd0\x7a\x02\x08\xf2\x1c\xb3\xd5\x73\xc0\xa2\x15\xbb\x4a\x9c\xbb\x85\x18\x60\xce\x14\x1e\x5b\xae\x53\xe0\x65\xa7\x04\xe3\xc8\xb8\x78\x9b\xa1\x57\x4d\x12\xe4\xc6\x75\x04\xb4\xf3\xa6\xfe\xdd\xd8\x50\xb5\xc1\x0a\x75\xec\x07\xc1\x64\xca\x46\x8f\x28\x7f\x15\xde\x5c\x8c\x26\xdd\x9a\x83\xb5\xe0\xd4\xc8\x7e\x49\x9c\x16\x18\x82\x63\x01\x15\x65\x8d\x32\x70\xa9\x97\xc8\x9b\xad\x2a\x4f\x0b\xc1\xc8\x83\xa4\xf4\xb6\xdc\x60\x66\xab\x7a\xb6\x2b\xa4\xdb\xa3\xfe\x29\x7d\x58\xb9\x9f\xb4\xe0\x4b\xac\xb3\x3e\xec\xa4\x11\x03\x0b\x89\x6e\x5c\xa2\x84\xe4\xee\xc6\xbf\x09\x34\x32\xf6\xc6\x2e\x8b\x96\x2a\x8d\x43\xb7\xe8\x3f\x76\xa4\x73\x80\x5a\x0c\xf4\x79\x58\x8c\x55\x87\x8a\x89\xeb\xf6\x39\xcc\xbc\xae\x3a\x12\x7e\xa3\xbb\xf7\x7a\xd0\x1a\x8f\x05\xbf\x79\x7d\xaf\x8e\x0d\x85\x1a\x08\xd7\xef\x0f\xef\xf3\x2a\x5c\xa3\xe3\xd5\xd3\x36\x2f\xe9\xc2\x04\x4d\xe8\x08\x5f\x3a\xb4\x97\x34\xec\x62\x97\xd3\xd6\x54\x67\x3b\x69\x09\x20\x84\x86\xe9\x7a\x35\x12\xb8\x74\xe8\xec\x2a\x54\xda\x3c\x5c\x34\xbf\x25\xdd\x4f\xe6\xd3\xb1\x44\xb6\x45\x30\xd0\x06\xd6\xf5\xe7\x82\xb8\x6e\x6e\x0a\xf5\xae\xf3\x89\x94\x53\x2f\x96\x0c\x5b\xd5\x04\xa2\x1a\x29\xbe\x5e\x0a\x1c\x66\xde\x54\xd6\x8c\x4b\x1a\x0c\xb0\x82\xc1\x72\x1e\x45\x43\x83\x54\x87\x58\xbe\xd0\x89\x6f\xec\x34\xeb\xed\x2e\x5d\x69\x82\xbb\x05\x67\x92\xda\xde\x06\x82\x09\x56\x20\xf8\x6f\xb4\x76\xbd\xc2\x18\x88\x76\xbf\x74\xa6\x4d\xd5\x4a\x5c\x37\x73\x07\xa4\x60\x11\x54\x42\x25\x86\x21\x0f\xea\x1e\xf8\x46\x5e\x5c\x6e\x83\xe4\x89\x10\x28\x88\x81\x93\xe6\x59\xbd\x6d\xc7\xb6\x53\x57\x4f\x0c\xb3\xa5\x92\x11\x34\x88\xc1\xc5\x20\xe1\xe6\xa4\x02\x8a\xe5\x9f\xd1\x95\x8b\x48\xf6\x6a\x40\xeb\xb3\x89\xb5\x06\x74\xf4\x2b\x54\x17\xac\x6a\xe5\xec\x1e\xb6\x63\x89\x1b\x62\x4d\x99\x9a\xbd\xf5\x70\x15\x2c\xa7\x8d\x1d\x87\xdc\xdf\xc9\x59\x43\x9b\x9a\xc4\xe8\x87\xb4\x20\x48\xd5\xa2\xa4\x6b\x62\xe6\xa3\xe8\x15\x9f\x29\xd5\x39\x7f\x21\x7e\xd7\x6f\x34\xba\xc1\xee\xa9\x1d\x02\x24\x5a\x75\x3b\x69\xb3\xe2\x59\xbd\x02\xd8\x93\x93\xf0\x11\x4c\x4c\x3e\xa1\x58\x02\x4e\xba\xbc\x60\x54\xf6\xd8\x40\x3c\x84\xe0\xda\x6d\x05\x3e\xc6\xc8\xdd\x57\x9c\xf9\xdc\x8c\x5d\x0c\x7b\xf8\x90\x67\xf5\x35\x6d\xbe\x28\xed\x63\x17\x72\xc3\x1d\x5d\xf1\x31\xe3\x82\x1d\xfa\x38\xcd\xf3\x7a\x8b\xf7\x16\xcc\xea\x18\x26\x31\xac\x10\xf3\xc3\xc9\xab\x67\x15\x66\x53\xc2\x17\x92\x41\x4a\x74\x24\x3d\x1a\x1e\x40\xe1\x79\x7c\xe3\x8d\xfa\x7e\x8c\x3f\x3d\x1a\x06\x95\x4d\x33\xc8\x11\x9a\xc2\xc2\xca\x4e\xe2\xe2\xa2\x05\xed\x54\x54\xd0\xc7\xe6\x72\xbd\xd7\x7c\xbd\x06\xc9\x79\xe2\xe1\x41\xf5\x48\x1a\xb9\x6e\x4a\x7d\x92\xec\x38\xb3\xf3\x5d\x2d\x8e\x25\x5f\xc9\x78\x59\x82\x78\x0f\xb3\x38\xa5\x16\xf1\x19\x4c\xd1\x45\xcd\x12\x16\x5c\xf3\xc7\x8b\x16\x20\xda\xb1\x5d\xea\x04\x95\xf0\x38\xae\x11\xf3\x7a\xa4\xcc\x98\xb7\x10\xcc\x0c\x83\x99\x45\xff\xe7\x3a\x63\x6f\x28\x94\xaa\xe3\x14\xf7\x66\xbd\xcb\x88\x9d\xe7\x05\x6e\xad\xf0\x7a\x1d\x27\x89\x9d\xe6\x11\xba\x60\x0a\xef\xaa\x19\xfa\xa3\x2d\xd6\x01\xa5\x96\xeb\xaf\xf5\x1e\xe8\x30\xc6\xf6\xea\x60\xa6\x76\xe3\x79\x3f\xde\x68\x19\x4a\x6e\xb1\xfc\xce\xd0\x5c\x19\xc0\xdc\x56\x19\x46\x6f\xa8\xb8\x48\xe8\xf2\x68\x2e\xd3\x02\x1b\xa3\xe5\x41\xe8\x14\x81\x06\x23\x26\x03\x25\x9a\xca\x26\xd4\x91\x5e\x0d\x88\x15\x9f\x11\x42\x48\x26\x2a\x0b\xee\xaa\xa4\x96\x6e\x4b\x31\x70\xad\x88\x59\x63\x7e\x55\xe7\x57\xa2\xa8\x90\xe3\xb0\x4e\x82\x59\x30\x35\xa0\xb1\xc4\x47\xdb\x91\xf4\xb3\x30\x05\xf6\xe3\xdd\x51\x85\x08\xcd\x30\x04\x1d\xcd\xde\x8e\xf6\x4a\x96\x09\xa9\xaa\xee\x5c\x08\x3e\xbf\xd1\x52\xd8\x2b\xc2\xe0\x12\xc9\xba\x1a\x49\xa0\xb5\x43\x3f\x96\x6a\x41\x64\x23\x5d\xf1\xd8\xee\x0c\x4d\x31\x1b\x2a\x84\xb9\x4d\xff\xb1\x50\xcd\x50\x79\xcc\x0e\x6f\xd8\xe5\xa7\xdf\xdd\x1b\x39\xca\x19\x11\xb3\x75\x61\x0f\x86\xbf\x20\x26\xd5\x87\x44\x0b\x4b\xa3\xf9\x51\x74\xc5\x11\x75\xcd\x31\xf9\x94\x3d\x34\x7e\x4f\x1b\xdf\xab\x95\x27\x95\x19\x63\xd8\x09\x91\x6d\xe4\xdb\x91\x1e\xa4\xc0\x53\x45\xcb\xd4\x46\x5b\xc0\x0e\xb6\x63\xc9\xc7\xcd\x94\x3c\x88\x84\x2c\x60\x4f\xf6\xaa\x2e\x40\xbd\xee\x6b\x23\xed\xcd\xc7\x16\xff\xcf\x75\x46\x43\x4d\xd2\x08\x9d\xaa\x86\xcd\x64\x8d\xfd\xd9\x2a\x84\xd2\x45\x2c\x85\x71\xd2\xb8\x97\x2a\x81\xb0\x00\xb3\x8d\xa2\xd6\x2e\x44\x0e\x86\x0f\x4f\x7c\x7e\xea\xce\x5d\x6a\x62\x1a\x21\x54\x67\xa0\x29\xb6\x01\x51\x8b\x8a\x91\x05\x89\xd0\x7c\x55\x67\x76\xda\x3a\xa3\x8b\x23\xad\x40\x28\xb1\xc2\x74\xa1\xd3\x68\x7e\x33\xba\x9b\x0a\x42\x27\x17\xd0\xc0\x2a\x12\x9a\x2b\x29\x80\x8b\xc9\xef\x5f\xe2\xe3\x18\xfb\x39\xd2\xf1\x38\x61\x76\xca\xe8\xb1\x56\x29\xb7\x29\xbf\x3d\x21\xd8\xf0\xea\xc2\x4f\xb1\x19\x92\x17\xf0\xc1\xa1\x66\x14\xe2\xc0\xd1\xee\x76\x67\xb8\x12\x7d\x9b\xc8\xe8\x53\x14\x95\xc5\xed\x51\x56\xb5\x9a\xd0\x49\x53\xd1\xd0\xaa\xeb\x8c\x05\x34\xe2\x27\x0d\xc0\xcf\xac\xf6\x05\x30\xe0\x72\x17\x6a\x44\x4f\xb2\x0a\xf1\x88\x2e\xa9\x3b\x79\x57\xa0\x3e\xe2\x10\x7d\xc3\xe0\x89\x3b\xf0\x29\x80\x6a\xd8\x8d\x6e\x49\x25\x29\xa5\x6c\x53\xbf\xe3\x76\x21\x20\x67\xee\xb3\xec\x06\xfd\xbe\xd3\x78\x60\xf4\x5e\x2a\x24\x86\xef\x9e\x2b\x46\xe1\x2d\xd8\x76\xa4\x44\xee\xd4\xcf\x64\x3e\xeb\xdc\x89\x5d\x2e\xce\x7c\xce\xc5\x35\xc5\x56\xdb\xf5\xdd\xf5\xcd\xf5\x8d\x9a\x3b\x4b\xba\x4b\xbb\x32\x36\xa6\x07\x56\x95\x71\x2d\x86\x99\x42\x14\x6f\xae\x6f\xa6\x37\x53\x53\x5e\x8f\xe9\x64\x4a\x04\x62\xed\x14\xe9\x2b\xce\x38\xee\xac\x3d\xcc\x30\x51\x71\x5a\x9f\xf5\x98\x57\x92\xbb\xb4\x41\x92\xab\x0b\xba\x61\x5d\xc3\x70\x9b\xa2\x4c\x72\x52\x1e\x29\xef\xc0\x4e\xca\xaa\xa2\xea\xfd\x4e\x50\x27\x2a\x4b\xcd\x50\x01\x90\x63\x4c\xb1\xea\x04\x69\x91\x28\xa5\x31\x85\x44\x50\xb1\x11\x69\x9b\x18\xb7\xa3\xc3\xc3\x42\x34\x0c\x3a\x09\x2f\x95\x5d\x8a\x61\x16\x04\x10\x67\x8d\x19\x0a\xcc\xc9\x4b\x2a\x2e\x11\x22\x89\xb3\x4f\x95\x49\x0f\x27\x6f\xba\x30\x4f\x8b\xbc\x12\x42\x59\xa9\x9a\x99\x86\xc8\x34\x21\xe6\x8e\xea\x17\x65\xdb\x90\x36\x34\x9d\xac\x03\xe8\x30\x1d\x09\x0a\x39\xa7\x92\x92\xa8\x8f\xb5\x17\xf0\x2f\x3c\x76\xae\x38\xbe\x92\x16\x67\x32\x7f\x98\x05\x22\xef\xd8\x5d\x6f\x27\x76\xe0\x84\x09\x1e\x24\xd1\x5a\x86\x05\xd6\x23\x69\x4f\x30\x5a\x71\x9b\x3b\x33\x03\x2a\x9a\x40\x08\x45\x71\x9d\x97\x84\xa0\x93\x68\x64\x4d\x3c\xe7\x0b\xf7\x48\x19\x9b\x7b\x1c\x89\xe9\xa2\x24\xb6\x80\x2c\xad\x26\xc1\x8e\x37\xd3\x65\x4d\xae\xa4\x0f\x11\x03\x17\x95\x4c\x9a\x92\x21\xd9\x4a\xce\xd0\x28\xce\xcf\x4b\xf1\x05\x0c\xfd\xa2\xce\x4f\x0b\x3d\x45\x95\x28\x98\xf5\x35\x36\xdf\x20\x37\x79\xc0\x9f\x83\x18\xf1\xcf\xa0\x64\x3a\x38\x49\xb6\x24\x25\xfa\xc3\x4e\xb4\x4b\x41\x66\xb6\x6d\xf9\x85\x10\x17\x5d\x76\x05\x26\x0c\x35\x4f\xc4\x26\x5f\x36\x4c\xd9\x4c\xd4\xe3\x4f\x56\xd3\xfa\xea\x09\xa1\x24\x91\x1b\x8d\xb8\x31\x4e\x6f\x0c\x1e\xd2\xb3\x83\x39\x32\x24\x9f\x79\x91\x41\x21\x80\xdb\xbc\x8c\xff\x9e\x67\x35\xe6\x32\x58\x21\x3b\x81\x2b\x94\x48\xe6\x0a\x33\x2a\x4e\xec\x08\xe1\xc8\x07\xed\xf6\xf6\xce\x25\x9c\x58\xa7\x17\x25\x0b\x75\xa2\x9c\x2d\xb4\x38\xcf\x57\xa5\xb7\x8b\x3c\x90\x66\x9c\x93\x13\x39\xea\x9b\xd4\x42\x7b\x8d\x50\x84\x27\x56\x3c\x6d\x66\x82\x0c\x41\x48\x95\xb9\x5a\xad\xe4\x13\x7a\xac\xfb\xd7\x9b\x91\x53\x26\x45\xda\x3e\x4a\x94\x36\xca\x45\x8d\xba\x31\x50\x8e\xa5\x83\xe7\xc2\x18\x84\xe8\x01\x12\x0a\x67\x0b\xab\x06\x0d\x29\x29\x1b\xce\x8c\xb5\x66\xcb\x25\x68\xc5\xb2\x41\x8b\x50\xa6\x7b\x8b\x3d\xc2\x24\x26\xea\x0e\xcd\x00\x24\xce\xc8\x3b\x9b\x20\xa0\x9e\xf6\xdc\xaa\x52\xbd\x76\x49\xaa\x8e\xee\x72\xf8\x90\x4b\xda\xdc\x56\xaa\x0a\x97\x25\xf4\x2a\x9c\x02\x96\x55\x82\x5e\xec\x6a\x17\x86\xa8\xaa\x9a\xdb\xd9\x64\x36\x1b\x4f\x0d\x1b\xfc\xee\xe1\xc1\xbd\x33\xda\x34\x4e\xee\xe7\xb7\x13\x01\x23\x69\x4e\x23\x0f\x99\x8f\xaf\xc7\x33\x03\xbe\x07\xff\xee\xfe\xee\xde\x44\xb7\xee\xef\x46\x77\xd3\xc3\x2e\x91\x11\x56\xd4\x50\x4a\xe5\x6f\xa4\xdc\x5d\x6a\x2c\x0b\xea\x83\x20\xa1\xb1\xf0\x69\x04\x4b\x04\x95\xc7\xd4\x56\x5a\xe9\x83\x44\x84\xaf\xef\xef\xee\x6f\x4d\xed\x9d\x05\xe3\x71\x70\x10\x6f\x1b\xa6\x86\xcb\x07\xf2\x0a\x46\xd4\x43\xc2\x22\x5f\x69\xed\xf4\x3b\x6f\xa0\xc1\xd2\xfe\xf6\x3e\x18\xcb\xf1\x97\xf1\x1d\x6b\x5c\x3c\x03\x1b\x4f\x31\x7f\xaf\xcb\x8c\x18\xf7\x27\x0b\x13\x2f\x9c\x69\x05\x3c\x50\x6d\xe1\x27\x04\x68\xf4\x67\x5d\x34\x7a\xe1\xea\x50\x07\x27\xae\x51\xca\xdb\x4f\xbe\x37\x8d\x16\x64\xda\xae\x33\xf6\x2b\x06\xeb\xc0\x04\x95\xb5\x29\x64\x2b\xb9\x93\xfa\xae\x72\xa0\x89\x76\x62\xfa\x55\x1f\x43\x8c\xd9\x7f\x23\x93\x73\x2d\x1f\x89\x96\xd3\xf7\x48\x78\x09\xd1\x82\xa3\x28\x51\xd7\x48\x51\x4f\x60\xae\x7b\x71\x85\x80\xef\x52\xf7\xbc\x80\x89\xeb\x89\xac\x5e\xe8\xe7\x85\x12\x50\xe2\xcb\x2f\xcd\x81\x9d\xf9\xf1\xe2\xca\x9e\xfe\x82\xfc\x87\xcf\x29\x10\x9f\x89\xf2\x21\x56\x90\xee\x08\xaa\xd7\x65\x8f\xb8\x7d\x78\xf1\x0c\xcc\x91\xe3\x59\x57\xb9\xbc\x97\x58\x68\xe3\x4e\x90\x55\xc8\x26\x8c\x2d\x9c\x26\x8a\x1a\xa6\x3c\x89\xbd\x4a\x3a\xd2\x9e\x3e\xa1\x24\x01\x4e\x0a\xcb\x4f\xbb\x42\x53\xf4\x73\xb3\xbf\xe9\xb4\xc7\x2e\x76\xdc\x84\xe4\x15\xa4\x5d\x34\xa0\xab\xab\x04\xd5\xb2\x75\xf6\x94\x1f\xdb\x6c\x57\xd0\x50\x1b\xd2\xe1\x2a\xb7\x51\x9d\xa8\xc1\x3d\xf5\xfd\x31\x99\xc9\x34\x61\x43\x59\x92\x64\x4d\x90\x6b\xf0\x99\x6b\x4f\xcb\x53\x13\x4b\x93\x59\xc0\x2c\x24\xe6\x1b\x13\x84\x57\xeb\x6e\xb3\x41\x15\x8d\xaa\xa1\x93\x04\x34\xc6\x1f\x99\x5d\x1c\xe3\x0f\x77\xa2\x89\xd0\x1a\xee\x92\x5a\xe5\x4f\x3b\xaa\xd8\xab\x7e\x39\x42\x17\x1d\x1f\xa5\x26\x1b\x28\x2d\x62\x8c\x8c\xdb\x10\xcf\xe0\xdd\xda\xc5\x9f\xee\x8e\x82\xaa\x2e\xf3\x6c\x63\xb2\x2b\x6e\x58\xbc\xf9\x9c\xab\xe2\x85\x21\x47\x25\x21\xc4\x7b\x8d\x5e\x1c\x20\x21\xd0\xec\xb4\xb3\xe8\xaf\xa2\x8c\x53\x58\xbe\xb0\x5f\x4f\xb0\xcc\xe2\x6c\xc3\x7e\x45\x30\xdb\x48\x12\xe6\x83\x88\x40\xea\x8d\x3f\xb9\x99\xcf\xaf\x4d\x49\x18\xc9\x35\x4a\x2a\xc8\xfd\xb9\xc5\x47\x6d\xa6\x9b\xe6\x91\x90\x49\x87\x3f\x6b\x32\xf2\x2b\xc6\xf3\x34\x3e\x75\x67\xe3\xc4\x36\x88\x59\x3c\xef\xe7\xf7\x77\xf7\x26\xaf\x9d\xf1\x4d\xf0\x30\xf5\x94\x88\x27\xa3\x09\x7e\xdc\x62\x11\xbb\x41\x7e\x0b\x7d\x20\xbf\xc5\x0e\xe0\x07\x27\xb4\x5e\x6c\x1d\x97\xf0\xea\xe9\xd6\xe6\xe3\xbb\xe0\x41\x6d\x1d\x79\x48\x5b\x47\xa0\xd5\xf9\x77\x99\x9c\x90\x40\xc0\xc2\xa4\xfc\x91\x62\x47\x4b\x1e\x69\xae\x90\x93\xbc\xb5\xa5\x9a\x09\xea\xb5\x89\xab\x13\x1a\xed\x0e\xd9\x69\x52\x32\x99\x4c\x3a\xc4\x1f\x06\x5a\x07\xf1\x47\xd3\x20\x09\x5d\xbb\x22\x09\xad\xa5\x07\x9b\xe4\xa5\xd8\xc6\x21\x93\xa9\xb6\xcf\xf1\x7e\x97\xad\x71\xd5\x58\xa2\x02\xb8\xc1\x80\x73\x3d\xc6\x1f\xc1\xf5\x53\x99\x16\x08\xa1\x8c\x42\x58\x14\xcd\x33\x7e\x2f\xd2\x22\xc5\x73\x7f\x2b\x59\x9b\xe3\x07\x43\xa5\xbb\x4c\x18\x68\xa4\xd7\x36\x3e\xdc\xc4\x24\x5b\x3d\xbe\x23\x63\xd7\x3d\x34\x6c\x8c\xe4\x00\x67\x30\x17\xe7\x2a\x56\xe2\x51\xcc\x0a\x5d\x48\x61\x2e\xa4\x23\x99\x3f\x63\xc5\xd8\x94\x2d\xfb\xe3\x48\x8e\x68\x84\x22\x35\x2c\xb5\x1a\x59\x44\x95\x94\x1a\x16\x9a\x39\xf2\xaf\x39\xb2\xc5\x88\xfc\x2d\x74\xa1\x4d\x13\xb5\x5f\x0f\x6b\x6f\x58\xa7\x01\xfe\x88\x2f\x88\x67\x9c\x96\x64\xa4\xce\x01\xed\x97\x45\x44\x42\x16\x78\x87\x26\xf8\x23\xe1\xa4\x3a\x8c\x0b\xfa\x8f\xfd\xbc\xa0\x01\x50\x2e\x8a\x32\xdf\xc4\xd1\xc5\xdd\xff\xfe\x1a\xa3\xfe\xc8\xcf\x56\xe7\xdb\x38\x2c\xf3\x2a\x5f\xd7\x4e\x53\x4d\x55\xc3\xb2\xbe\xc5\x4d\xab\xea\xf2\xf2\x4b\x26\xad\x58\xaf\xbf\xb4\x00\xca\x22\xe9\x05\xad\xff\x4b\x0b\x7c\xc5\x0a\x7f\x7c\x29\xd0\xa5\x3b\x54\xd6\x36\x05\x03\xcd\xbf\xab\x35\xfe\x18\x22\x36\xb5\xfa\x52\xd0\xfb\xdb\x0f\x86\x6f\xe8\x18\x8b\x27\x70\xb9\x86\x49\x85\x86\x06\x32\x12\x92\x3f\x59\x08\xc2\xfb\xb0\x1a\xe1\x8f\x41\x8d\xd6\x95\x0f\xc3\x34\xff\xfe\xd0\xa2\x6f\x7d\x2d\xab\x03\xd9\xaa\x95\xdd\x90\x9f\xaa\xd5\x0c\xd9\x4d\x00\x37\x9d\x7d\x90\x8a\xd0\xcb\x93\x22\xc5\x56\xdd\xa4\xe4\x22\x46\x69\xb5\xdf\xe6\xf9\xf6\x3c\x35\x77\xaa\x4a\x16\x94\x34\xaf\xa6\x10\x6c\xfa\x8a\x9f\xe3\x8f\x39\xc1\xb3\xda\xc0\x96\x22\xab\xa6\x01\x06\x2b\x70\x81\x42\x13\xdd\x61\x17\x2a\x3b\x4c\x60\x55\x99\xe2\x92\xcb\xe6\xfd\x79\x19\x11\xa1\xe8\x05\x8d\x96\x8c\x7f\xeb\x03\xd8\xa7\x5f\x97\x13\x71\xf7\x99\x19\x9b\x26\xbf\x4b\x14\xa5\x4d\x21\xb7\x21\x76\x64\x4f\x04\x9f\x5a\x23\xc3\x4d\x45\x43\x12\x18\x6e\xc9\xb7\xb7\x9a\xa9\x95\x18\xf5\x4d\xf4\x1a\x26\x5e\x86\xcd\x12\xb4\x5f\x28\x77\x4c\x84\x95\x35\xdc\xec\x0d\x36\x61\xbd\xde\xbb\xdd\x3e\x12\xa2\x56\x7d\xce\x89\x74\x4f\x9a\x36\x36\xba\xcd\x1d\xd8\x7b\x98\x34\x22\xe0\x56\xf9\xa9\x86\x46\x36\xb8\x14\x8a\x06\x82\x5b\x9e\x16\xb9\xe9\x61\x9b\x4e\x8a\xd6\x20\xbb\xb5\xf0\x41\x06\x02\x78\xd7\x25\x67\xe6\xc3\xc8\x5f\x99\xfb\xa5\xfa\x01\xb7\x88\xe9\x1c\x0a\x1c\x55\xab\x45\x34\xb7\x5c\x0d\xbe\xa8\x4d\xbf\xc9\x78\x42\x96\x11\x48\xf6\x15\xac\xf5\xae\xeb\x2e\x9a\xc4\x92\x72\x13\xa3\x58\x4d\xe6\x2c\x2a\x8f\x30\xdc\x52\x8d\xab\xb1\xd0\xf3\x35\xb3\x94\xcf\xf5\x92\xc8\xed\x64\xc9\xd2\xcd\x9d\x39\xff\xf9\xdc\xf5\x3c\xef\x5a\x71\x38\x5f\xc1\x72\x59\xc3\x55\xd5\x06\x6c\x7c\x8c\xab\x78\x95\xc8\xab\x87\x26\x65\x69\x44\xb7\x02\x3f\xeb\x53\x4a\x4e\x58\x07\xd9\xc8\x76\x6c\x74\x58\x6d\x65\x1f\xa7\x28\xaf\x59\xa0\x67\xa1\x9d\x57\x49\xdc\x1d\x1c\xb9\xe5\x39\x0c\xe9\xb2\x68\xe4\x93\xa9\x12\x5c\x49\xd5\xed\x0a\xb7\x7f\xd6\x1c\x03\xf7\xcd\x85\x45\x2e\x70\x95\xb6\x19\xf3\xbd\x4d\x04\xe9\xe6\xe8\x6e\x72\x77\x2d\xfa\xd3\xba\x5a\xcc\x38\x05\x25\x80\x7b\x3d\x40\xbe\x61\x72\x1a\x73\xb3\x6e\xaf\x6f\x15\x31\x67\xc2\x7b\x16\xbd\xb9\x7f\x6d\xbc\x64\x61\x90\x44\x50\xc7\x24\xdc\x26\xc6\x2a\x1a\x50\x7b\xbe\x52\x15\xab\xc2\xf8\xb6\x9e\xcb\x71\x8a\xf0\x03\x63\xe6\xd1\x1e\xb5\xcc\x0c\x7f\x16\x62\x94\x9a\x06\x93\x43\x36\xe0\x5e\x1d\x39\x9a\x34\x52\x43\xa1\xed\x10\x3d\x1d\x99\x6c\xe9\xc7\x8c\xa1\x68\x65\xcc\x8b\x71\xdf\x9e\x6b\xae\x20\x4f\x6c\x94\x2f\x0a\xb8\xdc\x44\x8a\x58\x42\x0b\x08\xc9\xe8\xb8\xaf\xb4\xf2\x25\x7e\x40\xcd\xc6\x5a\xe1\xbd\x51\x96\x38\x72\xf5\xc8\xb4\x42\xf0\x27\x05\x07\x55\x94\xcb\x88\x3a\x22\xc0\xe2\xfd\x7e\xb2\x47\x30\x21\x88\x52\x90\x61\xaf\xe7\x54\x5b\xaf\xd7\xea\x81\xa3\x0a\xe4\xc0\x40\xea\x20\x9f\x88\x0e\x69\x26\x69\xac\xb8\x49\x09\x28\xb9\xdf\xd8\xc4\x9d\xa2\xd2\xf3\xce\x8c\x8d\x47\x87\xb2\x3c\x7b\x81\x68\xd5\x9e\x9e\x24\xb2\x19\xf2\xad\xcf\xbc\x3c\xf4\x7d\xa0\xb8\x10\xb4\x6a\x6d\xad\xf0\xe9\xce\x7c\xb6\xcf\x85\xba\x23\x8d\x27\x61\xb3\x3a\x16\x12\xa7\xb4\x11\x89\xc5\x4d\x14\xf9\xd1\x28\xf2\x55\x33\xb1\xb1\x4a\x7e\x09\xdb\x2b\x6d\xd1\x17\x29\x75\x94\xe3\x93\x58\x51\x07\xfe\xfc\x04\x27\x83\x8e\x48\x25\x64\x90\x9c\xf9\x68\x1a\xa0\x54\x61\xd1\x47\x8b\x46\xe4\xb0\x9a\x40\x88\xa9\x4f\x95\x87\x31\x24\x96\x2b\x5c\x13\x7c\x60\xcf\x78\xb6\x31\x8b\xff\x5e\xe5\xd1\x8b\x6c\x34\x22\x03\x4a\xa7\xf5\xfd\x1d\xfe\x34\xa1\x2d\xde\x1f\x24\x2c\xc6\x0b\x18\x4f\x42\x37\x7b\x7f\x70\x98\x53\x54\xe3\x6c\xa6\xb9\x5f\x69\x8e\x56\x07\x27\xdc\xc2\x1a\x68\x25\x89\x87\x91\xe8\x6d\xd4\x59\xb2\xaa\x61\xbd\xab\x0c\xca\x17\x6f\xc2\xc4\xea\xb6\x27\x1b\x50\x79\x63\x93\x38\xbb\xf5\xea\x6b\x96\x8e\xce\xf3\xea\x71\xb5\x30\xff\xdd\x70\x11\xfe\xc8\x53\xd7\x94\xd6\x52\x27\x27\xe2\x90\xbd\x4e\x38\x14\x38\xf8\x04\x5f\x64\x56\x6a\x34\xbf\xf5\x7c\x15\xdb\x7a\xad\xa1\x0b\xc3\x90\x43\xb5\xfe\x55\x7b\x25\xb7\x86\xc1\x13\x91\xe7\x8a\x11\xd9\xf9\x80\x6a\x58\xba\xa1\x41\x93\x90\x5d\x49\xaf\xc0\xe3\xdc\x84\x5b\x58\xd6\x3d\xde\x32\x92\x78\x88\xeb\x75\x84\x85\xe3\xa9\x06\x64\xfa\x55\xd2\x18\xa8\x80\xd5\x0c\x42\x98\x3d\xc2\xae\x33\x89\x05\x74\x71\x0f\x4e\x81\x4a\x5c\xce\x2c\xb5\x92\x36\xa4\x64\x34\xef\x2b\x36\xad\x0d\x22\x55\x4b\xf6\xfe\x4b\xf9\x52\xe8\x78\x28\x15\xb7\xfe\x0c\xa5\x07\x07\x66\x9b\x5d\xd2\xe6\x73\x67\x91\x77\x88\xd6\x84\xbe\x01\x6c\x38\x45\xa3\xe7\x83\x7e\x98\xfb\x8d\xe5\x0f\xbb\x09\x4a\x11\x19\x6a\x98\x24\x2f\xcb\x55\xfe\x0c\x04\xbd\x2e\x8b\x33\x66\x18\xc6\x13\x4a\x49\x36\x1b\xda\xbd\xad\x5b\x82\xa6\x6b\x7c\xa6\xf8\x83\x49\x9c\x58\xab\xa5\xfc\x56\x12\xb8\x1b\xde\x8a\x9a\x9e\xde\x80\x90\xef\xee\x6f\xf1\x47\x35\x5a\x64\xbc\xa1\x84\x96\x79\x5d\xaa\xc9\xef\xc9\x55\x49\x83\xa5\xae\x1e\xfc\x1e\x2e\x19\xac\xea\x21\x25\x8a\x18\x2d\x57\x9b\x4e\x53\x6b\x6a\x88\xee\x7a\x96\xef\x8e\x2d\x6f\xe6\xd3\x10\xd9\x9a\x9d\xa5\x9e\xa3\x8b\x10\xba\xff\x10\x79\xe2\xcf\x16\xf6\x99\x8c\x48\x25\xd3\x00\x96\x2d\x13\xd8\xf8\xff\xde\xf9\xbe\x6f\x5a\xa8\xeb\x04\x3d\xef\x8f\x05\x5d\x13\x26\x8f\x7b\xf7\xae\xf2\xe7\xbd\x7e\xcd\x1d\x2b\x96\x69\x12\xaf\x80\x42\xfc\x91\x12\xf4\xab\x51\xb9\xbd\xa2\xa3\x2e\x90\xc4\x86\xcc\x16\x7e\xd0\xb1\xc4\xba\x4b\x02\xb8\x3f\xa5\x84\x10\x30\x4e\xad\x8a\xae\xc8\x13\x4a\x36\x55\xf5\x97\x00\x50\xcd\x5c\xd1\x15\x94\x83\xc4\x28\xe2\xec\x70\xd0\x99\x96\x57\x08\x8c\x3f\x1e\xab\xae\x3d\xdd\x8e\xdc\x6e\xcf\xd8\x37\x57\x4f\x49\xf6\xa7\xe7\x2a\x10\xc9\x86\x3f\x59\xcd\xe7\xb0\x1b\x65\xe3\x28\xde\xf2\x34\x33\xa1\x83\x33\x29\xeb\xb5\x78\xe7\xa6\x79\x4b\xb4\xa5\x5c\x58\xfa\x33\x72\xcd\x39\x89\x60\x13\xb3\xe0\x2e\xdf\x2a\x22\x41\xe9\x2a\xa5\x47\xa2\x91\xcb\x9a\x8b\xee\x12\x87\x19\xf7\xb5\x2c\x7f\x37\x90\xb1\x73\xed\x5b\xb5\x9b\x52\xec\x1e\x53\x01\x3c\xfc\x44\xfe\xac\xe8\xff\x74\x2b\xef\x71\x7f\xeb\x09\x26\x6a\x52\x2d\x73\x8f\x52\x4e\x3b\x26\x6f\xea\x88\xb3\x62\x88\x37\x64\x1c\x82\xbe\xd4\x51\x5d\xc3\x47\x55\x5f\x78\xd1\xc1\x92\x88\x95\x9b\x4b\x4f\x7b\x9d\xf4\x47\xef\x0f\xcd\xf5\x5d\x2d\x40\x96\xe9\xa6\x44\x55\xe5\x70\x35\x5a\xf3\x64\xf9\x14\x47\x88\x07\xd4\x0f\xc8\x29\x4b\x0e\x35\x5f\xcf\xaf\xda\x90\xb7\x2e\x55\xaf\x18\xf8\x44\x35\x02\x97\x33\xcb\xb5\xd5\xb4\x87\x3c\x3e\x3f\xf5\x65\x2e\x02\x36\x2e\x1c\x42\x46\x9c\x66\xe8\x24\x40\x2d\xc1\x15\x4d\x6a\x23\x27\xa7\x33\xfb\x35\xf0\x7b\x05\x0d\xe3\x41\x4b\xd8\x98\x2d\x46\x9a\x79\x31\x7d\x4a\xd8\x19\x88\xc2\xd7\x58\x14\xb7\xa3\xc0\x4c\x1e\x2b\xc1\x0e\xdf\x10\x41\x8f\x43\x81\x24\xb6\x9c\x1a\x56\x9f\xaa\xf6\x56\x28\xf6\x23\xca\xeb\x9a\xb4\x88\x9c\xd8\xa2\xf0\x44\xae\x8d\xf9\x2f\x38\xf0\x11\xd6\xb0\xb4\xda\xaf\x7b\x31\x80\x81\x18\x25\x40\xcf\xe6\x28\xe7\xc9\xd4\xd4\x08\x62\xd0\x30\x43\xbc\x54\x03\x53\x48\xda\xac\xb6\x92\xff\x58\x46\x47\xd3\x39\x74\x95\xe4\xe6\xf3\x92\x3c\x4b\x73\xfc\x18\xf3\xc8\xa9\x3d\x28\xc0\x76\xcc\xe3\x78\xef\x95\x90\x3c\x5d\xc9\xd7\x4d\xea\x30\xe9\x9e\xc1\x58\xdb\xde\x6a\xc9\x18\xff\x6d\x97\xd7\x82\xbb\x86\xec\xda\xa8\x08\x12\x03\x29\x95\x10\xc6\xbf\xab\x50\x89\xc7\x10\xb6\xe1\x5a\x84\xf8\x79\x2a\x84\x21\x4c\x87\x0a\xd1\x50\x90\xd6\xf1\x8a\xe4\xd9\xfb\x09\x85\xe4\x98\x24\xef\x04\x28\xc5\x43\x47\xf6\xa9\x93\xef\x7d\x0d\x9e\x0a\x50\xf7\x40\xba\xd4\x84\x53\xa6\x89\xcf\x42\xb3\x9e\xea\x82\xe9\xc6\x74\x5e\x0a\x17\x76\x34\x32\x2f\x91\xba\xd4\xb0\xae\x08\x89\x17\x1d\xe3\x3a\x85\xbc\x3d\x7e\x50\xa2\x01\xb5\x86\xb8\x33\x8f\x60\x77\xc6\x30\xea\x8b\xb8\x10\xae\x1b\xc6\x94\x5c\x9a\x49\x3a\x6d\xa9\xb1\x09\x86\x24\xd3\xdc\x99\xd0\x04\xae\x9f\x93\x7e\x47\xdf\x80\xf3\x08\x93\x9d\x76\xa4\x6a\x02\x19\xd9\x5a\xc7\xd8\x44\x91\x67\x56\xac\xa3\x77\x49\xb3\xe4\x94\x58\x44\xa2\x73\xb0\x01\x0a\xc0\x26\xc4\x53\x93\xa1\x93\x00\xb0\xdc\xcb\x66\x23\x78\x15\xa8\x23\xee\x8d\x9e\x85\x9d\x12\x57\x43\x50\x65\x1a\x89\x89\x5f\xe0\xc7\x6c\xf1\xc7\xa1\x9a\x3f\x99\xe5\x5e\x25\x2f\x80\xa3\x2f\x7b\x26\x94\x96\x84\x17\x82\xe6\x5b\xb2\x0c\x73\x81\x31\x91\x9c\x8c\x1d\x6c\xfd\xbd\x62\xf0\x19\xc2\x82\xc8\x32\xff\x8e\x54\x0f\x5f\x2d\x86\x08\xe0\xf5\x18\x65\x46\x63\x9a\x92\x53\xae\xce\x53\x83\xa0\xf1\xa3\xd2\x17\xc6\x84\x43\x93\xf3\x5d\x4b\xa6\xe5\x59\xf4\x7f\xae\xe3\xcf\x86\x6a\x78\xf6\x06\xc7\x72\x8d\x60\xbd\x2b\x51\xa5\xd8\xc6\xe3\x4f\x5b\xa8\x55\xaf\xb4\x8e\x56\xbe\xa6\xa0\x70\x8c\x88\x99\xbb\xa1\xe6\x29\xd1\xc0\xe9\x7e\x54\xc0\x53\x23\xaf\x18\x44\x28\xa6\x24\xf3\x47\x52\xeb\xc9\xda\xb8\x91\x2a\x22\x91\x1c\xe1\x46\x7a\x1b\x41\xb1\xef\xd0\xc7\xf0\xd8\x83\xba\xc1\xdd\x2e\xb6\xcb\x78\xb5\x22\x41\x42\xb2\x1a\xc6\x99\x29\x04\x84\x11\x0c\x08\x0f\xb5\x2c\x5b\x8d\x40\xcf\xac\xe3\x91\xae\x5d\x33\xa6\x3a\x10\x6d\xe7\x48\xef\x0c\x95\x0a\xcf\x98\x2d\xad\xd0\x0c\x43\x1c\xa9\x60\x35\x77\x57\xeb\x63\xed\x3f\x1a\x37\xc8\x10\x71\xb5\xdb\x39\x79\xea\x4a\x41\x30\xda\x2d\x59\xe6\x35\xac\xd1\xd9\x38\x88\xd0\x66\xa8\x9c\x75\x54\x8d\x12\x70\xd3\xf8\xf6\xe4\xf0\x7c\x95\x09\xf1\x5d\xe3\xe2\x0b\x82\x40\x75\xd4\x18\xa9\x16\x52\xa3\xe1\xeb\x47\x95\x0a\x4d\xad\xd7\x97\x93\x23\x2c\x2a\x89\x33\x4e\x9b\x18\x8e\xa3\xb9\xa5\x10\x12\x4d\x73\x74\x9d\x56\xb2\x71\xb6\x3f\x02\xde\xdd\x49\x03\x52\x7d\x99\x8b\xea\x43\x39\x18\x4d\x47\xf7\x83\xa0\x23\xe6\xa5\x41\xdd\xd7\x84\x0a\x37\x28\xdf\xa9\x96\x26\xc3\x07\x1c\xcd\x05\xd0\xdc\x37\xcd\xb6\x6e\x21\x2c\x24\xb3\xfb\x39\x33\x3e\xd6\xdd\x3f\x1b\x58\xed\x78\xa5\xea\x65\x5e\x6f\x9b\xc7\xcc\x58\x21\x61\xcb\xb4\x88\x59\x27\x04\x99\x11\xd6\x32\xb7\x06\x25\x3e\x47\xec\xb6\x24\x7b\x1b\xd0\x7a\x80\x93\xc2\xea\x93\xc5\xbe\x37\x51\x9d\xb5\xd9\x12\x2e\xcb\x5a\xb2\x5d\x49\x01\x41\x10\x61\x3e\x40\x89\x93\xab\x13\x48\x5a\x65\x9d\xe7\x49\xa5\x9e\xc4\xad\xeb\x85\x1a\xd1\x4e\xe6\x1b\xfb\x34\xb5\xd3\x6e\x29\xa7\xbc\xc1\x83\x21\x3f\x8a\xc7\x23\xee\xc2\x72\x20\xc3\xe2\x64\xb9\xcd\x67\x94\x35\x94\x41\xce\xdd\x16\x52\xe8\x87\x10\x3f\x4f\x62\x79\x05\x2f\x29\x53\xec\x10\xe1\xba\xdf\xb2\xc2\x44\xa8\x43\x70\xb3\x33\x8a\x99\x59\x7d\x85\xf2\x72\x13\x43\x0b\x54\xa8\x8c\xd7\xbd\x8a\x58\xa2\xfa\x33\xa4\x71\x34\xf0\x4d\xdc\xd4\x13\x98\xcd\x93\x59\x4b\x20\x89\xf5\xdf\xc3\xd6\xab\x56\x65\x52\x68\x1c\x55\x2f\xed\x2a\x54\xbf\x6b\x0d\x28\x24\x1a\x2f\xeb\x77\x24\x69\x25\x6e\x93\x4d\xb8\x67\xb2\xe2\x94\x58\x6d\xae\xe3\x57\x8d\x37\x9c\x00\x4a\xa6\x76\xdf\x7a\x8e\x99\x73\xbe\xf2\xe5\x11\x0c\xd5\x18\x70\xae\x33\x56\x42\xc0\x89\xc8\xd9\x7a\x6e\xba\x41\xbe\x25\xb0\x46\xff\x76\x66\xd3\xd8\xb2\x82\xd3\x9a\xa9\xc5\x5d\x98\x0b\x33\xd2\x93\x70\xea\xa3\xc0\x62\xd5\x35\xc3\x46\xd0\x92\xe8\x80\x67\x9e\xe3\x0d\x0d\xa0\xf2\xb0\x79\x26\x08\xd2\x77\x4b\x7f\x51\xb4\xc5\x16\xc6\x4e\xe0\x2e\x18\x10\x16\xc2\x94\xda\x11\xc2\x4b\xce\x75\xbc\xea\x70\xfe\xbb\xdf\xfc\xfa\x57\xe0\x77\x60\x95\xe7\x75\x55\x97\xb0\x8d\x2a\x63\xd7\x70\x55\x01\x1b\x3c\x7a\x8e\xef\x78\x04\x68\x5b\xd7\x45\x75\x71\x7e\x1e\xad\x6a\xf4\xc9\xd9\xc4\xf5\x76\xb7\x72\xe2\xfc\xbc\xa3\x30\x29\xe3\xbb\xde\xd8\xf6\x3c\xdb\x9d\x92\x9f\xb7\x79\xf1\x42\xcd\xaa\xce\xc2\x21\x79\x09\xfe\xff\xff\xaf\x4a\xf1\x09\x72\x87\xd2\xb8\x5c\xc5\x09\xfa\x44\x20\xbf\x89\x43\x94\x55\xe8\x02\x7c\xfb\xf5\x47\xfc\xe0\xdc\xc1\x38\xc9\x81\x65\xd1\xaf\x92\x67\xb4\x68\x0d\x27\x2a\xb6\x69\xc8\x31\x5e\xb2\xd3\x15\x9b\x9f\x3a\x3a\x62\xd5\xe5\x5a\x82\xc4\x2f\xaf\xa8\xa0\x8d\x97\xbb\x6a\xec\xc5\x84\x4c\x04\x42\x60\x1b\xb9\xa4\x6c\x26\x6c\x7b\xcd\xfb\x06\x97\x94\xb6\xc1\x53\xcb\x33\x83\xb7\x2b\x68\x99\x1f\x73\xcf\x25\xf3\x4b\xc9\x4b\x5f\xb6\x96\x67\x51\x18\xc4\xf1\xd2\xfd\x35\x95\xb6\xaa\x8d\xd1\x9e\x4b\xad\xd1\xdf\x1a\x9a\xa3\x8f\xbc\xc8\xb9\x74\xb6\x88\xf5\xf4\x0a\xee\x75\xcb\x48\xe6\x2e\xa9\x04\x44\x52\xf5\x46\x7a\x40\x8a\x13\x93\x42\xc8\x9d\xd3\x5a\xd0\xb8\x6a\x02\x35\x24\xd3\xcf\xa9\xb3\x8a\x23\xf4\x04\x5f\x2a\xc9\xc0\x5e\x08\x34\x43\xb7\x85\xce\x38\xf0\x72\x57\xad\xaa\xc0\x77\x15\xee\x5f\x95\x6e\xb8\x3c\x8d\x3e\x2b\x78\xa5\x1a\x5b\x9a\x65\xfd\x1d\x4b\xa8\xfb\x56\xaa\x1a\xb3\xd2\xff\xa4\xaa\x85\x05\x67\x7a\xca\x97\x9b\xf1\x5d\xf7\xda\xef\x62\x82\xc5\xf0\xc0\xfa\x22\xa4\xe9\xd7\x78\x55\x02\xc9\x61\x97\x2b\xa9\xed\x22\x9d\x61\x5b\xbf\x13\x00\xcf\x8d\x76\x8d\x9b\xbb\xf8\x1a\x67\xaa\xcf\x08\x6e\x73\x78\x2a\x5d\xb2\x09\x5f\x6c\xb4\x64\x1a\x49\xae\x1c\xa6\x90\xaf\x32\x0b\xa1\xfb\xac\x05\x43\x55\xae\xad\xbb\xcc\xd2\x56\x48\x56\x48\x8c\x24\x6b\x79\x70\x68\x74\x0d\x56\x62\x57\x24\x39\x8c\x54\x8e\x5e\x79\x0d\x68\x80\x92\x4e\xe7\x04\x6a\x6b\x2b\x07\x64\xd3\xea\x60\xb6\xfa\xc6\x08\xbe\xcc\x02\xb2\x29\x84\x4a\x9b\xfa\x8f\xab\x41\x2c\x8c\x41\x9c\x68\x2d\x4a\xa0\x9e\xd1\x64\x2c\x45\xe7\x93\xc2\x10\x06\x66\x27\x25\xc3\xe0\xfb\x66\xf7\xb4\x10\x7f\x3a\xa7\x81\xab\x0e\xf4\xab\x06\x6b\x1c\xc9\x6e\x25\x04\x17\x20\xe1\x61\x58\x61\x92\x2e\x17\x3d\xe9\xe6\x76\x6d\xd3\xe5\xa0\x59\x46\x45\xfe\x3b\x84\x0c\x46\xec\x1d\xde\xef\x5d\xfd\x60\x4d\x91\xac\xc6\xdb\xc4\x86\xeb\x53\x56\xae\x8a\x4b\x30\x40\xa4\xbd\x66\xcf\xed\xa4\x0d\xe8\x35\x13\x66\x6e\xa6\x84\x65\xf4\x98\xd0\x8f\x16\x4a\x23\x39\xef\xa0\xb4\xfa\x38\x50\x95\xee\x45\x03\xc9\xd6\x6e\xb2\x2f\xf1\x84\x71\x32\x88\x46\xb0\xdd\x6c\x75\x56\xa9\x91\xd5\x0c\xe1\x35\x25\x78\xc1\xb0\x6b\xaf\x47\x22\xc4\xdb\x24\xce\x36\x52\xac\x8f\x8e\x48\x02\x42\x64\x30\xee\xd7\xc9\xa5\x2a\xb2\xe4\x1a\x28\x99\x84\x59\x1d\xce\x26\x5e\x4b\xb9\x83\xe9\x51\xc1\xfe\x69\xe3\x86\x4f\x03\x6e\x68\x04\x93\x62\x0b\xcf\xd8\x8b\xcb\x69\x30\x6c\x0d\xf4\x5c\x6f\xec\x4e\xfc\xd9\xc1\x49\xf3\xb2\x8c\x2b\x1a\xed\xdc\x70\x51\x6f\xc3\xc2\xe2\x1b\x92\x08\xcc\x7f\xb0\xfb\x3f\xbd\x34\xee\x05\xaf\x2b\xc9\xd9\x59\xb9\x2d\xfb\xe3\x91\xe5\x8f\x7d\x0b\xff\x4b\x82\xd1\xb2\xdd\x40\x77\x42\xe3\x57\xe8\xcd\x03\x16\x67\x74\x42\xc1\xc4\x9b\x6b\x05\xb3\xca\x16\x6f\xad\xcd\x1d\xd5\x70\xdf\x3c\xda\x72\x20\x81\xd8\x65\xfe\xc4\x62\x3c\x75\x46\x3d\x6c\xcc\x9c\x5f\x8b\x9b\x1c\x09\x7b\x83\x81\x7d\x83\xd9\xa3\x88\x8b\x32\x0e\x91\x92\x7d\x44\xbb\xe2\xb3\x51\x66\x11\x09\x24\x9d\x5f\xc4\x15\x7e\x9d\x81\x27\x1f\xf0\xc7\x14\x3e\x9d\xe1\x19\xd1\x3c\x6d\xaa\xc9\x88\xae\x9c\xc8\xa3\x5d\x58\xdb\x6d\x2e\x4c\x59\xc9\x19\x2d\x49\x2b\xc5\xd4\x17\xa0\x51\x11\xb5\x2f\x0d\x6a\x54\x0a\x80\xab\x16\x0d\x18\x5d\xa9\xa0\x43\xfe\x69\x8c\xb6\x04\x1b\x69\x81\xce\xfa\x8a\xc1\x94\xa4\xfc\x10\x75\xab\x92\x22\x5e\x51\x3e\xf1\x16\xef\xc2\x7a\xb9\x81\x49\x82\xca\x17\x00\xf7\x02\x09\x5b\x48\xb4\xcd\x60\x7e\x6d\x0e\x7c\xc8\xe3\x92\x69\xb8\x15\xda\x6b\x22\xab\xb4\x04\x5d\x2a\x52\x00\x36\x2d\xc5\x9f\x29\x24\x13\x0d\xba\xa0\xc6\x68\x15\xc6\x8c\x1b\x6d\xdc\xbb\xf8\xc3\xd6\xa4\x5d\xc3\xe7\xbd\x66\xe2\xcb\x9a\x42\x8d\xe3\xe5\xb6\xa8\x6f\x59\xec\x46\x28\xe7\x0a\x61\x14\x75\x13\x67\x7b\x93\x34\x94\xbc\x21\xb9\x19\x0a\xf8\x24\x9a\x31\x4d\x48\xb0\x0f\x7a\x12\xc2\x2c\xdc\xe6\xa5\x12\x7b\x89\x94\x6c\x0c\x1b\x4a\xee\x9e\x27\x06\x30\x65\xe7\x7b\x7b\x73\x10\x15\x8d\x23\x72\x0c\x19\xee\x0e\x25\xda\xc4\xf8\xd6\x8f\x1f\x2f\x31\xb3\x69\xb1\xba\xf0\xf7\x2e\xeb\x6a\x25\x04\xb1\x86\x63\xdf\x50\x69\x4f\x10\xc4\x48\x51\x8b\xdb\x3a\x1a\x58\xff\xf0\xae\x8a\x37\xd9\xae\xb8\xa8\x61\xb9\x41\x35\xf8\x7f\x81\xdc\x6f\x60\x68\x2d\x29\x12\x67\xdd\x45\x8c\x35\x2d\x94\x20\xf9\x6b\x18\xa1\xaf\xb3\x6f\xf0\xca\x11\x02\xe3\x13\x01\x8b\xe3\x55\xc7\xdb\xd5\x56\x72\xbc\x41\xfa\x68\x19\x1a\xf3\xdd\xae\xfe\x86\x06\xfa\x24\xef\x5a\x17\x14\x43\xdc\x7e\xd7\x9c\x6a\xe0\xd5\x69\x04\x88\x17\x68\x57\x72\x00\xd7\x90\x1d\xe0\x75\xc1\xff\x29\xfa\xbc\x1b\x79\x7e\x14\x75\xde\xd7\xee\xaa\xa7\xd9\xd5\xf1\x56\x57\xdd\xb8\xbb\xf0\xbe\x21\xc5\x04\xf5\x0d\xa4\x2b\x62\x95\x3f\xef\x45\xf5\x33\xdf\xcc\x34\xd8\x91\x92\x0a\xf1\xe0\x10\xea\xa6\x26\x48\xd4\xb8\x72\x06\xa7\xa7\x02\x94\x6e\x3d\x34\x04\x2a\xbe\x41\xad\xe3\x67\xa6\xb8\x22\x37\x4d\xc5\x93\xcd\x19\x74\x05\x01\x13\x1c\x87\x89\xa7\x62\x9c\xe0\x4d\xce\x79\x79\xda\x41\xae\x3d\x69\x4e\x4c\x42\xa2\x9a\x2e\x73\x93\x81\x53\x34\x39\x5d\xf1\x58\x85\xe0\x36\xfe\xcc\x6d\xa8\x2f\xaf\x1a\x40\x4b\x79\x40\xa3\xf6\x50\xde\xa6\x37\xd4\xbd\x82\xa7\x03\x76\x97\x45\xa8\x4c\x62\xbd\x00\x33\x6f\x60\xee\x32\x80\x74\xf6\x8f\xdc\x21\xdc\x02\xd7\x65\x0c\x13\x0b\x08\x1c\xa0\x12\x53\xcb\x76\x1d\x57\xf5\x19\x13\x17\x09\x53\xc7\x8f\x0c\x7d\xde\x7a\x4c\xc9\xa8\xf6\x7d\xeb\xa9\xf3\x3b\x10\x4d\x15\x3b\xdc\x3b\x05\x9b\xd3\xe9\x7b\x43\x5d\x14\xa5\x78\xdc\x11\x67\x0f\xc9\xb7\x5b\x0d\xa1\x42\xe4\xbf\x80\x01\x02\xf7\x3d\x8d\xa4\x02\xf0\xd9\x30\x5c\x34\xfa\xd6\x8e\x6e\xbd\xb2\x2e\x82\xae\xb3\x32\xae\xa6\xfb\x67\x0d\xa1\xfb\xdf\x65\x08\xc9\xc9\xa6\xb0\x73\x3a\xfb\xa1\x97\xa1\x22\x9b\x1f\xea\x97\x02\x5d\x0e\xf0\x76\x1b\xfc\xa8\x4e\x82\x06\x86\x52\x18\x27\x27\xc0\x15\xb0\xaa\x9e\xf2\x32\x1a\xfc\xa8\x07\x5b\x23\x47\x80\x24\x5c\x68\xa9\x8c\xe5\xd2\x60\x95\x9a\xb0\xc1\x9d\x0d\x01\x11\xe4\xe0\xb3\xe9\xed\x85\x7f\x4e\x49\xcd\x77\x73\x86\x3f\x62\xe0\x42\x21\x28\x98\xaf\xb2\x6e\x27\x8d\x3f\x0f\x94\x76\xda\x2c\x9c\x08\xdd\xce\x05\x13\xe2\x6a\xe3\xef\x32\x65\x7d\xe4\x85\xfe\xb8\x63\x98\x4d\x30\x26\x80\xeb\xf9\xf4\xfa\xfa\x8e\x03\xf4\x84\x63\x14\x87\xf2\x7a\x36\x9d\x5d\x3f\x2c\xa4\x18\x01\xef\x76\x15\x2a\x89\x4d\xa4\x80\xa5\x59\xd8\x4d\xd0\x35\xd1\x45\xfc\x1d\xef\x6a\x77\x11\x3b\x18\x29\xe9\x79\x0d\xa3\x17\xc5\x8f\x92\xdb\x8d\xe7\x2b\xc7\x01\x37\xf6\xc3\x1c\x79\x85\xea\x25\xae\x57\x95\x66\xf6\x54\x82\xf1\x77\x95\x34\x9b\xef\xb2\xe4\x0c\xf3\xe6\xa6\xc8\x5d\x91\x51\x01\x4b\x58\xe7\x65\x47\x7c\xee\xbb\x19\xfe\x68\x49\x5a\x44\x8d\x1f\xbd\x5c\x33\x3f\x44\xc5\x9c\x7c\xbe\x86\x7d\xd4\xaa\xce\x0b\x4c\x9f\x08\x1c\xa3\x55\x24\x74\x23\x23\x57\xaf\xf7\x61\x03\x9a\xeb\x1c\xc1\xad\x3b\xce\x91\x6a\x0c\x6e\x73\x46\xd2\xa2\xc5\x9e\xf2\xfa\x68\x49\x37\xf4\xab\x40\xd5\x88\xa3\x3c\x70\xa0\x79\x9e\x6e\x1f\xee\x82\xbb\xb9\x62\x4c\x7a\x94\x68\x54\xbb\x55\x1a\x63\xb2\xfd\x4e\x02\x71\xe8\x73\x03\xf7\x4a\x43\x61\xcc\xda\x09\x07\x50\x9c\xf2\x5d\x99\x9c\x6d\xeb\xba\xb8\x38\x3f\x0f\xab\x2a\x42\xe1\x27\x27\xcc\xd3\x73\x2a\xe1\xaf\xce\x89\x3c\xf5\x3c\xae\x51\x5a\x9d\xcf\xce\x67\xab\xf0\x9b\xff\xf9\xb7\x07\xa7\xc8\x36\x43\xe2\x24\x8e\x77\x49\x2b\x72\x6c\xe8\x22\xc9\x39\xd4\x65\x1e\xe3\x73\x53\x47\x30\x76\xbb\xe2\x1e\x69\x66\x05\x23\x6a\xaa\xd0\xf6\x41\xcf\x4c\xd9\x6c\x7a\xdc\x30\xe2\x0c\xd7\x84\xf2\x81\x08\xad\x0f\x2c\xc3\x81\x40\xa0\xdf\x65\x8d\x3d\xbd\x21\x26\x84\xf0\x1a\x38\xaa\xd3\xbf\x3f\x8f\xd4\x0c\x0f\xad\x2c\x74\xe4\x49\x66\x4a\x86\xe0\x3f\x7e\xf1\x2c\xa1\x2f\x50\xa7\x09\x93\x92\x49\x4a\x11\x8a\x2f\xc4\x2c\x06\xaa\xe9\x8a\x4b\xbc\x3c\xe7\x91\xd5\x68\x42\x48\xbb\x1b\xf3\x08\xc7\xd5\x8d\x1f\x47\x11\xda\x0c\x41\x63\x2d\x71\xe6\x16\xcf\x16\xb0\xc7\xc5\xf3\x50\x6a\x70\x55\xc4\x59\x86\xca\xae\x46\x77\x8c\x08\xd1\x6c\x08\xd7\x29\x03\x46\x5b\x48\x58\xe7\x09\xc1\xe6\x99\x65\xf4\x33\x5e\x50\x78\x15\x35\x42\xcb\x67\x5d\x38\x6c\xd0\x4e\xd6\x79\xc1\x8f\x23\x3c\x04\x06\xdd\xa4\xf0\x58\xb0\x26\x6f\xc3\x5e\x37\x4d\xb5\x59\x4b\xc1\x98\xa4\x67\xa4\x04\x12\xc4\xd9\x3a\xce\xe2\x1a\x1d\x9c\x16\x30\xdc\x55\x75\x9e\xda\xb4\x25\xc7\x6d\xec\x3a\x8b\x02\xc3\x38\x59\x27\x01\xe3\x65\xab\xad\xa4\xc3\xff\xf8\x84\x5e\xd6\x25\x4c\x51\x05\xb4\x5e\xed\xdd\xf7\xba\x6e\x94\x6a\x46\xf1\x1a\xd3\xdf\x8d\x26\xf4\xed\x41\xcd\xaf\x21\x9a\x7a\x07\x46\xf9\x22\x91\x71\x0b\x11\x12\x13\x58\x54\xe8\x82\x9d\x6f\xc8\x1c\xbb\xb0\x8d\x0b\x2d\xaf\x07\x46\x0d\xd9\x82\x68\xf6\x81\xcc\xd9\x4d\xc7\x81\x37\x24\x6a\x72\x6e\xb1\x88\xbf\x4b\xe4\x5b\x8b\xb9\xa4\x5b\x79\xbf\xce\x08\xbc\x2b\x51\xca\x48\x34\xc6\xa4\xd9\xb8\x64\x66\xc8\x79\xcc\xe3\x10\xdd\xd4\x52\xfa\x46\x83\xfa\x5d\x1d\x55\xc9\x72\x40\xb1\xb6\xf2\x2d\xe0\x0f\x1b\x39\x55\xc7\xdb\x34\xff\x7b\xc7\x2b\x36\x23\x52\xb8\x34\x59\x8f\xad\xc6\xbc\x6d\x03\xe3\xc9\x41\xb7\xa3\xf8\xf1\x87\x08\xd6\xd0\x2e\xf3\x04\x73\xb7\x74\xe9\xb0\x94\x27\x83\x1f\x1b\x89\x1c\xc9\xc8\x4d\x23\x46\x33\x84\xb8\x75\x86\xa7\x95\xfe\x50\x7d\x70\x68\x83\x0c\x93\xcc\xba\x70\x2f\x37\x1e\xb3\x56\x18\xd8\x6f\x6d\x8b\x6d\x2e\xcd\x00\xcd\x3b\xfa\x6f\x9c\x67\xb6\x5d\xc5\xd9\x26\x41\xd6\x6b\x8b\xa5\xbb\xa4\x8e\x0b\xc9\xe5\xa4\x9f\x55\x16\xe2\x75\x36\xc1\x83\x85\xdd\x45\x0f\xf7\x37\xb5\xdd\xf0\x6a\xb9\x2c\x51\x16\xa1\x12\x45\xdc\xb5\x7b\x3a\x9a\x4d\xe7\xb7\x0b\x2d\x16\xca\x1b\xbb\xdd\x5f\xa7\x58\xcb\xe8\x97\xed\x17\x2c\xcb\xfc\xa9\xb5\x26\xf8\xa5\xbb\x10\x6e\xf1\x7e\x7d\xf3\x6a\x30\xe3\x24\x71\x04\xc5\x44\x60\x8a\xc1\x92\xba\x2c\xd4\x8c\xf1\x3d\xad\x31\xbd\x22\x97\xc5\x23\x8b\xd6\xb4\x3c\x0f\x4e\xf5\x14\xd7\xe1\x16\x95\x2f\x62\x36\x6c\x29\x5d\x5b\x03\x71\x45\x33\xbf\x99\x93\xd2\x1e\xd6\x31\x4a\xa2\x0a\x35\x71\x3c\x05\x13\x41\xa1\x7f\xee\xc1\x09\xcb\x9c\xca\xfc\xe3\x74\xd3\xf6\xc1\x92\x9f\x73\x75\xbf\x61\xab\x51\xcf\x59\x81\x37\x33\x45\xc3\x31\xd6\x21\x1d\x6d\xae\x92\x2f\x2a\x10\xa2\x76\x89\xd9\x8a\xfa\xc2\xa2\x1e\xaf\x86\x60\x3d\x74\x35\xe8\x2a\x4e\x37\x7b\xd5\xfa\xa4\x01\x8d\xf2\xb0\x6a\x06\x42\x31\xa6\xa4\xb2\x6a\xd3\x88\x75\xca\xc1\xcd\x56\x3b\x06\x4f\x06\x03\xd6\xfe\x86\x0a\x96\x23\x3c\xe3\xf9\x48\x8c\x4a\x36\x93\x1a\x2b\x98\x8c\x30\x6c\xe4\xae\xcc\xa0\xa7\x66\xe0\x2a\xe5\xde\xf9\x02\x2c\x2e\x67\x80\x7d\xe6\xce\xb8\x62\x94\x0d\x5f\x73\x75\x76\xd5\xa1\xc6\xe7\xda\xd5\xd1\x2c\x5b\x47\xca\x5c\x51\xf3\x02\x39\xbc\xfc\xf1\x52\xc4\x95\xaf\x2d\x14\x18\x0a\xb1\xac\x9a\x57\x34\x25\x66\xf7\x3b\x8a\xb1\x13\x42\x4a\x92\xa5\x85\xa1\x3d\xde\x63\x1a\xe7\xdf\xdc\x0c\xf1\x9d\xb9\x19\x0d\x04\x3f\xd2\x4f\x18\x63\xcc\x5d\xd4\x71\x61\x34\x58\x23\xf9\xfe\x81\xed\x89\xbe\xf6\xf8\x09\xf5\x97\x34\xe2\xb9\x72\x84\x78\xcd\xf8\xd2\x39\x32\x46\x86\x17\x4a\xb3\x82\x36\x65\xb4\x65\x0b\x0f\x16\xf7\x8b\x83\xe2\x8e\x33\x2b\x3b\xb9\x98\x25\xc3\xd0\x71\xe8\x47\x8d\x19\xf2\x83\xa9\x98\x68\x8e\x63\x04\xb8\x92\x07\x4e\x18\x2a\x71\x90\x4c\x69\x34\xc7\xc4\x51\x60\x2f\x23\xa5\x39\x59\xf1\x23\x03\x19\x92\x64\x67\x1d\xc5\xc8\x82\x90\xbd\x96\x45\x63\x48\xc1\xf0\xaa\x03\x01\x30\x75\xc8\x6e\x7d\xfb\xe4\x66\x69\x86\x96\xe6\xca\xd4\xf5\x91\x17\x34\x65\x89\xcc\x6e\xee\xbb\x69\xb3\xb9\xc0\x95\x60\xd1\x32\x62\xbe\x32\x27\x97\xd4\xc5\x23\xd2\xb1\x77\x32\x9e\x2b\x83\xa1\xa8\x5a\x98\xfe\x8a\x80\x93\xe6\x11\x0f\x7b\xd8\x77\x96\x76\x15\xc2\x87\x83\xba\xcf\x4d\x60\x2c\x38\x5d\xff\x79\x17\xc5\x70\x53\xc2\x94\x17\x8c\x62\x98\xe4\xe2\xd1\x33\x0a\x0c\x3b\x9b\xd7\xd6\x51\x03\x26\x79\xcb\xa7\xf8\xef\xb0\x8c\x80\x53\xd5\xa8\xb8\x6d\x8e\xea\x23\xfe\x67\x06\x06\xa6\x09\xaa\x20\x46\x29\x6f\xe2\x8e\x3f\x37\xc7\x28\xad\x6f\x29\x64\xf3\x23\xf1\x93\xc8\x43\xdc\x86\x36\xc0\x3b\x49\x59\xae\xe7\x7b\xd5\xda\xa2\x19\x0c\x35\xda\x8b\x13\x6a\x13\x03\x2d\x90\x0a\xed\x10\x25\x89\x89\x77\x3a\x05\x15\x80\xd6\x49\x70\x6c\x39\x1f\x1b\x65\x72\x39\x6c\xbd\x7f\x8c\x76\x8e\x9e\xeb\xb6\x0e\x4c\x9e\x60\x85\x78\x6a\x8b\x4f\x8a\xba\xca\xa3\x9f\x29\x4e\x68\xf8\x26\xd7\xe4\x22\x17\xe6\x81\x4b\xca\xc6\x8d\xbe\xef\xb4\xb6\x38\x51\x5c\x91\x10\x70\x74\x3d\x2e\xb3\x5c\x0f\x6a\x79\x1a\xa6\x16\x01\x0b\x9e\x20\xf0\xe5\x63\xd5\xc3\x79\xac\xc7\x25\xa5\xd2\x48\xe3\xd1\x4a\x4d\x13\xd4\xe4\x51\x13\x63\x58\xb3\xee\x70\xe3\xc1\xc9\x63\xc2\x13\x4c\x35\x5a\x66\xd3\xd0\x8c\xc6\xe3\x79\x70\xbf\x10\xb3\x39\x9d\x3a\xe4\x79\x86\x1a\xd4\xaf\x28\x63\x9e\x22\x2d\xfe\xf1\x69\xed\x90\x03\xd8\x49\x6e\xd8\x24\x7a\xea\x49\x38\xc4\xc0\x74\xb2\x3f\x76\xe0\xbe\x6f\xcc\xaa\xdf\xd3\x35\x49\x0d\x67\x18\x0a\x1e\x13\x4b\x25\x83\x9c\x55\x7d\x6f\xca\x74\xc0\x8d\x3a\x21\xb9\x52\xde\xc0\xd2\x90\xfd\xdc\x10\x93\x41\xf2\x1a\x55\xa2\x96\x4a\xd6\x37\xad\x66\xab\xa9\x01\x30\x7d\xc1\x1d\xdb\x26\x5c\xe2\x93\xe5\x18\x43\x92\x3f\xa1\xc8\x18\x0e\xba\xb1\x96\x9e\x74\x58\x4b\x4f\x82\xa1\x9e\x48\xae\xad\x16\xb6\x6c\xe1\x48\x20\xab\xed\xb0\xb1\x07\xdc\x88\xa7\x6f\xdc\x98\x03\xba\x6b\xc2\xf3\xcb\x1c\x05\xbe\x6b\x48\x0e\xaf\x1f\x0a\x5d\xb5\x8a\x47\x02\x0d\x30\x54\xa3\xb4\xe7\x44\xe8\xc1\x03\x20\x97\xcf\xcc\x4e\xac\x19\x40\x29\xa2\x8d\x28\x2a\x39\x19\x83\x75\x02\xd4\x3f\xf5\x04\xea\xef\xef\x2b\xce\x1f\xba\xb5\xfa\x0f\xa0\xb1\x10\x99\x97\x9d\x3f\xe3\xf9\xfb\xd3\xda\xf2\x8a\xf3\xa7\x17\xcf\xff\x45\xa7\x4f\xff\x78\xfc\xcc\xb3\xe7\xc8\x60\x1b\x4e\x9e\xe3\x25\x5e\x7b\xee\xf4\x6d\x82\xee\x53\xe7\xc4\x25\x63\x3c\x73\x38\x82\xf6\xa0\xe1\x61\xfd\x15\x9e\x1b\xdf\x87\x91\x6a\xbd\x2d\x41\xa4\xd5\xe6\x26\x7f\x56\x20\x1a\x2d\xaf\x22\x2d\x6d\xdf\xd8\x2b\x58\xda\x24\xda\x80\x21\xc1\xe0\x78\x3e\xbb\xbb\x51\x60\xf5\xc4\x8a\xb6\xe4\x69\xd1\x82\x2f\xab\x5d\x4a\x23\xaf\x28\xc1\xdb\x58\x24\x4c\xa2\x42\x17\xef\xbe\x7a\xc1\x32\x7f\x32\x45\xf8\x30\x02\x12\x77\x07\xfb\xb9\xb2\x7d\xc5\x1d\x42\x01\x4d\xf3\x12\x2d\x71\x8f\xb5\x50\xa1\xf4\x4c\x95\x4c\x4e\xf4\xe2\x24\x6e\xdd\x5b\x4a\xaa\xc2\xb0\x91\x62\x33\xd5\x14\xa0\xa1\xa9\x54\x4b\x5d\xd5\x17\x41\x2f\xa0\x1b\xe7\xea\x2d\x54\x43\x59\x36\x01\x3d\xdb\xe6\xa6\x5a\xe2\x77\x45\xc0\x24\xea\xa6\x55\xd3\x1f\x13\x3e\x20\x2d\xa0\x7d\x57\x51\x35\x64\x7c\xb1\x17\x8e\x63\x16\x61\x5b\x8a\x48\xaa\x04\xf5\xd6\xc2\x9b\x36\x11\x4d\x17\x8a\xc4\x5a\xf0\x04\x3a\x21\x9a\xe9\x88\x99\x3f\xa3\xb2\x56\x33\x84\xb3\xb8\x9c\xe6\xc8\x16\xa3\x99\xe5\xcd\x02\xcb\x0b\xc6\x96\xeb\xcc\x66\x43\x43\x42\x3c\x15\x84\x57\x43\xf6\xe3\x91\xe4\xa4\x3c\xbc\xb1\x17\xf8\x96\xef\xcd\x3b\xeb\x50\x41\x78\x1d\x2c\xc5\xeb\x49\xd5\xf8\xe3\x91\xe5\x05\x13\xcb\x9b\x75\x56\xa3\x82\xf0\x6a\x68\xee\x58\x8b\xfd\x92\xf2\xa1\xf7\x57\x39\xf2\xac\xe9\xc4\x9a\xb8\xdd\x35\xca\x10\x24\x8e\x52\x91\xe5\x75\xbc\x7e\x71\x22\x58\x7e\x02\xc2\x03\x41\xb5\x70\xe2\xb0\xf2\xa8\xd1\x9d\x83\x2a\x00\x1c\x1c\x66\x87\x40\x2a\x8b\x43\x48\x33\x14\x2b\x36\x21\xdc\xa4\xae\xb5\x04\x71\x45\x8a\xc1\x79\x12\x57\xcc\x17\x30\x76\xdd\xd6\x2b\x12\x2f\x72\xb9\x06\xb1\xb8\xd1\x19\x99\x15\x15\x8d\x90\x64\x87\x19\x09\x9f\x92\xcd\xa8\xf1\x75\x6b\x63\x45\x4e\x64\x67\xe3\x11\x4d\x3a\x6e\x8e\xe6\xa5\xa2\x16\x43\x44\x4a\xb9\x0d\x54\x50\x78\x34\x71\x9f\xd9\x72\xaa\x2b\xae\x8d\x18\x50\x6a\xc6\x62\x64\xac\x50\xb4\x94\x6b\x75\x70\x79\x29\x99\x85\x17\x88\x2a\x18\x9d\xf5\x9a\xca\x83\xc1\xf3\xe9\x4d\x4c\x83\x61\xac\x32\x8a\x1f\x3b\x22\x39\x77\x14\xd8\xfa\xba\xd7\x65\x67\xb7\x8d\x37\x2b\x2d\x39\xea\xd1\xf8\x11\x6a\x58\x3e\xf3\xe0\x85\x49\x5e\x49\xa9\x40\x16\xf2\x3e\x13\x97\x95\x10\xdb\x26\x82\x35\x2a\x31\x85\x28\xe2\xf0\x13\x2a\x15\xb9\x71\x47\xc8\x40\x57\xd7\xb8\xa9\x78\xe8\x3f\x4b\xaf\x87\xf9\xbc\xbf\x7d\x70\x1f\x0c\x4d\xe0\x45\x01\xb9\x49\x3a\x4c\xd2\x97\x67\x11\xca\x2a\x14\x81\x7a\x8b\x60\x04\xea\x52\xba\x7b\x99\xb2\xb3\x28\x78\x5f\x81\x0e\xd4\x5b\x29\x6d\x94\x3f\x33\xbb\xee\xbe\xb1\xe5\xb2\x35\x9f\x37\x1a\x8d\x83\xd7\xb6\x56\xce\x6a\x35\xa6\x09\x5f\x4e\x42\xb0\xca\xa3\x17\xad\xbb\xb2\xed\x03\x8b\x98\x7d\x62\x83\x44\x4c\xd6\xa9\xa5\xa2\xee\x58\xb0\x54\xed\x75\x72\xed\x2d\x4d\x7b\x45\xe5\x02\x21\x54\x02\x5c\xf0\x10\x40\x62\x89\x2b\x32\xea\x57\x75\x79\x55\x6f\x2d\xfd\x25\x51\x0c\x74\xbd\x5c\xe7\x79\xdd\xf9\xb2\x41\x1b\xf5\xa1\x35\xbd\x6c\xd0\x46\x12\xc1\x9c\x9e\xb4\x4e\x8f\x2d\x0d\xe1\x9e\x24\xac\x0c\x49\xbb\xd9\xb1\xf2\xfd\xd7\xec\x59\x29\x09\xcd\x9b\x51\xca\x49\x20\x3a\xd1\x8c\x7e\x1e\x35\x39\x91\x66\x8d\xfb\x87\x56\xc6\x4c\x71\x35\x69\x27\x29\x6d\x34\xa6\xec\x15\x0d\x0f\x79\x76\xa7\x37\xd5\xdf\x24\x98\x14\x9a\x11\x8c\x26\xd7\xd3\x07\xe9\x36\xfe\x5a\xec\xc7\xc6\xd0\x4c\xf7\x9f\xd9\xb9\xb6\x14\xf3\xae\xfa\x63\x83\x41\x87\x68\x7a\xc3\x4b\x75\x59\xb0\x09\x4f\x93\xb8\xb8\x68\x57\xaf\xc9\xbb\x3d\x0c\x43\x83\xb9\x4c\x47\x26\x13\x31\x84\x8e\x1e\x0c\x85\xdf\x75\x4c\xcd\x97\x8c\xa3\xb9\x6a\x5f\x41\x3a\x0d\x86\xfa\xc0\xe7\x05\xca\x2a\x1a\x90\xcd\x21\xcf\x2b\x8d\xc8\x49\x30\x21\x4c\x50\x16\xc1\xb2\x03\x8a\x85\xe5\xe8\x47\xc5\x81\x38\x2e\x39\x19\x9d\x91\x94\xe8\x71\x00\xf0\x4c\x69\xa0\x26\x0a\xbd\x35\xa4\x2a\x31\x5b\x67\xa9\xe6\x9e\x26\x43\x03\xbd\x4a\x27\x5f\xaf\x39\x89\x98\xcf\xe7\x46\x90\xa8\x91\xd0\xf7\xc3\xc1\x47\x18\x27\x18\x92\x47\xae\xd2\x7b\xa3\xc2\x48\xdb\x00\x21\x24\xef\x76\x63\x2d\x71\x66\x93\x27\x32\xad\x18\xdf\x4f\xef\xaf\x55\x93\xbb\xfe\x56\xfe\xbe\x8e\x1c\xe2\xe0\x62\x93\x8c\x0b\x9d\xa1\xd6\x7a\x5b\x81\x91\xa0\x2c\x32\xa1\x10\x62\xa5\x19\x51\xb4\x75\x77\x61\x18\x6b\x02\x08\xbd\x37\x84\x60\x19\x86\x9a\xbf\xea\xb4\x36\x38\x4e\xd7\x30\x92\x27\x84\x3e\x19\x27\x12\xbf\x10\xf8\x5f\xcc\xc5\x37\xc1\x8a\x42\x1d\x15\x15\xbe\xd2\x94\x63\xf4\xbb\x8e\x95\xc1\xbc\x20\x58\xd2\xaf\xaa\xcf\x57\xa3\x6e\x6a\x57\xbe\x10\xfc\xa1\xcd\x48\xc1\xac\x28\xa5\x64\xa4\x06\x2f\xb7\xbb\x1b\xff\x26\x90\xc4\xd7\x23\xfd\x0e\xa5\x0b\x81\x8e\x75\x4c\x36\xa0\xf1\x1b\x6d\xdd\xe4\x7d\x67\x69\xa1\xcb\xfc\x92\xdd\x0d\xbc\xcd\x77\xe5\x91\x21\x4c\xe3\x6c\x57\xa3\x23\x40\x30\x2d\x52\xa9\xd2\x40\x37\x1f\xd4\x57\xee\x92\x2c\x5b\x76\x26\x89\x6e\xfa\x2a\x1c\xca\x22\x0d\x4a\x89\x8d\xe6\x19\x37\xd7\x56\x4a\x4c\x47\x75\x9b\x2a\x50\x5f\xab\x68\x00\x35\xbd\xdb\xdd\x2d\x64\x21\xd7\xda\x04\xd7\x6a\x6a\x78\x29\x25\xba\x21\x2b\xa4\x44\x87\x3b\x3c\xd7\x85\x20\x9a\x92\x57\x3f\x75\x28\x6e\x7d\x1e\x8e\xdd\x97\xa7\x46\x92\xc4\xce\x2c\x16\xf7\x4d\xcd\xe1\xde\x05\xcd\xec\x13\xd3\x38\x8b\x0d\x14\xa2\x8d\x6a\xd6\x6f\xf1\x3e\x6e\x2f\xd3\x41\x10\xf4\x8f\x9d\xb8\xd1\xb4\x9d\xa7\x58\xe8\xa5\x71\x14\x25\x48\xd4\x79\x7a\x72\x78\x1c\xc2\x2c\x9c\x34\x2c\x42\x47\x79\x6e\x34\xc5\xbf\xa0\xab\xe4\x2e\xd9\xab\xba\x5a\x93\xc5\x73\x57\xf1\x24\x56\x85\x04\x92\x4f\x67\x57\xde\x48\xf6\x42\x26\xd5\xa2\xc5\x99\xe0\x03\xcb\x17\x96\x31\x3f\xc5\xe2\xd4\x7e\x36\xc1\x25\x0d\x1b\xa7\x01\x31\x1c\xda\xac\x6d\x7a\x17\x4e\x38\x5f\x5a\x1e\x4a\x0a\xc2\xd6\xda\x76\xf9\x53\xe3\x6d\xaa\xda\xe6\x4f\x36\x2f\x6b\xc0\xc2\x04\x41\x9d\xd5\x39\xdc\x13\x81\x3f\x10\x0f\x5f\xee\x8f\xa2\xd6\xc9\x8a\x74\xf1\x86\x2a\x4a\x31\x8a\x5d\xd7\x88\x72\xbe\x70\xa2\x84\xda\x16\x55\xfd\xfd\xcb\x9a\xfc\x4b\x89\x58\x75\x15\xc5\x8f\x7d\x14\xb9\xbb\xd4\x45\x56\x6f\xe9\xb5\xe4\xcc\x1f\xee\x8f\xd3\x68\xca\x08\xe3\xf7\x47\x78\x65\x0a\xa2\x0c\xc9\xf1\xde\x09\x7e\x86\x1a\x97\x6b\x0c\x39\x6e\x24\x1c\x07\x67\x1d\xda\x55\x0d\x6b\xc4\xdd\x2a\xf6\x86\xbd\x27\x39\xd2\x88\x45\xf2\xa7\xcc\x6a\x7f\xb2\x8b\xa1\x70\x44\x68\xca\xf4\xa8\xcc\x8b\xbf\xe7\x19\x12\x7d\x03\x46\x6e\x6f\xd8\xb0\x5f\xff\xea\xd7\xbf\x02\xec\xef\xc3\x39\x21\x31\x57\xf4\xc9\x87\x73\x22\xfc\xe0\x00\x1f\xc8\x05\x35\x4c\x60\x55\x5d\x0e\x32\xf8\x68\xa7\xd1\xe0\x4a\x28\x1b\xc5\x8f\xfc\x6d\x9b\x7c\x01\x97\x11\xa1\x54\xc8\x14\x32\x6f\x66\x02\xae\x42\xea\x78\x13\x3b\x8d\xec\x11\xc0\xf3\xb7\x0c\xf3\xc4\x54\x40\x2d\xc4\x61\x01\xf5\xa2\x23\x91\x5b\xbb\xca\xa9\x65\x33\xf8\xb8\x82\x25\xc8\xe0\x23\xd5\x1f\x0e\x00\x19\xa0\xcb\x01\x1b\x4e\xe0\x2e\xfa\x50\x11\x74\x10\x6c\x4b\xb4\xbe\x1c\x10\x65\x85\xb3\xad\xd3\x64\xc0\xd1\x57\x71\xcd\xd2\x6a\x0d\xae\x3e\xc4\xfc\xe9\x1a\x02\x1a\xa5\x6c\x70\xf5\xe1\x3c\xbe\x02\x1f\xaa\x02\x66\x57\x5f\xe5\xe0\xbe\xde\xa2\x12\xed\x52\x70\xc7\xb5\x80\x1f\xce\xc9\xbb\x0f\xe7\xb0\xaf\x43\xe7\x51\xfc\x78\x25\xce\x73\xef\x18\xb3\xc8\x44\xb8\xf2\xa3\xe5\x7e\x63\xdb\x80\x25\x3d\x07\xc4\x69\xce\xb6\x8f\x8d\x6c\x1c\xe1\x7e\x93\x22\x44\x80\x3d\x90\x96\x02\x7e\xb2\xc4\xaf\x01\xbd\x97\xdb\x45\x19\x67\x35\x68\xde\x1d\x1d\x6d\x71\x6d\x11\x5c\xd4\x43\xe9\x58\x39\x52\x76\x3b\xba\xfa\x0a\x65\xa8\x84\xc9\x87\xf3\xed\xe8\x94\x12\xbb\x44\x58\x29\x64\x24\xec\x53\x5a\xd9\x94\x4f\xe2\xab\x0f\x50\x9b\xfa\x6d\x9e\x22\x36\xf7\x7f\xcc\x53\x44\x17\x80\x0c\x12\x6e\xd1\x63\x99\x67\x84\x44\x60\xd0\x13\x96\xc1\x91\xc6\x13\xda\x7b\xd2\x18\x9b\x7b\xa1\xaf\xf2\x2b\x61\x99\xc2\xab\x0f\xe7\x49\xfc\x9a\xd6\x9d\xef\x92\x53\x47\xf1\x34\xcc\x27\x60\xe4\x2b\xfe\xcd\xef\xf1\x7e\x38\xd7\x37\xc4\xb1\x12\x04\x92\x25\x81\x62\x1e\x34\x27\xec\xa4\x86\x88\xd0\xcd\xc4\xca\xb3\x7d\x43\x9c\xe8\x4e\xa0\x4d\xc4\xcb\x96\xba\x73\x5c\x0e\x98\xe3\xc3\x80\x3e\x2d\x12\x18\xa2\x14\x65\x35\x7e\x51\x0c\x00\x21\x54\x97\x83\xef\x51\x5d\xc7\xd9\xa6\x3a\x69\x4b\x89\x2b\x77\x93\xbc\x14\x5b\x7c\xae\x82\xe6\x9b\x1d\xe6\x9b\x01\x80\x65\x0c\x6d\xda\xee\xcb\x41\x5d\xee\x50\xb3\xa2\x8f\x4d\xd7\x29\x64\xaf\xf3\xfd\xeb\x87\xbe\x0b\x65\x37\xa5\x24\x95\xd4\x79\x81\x8f\x90\x78\x43\x14\x81\x66\xf4\xe2\x8c\xd6\x79\xb1\xcc\xe0\xe3\x29\x87\x1b\x3e\x99\x8e\xed\xd9\x0f\x64\x7b\x53\xf8\x01\xa0\x1e\xd5\x6d\x73\x5e\x43\x51\x31\x22\xba\x56\x4e\x9a\x7c\x48\x88\x3d\x21\xc3\xbc\x94\x4a\xea\x56\xb0\xac\x28\xa9\x3b\x4e\xbc\x8e\xef\xce\x0c\x76\xbd\x3f\x36\x73\xda\x73\xb2\x38\x4c\x13\xd7\x01\x5b\xc0\x0d\x02\x3c\xe6\xca\xd1\x19\x26\x72\x19\xc2\xc0\xb0\xf9\xc0\x07\xdc\xa0\x93\x52\x34\xab\xa8\x26\x19\x15\xbb\xd7\xa7\x58\x45\xfe\x44\xc0\x97\x24\x51\xef\xa9\x0c\x0f\xe3\xb0\x7c\x80\xbf\x54\xa9\x3d\x06\xcc\x5e\x6c\x42\x91\x91\x84\x91\xc7\x51\x02\x75\xef\x93\x12\x4b\x4c\x46\xb4\x25\xb0\xab\x30\xe3\x47\x4e\xbb\x8f\x79\x0d\x13\xf0\xd7\x0a\x95\xd5\x69\x04\x40\x6a\x39\x69\x93\x1f\xb8\xee\xb1\x85\xd2\xd1\x3a\x7a\x87\x15\x1b\xb8\x29\x11\xca\x06\x57\xe3\xf7\x80\x34\xef\xa1\xcc\x53\x90\xc0\xaa\x06\xff\x8a\xd0\xa7\xa3\x2d\x3c\xba\x5e\xff\x63\xc7\x3d\xc4\xd7\x16\x3b\x67\x43\x7f\xfd\x88\x4a\xbc\x84\x3f\xc6\x29\x7a\xeb\xd8\x7b\xfe\xc8\x09\x7e\xf1\xd1\x57\xdb\x5d\xe5\x65\x6d\xc3\x2a\xa4\x0d\x1f\xfd\x97\x9c\x1b\x6d\x4f\x7c\x0b\x13\xf4\xc6\x3d\x01\xd8\x38\xfa\xd6\xbf\xc3\xd6\x38\x32\x39\xff\x35\x77\x8e\x36\x3b\x0f\x28\x7d\xfb\xfc\x0c\xae\xc6\x56\x30\x99\xfe\x62\x33\x53\xa2\xa8\x63\x5e\x22\xc4\x27\xc6\xf3\xff\x7b\x4c\xcc\x6d\x9e\xb0\x10\x15\x6f\x3f\x50\xac\x91\x17\x7c\xde\x36\xff\x3e\xb3\x93\x65\x3f\x73\x76\xa6\xd6\xc8\xff\x2f\x30\x3b\xbd\xef\x1a\x56\x54\xe0\xfe\xe8\xe7\xd8\x20\x9d\xca\xf5\x61\xe6\xd5\x66\x72\xa8\xd3\xa7\x80\x14\x58\x26\x68\x7d\x74\x85\x00\x2e\x5d\x31\xc9\xb0\xc0\x07\x72\x57\xbd\xba\x4e\x12\x00\xa3\xc7\x38\x44\x15\x80\x25\x02\x4f\x28\x09\x73\xc2\x8c\x90\xd7\x27\x88\x64\x4e\xbd\xbe\xff\x3b\x08\xc2\x64\xc6\xfb\x35\xa3\xc8\x36\xe2\x84\x6f\xc4\x09\xdf\x88\x9e\x7f\xd2\xb0\x0a\xa8\x9e\x97\x05\xcc\xd0\xd1\x5b\xbf\xb9\xe8\x49\xd3\x2f\x15\xdf\xfa\x57\xdf\xa2\x34\x2f\x5f\xc0\xae\xc2\xac\x23\x9b\xc7\xef\x51\x55\xb1\x2d\xcd\x27\xce\x7f\xbb\x58\x8a\x4a\x60\xa9\x22\x1b\x90\xee\x2d\x49\x18\xb0\xfc\xf9\x8d\x62\xaa\x76\xd8\x49\x3c\x39\x3b\x89\xb3\x4f\x06\xe6\x98\xc9\xd7\x76\xc5\xa9\xb7\x53\xad\xba\xd7\xc9\xbb\x58\x0b\x79\x2b\xb8\x8d\xef\x6b\x3b\x09\x44\x89\xf3\xbb\x81\x8a\x8e\x49\x7a\x06\xb2\xd8\xa7\xa9\x8c\x5d\x46\xa9\x1c\x84\xc9\x65\xd0\x73\x01\xb3\x08\x45\x78\x64\x92\xca\x70\x85\x7f\x2a\x51\x16\x6e\xdf\x3a\x4c\x40\x9e\x72\xc9\xb6\xb9\xb9\x1c\xbf\x41\x28\xd9\xe0\x16\x85\x93\xef\x06\x57\x5c\x7a\x05\xbc\xb7\xb5\x15\xbc\x6d\x6a\x8f\x36\xc7\xff\xa7\x37\xe7\x15\x12\xd6\x9f\x51\x93\xb2\xeb\x92\xbc\x7b\xcb\xe1\x77\xff\xa4\xdd\xf6\xca\xbe\xf7\x1f\x0b\xa7\x55\xf8\x0a\x58\x89\x2e\x33\x99\xd2\xab\x28\x33\x0d\x50\x42\xa4\x6f\x49\x9c\xa1\xdb\x2d\x2c\x6b\xdc\x5e\xfa\xfc\x17\x6e\xf2\x49\xdc\xd7\xd1\x13\x14\x74\xa9\xfa\xfe\x6f\x3c\x16\xaf\xb3\x1c\xb3\x39\x80\x47\x99\xf9\x7c\x32\x4a\xd5\x7d\x3e\x19\x4f\x6e\xf0\xe7\x93\xf1\xf3\xc9\xf8\xf9\x64\x34\xd5\xf6\xb3\x4f\xc6\xf4\x65\x05\xcb\xcf\x47\xe3\x3f\xf9\x68\xfc\x97\x5d\x55\x03\xf8\xf9\x7c\xec\xab\xee\xf3\xf9\x78\x72\x83\x3f\x9f\x8f\x9f\xcf\xc7\xcf\xe7\xa3\xa9\xb6\x9f\x7d\x3e\xd2\xaf\x77\xf9\x6e\xb3\xcd\x76\xff\x59\xce\xc8\xff\x26\xa7\xe4\xb7\x79\x89\x3e\x9f\x8e\xe6\xea\x3e\x9f\x8e\x27\x37\xf8\xf3\xe9\xf8\xf9\x74\xfc\x7c\x3a\x9a\x6a\xfb\xd9\xa7\x63\x91\x27\xb0\xbc\x2e\x11\xfc\x4f\x72\x30\xf6\x42\xfd\x57\x39\x16\xbf\xcb\x10\x48\x3f\x1f\x8d\x9d\xd5\x7d\x3e\x1a\x4f\x6e\xf0\xe7\xa3\xf1\xf3\xd1\xf8\xf9\x68\x34\xd5\xf6\xf3\x8f\xc6\xf8\x3f\x91\xc6\xf1\xcd\xef\xdf\x34\xfe\x1f\x56\x25\x38\xef\x78\xff\x36\x17\x04\xdd\xaf\xa0\x03\x92\xf9\xb0\xf4\xbb\x20\x50\xa0\xae\x06\x8a\x16\x61\xbb\x24\xa1\x27\x60\xdf\x2a\xf8\x0a\x65\x35\x4a\x50\x92\x40\x60\x83\x9b\x3c\xaf\xab\xba\x84\x05\xb8\x8e\xd2\x38\x03\x1f\x51\x5a\x24\xb0\x46\x60\xf5\xd2\x9e\x0f\xdb\xba\x2e\xaa\x8b\xf3\x73\xe2\xc4\x9a\xc4\x2b\x27\xcc\xd3\xc1\xd5\x2d\xfb\xd5\xbd\x09\x7b\x0d\xe4\x5e\x35\x55\x1f\xce\x3b\x07\x81\x8e\xf8\xb1\x81\x54\x11\x6b\xbf\xab\xb0\x8c\x8b\x5a\x9b\xa9\xf3\xf3\x8f\xdf\xdd\x7d\x07\x76\x9b\xe4\x05\xc0\x2c\x02\xbb\x2c\x85\x31\x71\x7c\x85\xab\x04\x59\xa0\x44\x55\x9e\x3c\x22\x50\xe5\x29\xda\xe6\x4f\xe0\x29\xae\xb7\x60\x93\xdb\xab\x38\xc3\x47\xa7\x8a\x6e\xbd\xcb\x88\xe9\x24\x20\xc6\x8c\xb7\x5b\x14\x7e\x42\xd1\xd9\x70\x3f\x80\x49\x32\xb8\xbc\xbc\x0c\xf1\x93\xef\x6b\x58\xa3\xdf\xfe\xf6\x8b\xb3\x81\xb3\xda\x25\x9f\x96\x34\x04\x3d\xcb\x18\x9c\xc1\x14\x5d\x7e\x49\xa2\x03\x2d\x4b\x14\xe6\x65\x54\x7d\xf9\xe3\x60\xe8\xc4\x04\xd9\xd9\x80\x60\x18\x0c\xad\x41\x96\x67\xe8\x97\x41\xb9\xcb\x18\xd2\xc5\x23\x2c\x01\xba\x7c\x05\x96\x8b\x90\x76\x71\x30\x74\x12\x94\x6d\xea\xed\x02\xfd\xe1\x0c\x97\x0f\xf3\x64\x97\x66\xcc\x7c\x71\xe8\x6c\xe3\x08\x9d\x0d\x2d\x8e\xd9\xa6\x98\xab\xc1\x90\xb8\xec\xb3\x37\xf4\xa1\x1d\x66\x35\x2e\x51\xa7\xc9\x19\xfa\xfd\x00\xfc\x85\xd6\x05\xbe\x67\x51\xba\x07\xc3\xe1\x85\xa9\x0a\x01\x91\x52\x05\xad\x7c\x78\xc0\xbd\xbb\xfd\xeb\x5f\xfe\x72\xff\xa7\x8f\xcb\xbf\xfe\xe5\x9b\xcb\xa7\x38\x8b\xf2\x27\x27\xc9\x69\x2c\x48\x07\x6f\x06\xa7\x2a\x92\xb8\x3e\x1b\xfc\x61\x30\xfc\xc1\xfd\xd1\xfa\xe2\xe6\xbb\xbb\x7f\xc3\x03\x42\x5c\xa6\x87\xd6\x17\xdf\xde\xff\xe9\xaf\xcb\x8f\xdf\x7d\xf5\xd5\x37\xf7\xf8\xf1\x3b\xd1\x8f\x6a\x68\x7d\xf1\xfd\xd7\x77\xf7\x37\xd7\x7f\x59\x62\x30\xf2\x5e\x72\xaa\x15\x00\x1e\xbe\xfb\xee\xe3\xfd\x5f\xc8\x50\xcb\xae\x82\x18\xe8\x9b\xfb\x87\x8f\xcb\xdb\xef\xbe\x21\xaf\x1b\xaf\xea\xa1\xf5\xc5\x5f\xbe\xfe\xea\x8f\xed\x9b\xd6\x5f\x69\x68\x7d\xf1\xa7\xeb\xff\xd5\xd4\xea\x34\x0e\x68\x43\xeb\x8b\xb6\x26\x5e\xc1\xe2\x8b\xb3\x28\x0f\x77\x29\xca\xea\xa1\x53\x22\x18\xbd\x9c\xf1\x75\x7b\x36\xdc\xd3\x35\x20\x3c\x68\x6b\x75\xc2\xaa\x3a\x1b\xb4\x5e\xec\x03\xeb\x8b\x33\x3a\x88\x43\x87\x3e\x39\x1b\x36\x8b\x08\x8f\x9c\x93\xef\x6a\x54\xfe\x91\xbd\xb2\x6a\xf6\x74\x0b\xab\x5b\x4c\x19\x78\x93\x96\x24\xcc\xec\x60\xf8\x07\xf7\x82\x35\xb7\x41\x67\x65\x97\xcd\x70\x38\xe8\x6f\x67\x5e\x5b\xd3\xef\x95\xc1\x6c\xcb\xc4\x97\xd9\x15\xfa\x43\x76\x81\x16\xb1\x7d\xd9\x8c\x4c\x5b\xb0\xb6\xfa\xfa\x14\x0f\x0f\x0b\x69\x22\x9d\x75\x9c\x45\x67\x03\x38\x18\x3a\x79\x76\x36\x08\x93\x38\xfc\x34\xb0\x9a\x11\xaa\xe9\x98\x65\x97\x5f\x9c\xd5\xdb\xb8\x1a\x3a\x34\xcb\xea\xd9\x70\x91\x39\x71\xc5\xd6\xf5\x23\x1a\x0c\xff\x70\x96\x39\x25\x4a\xf3\x47\xc4\x7a\x4f\x5f\x00\xfa\x8f\x5d\xa5\x03\xb2\x7c\x77\x09\x8d\x07\x37\xb0\xb2\xa1\x53\x25\x71\x84\xfe\x5a\x88\x13\x84\xce\x86\x07\xbc\x07\xb2\xa6\x22\x5a\x8d\xe0\x2b\x3c\xfc\xc7\x3f\xce\x4c\x5d\x48\xe2\xc1\xf0\x78\x13\x8c\x05\xc1\x2e\x19\xb4\xcd\x19\x0e\xad\xcc\x81\x51\x24\x61\xe9\x6a\xfe\x5d\xfe\x94\xe9\x1d\x38\xc8\xbb\xc9\x38\xb4\xc3\xbd\xba\x60\x58\x88\x83\xe1\x1f\x3a\xfa\xc7\x06\x9b\xb6\x96\x53\x9d\x3e\xc8\xc1\x50\xeb\x07\x19\x06\xd3\x30\x51\xd2\xd3\x87\xcd\xae\x52\x36\x50\x8c\x1a\x1d\x01\x36\xd4\x6e\xae\x9a\xc0\x0e\x29\x3d\x72\x28\xbd\x91\x46\x04\xdf\x8f\xe9\xf4\x91\xd1\x35\x55\xfc\x25\xfc\x81\x1e\xf7\x5f\xfe\x5e\xa0\x82\xbf\xff\x72\xf0\xe3\x97\xcd\x9a\xa5\x2b\xa4\x6d\x52\xb8\x2b\xf1\x73\x1b\x33\x3c\x1d\x4b\x03\x6f\x0b\x9a\x32\x43\x9c\xe3\x12\xd5\xbb\x32\x03\x78\x43\x10\xba\x7a\x79\x29\xd4\x79\x38\xb1\x3e\x06\x55\xe1\x45\x35\xe8\x5b\x4c\xed\x4e\x30\xae\x49\x4e\xa3\xaa\x14\x96\x75\x89\xaa\xf8\xef\x48\x43\x61\x91\x95\xe2\xac\x33\x27\xbd\x25\x21\xb1\xbf\x27\x81\x29\x56\xb0\xa4\xc7\x2a\x21\xf4\x8c\x4e\x69\x20\x67\x7b\xb8\xab\xf3\x3f\xc6\x11\x6a\x1e\x5d\xfc\xc6\xb5\xea\x2d\x4a\xd1\x05\x26\x2e\x71\x0a\x93\x81\x95\xe6\xbb\x0a\xfd\xeb\x16\xa1\xe4\x62\x5f\x94\x24\x77\xcd\x1d\x0d\x40\x72\xf1\x1b\xf7\x70\x20\xf3\xd6\x47\x9a\xd9\xa9\x27\xc8\x2b\xcc\x14\x89\x13\x71\x4e\x90\xc8\x8d\xaa\xaa\xcf\x06\x0e\x97\x0e\x11\x5a\xcc\xde\xd2\x69\x8c\x07\x98\xd6\x22\xf6\xcb\x69\xef\x1b\xc3\x05\x72\x60\x5d\x97\x67\x03\x12\x65\x63\x30\xfc\x43\x46\x67\xe2\x23\x59\x85\x67\xbe\xeb\x8a\x35\x23\xb6\x7a\xaf\xc5\x22\x07\x42\xae\x94\x52\x43\x0b\x51\xe2\xcb\x09\xef\x00\x0f\x22\x5e\xe5\xb5\xbc\xc2\x25\x31\x8c\x16\x67\x81\x8e\xda\xc0\x11\xae\x94\xb8\xc7\x71\xf8\x49\x3f\xd5\x7a\x06\x64\xc1\x1b\x8e\x17\xc3\xf1\x89\xf8\xf2\x07\xa3\x8f\x3e\xde\x4a\xec\xfb\xd9\xbe\x89\xa0\x72\x41\xd9\x87\x03\x6f\x6a\x9b\xeb\x5d\x4c\x2f\x40\x38\x0e\xba\xd8\xba\x00\x9a\x9f\x78\xcd\x1d\x69\x63\xbc\x26\x5c\xd2\x4f\x95\x4d\x93\xf8\x12\xf4\x7c\x20\xae\xcb\x12\xbe\x60\x6c\x75\x5e\xbf\x14\x08\x4f\x4d\x88\x9c\x10\x26\x49\x83\xd2\xf9\xdb\x0e\x95\x2f\x94\xeb\xca\xcb\xeb\x24\x91\x91\xe1\x01\x5b\xe7\xe5\x3d\x0c\xb7\x6d\xad\x68\xb8\xcf\xd0\x13\xf8\x9e\x67\x0d\x3e\x43\x16\x8b\x8c\x33\x60\x39\x36\xc8\x20\x1c\x4e\x58\xe8\x84\xe9\x74\xd6\x09\xac\x9b\x71\x39\xbd\x00\x67\x6d\xf7\x84\x3d\x5d\xe5\xcf\x64\x25\x5d\x0c\x62\xfe\x7b\x89\xe1\x6c\xea\x59\x64\x95\x30\x8a\x73\x0e\x41\x7e\x88\xaf\x0f\x7c\x3d\x0c\x08\xef\x4b\xb9\x61\xb6\xf1\xe2\x35\x63\xf1\xa5\xcd\xd7\x72\xe4\x97\x03\xcc\x22\xc9\x5c\x81\xe1\x4b\x4b\xb4\xaa\x86\xc9\xb5\xe4\x1b\x44\x77\x0b\xfe\x9a\x85\xbf\x44\x1b\xa4\x33\xa7\xa7\x19\x84\xbd\x93\xb0\x2f\x8c\xf7\x85\xff\xa0\x11\xea\x69\xc8\x3f\x79\xa0\xcc\xad\x79\x47\xea\xb3\xf1\x75\xf0\xd4\x01\xc2\xb0\x6f\xc7\x7e\xbc\xd7\xe4\x22\x69\xaa\xe0\xc8\x49\x44\x05\xc2\x9d\x47\x10\x1f\xca\x0c\x3d\xe3\x61\xd3\x88\xff\x17\xb4\xbc\x72\x0c\x5d\x89\xb1\x90\xf1\x35\xf7\xf7\x83\xcb\x4b\x06\x4a\xf2\x1c\x9c\x0d\xff\x20\xfd\x1c\xd8\x83\xe1\x85\xfc\xe4\xf7\x03\xba\x65\x07\xbb\x2c\x42\xeb\x38\x43\xd1\xe0\x37\x97\x98\xcc\xe5\x6b\xf0\xa7\x3f\x33\x0a\xfa\xdb\xdf\x9e\xf5\xf6\xb0\x01\xa4\xe1\x58\xd9\x90\x70\x4e\x22\xc9\x61\x64\x86\x8e\xf2\x8c\xf2\xb7\xed\x58\x20\xab\xb9\x22\x88\xcf\xac\x8c\x3e\x8d\x17\x8c\x59\x12\xf0\xb5\x72\x84\xb3\xe1\x3e\xfb\xc7\x3f\x90\x03\x8b\x22\x79\x39\x83\x56\x4e\xae\x37\xbb\x24\x21\xd7\x59\x78\x89\x07\xcf\xca\x2f\x61\xb9\x21\x3d\xa9\x16\xf1\x1f\x88\xb8\xe5\x63\x9c\xa2\x7c\x57\x9f\xc5\xc3\x8b\xec\xb7\xbf\x55\xca\x57\xa8\xe6\xef\x43\xab\xfe\xc7\x3f\x3c\xd7\x1d\x1e\x0e\x8b\x9f\xfe\x27\x26\xf9\xce\x3a\xfb\xa1\xfe\xf1\x52\x24\xea\xac\x81\xe8\x0f\x84\x9f\x5b\x91\x99\xa2\x7c\xd4\xc0\xc2\x00\xc3\x0b\xf2\xa2\x2e\xe3\xcd\x06\x95\x67\xf5\xf0\x70\x38\xa3\xc8\xac\x81\xc0\x74\x0d\x86\x0b\x25\xb0\x19\x17\xca\x1c\x13\xd3\x10\xd1\xa5\xc3\xa2\xb5\x55\xce\x26\xc9\x57\x30\x71\x12\xb4\x41\x59\x04\x2e\xc1\x5e\x17\x1b\x21\x22\xc0\x89\x2e\x00\xd1\x56\xc8\xef\x0f\xba\x14\x08\x7c\x13\x67\x08\x84\xb8\x1a\xf9\x15\x21\x77\xf5\x33\xb8\x04\xcd\xc1\xb8\x41\xf5\x7d\x42\x62\xf0\xdc\xbc\x7c\x4d\x18\x7a\xee\xcd\x81\xfb\xa7\x16\x6e\xde\x82\x4b\x80\x0f\x47\xf2\xfd\x2c\xac\x9f\x2d\x53\xb3\xf1\x32\xbd\x00\x5f\xe2\x42\x5f\x5a\xfa\x6b\xcc\x74\x5c\x98\xca\xe1\x3f\x12\xac\xb4\xba\x00\x3f\xfc\x68\x28\xc9\x4b\x57\xa8\xc6\x20\x1d\x28\x1a\x34\x17\x60\xf0\xed\x0b\x78\xc0\x7b\x91\x17\x1b\x74\x60\xc5\x7f\x6d\xcc\x3b\x22\x35\xbc\x00\x03\x9e\x25\x08\x78\xb3\xc0\x02\x5e\x30\xb6\x80\xeb\x8c\xbc\x61\x2f\x16\x12\xbf\xad\x17\xc3\xb4\x17\x01\x09\x66\x79\xf3\xcb\x60\x39\xad\x47\x27\x60\xfa\x63\xfe\x88\x4a\x1d\xdd\xbb\xf5\x7a\x7d\x62\x59\xbd\x43\xbe\xef\x5a\xfc\xbf\xfe\x31\x15\x86\xe4\x5f\x69\x9a\x6f\xaf\x07\x9a\xae\xaf\x1f\x7e\x34\x43\x1c\x8c\x4b\x96\xff\x09\xeb\xe6\x7b\x14\xe6\x59\xf4\x73\x16\x8e\x05\x66\x78\xa4\xdd\x09\x59\x36\xaf\x5e\x35\x52\xf1\xa9\xfb\xb6\x45\xf3\x7a\x24\xa7\x74\xe6\x14\x44\xff\x1e\x4b\xc6\x0b\x3c\xcb\x9b\x4d\x2d\xdf\x0d\xfe\x99\x4b\xc6\xf0\xfc\xa0\x60\x3b\xc8\xc7\x02\xa0\x04\xf9\x86\xf0\x99\x6f\xa1\xc7\x82\x0f\x81\x89\x20\xb7\xaf\x5f\x43\x91\x57\xb0\x7c\x3b\x41\x1e\xfc\x0b\xcc\x76\xb0\x7c\x19\x58\x60\xf0\x80\x56\x25\xff\xfe\x2d\x2c\xc3\x2d\xfe\x72\x5d\x94\x71\x42\x9f\x90\x17\xff\xb2\xc3\x3c\x19\xfe\x37\x79\x19\xfc\x22\xe4\xfc\xcb\x77\x20\x5f\x83\xff\x95\xd7\xa8\x32\xf5\x83\xff\xe9\xfb\x91\x5f\xdc\x8e\x2f\x81\xc0\xb3\xc0\xc8\xb5\xc0\xd8\xb5\x80\x3f\xb3\xc0\xdc\xb7\x40\x80\x7f\x07\x3f\x87\x9e\xbc\xbd\xe1\xee\x28\x98\x4d\x4e\x69\xf8\xd8\xb3\x40\x30\xb1\x80\x1f\x58\x60\x3c\xb3\xc0\xd4\xb7\xc0\x68\x6c\x01\xcf\x7f\xe5\xaa\xd6\x9f\xb2\x24\xfd\x9d\x4b\xa4\x0a\x61\x82\xba\x5f\xe3\xbf\x97\xeb\x67\x74\x64\x8e\xf1\x5f\x1d\x87\x9f\xfa\x11\xf1\xbf\x15\xda\xc4\xd9\x75\xfd\xff\xa0\x32\xbf\x00\x75\xb9\x43\xfd\x45\x0e\xdd\xaf\x4d\xe3\xd0\x51\xe4\x70\xca\x9e\xe7\x76\xcd\x6f\xdc\xf8\x8a\x71\xb4\x69\xf3\x93\x1c\x98\x46\x86\xb1\xd9\xac\xe6\x2e\x0d\xee\x60\xf9\x09\x7c\x55\xa2\x97\xae\x05\x35\xf8\xf3\xae\x2c\x12\x04\xc8\xfa\xeb\x04\xfa\xaa\x84\x2f\x47\x41\x10\xca\x8e\xc0\xdc\x24\x3b\x5e\x93\x0e\x61\x22\x18\xc7\x89\x05\xdb\x0c\x9e\xef\xd2\x6d\xeb\xe1\x7d\xec\xcd\xf0\xff\xb9\x6e\x17\x0d\xd2\xb6\x5d\xc7\xf0\x91\x46\xbf\x1b\x07\xc1\xed\x74\xd4\xb7\x23\x07\xef\xe6\x37\xc1\xfc\x66\xd2\x0f\x73\x73\x77\x3b\xba\x9d\xf6\xc3\x1c\x27\x5b\x03\x96\x26\xd6\x30\x82\xa0\x63\x14\xf1\xdf\xd6\x78\x38\xf7\xf6\x9b\x66\x2d\x39\xd2\xa7\xd1\xd4\xbd\x7d\xe8\x87\xb9\x7d\xb8\x1b\xdf\xcd\x8e\xf4\x69\x72\x7b\x7d\x7d\xd3\x0f\x33\x9e\x5f\xcf\xef\xaf\xbb\xfa\x6d\xa2\x63\xea\x4e\x3f\x68\xdb\x97\xec\x4f\x69\x03\xbe\xe6\x78\x8d\x58\x19\x13\x89\x67\x02\xd5\x87\x38\x49\x24\x8e\x06\x9f\x37\xfc\x3f\xd7\x09\x02\x23\x53\x43\x57\x35\xd5\xd5\x4b\x1d\x30\x12\xa0\x3f\xc7\x6f\xbd\x04\x36\xf6\x35\xaf\xa3\x3a\x9f\xb7\xa5\x01\xe6\x4d\xdb\x92\xb3\x0b\xdf\xbe\xf0\x41\xfd\x12\xcf\xe8\x3a\x2f\x01\x95\x13\x98\x16\xb5\x01\xd7\x89\xe7\x00\x3c\x76\x0e\xf4\x9e\x00\xfd\xb4\xbf\x97\xea\x9b\xe8\xfd\x29\x7b\x93\x2f\xd0\x93\x76\x65\xbb\x6b\x4c\xfb\x91\x6e\xd9\x22\x36\x8a\x28\xf2\xba\xe8\xe5\x78\xe8\x64\x18\xe5\x32\xe0\x54\x3e\xe1\xcf\xdc\xce\xfb\xad\x9b\xb5\xb1\x13\xff\xbc\x5b\x3f\xef\xd6\xff\x94\xbb\xb5\x59\xe1\xbf\xd8\x76\xe5\x18\x8d\x9b\xf6\x94\x6b\x4a\xef\xe5\xe2\xb4\xeb\xc7\x2b\xae\x1e\x1d\xd7\x8e\x37\x5d\x2d\xc2\x3c\xab\x6a\xf0\xed\xfd\xb7\xcb\xef\xaf\xbf\xfd\xf3\x37\xf7\xcb\x6f\xbe\xfe\xf6\xeb\x8f\x78\x8f\xef\x9d\x14\xa5\xdf\xc3\xb4\x48\xd0\x37\x71\x1a\xd7\x87\xc3\x02\xaf\xc3\x6f\xe1\x73\x9c\xee\x52\x90\xed\xd2\x15\x2a\xf1\x05\x34\xa5\x41\xd5\x68\x0e\x7d\x02\x5f\x99\xea\xf8\xf3\x5f\xbe\xbb\x35\x54\x52\x94\x79\x78\x4a\x2d\x18\x0e\x55\x55\x5e\x2a\x15\x69\x14\xf0\x2b\x22\x01\xc7\x4b\x25\x86\xab\x04\x55\xa0\xce\xc1\x36\x27\x19\x78\x11\x60\x56\x14\xa0\xaa\x61\xbd\xab\x30\x5e\xfc\xb4\xc9\x52\xaf\xaf\xb6\x0a\x95\x8f\xa8\x34\xde\xc8\x88\x02\x05\x40\x90\xa2\x7a\x9b\x47\xb8\x9a\x12\x85\x34\x44\x24\xd8\x15\x79\xc6\xca\x82\x24\xaf\x2a\x1d\x71\x0b\x7b\x29\xa8\x37\x4c\xab\x84\xa1\xa1\xab\xfd\x5f\xd1\xea\xfb\x3c\xfc\x84\xea\xb3\xc1\x53\x75\x71\x7e\x3e\x00\xbf\x07\xad\x99\x5e\x5e\xd5\xe0\xf7\x60\x70\x0e\x8b\x78\xa0\xcf\x75\x8b\xcc\xc9\xb3\x14\x55\x24\x0a\x9e\x50\x3b\x31\xbb\x30\x36\x81\x37\x3a\xad\x36\xe0\x12\xfc\xcb\xf7\xdf\xfd\xc9\x29\x60\x59\x21\x5a\xc4\xc1\x33\xa2\x1e\x17\xfc\x2f\x5e\x83\x33\x52\xec\xf2\x12\x64\xbb\x24\xe9\xc4\x8f\xff\xa8\x36\xa5\x03\x93\xa6\x9b\x10\x26\x03\x73\xc0\xf2\x54\x52\x7b\xd4\x02\x32\x29\x7d\x57\xe3\x70\xdb\x9c\xb4\x2e\xc3\x0a\xfc\xe6\xf2\x12\x34\x7a\xb1\xde\x66\x9e\x9f\x83\xdb\x04\xc1\x12\xc4\x19\x08\x61\x85\xd4\x9a\x61\x05\xf2\x02\x65\x28\x02\x2b\xb4\xce\xcb\x9e\xad\xdc\xa8\x40\xc8\x18\x3a\x94\x66\x83\x4b\xf0\xc3\x8f\x1d\x83\x60\x28\xc4\x8f\xde\x1f\xdc\x1f\x1d\x76\x40\xbf\xa9\xb8\x27\x17\xef\x46\x40\x56\x02\x4a\xc1\x25\x68\x06\x0f\xd3\x8a\x9e\x2a\x09\xdd\x2e\xf3\x50\x2a\x82\x1f\xf4\x94\x39\x3f\x07\x5f\xd7\x20\xae\x40\x91\x57\x55\xbc\x4a\x10\xde\x61\x1b\xd4\x46\xe3\xe0\x2b\xf8\x69\x1b\x27\x08\xac\xe3\x24\x89\xb3\x0d\x99\x0a\x58\x96\xf0\xa5\x02\xab\x17\x50\xec\xaa\xed\xd9\xd0\x02\x55\x0e\xe2\xac\xaa\x11\x34\x9c\x9e\x42\x85\xc5\xae\x26\x08\xb6\x71\x55\x63\x9a\x56\xe7\xe4\x27\xa1\xcd\x19\xc6\xce\x08\x06\xad\xa0\x1b\x15\x3e\xac\xcf\x88\x06\x13\xf7\x18\xa5\xcc\x04\x18\xd8\xc0\x5b\x80\x18\x5c\x5d\x02\x17\xfc\xf6\xb7\xe6\xd9\xe7\xb0\x1f\x34\xaa\xbc\x00\xb6\x1d\xf7\x2e\x4c\xd0\xb5\xa4\x9c\x5d\x56\x6d\xe3\x75\x7d\x96\xa2\xf4\x87\xf8\x47\xa7\x8e\x53\xd4\xb5\x63\x3b\x10\xa9\xcb\x4c\x45\xf9\x08\x93\xdd\x9b\x71\x7a\x0a\x4e\xbc\x36\x4e\x42\xda\x23\x82\x6b\xeb\xda\x15\x11\xac\xd1\x59\x1f\x9e\x37\x53\x1e\x8a\xbb\x9f\xbc\xa0\xf4\x15\xc4\x25\x5e\x9f\xf5\xae\x0b\x4c\x48\xd5\x95\xf1\xc6\x45\x41\xc7\xfa\xe7\xae\x83\x9f\x87\xc5\x3b\x19\xcb\x49\x53\x2d\x76\x8f\x6c\x7e\x36\x01\x47\x57\xfc\xb1\x5e\x4a\xc8\x8e\x2e\xcb\x63\xbd\x6d\xb0\xe1\x85\xfe\x1a\x74\x47\x96\xb2\x71\xa5\x1a\x1f\x36\x8c\x00\xb1\xf8\x53\x98\x10\x20\x98\x41\x34\x8c\x8a\x05\x46\xae\xeb\x0e\x17\x84\x2f\xef\xc5\x7f\x7e\x0e\xee\xab\x1a\xae\x92\xb8\xda\x02\x08\x9e\xd0\xaa\x22\x3c\x0b\x08\x9b\x08\xda\x9c\xb4\x5e\xff\xf9\x6b\xd6\x14\x19\x45\x53\xab\xd4\x55\xc5\x2e\xe2\xc3\x39\xc9\x68\xff\xeb\x5f\x7d\x38\xdf\xd6\x69\x72\xf5\xeb\x5f\xfd\x9f\x00\x00\x00\xff\xff\x53\x1e\x84\x56\xb7\x84\x01\x00") + +func dashboardHtmlBytes() ([]byte, error) { + return bindataRead( + _dashboardHtml, + "dashboard.html", + ) +} + +func dashboardHtml() (*asset, error) { + bytes, err := dashboardHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "dashboard.html", 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){ + "dashboard.html": dashboardHtml, +} + +// 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{ + "dashboard.html": &bintree{dashboardHtml, 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/dashboard/assets/dashboard.html b/dashboard/assets/dashboard.html new file mode 100644 index 0000000000..743da90f8d --- /dev/null +++ b/dashboard/assets/dashboard.html @@ -0,0 +1,525 @@ + + + + + + + + Go Ethereum Dashboard + + + + + + + + + + + + + + + + + + +
+
+
+
+ + +
+ + + + + + + + +
+
+ + +
+ +
+ + + +
+ + +
+
+ Total Users +
2500
+ 4% From last Week +
+
+ Average Time +
123.50
+ 3% From last Week +
+
+ Total Males +
2,500
+ 34% From last Week +
+
+ Total Females +
4,567
+ 12% From last Week +
+
+ Total Collections +
2,315
+ 34% From last Week +
+
+ Total Connections +
7,325
+ 34% From last Week +
+
+ + + + +
+
+
+

Go Ethereum Dashboard All advices are welcome

+
+
+ +
+ +
+
+
+
+

Memory usage Sessions

+ +
+
+
+ +
+
+
+ +
+
+
+

Another diagram Sessions

+ +
+
+
+ +
+
+
+ +
+
+
+

Just another diagram Sessions

+ +
+
+
+ +
+
+
+ + +
+
+
+

More diagram Sessions

+ +
+
+
+ +
+
+
+ +
+
+
+

One more diagram Sessions

+ +
+
+
+ +
+
+
+
+
+
+
+
+ + + +
+
+ Gentelella - Bootstrap Admin Template by Colorlib +
+
+
+ +
+
+ + + + diff --git a/dashboard/config.go b/dashboard/config.go new file mode 100644 index 0000000000..a29d2a27a4 --- /dev/null +++ b/dashboard/config.go @@ -0,0 +1,42 @@ +// Copyright 2017 The go-ethereum Authors +// This file is part of the go-ethereum library. +// +// The go-ethereum library is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// The go-ethereum library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with the go-ethereum library. If not, see . + +package dashboard + +import "time" + +// DefaultConfig contains default settings for the dashboard. +var DefaultConfig = Config{ + Host: "localhost", + Port: 8080, + Refresh: time.Second, + Assets: "", +} + +//Config is the config of the dashboard +type Config struct { + // Host is the host interface on which to start the dashboard server. If this + // field is empty, no dashboard will be started. + Host string `toml:",omitempty"` + + // Port is the TCP port number on which to start the dashboard server. The + // default zero value is/ valid and will pick a port number randomly (useful + // for ephemeral nodes). + Port int `toml:",omitempty"` + + Refresh time.Duration + Assets string +} diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go new file mode 100644 index 0000000000..076ac9ac9e --- /dev/null +++ b/dashboard/dashboard.go @@ -0,0 +1,281 @@ +// Copyright 2017 The go-ethereum Authors +// This file is part of the go-ethereum library. +// +// The go-ethereum library is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// The go-ethereum library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with the go-ethereum library. If not, see . + +package dashboard + +//go:generate go-bindata -nometadata -o assets.go -prefix assets -pkg dashboard assets + +import ( + "bytes" + "fmt" + "github.com/ethereum/go-ethereum/log" + "github.com/ethereum/go-ethereum/p2p" + "github.com/ethereum/go-ethereum/rpc" + "github.com/rcrowley/go-metrics" + "golang.org/x/net/websocket" + "html/template" + "net" + "net/http" + "sync" + "sync/atomic" + "time" +) + +const ( + procSampleLimit = 200 + memSampleLimit = 200 +) + +var ( + nextId uint32 = 0 // Next connection id +) + +type dashboard struct { + config *Config + + listener net.Listener + index []byte // Index page to serve up on the web + conns []*client // Currently live websocket connections + + mtrcs *mtrcs `json:",omitempty"` + stats *status `json:",omitempty"` + + lock sync.RWMutex // Lock protecting the dashboard's internals +} + +type client struct { + conn *websocket.Conn // Particular live websocket connection + logger log.Logger // Logger for the particular live websocket connection +} + +type mtrcs struct { + Processor []*data `json:"proc,omitempty"` + Memory []*data `json:"mem,omitempty"` +} + +type data struct { + T int `json:"time,omitempty"` + Value float64 `json:"value,omitempty"` +} + +type status struct { + Peers int + Block int +} + +func NewDashboard(config *Config) (*dashboard, error) { + log.Trace("NewDashboard() called") + + dashboard := &dashboard{ + config: config, + mtrcs: &mtrcs{}, + } + + if config.Assets == "" { + tmpl, err := Asset("dashboard.html") + if err != nil { + return nil, err + } + + website := new(bytes.Buffer) + if err = template.Must(template.New("").Parse(string(tmpl))).Execute(website, map[string]interface{}{ + "procSampleLimit": procSampleLimit, + "memSampleLimit": memSampleLimit, + }); err != nil { + log.Crit("Failed to render the dashboard template", "err", err) + } + + dashboard.index = website.Bytes() + return dashboard, nil + } + + //TODO case: DashboardAssetsFlag is set + //dashboard.index = ioutil.ReadFile() + return dashboard, nil +} + +func (db *dashboard) Protocols() []p2p.Protocol { return nil } + +func (db *dashboard) APIs() []rpc.API { return nil } + +func (db *dashboard) Start(server *p2p.Server) error { + log.Trace("Start() called", "config", db.config) + + go db.collectData() + + http.HandleFunc("/", db.webHandler) + http.Handle("/api", websocket.Handler(db.apiHandler)) + + listener, err := net.Listen("tcp", fmt.Sprintf("%s:%d", db.config.Host, db.config.Port)) + if err != nil { + return err + } + db.listener = listener + + go func() { + log.Trace("Starting server...") + + if err := http.Serve(listener, nil); err != nil { + log.Warn("Server failed", "err", err) + } + }() + + return nil +} + +func (db *dashboard) Stop() error { + log.Trace("Terminating dashboard...") + + var err error + + db.lock.Lock() + if err = db.listener.Close(); err != nil { + log.Warn("Failed to close listener", "err", err) + } + + for _, c := range db.conns { + if err := c.conn.Close(); err != nil { + c.logger.Warn("Failed to close connection", "err", err) + } + } + db.conns = db.conns[:0] + db.lock.Unlock() + + return err +} + +// webHandler handles all non-api requests, simply flattening and returning the dashboard website. +func (db *dashboard) webHandler(w http.ResponseWriter, r *http.Request) { + log.Trace("webHandler() called") + + //TODO not only index + w.Write(db.index) +} + +// apiHandler handles requests for dashboard +func (db *dashboard) apiHandler(conn *websocket.Conn) { + log.Trace("apiHandler() called") + + client := &client{ + conn: conn, + logger: log.New("id", atomic.AddUint32(&nextId, 1)), + } + + // Start tracking the connection and drop at connection loss + db.lock.Lock() + db.conns = append(db.conns, client) + db.lock.Unlock() + + defer func() { + client.logger.Trace("Connection interrupted") + + db.lock.Lock() + for i, c := range db.conns { + if c.conn == client.conn { + if err := c.conn.Close(); err != nil { + c.logger.Warn("Failed to close connection", "err", err) + } + db.conns = append(db.conns[:i], db.conns[i+1:]...) + break + } + } + db.lock.Unlock() + }() + + db.sendHistory(client) + + for { + var msg struct { + text string `json:"text"` + } + if err := websocket.JSON.Receive(conn, &msg); err != nil { + client.logger.Warn("Receive failed", "err", err) + return + } + // Ignore any message + } +} + +// collectData collects the required data to plot on the dashboard +func (db *dashboard) collectData() { + log.Trace("collectData() called") + + for { + now := time.Now().Second() + traffic := metrics.DefaultRegistry.Get("p2p/InboundTraffic").(metrics.Meter).Rate1() + traffic = traffic * traffic + //if traffic != 0 { + // traffic = math.Log(traffic) + //} + memInuse := metrics.DefaultRegistry.Get("system/memory/inuse").(metrics.Meter).Rate1() + //if memInuse != 0 { + // memInuse = math.Log(memInuse) + //} + traff := &data{ + T: now, + Value: traffic, + } + mem := &data{ + T: now, + Value: memInuse, + } + + db.update(traff, mem) + + time.Sleep(db.config.Refresh) + } +} + +// update updates the dashboards through the live websocket connections +func (db *dashboard) update(proc *data, mem *data) { + //log.Trace("update() called") + + // if the samples' # exceeds the limit, just remove the first element + first := 0 + if len(db.mtrcs.Processor) == procSampleLimit { + first = 1 + } + db.mtrcs.Processor = append(db.mtrcs.Processor[first:], proc) + + first = 0 + if len(db.mtrcs.Memory) == memSampleLimit { + first = 1 + } + db.mtrcs.Memory = append(db.mtrcs.Memory[first:], mem) + + for _, c := range db.conns { + //c.logger.Trace("Updating dashboard...") + + msg := &map[string]interface{}{ + "proc": proc, + "mem": mem, + } + if err := websocket.JSON.Send(c.conn, msg); err != nil { + c.logger.Warn("Failed to update dashboard", "msg", msg, "err", err) + } + } + +} + +func (db *dashboard) sendHistory(c *client) { + c.logger.Trace("Sending history...") + msg := &map[string]interface{}{ + "mtrcs": db.mtrcs, + } + if err := websocket.JSON.Send(c.conn, msg); err != nil { + c.logger.Warn("Failed to send history", "err", err) + } +} From 8f24e4c4bc0d068d5991a779dfcc4fd8e11a845d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kurk=C3=B3=20Mih=C3=A1ly?= Date: Fri, 7 Jul 2017 15:16:37 +0300 Subject: [PATCH 2/6] cmd, dashboard: some starter mistakes fixed --- cmd/geth/config.go | 7 +- cmd/utils/flags.go | 2 +- dashboard/assets.go | 2 +- dashboard/assets/dashboard.html | 30 +++--- dashboard/config.go | 11 +- dashboard/dashboard.go | 177 ++++++++++++++++++-------------- 6 files changed, 125 insertions(+), 104 deletions(-) diff --git a/cmd/geth/config.go b/cmd/geth/config.go index cfdc184a47..d8568fded7 100644 --- a/cmd/geth/config.go +++ b/cmd/geth/config.go @@ -109,17 +109,13 @@ func defaultNodeConfig() node.Config { return cfg } -func defaultDashboardConfig() dashboard.Config { - return dashboard.DefaultConfig -} - func makeConfigNode(ctx *cli.Context) (*node.Node, gethConfig) { // Load defaults. cfg := gethConfig{ Eth: eth.DefaultConfig, Shh: whisper.DefaultConfig, Node: defaultNodeConfig(), - Dashboard: defaultDashboardConfig(), + Dashboard: dashboard.DefaultConfig, } // Load config file. @@ -164,7 +160,6 @@ func makeFullNode(ctx *cli.Context) *node.Node { if ctx.GlobalBool(utils.DashboardEnabledFlag.Name) { utils.RegisterDashboardService(stack, &cfg.Dashboard) } - // Whisper must be explicitly enabled by specifying at least 1 whisper flag or in dev mode shhEnabled := enableWhisper(ctx) shhAutoEnabled := !ctx.GlobalIsSet(utils.WhisperEnabledFlag.Name) && ctx.GlobalIsSet(utils.DevModeFlag.Name) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 9327f00270..72879a6c70 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -1060,7 +1060,7 @@ func RegisterEthService(stack *node.Node, cfg *eth.Config) { // RegisterDashboardService adds a dashboard to the stack. func RegisterDashboardService(stack *node.Node, cfg *dashboard.Config) { stack.Register(func(ctx *node.ServiceContext) (node.Service, error) { - return dashboard.NewDashboard(cfg) + return dashboard.New(cfg) }) } diff --git a/dashboard/assets.go b/dashboard/assets.go index 2c1a47b4b2..9003c6f01d 100644 --- a/dashboard/assets.go +++ b/dashboard/assets.go @@ -68,7 +68,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _dashboardHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xe9\x92\xe3\xc6\x95\x28\xfc\xdf\x11\x7e\x87\x34\x5b\x6d\x15\x6d\x00\x05\x80\x04\x97\x62\x57\xf9\xd6\x2a\x6b\x42\xb2\x7c\xad\xf6\x9d\x3b\x9f\x42\xc1\x48\x02\x49\x12\x6a\x6c\x06\xc0\x5a\x4c\xf3\x7b\xa6\xef\x21\xbe\x07\xbb\x91\x1b\x90\x1b\x40\x56\x49\xe3\x99\x3b\xd3\x45\xcb\x4d\x02\x27\x4f\xee\x27\x4f\x9e\xf5\xc3\x6f\xee\xbe\xbb\xfd\xf8\x6f\x7f\xbe\x07\xdb\x3a\x4d\xae\x7e\xfd\xab\x0f\xf8\x5f\x90\xc0\x6c\x73\x39\x40\xd9\xe0\xea\xd7\xbf\x02\x00\x80\x0f\x5b\x04\x23\xf6\x9d\xfc\x4e\x51\x0d\x41\xb8\x85\x65\x85\xea\xcb\xc1\xae\x5e\xdb\xb3\x81\xf6\x7e\x5b\xd7\x85\x8d\xfe\xb6\x8b\x1f\x2f\x07\xff\xdb\xfe\xeb\xb5\x7d\x9b\xa7\x05\xac\xe3\x55\x82\x06\x20\xcc\xb3\x1a\x65\xf5\xe5\xe0\xeb\xfb\x4b\x14\x6d\x90\x5e\x3c\x83\x29\xba\x1c\x3c\xc6\xe8\xa9\xc8\xcb\x5a\x28\xf1\x14\x47\xf5\xf6\x32\x42\x8f\x71\x88\x6c\xf2\xc3\x02\x71\x16\xd7\x31\x4c\xec\x2a\x84\x09\xba\xf4\x30\x36\x01\x5f\x1d\xd7\x09\xba\xfa\x2a\x07\xf7\xf5\x16\x95\x68\x97\x82\x3b\x58\x6d\x57\x39\x2c\xa3\x0f\xe7\xf4\xa5\x04\x9f\xc4\xd9\x27\xb0\x2d\xd1\xfa\x72\x80\x3b\x51\x5d\x9c\x9f\x87\x51\xf6\x53\xe5\x84\x49\xbe\x8b\xd6\x09\x2c\x91\x13\xe6\xe9\x39\xfc\x09\x3e\x9f\x27\xf1\xaa\x3a\xaf\x9f\xe2\xba\x46\xa5\xbd\xca\xf3\xba\xaa\x4b\x58\x9c\x8f\x9c\x91\x33\x3d\x0f\xab\xea\xbc\x79\xe6\xa4\x71\xe6\x84\x55\x35\x00\x25\x4a\x2e\x07\x55\xfd\x92\xa0\x6a\x8b\x50\x3d\x00\xe7\x57\x3f\xab\xfa\x75\x9e\xd5\x36\x7c\x42\x55\x9e\xa2\xf3\xb1\x33\x75\x5c\x52\xb3\xf8\xf8\xd4\xca\x7f\x63\xdb\x42\xfd\xe1\xae\xaa\xf3\xb4\xaf\xac\x6d\xcb\x63\x57\x85\x65\x5c\xd4\xa0\x2a\xc3\x93\x5b\xff\xd3\xdf\x76\xa8\x7c\x39\xf7\x1d\xcf\x19\xb3\x1f\xa4\xc6\x9f\xaa\xc1\xd5\x87\x73\x8a\xf0\xea\x97\xa8\xc2\xce\xf2\x1a\xd7\x33\x76\xbc\xf3\x02\x86\x9f\xe0\x06\x45\xbc\x42\xfc\xca\xe1\x0f\x7f\xe9\xea\x6f\xb7\xb0\xac\x9d\x9f\xaa\x73\xdf\x71\x1d\xb7\xf9\xf9\x8b\xe1\xef\x5a\x7e\x3f\xa9\xab\xaf\xab\xce\xdf\xd8\xb6\x58\xad\x30\xed\x62\x09\x36\xd7\xf2\x7c\xe3\xc5\x20\xa0\xc2\x7f\x0e\x26\x0d\x35\xd8\xcb\x4f\xf1\xdf\x16\xc5\x9b\x6d\x7d\x01\x66\xee\xfb\x85\xfe\x96\x6c\xe6\xae\x97\x29\x2c\x37\x71\x76\x01\xe0\xae\xce\x95\xd7\x07\xa1\x3d\xe7\x6a\x83\x8c\x2d\x3c\xff\x9d\x5e\xc1\xc7\xef\xee\xbe\x03\xbb\x4d\xf2\x02\x60\x16\x81\x5d\x96\xc2\x38\xab\x61\x9c\xc1\x55\x82\x2c\x50\xa2\x2a\x4f\x1e\x11\xc0\x7b\x69\x9b\x3f\x81\xa7\xb8\xde\x82\x4d\x6e\xaf\xe2\x2c\x82\x35\x94\xd1\xfd\xee\x5c\x19\x90\x04\xad\xeb\x65\x98\x27\xfb\x15\x0c\x3f\x6d\xca\x7c\x97\x45\x17\xef\xfc\xeb\xd1\x43\x30\x3e\x38\x19\x7c\xb4\xab\x14\x38\x98\xc2\xc1\x38\x43\xa5\xb3\xca\xa3\x17\xfc\x3b\xb1\xd3\xc8\x1e\xb5\xa5\xe9\x00\x4d\xdd\xe2\x79\x51\xc0\x28\x8a\xb3\xcd\x85\xbb\xf8\xbb\x1d\x67\x11\x7a\xbe\x98\xcf\xe7\xf3\x45\x91\x57\x71\x1d\xe7\xd9\x05\x5c\x55\x79\xb2\xab\xd1\x2b\xd0\x3b\x29\xca\x76\xcb\x75\xfc\x8c\xa2\x7d\x83\x87\xfc\x5c\xb0\x79\xf3\x5c\xf7\xfd\x2b\x10\x02\x27\xbd\xfd\xfe\x66\xd9\xc0\x59\xaf\x2b\x4a\x16\xe1\xf7\x61\x99\x27\xc9\x4d\xfe\xbc\xcf\x1f\x51\xb9\x4e\xf2\xa7\x8b\xc7\xb8\xc2\x87\x48\xdb\x90\x6d\x1c\x45\x28\xb3\xab\x14\x26\xc9\x9e\xbc\x8d\x93\xb8\x7e\xb9\xa0\xcf\xbb\x1b\x5c\xe2\x4e\x91\x81\xe5\xa3\xe9\xb9\xc5\x33\xf0\xf1\xf8\xd2\xe5\x66\xe3\xf6\xd0\x01\xe7\xc3\xec\xb7\xf8\x32\xf8\xb8\x82\x25\xfe\x67\x49\x4e\x11\x61\x7e\xba\x81\x00\x04\x55\x01\xb3\x7d\x14\x57\x45\x02\x5f\x2e\xb2\x3c\x43\xbd\xd0\xf1\x9e\xd0\xf1\x2a\xfe\x3b\xba\xf0\xa7\x4d\xd3\x2e\xbc\x51\xf1\x0c\x5c\xe0\x82\x11\xae\xae\x8a\x6b\xc4\x8a\xc4\xfb\x55\x5e\x46\xa8\xbc\xf0\x8a\x67\x50\xe5\x49\x1c\x81\x77\xf7\xd7\xf8\xd3\xac\x9a\xa0\x78\x06\x93\xe2\x79\x41\x01\xed\x12\x46\xf1\xae\xba\x08\xc4\xd9\xc5\xcb\xbf\x9d\x3a\xe0\xd4\x79\xb1\xcc\xe0\x63\xd3\xee\x55\x92\x87\x9f\x4e\x1d\x26\xa7\x8a\x23\x64\xe3\xf5\x05\x92\x18\xc0\x7d\x8d\x9e\x6b\x1b\x26\xf1\x26\xbb\x08\x51\x56\xa3\x12\xfc\x26\x4e\xf1\x39\x0f\xb3\x7a\x41\xba\xfb\x44\x57\xdc\xd8\x75\x17\x6d\xf7\x3d\x71\xe5\x93\xb9\x0a\x94\xa1\x76\xc2\x6d\x9c\x44\x4b\x56\x93\x03\xc3\x3a\x7e\x44\x56\x67\x53\x18\x80\x5d\xa5\x7b\x3e\x14\xa4\xda\xa0\x1d\x39\xef\xfa\xe6\x66\x7e\xdb\x54\xb2\x4b\xd4\x6a\x76\xc9\x29\xf8\xc1\x2e\x01\xbb\xa4\xdd\x57\x55\x0d\xeb\x38\x5c\xd0\x15\xe3\xbb\xb8\x63\x02\x6d\x10\x17\xc5\x95\x8c\xf5\x4a\xc4\x7a\x05\xf7\x61\x9e\xe4\xe5\x05\x6b\xa6\x30\x8c\x7d\xe3\x0f\x62\xa7\xce\x37\x9b\x04\xd9\xbb\x42\x5a\x88\x27\x97\x17\xd7\x24\x1e\x2c\x61\xfa\xb4\xb9\x65\x9d\xc4\xc4\x43\x84\x63\x4b\x67\x95\xd7\x75\x9e\x5e\x88\x13\xa9\x8d\xf1\x9e\xac\x2f\x8c\x40\x27\x70\x8b\x3a\x2f\x2e\x5c\x3e\x90\x9e\xb8\x06\xc7\xae\xeb\x8a\xa3\xfa\x6e\x74\x1f\x8c\x26\xd3\x85\x71\xeb\xe9\x13\x9b\xc4\x0d\x5d\x70\x81\xe7\xf6\x35\x50\x5b\xd5\xb8\xc1\xc6\xc1\x2c\xca\x7c\x1d\x27\x48\xd9\xfe\x84\xf2\x56\x28\xc4\x3d\xdb\xcb\x03\x33\x22\x23\x23\x02\x80\xed\x88\x37\x8c\x6e\x3c\x7f\x54\x3c\x2f\xd8\x3a\x58\xaf\xd7\x74\x06\xea\x12\x66\xd5\x3a\x2f\xd3\x8b\x5d\x51\xa0\x32\x84\x15\x5a\x24\x88\xb0\x09\x55\x01\x43\xdc\x2b\x27\x28\x9e\xa5\xdd\xb6\xca\x93\x48\xdc\x6e\x5e\x4b\x08\x59\x6b\x5c\xfe\x9b\x8e\x3a\xa9\xa9\xda\xc2\x28\x7f\x22\xd4\x06\xff\xf7\xce\x75\x5d\xb9\xc1\x57\xbb\x64\x2f\x14\xa3\x43\xc9\x06\x62\x59\xc4\x21\xa3\x9b\xa3\xe0\xfd\x62\x9d\xe4\xb0\x26\xa3\x77\x70\xe2\x74\x63\x87\x71\x19\x26\xa8\x01\x8e\xd3\x4d\x43\x64\xdf\x4b\x53\x8b\xfb\x2d\x12\x23\x2f\x78\xdf\xac\x03\x0f\xaf\x83\x66\xe1\xc4\xd9\x16\x95\x71\x2d\x76\x84\x50\x7c\x8d\x68\x96\x9b\x15\x3c\x0b\x7c\x6b\x3a\xb2\xe6\x63\xcb\x75\xc6\xe3\x61\x43\x7c\xc6\x62\x17\xe2\x6c\x9d\x37\x4b\x85\x6c\x07\x42\x9b\xc8\x5a\xa4\xad\x9d\x28\x5d\x13\x4b\xd2\xe3\x40\x18\x75\x3c\x9b\x49\x9c\x21\x9b\x9d\xba\x23\xb7\x9d\xde\x9b\xeb\x9b\xd9\xcd\x4c\x41\xb0\xf5\xc5\xe2\xe3\x16\xfa\xfe\xf6\xc1\x7d\xf0\xf8\x81\xe1\x4a\x73\x3d\xc2\xb3\xc4\xd0\xe0\xa1\x5e\xfa\x3a\x55\x56\x00\x80\x61\xd2\x28\x4b\xd0\x0d\x06\xfa\xa7\x31\x70\xdf\x37\xe7\x99\x4b\xcf\xb3\x4e\x6c\xd2\x30\x7b\xcd\x30\xbb\x02\x7d\x51\x56\x2b\x99\x01\x71\xdc\xc9\xa1\x46\x36\x2c\x1e\x74\x67\x0d\xf7\xf4\x2d\xa1\xfa\x06\xca\x25\xac\x91\x66\xaf\xb4\x27\x51\x1a\x67\xf4\x02\xda\xac\x29\x36\xee\xb7\xe3\xdb\x87\xbb\xeb\x03\xa3\xd3\xec\xc4\xc7\xb5\x09\x35\x90\x2a\x0d\xf4\x90\x1e\x40\x63\xf1\x5c\x33\x50\x87\x0b\xb7\x79\xcd\x70\x5b\x46\x70\x4c\x2b\x8c\xe4\x2e\x89\xf1\xff\x78\xbb\x38\x48\x9c\x91\x85\x47\xce\x76\x02\x4a\xc9\x6f\x3b\x84\xd2\x9e\xbb\xbf\xc3\x1f\xce\x44\xf0\x31\x6f\x8f\xce\xbb\xf9\xdd\xfd\xfd\xd8\x34\x27\xc2\x8c\x35\xfb\xb2\x44\x09\xc4\xc3\x75\xf8\x1f\x29\x8a\x62\x08\xce\xda\xe1\x05\xe3\x99\x5b\x3c\x0f\xf7\x6d\x8b\x94\x73\xf4\x40\xfb\x95\x46\xa7\x73\xd1\xfe\x48\x66\xa3\xf5\x83\x85\x0f\x8a\x9d\x56\xf6\x3a\x41\xcf\xab\xfc\xb9\x79\x86\x7f\x4b\x9c\xf7\x2b\x1a\x20\xf2\xd9\x02\x63\xbd\x90\x79\xee\x03\x2f\xdd\xc5\xb3\x8a\x33\xf1\x30\xc5\x9f\xee\x36\xf4\x70\xba\xc0\x95\xe8\x26\x19\x96\x83\xc6\xd3\xd2\xd1\xea\x58\x07\xf4\x22\xa3\x30\x93\x2e\xbf\x34\x04\xd3\xe2\xb9\x9d\x53\xf8\xcc\xe7\x74\x3e\xf7\xf8\x9c\xf6\xb7\xd9\xea\x04\xe1\x3c\xa9\x46\x00\xf8\xf6\x38\x6d\x41\xe8\x1b\xa4\x7f\x0c\xc5\xd5\xcb\xce\x61\xba\x6b\xdd\x43\xd7\x48\x0b\xac\x80\x69\x2c\x3c\xc2\x01\x0e\xf7\xce\x33\xe3\xe1\xb7\x3e\xab\x65\xe2\xbf\x17\xc9\x0e\x1e\x4b\xa7\x8e\x13\x64\x39\x9b\x12\x16\xdb\xfd\xdf\xf3\x3c\xbd\x98\x05\xef\xf9\x68\x33\x4a\xd4\x51\x0b\x66\xd1\x87\xe4\x7e\x2b\xee\x2e\x6f\xee\x2b\x95\x03\x7a\x97\x92\x06\xe6\xa0\xde\xeb\x2a\x72\x35\xfb\x98\xe7\x49\xc5\x1b\x8b\x5b\xa7\x40\x45\x25\xdc\x6c\x50\xb9\xc7\xed\xd8\x36\x4c\xbd\x3c\x24\xce\x2a\xd9\x21\xce\xc9\x8e\xc6\xf3\xd9\xdd\xcd\xc1\x29\x76\x65\x91\x34\x4f\xe7\x37\xc1\xfc\x66\x72\x70\x36\x25\x42\x99\xcc\xf4\x1e\x1c\x88\xca\xbc\x01\xbc\xbd\xf5\x6f\x6f\x0e\x4e\x89\x22\xfe\xe8\x7e\x3a\xbe\x1d\xdd\x1e\x9c\x08\x96\x9f\xda\x5a\xc6\xf3\xe0\xfe\xe0\x70\xe2\x85\x1b\xc0\xbe\x4b\xed\x90\x9b\x49\x01\x58\xcb\x64\x70\xda\x40\x13\x38\x6d\xb2\x0c\x6d\x60\xd7\x19\x00\xe9\x8b\x82\x9a\x74\xc9\x04\x8c\x3b\x29\xc3\xd2\xbe\x9a\x60\x49\xef\xd5\x2e\xe2\x41\x90\x81\x37\xf6\xd3\x36\xae\xd1\x5e\x61\xae\xc4\x93\x4a\xbf\x5e\x2a\x00\x0c\xfd\x74\x34\x9b\xe2\xe9\x59\x6d\xf8\x18\x08\x38\xb5\x11\x30\xa0\xd5\x61\x5a\x2e\x97\xa0\x25\xfd\x17\x4f\x24\xb5\xf7\x06\xa4\x3a\x8c\x82\x94\xae\x05\xf1\xda\xa0\xae\x04\x03\x56\x1d\x46\xc1\x9a\x97\x30\xdb\xc8\x78\x1f\x46\xf3\x5b\xcf\xef\xc7\xab\xc3\x28\x78\xf9\x62\x14\xf0\x6a\x4b\xd1\x80\x57\x87\x31\x8c\x82\x5d\x7d\x7a\x91\x30\x07\xee\xad\x77\xfb\xd0\x8f\x59\x87\x11\x31\x37\x54\xd5\x40\x45\x19\xd5\x5e\xc1\xd2\xce\xe0\xe3\x55\x12\x5f\x51\xae\x06\x3f\x58\x95\x30\x8b\x2c\xf5\xf5\xbe\x45\x2d\xad\x62\x76\x30\x90\xbb\x2b\x01\xbc\x58\xe7\xe1\xae\xb2\x0c\x2f\xb6\xf9\x23\x2a\xe5\x17\xc0\xc9\x0b\x94\xe1\xca\x4d\x4f\x4d\xa8\x9a\x77\x04\x9b\x34\x64\x94\x09\x22\xa7\xf9\x5e\xda\x17\xa6\x23\x94\x50\xfa\x35\x4c\xe3\xe4\xe5\x62\xf0\x47\x94\x3c\xa2\x3a\x0e\x21\xf8\x13\xda\xa1\x81\x05\xfe\x92\xaf\xf2\x3a\xb7\xc0\x75\x19\xc3\xc4\x02\x83\xbb\x32\x8f\x23\xf0\x3d\xcc\xaa\x81\x05\x2a\x98\x55\x76\x85\xca\x78\xbd\x50\xee\x12\xaa\x3c\x45\xbc\x5b\x78\xce\x78\xea\x1d\xde\x20\xec\xe1\x7c\x42\x6e\xb3\xc9\x13\xee\xca\xe2\x4c\x14\x70\x83\x6c\x91\x93\x20\x13\xce\x6a\x9f\x04\xaa\x3c\xc7\x15\x4b\x00\x87\xfc\xb3\xc4\x15\xb2\xd2\x63\xe9\x22\xb5\x90\xda\xd7\x55\x14\xf3\xc0\x8c\x2d\x98\x77\x55\x41\x8e\x6d\x7e\x27\x79\x65\x1d\x94\x93\x77\x8a\x5d\x92\x50\x3e\x60\x2f\xdd\x68\x0e\x0e\xe1\xe7\x96\xb4\xcf\xcb\x91\xef\x72\xae\x6f\xe4\x93\x31\x94\x5f\xcf\xdb\xd7\x73\xfd\xb5\xef\x36\xaf\x09\xcb\x70\x70\xb8\x58\x74\x49\xa5\x9d\xad\x98\x94\x4b\x3f\x8b\x32\xdf\x94\xa8\xaa\x6c\xbc\x71\xe8\x21\xd0\x2c\xbc\x9e\x83\x40\x2a\xb6\x29\xe1\x8b\xa1\xd8\xcd\xdd\xed\xe8\x76\x2a\x16\xab\xe1\x2a\x41\x78\x55\xd0\x21\x00\x0d\x1a\x45\xaa\xe1\x0a\x6b\x0e\x65\xb5\xce\x96\x1e\x38\x9f\x16\x04\xda\x55\x51\xbc\x4a\x98\x6e\x0b\xd3\xc9\x8c\xf0\x33\x2a\x06\xdf\x7d\x7f\x30\xc1\xcf\x19\xff\x73\x2a\x7c\xc3\xad\x9d\x5c\x80\x54\xc0\xf8\x2e\x8d\x1f\xdb\xd3\x41\xab\x25\x81\x80\x23\xae\x24\xc6\x5e\x4e\xe5\xdb\xec\xc1\xa1\xb7\x54\x36\xd6\xcd\xcd\x90\xaa\x48\x28\xa0\x26\xd4\x6b\x9a\x6c\x91\xaf\xcf\x95\xed\xd1\x6f\x55\xca\xbf\xa5\x11\xff\x96\x6c\xf8\xb7\xe7\xca\xf6\x1b\x38\xbf\x81\xf3\x1b\x38\xbf\x81\x1b\x35\x70\xa3\x06\x6e\xd4\xc0\x8d\x1a\xb8\x71\x03\x37\x6e\xe0\xc6\x0d\xdc\xb8\x81\x0b\x1a\xb8\xa0\x81\x0b\x1a\xb8\xb6\x1f\x93\x06\x6e\xd2\xc0\x4d\x1a\xb8\x49\x03\x37\x6d\xe0\xa6\x0d\xdc\xb4\x81\x9b\x36\x70\xb3\x06\x6e\xd6\xc0\xcd\x1a\xb8\x59\x03\x37\x6f\xe0\xe6\x0d\xdc\xbc\x81\x9b\xb7\xe3\xec\xb6\x03\xed\xb6\x23\xed\xb6\x43\xed\xb6\xb0\xc2\xa4\x08\xb3\x22\x4c\x4b\x3b\x2f\x5e\x3b\x31\x5e\x3b\x33\x5e\x3b\x35\x9e\xbf\xd7\x2e\xd9\x44\x76\xc1\xcf\x00\xf9\x66\x27\x5f\x69\x44\x91\x3b\x93\xac\x91\xdd\x59\xe6\x4f\xf2\xe2\xb4\x3d\x55\x6d\x62\x53\xc8\x4d\x19\x47\xcb\x2a\x89\x23\x7c\xb0\xf0\x79\x11\x4e\x8b\x31\x86\xda\x7a\x96\xb3\xf5\xac\xad\x6f\x39\x5b\xdf\xda\x8e\x2c\xa7\x21\xda\x8d\xcc\xd0\xb4\xfb\x1b\x0e\x20\xb8\x9e\x8e\x66\xf7\x54\x84\x13\xa1\x30\x2f\x21\xe9\x2f\xb9\xb9\x40\x0b\x12\xa5\x51\x8d\x22\x8b\x1f\xdf\xf0\x82\xe9\x06\x9a\x37\xec\x05\x7f\xee\xac\xea\x8c\x1f\xf5\xf8\x2b\x7d\x2c\x3c\x71\xf4\x27\x1a\xb8\xa3\x81\xd3\x27\xfb\x7c\x57\xe3\x63\xf8\xc2\x3d\x70\x0e\x84\x35\x6c\x6f\xec\x01\xe3\x7b\x74\x22\xca\xf8\xa1\x2d\x82\x91\xc2\x77\xf0\x0b\x0e\x83\x30\x90\x13\x57\xe6\x93\x54\xa8\x46\xa8\x3e\x75\xf9\x79\x48\x5e\x77\x94\x02\x49\x6c\x14\x23\x89\x45\x17\xaa\xd8\xa6\x47\xd4\xd3\x59\x89\x2e\x30\x12\x5a\x14\x95\x79\x11\xe5\x4f\x19\xd7\x55\x48\x52\xca\x4e\x28\x00\x4d\xdc\xa8\xe7\x37\x67\x11\x2f\xa9\x29\x3f\x3c\xae\xb7\xc0\x4d\xa4\x9d\xc2\xeb\x55\xd5\x9f\x8a\x3a\x0a\xda\x96\x2a\x8e\x90\x38\x73\x92\x0c\x4d\x92\xb2\x8f\x27\x54\xbf\x27\xc2\x5f\xac\xe3\xb2\xaa\xed\x7c\x6d\xd7\x2f\x05\x12\x37\x0a\x5d\x13\x92\xba\xc8\xb0\xfb\x65\xbe\x2e\xdc\x95\x55\x5e\x5e\x14\x79\x4c\x85\xbe\x2a\x82\x2b\xa8\x2c\xbc\x09\xeb\xb4\x02\xc5\xb8\x5f\xb6\x23\x1f\xfc\x87\xe0\x61\xaa\x2a\x41\x8c\x45\x2c\x85\x4f\x37\x6e\x02\x91\x5f\x26\xca\x8d\x02\x96\x88\x63\x15\x74\x45\x9a\x34\x47\xd6\xd3\x08\x35\x1a\x95\x85\x3a\x9b\x43\xf4\x00\x7e\x10\x58\xfc\x3f\xd7\x71\x27\x43\x03\x6a\x59\x2b\x33\xe2\xa3\x64\xa7\x91\x51\x63\x74\xb1\x42\xeb\xbc\x94\xaf\x6e\x63\x3f\x98\x4c\x66\x0b\x36\xce\xe4\x20\x67\x2c\xd2\xc5\x60\xc0\xd9\xe6\x59\xf1\xbc\x68\x15\x3f\x22\x95\x24\xfc\xb4\x26\xc8\xa4\xdb\x9d\x20\xa3\x4b\x70\x26\x28\xc9\xbc\x2e\x25\x70\x57\xab\xe1\xba\x6e\x17\x2c\x3d\x11\xda\xcb\x9f\xdc\x7e\x57\x6c\x3c\x6d\xf1\xd4\xd8\xc2\x8e\x95\xcb\xee\x7f\x42\x03\xa4\x5b\xdf\xfd\x14\x7f\xa4\xfb\x4d\xe0\xba\x86\x89\xe9\x9b\x76\xe3\xcc\x77\x2d\x1e\x42\x00\xfa\x50\x01\xc8\x91\x89\x97\xde\xe6\xba\x7a\x6c\x27\x36\xa4\x67\x54\x3c\x03\xaa\xe2\xf0\x4d\x7b\xcd\x09\x77\x25\x5e\xfc\x36\xbe\x8d\x58\x5d\x0a\xe2\x53\x74\xda\x40\x41\x26\x0e\x82\x69\xe1\x07\x43\x5e\x8c\x8d\x5d\x57\xe1\x66\x04\x0d\x70\x00\xaa\xc3\x63\x6a\xfe\x15\xd3\x97\x30\xfd\x22\x69\x8d\x6b\x91\x8f\xe3\x07\x43\xe0\x02\xdb\x23\xf2\x6b\xa1\x56\x7c\xee\xd0\xfb\x4a\x14\xa3\xac\x3e\x7b\x37\x1a\x8d\x83\x60\x62\x81\x77\xfe\xed\xd8\x0f\xa6\x43\xab\x95\x56\x3f\xf7\x60\x26\x88\xad\x38\xab\x50\x0d\x0c\xc3\xe0\x4d\x1a\xa0\xc3\x11\x09\x85\xb2\x3a\x65\xd5\x9c\x41\xff\x43\xb6\x89\x78\x87\x96\x75\x81\xbe\x6c\xec\x41\x47\xa8\xb9\xf3\xa1\x24\x89\x8b\x2a\xae\x16\xca\x2d\xb0\xc7\xa6\xc2\xf7\x65\x7d\xcc\xcf\x6b\x5f\x30\x2f\x9e\x95\x35\xcd\xdf\x04\xad\xe9\x8a\x6b\xe2\x28\xdb\x4e\xf1\x0d\x26\x3c\x39\xc2\x1b\x75\xc9\x85\x02\x2f\x18\x05\x13\xed\x0c\xc2\xc7\x79\x4b\x4d\x4e\xde\x94\x2e\xdb\x94\x8b\xee\x5b\xb3\x2a\x56\x52\xce\x35\xed\x6c\x91\x0e\x32\xdc\xac\x0a\xc1\x32\xdc\xee\x05\x89\x58\xfb\x14\x38\xeb\xbc\x4c\x6d\x4c\x53\xcb\x3c\x91\x77\xb7\x2b\x2e\x68\xba\x6e\xd9\x02\x2d\x9e\x81\xb4\xc0\xdd\x69\x30\x54\x68\x3e\xd1\x59\xbb\xec\x3f\x3f\x50\x39\xfe\x1e\xf5\xb8\xef\x7b\x96\xef\x4f\x2c\x7f\xe4\x5b\xae\x33\x9e\x0f\xbb\xdb\xcb\x87\xe0\x34\x3c\x0b\xb9\x77\x32\xda\x38\x2b\x76\xb5\x8d\x07\xb2\xb0\x57\x75\x06\x56\xbb\xba\xce\x1b\x11\x3b\x57\x40\xb1\xbe\x00\xde\xbb\x53\xbb\xb0\x10\xcf\xb6\xce\x71\xf5\x8c\xe3\xca\x25\xf6\xa3\x6b\xff\xc6\x57\x6d\x27\x14\x11\xe5\x66\x93\x20\x51\xb5\xaa\x6d\x0e\x72\xa4\x4f\x9a\xed\x39\x65\xac\x28\x2e\x07\xa0\xa2\x09\x0f\x04\x4d\x1e\x3e\x77\x15\x96\x8e\x97\x92\x2d\x77\x1a\x3e\xce\x7c\xc0\x1a\x08\x1f\xee\xa3\xc0\xfd\xfa\x82\xfc\x6e\x4e\x4c\x22\x60\x86\x92\x65\x9d\xe7\xc9\x2a\x7f\x96\x94\xeb\x2d\x8b\x4f\xfb\x21\x41\x62\x2e\x55\x18\x09\xb5\xf5\x2a\xec\x55\xdb\x7b\x61\x3b\xde\x06\xb7\xd3\xdb\x9b\x85\x6c\x0a\x61\x2a\x6c\x90\xd2\x62\x56\xf5\xe1\xfa\xe0\x60\x5a\xb6\x1c\xb9\x7b\xd5\xfe\x42\x30\x1d\x58\xe2\xa3\x4a\xdc\xa0\xab\xca\x8e\xf2\xb0\xb2\x19\x8b\xde\xca\x96\xf7\x66\x3a\x32\xa6\xc6\x77\x87\x75\x9e\xd7\x4a\x33\xd6\xeb\xf5\x42\x9a\x57\xb2\xf5\x64\x09\x64\xb7\xc0\x8b\x21\xd4\xc5\xb4\x8d\xd6\xdf\x00\x41\x67\x83\xbe\xa0\x4a\x69\x0e\xa5\xdc\x61\xe8\x76\x20\xdb\x88\x2e\x67\xe9\xdc\xe8\x93\xc3\x99\x90\x4b\xa7\x89\x51\x68\x66\x2c\xdd\xd3\x11\xf7\x40\x35\xa3\xe4\x1a\x56\x39\x98\xaa\x7e\xc2\xd3\x28\xc9\x16\x75\x1b\x8f\x83\xf3\xd3\xdf\x2a\xbc\x3a\xea\xb8\x30\x5c\xa0\xc5\x83\x8e\x99\x29\xc9\xca\x4b\x7e\xbe\xe1\x73\x54\x33\x83\xd3\xce\x2a\x5e\x91\x34\xa5\x32\x5d\x88\x13\xc4\xa9\x24\xa5\x00\x2d\xdf\x16\x86\xa1\xce\xee\x0b\xc4\x22\xd0\xed\xb5\x28\x42\x5d\x2a\x8c\xc9\x29\xad\x4a\x2f\xc0\x5f\x01\x52\x56\x36\x2f\x22\x76\x00\x9a\x75\x12\xa3\x3b\xd4\x22\x75\x6a\xb0\x2a\x3b\xc0\xb2\x8e\xc3\x04\x39\x64\x9e\xc5\x5b\xf9\xef\xac\xdf\xb1\x8b\x90\xf5\xbb\xe6\x6e\xf1\x8c\x2b\xc3\x73\xd6\xdc\x8b\x9f\x0f\xef\x30\x31\xd8\xd0\xd1\xb4\x93\xb8\xaa\x4d\x6a\x7f\x2a\xfb\xe4\xa3\x4b\x04\xab\x7a\x41\x62\x88\xd9\x18\x7e\xb0\xa2\xcc\x16\x82\x33\x0e\x41\x60\x2c\x87\x09\x15\xfe\x6a\x13\xab\x72\x76\x2f\x35\xce\x55\x14\x45\x5d\x7c\x04\x9e\x26\x75\x42\x4c\x95\x5d\x24\xb0\xaa\x6d\x42\x9b\xf7\x9d\x46\x36\x51\x14\x75\xb5\xd4\x40\xe7\xd0\x1a\x7f\x0e\x0e\x7a\x2e\x60\x16\x29\x04\xca\x78\xeb\x6e\x07\x44\x23\xcb\x14\x49\x6b\xab\x30\x93\xad\xdc\x64\xb3\xb4\x99\xae\x89\x3a\xbc\xc3\x70\xd6\x3b\x2a\x75\x52\x26\xad\x12\x4c\x53\xc9\x23\x3b\x44\x49\xb2\x78\x44\x78\x21\xc1\x84\xed\xe1\x34\x8e\xa2\x04\xf1\x6b\x2d\xbe\xba\x46\xa8\x86\x71\xc2\xad\x31\x3b\x7a\x73\xeb\x8e\xe6\xfe\x8d\x41\x79\xc9\x5e\xf0\xa9\x9a\x70\x23\x33\xc5\xfa\x4b\xb8\x77\x37\xa2\x79\x5e\xb5\xac\xfd\x61\x36\x6a\x02\x15\x27\xed\x10\x77\x10\xe1\xc0\xb9\x2c\x36\x70\x5b\x4c\xd4\x32\xb0\xb5\x68\x21\x55\xd9\xb0\x2c\xf3\xa7\x66\xed\x37\xb2\x5b\x7a\xca\xf6\x58\x73\x52\x49\x16\x0c\xc3\xbc\x8c\xe2\x3c\x03\xf4\x60\xdc\x6b\x66\xb8\x9a\x1d\x4f\xe7\xd2\xe3\x8b\x49\xc5\x49\x84\x54\x71\xb6\x91\x4f\x58\x22\x0e\x92\x6e\xb8\xe2\xb5\x43\xd1\xb2\xa9\x28\x4d\x47\x36\x41\x78\x70\x9e\x97\xb4\x23\x3a\x1b\xdf\x6f\x17\x28\xb3\xf5\x53\x61\x86\x24\xf1\xa5\x7a\x3c\x1b\x0c\x0a\x26\xf7\xf3\xfb\xbb\x85\xfd\x84\x56\x9f\xe2\x1a\x33\xf6\xbb\x34\xb3\x57\x25\x82\x9f\xec\x38\xc3\x5c\xc1\x05\x7c\xcc\xe3\x68\x61\xa7\xf9\xdf\x7b\x5e\x77\xbf\xc9\x0b\x18\xc6\xf5\xcb\x85\xb7\x20\xf7\x05\x26\x3c\x49\x12\xe0\xf8\x15\x40\xb0\x42\x07\x6e\xbb\xa3\xd0\x09\x5f\x6b\x65\xd3\x6b\xba\xa8\x89\x17\x80\x41\xae\xde\xd8\x02\x39\xeb\x38\xa9\x1b\x6d\xfd\x58\x15\x05\x0b\xf6\x4a\x6c\x9d\x12\x46\x94\xa0\xed\xd2\xa1\x2e\x4e\xbc\xb3\x12\x3b\x14\x62\xac\x8c\x09\xed\x53\x09\x8b\x83\x6e\xa2\x24\xd9\xfc\x4a\x2d\x27\x9b\xa7\x51\x54\xe2\x0f\x7e\xa7\x2a\x1c\xdd\x66\x14\x7a\xd7\x8f\xc8\x9c\x26\x08\x96\x17\xab\xbc\xde\x2a\xe6\xa1\x02\x7a\xb0\x1d\x8b\xb4\x6f\xa2\xd0\xbe\xc0\x75\x0f\x09\xda\xa0\x2c\x6a\x44\x86\x6c\xf0\x19\x1d\x49\x73\xbb\x48\x60\x88\xb6\x79\x12\xa1\xb2\xd1\xf8\xce\x24\xcb\x69\x4a\x24\xaa\x8b\xac\xde\xd2\x43\xe2\x6c\x94\x0d\xf7\x6d\xf3\x34\xc8\xd6\x94\xf6\x31\x46\x4f\x66\x69\xbd\xac\x8d\x97\x85\x2b\x54\x5a\xd3\x8b\x14\x38\x51\xfc\x18\x0b\x12\x6d\xe5\x54\x44\x01\xfe\x74\x31\x2d\xcd\x40\x1e\xa9\x03\x53\xf4\x6c\x63\x60\x5d\x8e\x94\xa3\x80\x7d\x64\x69\x4e\x05\x4a\xc6\xb6\xd3\x1d\x74\xb4\x12\x62\xad\xa0\x18\x97\x9f\x54\x08\x14\xaa\xe9\xff\x29\x43\x21\xea\x75\x88\x18\x55\x21\x6d\x47\x31\xb4\xf6\xd9\x26\xbf\x21\x99\x6a\xf8\xc7\xf1\x29\x94\xe0\xe4\xb9\x54\x9c\x27\x16\xf2\xf6\x39\x3e\xb5\x65\x8c\xd6\xfb\xa3\x96\xee\x7a\x71\x32\x5d\xc2\x8a\x20\x54\x87\x98\x79\xc4\x19\x61\x1c\x84\xaf\x76\x55\x24\x71\xb7\xa6\x4b\xe2\x08\xe8\xe4\xf5\x62\x01\x50\x11\x59\x08\xa6\xfb\xd3\xc9\x6c\x34\x9f\xd3\x23\x43\x07\xe2\x67\x8d\xf6\xe6\xd0\xda\x12\x80\xed\xc8\x12\x7f\x8d\xc5\x5f\xad\xcf\x81\xc8\x2c\x18\x99\x2b\xdd\xbc\x83\x60\xa8\xb7\x22\xbe\x3a\x32\x78\x0f\x48\xd0\xdd\x1c\xec\xfd\xe4\xfe\xf6\xfe\xfe\x20\x63\x13\x3d\xd5\x5c\xf9\x1d\x66\xdf\xd5\xd5\x22\xc9\xab\x74\x78\x60\x60\xdb\x85\x3b\x88\x01\x5c\x52\x09\x9a\x01\xc0\x2a\xde\xec\xb9\xf4\x4d\x12\x75\x88\xeb\x00\x33\x3a\x07\xc5\xc2\xc3\x8c\x9a\x1a\x7f\xc8\x23\x29\x76\x8e\x2a\xea\x65\xd5\xa3\x5e\x1a\x14\x7b\xfd\xe0\xd4\xce\xd6\x8e\x23\xb8\xd9\x3f\x12\x7f\x3a\x33\x57\x14\xcb\xea\xe4\x99\xdc\x3a\xd9\x58\x85\x8f\xf6\x4c\xb9\x3d\x76\xe0\x66\xfa\x4d\x7a\xf5\x61\xcc\xfd\xe8\xfd\xa1\x8e\xe8\xc2\xd5\x30\x34\xea\xd1\xa7\x38\xda\xa0\x5a\xbf\xee\xa2\xb2\xcc\x4b\x3b\xdb\xa5\x2b\x54\x0a\x27\xf3\x5c\xbd\xcd\xce\x85\xdb\xac\xcf\xcc\xb7\x88\xcd\x02\xd9\x0a\x22\x9d\x0d\xde\x1f\x9c\x34\x8e\x96\x74\xad\x73\x17\xa6\xa9\x50\x9e\x5d\x46\x75\xaf\x12\xdd\xd8\x69\x3b\x72\x22\xb4\x29\x11\xaa\xf6\x8a\x64\x5e\x15\xdc\x1b\xe4\x17\xac\x24\xbb\x3c\x37\x1a\xb7\x7c\x60\x60\x69\x70\xcb\x6d\xcf\xd7\x6f\x33\x1a\xc1\x8c\x60\x9c\xbc\xd8\x4f\x08\xd6\x5b\x54\x02\x27\x82\x2f\xaa\x93\x91\x70\x4a\xfa\xb2\x48\xd5\xf3\x02\xcb\x1b\x05\x96\x17\x4c\x2c\xd7\x19\x4d\x86\x86\x41\xe8\x62\x54\x3b\x10\xc8\xf4\xc0\x61\xed\xb2\x23\xf8\x52\x81\xc6\x2e\x49\x9d\x77\xbe\xea\x26\xce\x84\xfe\x4d\xdf\x37\x45\x81\x68\xc2\xd2\x72\x10\xab\x5d\xf2\xc9\x86\xc4\x77\xa6\x92\x55\xc9\x74\x95\x86\xf9\x2e\xab\xcb\x18\x55\x4b\x45\x04\x61\x7c\x2f\x52\x32\x7a\x15\xd4\x65\x27\x1d\x8c\x12\xf9\xc3\xd3\x50\xc3\x8f\x18\x73\xb5\x64\x27\x88\x28\xfb\xc5\xf7\xd3\xb9\x2c\x77\x12\x99\x9b\x28\x8a\x74\x5b\x5d\x6e\xbc\x27\xbf\x64\x67\xd5\x66\xb9\xde\x25\xc9\x92\x6e\x94\x0a\x40\x7e\x6c\xa1\x65\xaf\x76\x7c\x34\xb3\xbc\x19\x9e\xae\xb1\xe5\x3a\xc1\x7c\xd8\x59\xeb\x31\xe8\x03\x15\xe5\x3b\x77\x1f\x3f\x7e\x5c\xd2\xef\x56\x14\x3f\x4a\xbf\xa1\xf8\xcb\xc4\xb3\x10\xb5\x70\xd7\x98\x18\xde\xb6\x02\x7e\xd5\x5c\x8e\xce\xe9\x4f\x30\x5d\xe5\x4b\xf2\xbd\x57\x7d\x41\xff\x73\x9d\xe9\x6c\xa8\x97\x04\x35\xbe\x15\x6b\xea\x55\xc1\xbf\x70\x3e\x1e\xca\xda\x37\x13\x12\xe2\x8b\x52\x97\xf4\x3e\x8c\x97\x97\x8a\x50\x1a\x5c\x77\x3a\x34\xaf\x2f\x1d\xd4\xf3\x86\x9d\x37\x7d\x23\x74\x4f\xeb\x9c\x0a\x25\x28\xac\xd1\x91\xd6\x79\x93\x93\x90\x90\x5e\x9e\xd6\x89\xf1\x6b\xfa\x30\x1e\x76\x6d\x2f\xf9\xce\xe3\xba\x94\x1e\x36\x90\xf8\x44\x2d\x44\x01\x79\x43\x5e\x85\xbb\x21\x71\xcc\xf1\xe4\x1a\xca\x3c\x44\x55\x45\x8c\xa5\x8d\x26\x10\x81\xfb\x9e\x8a\xd9\xf1\x17\x66\x52\x1a\xb8\xad\x74\x68\xa4\x9b\xd8\xf9\xca\xf5\xc9\xf6\x24\x9b\xea\x31\xb9\xc5\xf9\xc2\xad\x46\x95\x51\xea\x94\x99\xeb\xb0\xe6\xf3\x85\x4a\xf1\xd5\xcd\xcf\x98\x65\xa1\x8f\x09\xca\x36\xf5\x56\x13\x17\x50\xf7\x4b\x01\x4e\x12\x2b\x04\xb2\x58\x61\xa1\xba\x49\x4a\x25\x05\x06\x6a\xd2\x8d\x9f\xcf\x66\x97\x83\x27\xc5\x4b\x57\x5f\x53\x0c\xd4\x5b\x66\xb1\xa7\xbd\x88\x14\xc3\x3d\xbf\xcf\x4b\x85\x01\xd9\xf9\x7a\x5d\x21\x3c\x4b\xc2\x5d\x00\x2d\xa3\xb8\xc2\x38\xa3\x65\x51\xa2\xc7\x38\xdf\x55\x56\xfb\x0e\x65\x9d\xaf\x9a\x62\x19\x7a\xae\x0d\x45\xf0\xe3\xc6\x9f\x70\x2e\x73\x5f\xb2\xe4\x96\xcf\xb0\xe7\x79\xfa\x09\x60\x6c\x21\x57\x67\x77\xb6\x53\x03\x90\x5a\xdb\x59\xbc\x7d\x69\x14\xd7\x9e\xda\x3a\x6e\xb2\xd9\xdd\x3c\x0d\x42\x6e\x5f\x27\x02\xe1\x6d\x33\xf5\x54\x93\x73\xd2\x74\x4a\xb5\x70\x61\xd4\x64\x32\x39\xb1\x63\x3d\x3d\xd2\x23\x00\x98\x10\xf5\x2d\x15\xd9\xce\x57\x34\x25\x13\x84\x69\xdd\x6d\x13\x89\xe4\xae\x4c\xce\x06\x8e\x73\x1e\xa7\x70\x83\xaa\x73\xfc\xa6\x29\xe0\x14\xd9\x66\x30\x04\x59\x6e\x97\xa8\x40\xb0\x06\x75\x5e\x00\xe6\x05\xdf\xd9\xb9\x23\xb8\x19\xfc\x5b\x50\xeb\x82\xe4\x9e\x0a\x96\x04\xf8\x94\x6a\xe4\x89\xee\xc6\xbe\xce\xcb\x27\x58\x46\xfd\xa3\xc3\x68\x9e\x79\xda\x8e\xe3\xee\x1b\x9d\x3e\xd4\x47\x87\x46\xa9\xa0\x67\x74\x24\xea\x4a\x99\x68\xc5\x3d\x41\x38\x29\x35\x1e\x9a\x95\xa0\x1c\x13\xa8\x5b\x6b\x98\x59\xf1\x0c\xf0\x15\x12\xcc\x78\x78\x85\xae\xd3\x7e\x95\xc0\xf0\x93\xae\x0d\x51\x34\x58\x4a\x75\xeb\x3c\xaf\xc5\xea\x46\xbc\xba\x91\x52\x9d\xcc\x86\x98\xeb\x52\x91\x97\x0e\xd3\x8a\xf8\x02\x3f\xa3\x0b\x43\x20\x84\x6a\xc9\x48\x6e\x90\xdb\xdc\x98\x5b\x08\xe6\x09\xd2\x29\x83\x51\x47\x94\x13\x3c\xe3\xdb\xc8\x4c\xf0\x84\xc3\x95\x7a\xfe\x4a\xa2\x66\xed\xed\x4d\x1e\xbd\xec\x7f\x27\x71\x26\x82\xe0\x8a\x5f\xd4\x6c\x0a\x8c\x3b\x57\xe7\xbb\x70\x4b\xb4\xcf\x40\x3b\xee\x5b\x67\x96\x83\x43\x6a\xed\xaa\x1b\xa5\x45\xfd\x62\x1a\x06\x32\xb7\xc4\x6e\xa8\x59\x88\x4e\x80\x52\x39\x7a\x04\x23\xd0\xe3\xf1\x58\x2c\xe0\x50\xb3\xa3\x65\x9c\xc5\x0d\x0d\x9f\xcf\xe7\x87\x3a\x72\x88\x09\x92\xc1\x31\x2a\xf2\xc2\x75\xa4\x6a\xce\x04\x96\xe1\xda\x9b\xdf\xcc\xef\xcd\x37\x68\xf6\x12\xa3\x67\xc2\xca\x63\x15\x18\x0a\x3b\xe8\x19\xa6\x45\x82\x96\x30\xa9\x97\xad\xe8\x11\xe0\xbb\x94\x99\x97\x1a\x93\x38\x1e\xfa\x1d\xb0\x79\x2d\xf0\xa1\x44\x32\xa1\xaa\x30\x3b\x6e\x90\x3d\xa7\xa7\x06\xda\xcd\x09\x1c\xbd\x9e\xb2\xbb\xe1\xa9\xb7\x58\x8d\x15\x86\x10\x76\x48\x55\x31\x3f\x6d\x10\xc3\x8a\x6c\xb6\xcf\x34\xc4\x0d\x89\x23\x01\x79\x34\x23\xa6\x13\x3a\x60\x9a\xea\x28\x3a\xb1\xb0\x46\xc0\x39\x8a\x30\x0c\x8d\xca\xfd\x5f\xe2\xfe\xff\x6e\x3e\xbf\x19\x3d\x3c\xe8\xe4\x0e\x3d\xa2\xcc\x29\xf3\xa7\xa5\x74\x8f\xd3\x7d\x08\xdd\x9b\xfb\xbb\xb9\x5e\x3c\x8f\xa2\x13\x4a\xcf\x1f\xae\x1f\xee\xbc\x03\x5e\xd6\xab\xfc\x59\x08\xa7\xa1\x68\x41\x5a\x01\x28\x39\x7d\xf4\xf9\x9f\xb9\x33\xf7\xe1\x41\xbf\xe1\xbc\xbb\x0f\xee\x83\x87\x87\xc3\x2e\x71\xd2\x6a\x43\x85\x3a\x49\x2c\xdf\x10\xa7\xf8\x23\x4a\xa8\x8e\x87\x0e\x61\x2b\x65\x42\x75\x8f\x0d\x15\x9a\x4f\xc4\x10\x59\x4a\xa5\xa2\x39\x88\xe6\x8f\x21\xeb\x7c\xe4\x82\x82\xc0\x68\xc4\xd4\xbe\x9d\x95\x00\x08\x1c\x72\xdc\x83\x38\xdd\x28\xea\x09\xe2\x0f\xd3\xfe\xd7\xb1\x5f\x54\x28\xcd\xc2\x51\xf4\x2c\x63\xc4\xd7\x7b\x6f\x68\x46\x1d\xa7\x68\xaf\x44\xa3\xa2\x3f\x89\x10\x3f\xae\x61\x12\x87\xfa\x19\xdf\xe5\xff\x40\x02\x69\xe9\xb5\xa4\xa8\xaa\xe0\x06\x75\x5a\x64\x29\xf1\xb0\x0e\xb2\xf3\x50\x8b\x8d\x08\xa6\x65\xc9\x7b\x99\xc2\x44\x81\xe7\x94\x27\x45\x51\xbc\x4b\x01\xb3\x1f\x92\xe4\x4f\xb2\xa1\x88\x30\x7a\x8a\xdd\x25\x33\x4f\x55\xd4\x1a\x20\xdf\xd5\x55\x1c\x21\x8a\xba\x2f\xbc\x8d\x68\x5b\x4f\x80\xa9\x9f\x9d\xfb\x5e\x8c\x6b\x33\x33\x6c\x15\x16\xd6\xa7\x3d\xbc\xc8\x85\x41\xb3\x17\xc1\x2f\xa8\xc5\x0a\x7f\xa3\x8c\x85\x6c\xa9\x4d\xfc\xf7\x44\xff\x7f\xea\x53\xaf\x38\x6b\x19\x04\x27\x1d\x51\xc0\xa8\xcb\x55\x67\xeb\xdb\xb5\x2b\x0f\x3e\xd7\xe7\x90\xd1\x15\x5c\x66\x7c\xdf\x15\x3c\xbd\xba\x9a\xd7\x2c\x07\xae\x0f\xa0\x3e\xda\xf8\x98\x65\xca\x07\xe0\xac\x60\xb4\x91\xd6\xb5\xab\x88\xdf\xe9\xc2\x91\xdd\xf4\x47\xca\x69\x33\xe9\x71\xf4\xc1\x8b\x03\xf7\x7e\x46\xd7\x7b\x9d\x2f\xa3\x5c\xb0\x57\xe5\x8f\x34\x32\x36\xc2\x1f\xc5\xfa\x67\x64\x34\x8c\xe0\xc8\xa6\x9a\xf1\x48\x40\x18\x03\x69\x45\xb6\x15\x16\x82\x2d\x53\xc4\x23\x30\x73\x95\x8d\xd4\x94\x09\xfe\x88\xec\x91\xe0\xbc\x32\x9d\xdf\x8e\xee\x1e\x4c\xed\x14\x54\x04\x4d\x00\x36\xbd\x26\xa0\x3d\x61\xf1\x09\x0c\x73\xd0\xc9\xa6\x87\x5e\x18\x85\x51\x7b\xe0\x73\x3b\xaf\x85\x62\xcf\xa1\xd9\xd2\x8f\x4d\x3a\x80\xd3\x1b\x29\x3b\x1f\x0a\x96\x4d\x54\x1c\x38\x0a\x54\xc3\x34\x4f\x08\x1e\x37\x1a\x41\x2f\x9c\x2f\xc4\xb3\x60\x62\x32\x8b\x7f\x07\x57\xd1\x1c\x41\xd5\x31\x4c\x0e\x51\x49\x8c\x41\x76\x89\xf3\xb7\x5d\x1c\x7e\x12\xed\x31\xc7\xc1\x7b\x45\x1d\x6b\x34\xac\x92\xcb\x6a\xde\x73\x4c\x57\x22\xab\x6c\x35\x0b\x79\xfd\xfc\xa3\x2e\x93\xf8\x64\xd1\x95\xa0\xa7\xd9\x1d\x69\x0d\x03\xf1\xde\xe0\x13\xcd\xf5\xf4\xc1\x74\x32\x9d\xeb\x13\x68\x2b\x86\x46\xa4\x5d\x73\xd3\x54\x73\x48\xa0\x2a\x31\x5b\xd9\xa8\xd1\xda\x40\x51\xd6\xd7\x79\x71\x82\xad\x5a\xe7\xcc\xea\x62\x60\xc9\x6f\xb7\x25\x3d\x0b\x2d\x92\x23\x6d\xee\xb2\xda\xa5\x29\x2c\x5f\xf6\x06\xa3\x3e\xcc\x06\xb1\xb6\xab\xdc\x90\xf0\x58\xc5\x04\x9c\x27\x6a\x9d\x21\x9c\x81\x8a\x6a\xdc\x54\x84\x5d\x85\x45\xb9\xb0\x0e\x44\xcd\x66\xcc\x88\x99\x8c\xa4\xa3\x90\x1a\xae\x91\x9e\x0b\x4f\x4b\xdf\x15\x82\x40\xe0\xdf\x4d\x50\x88\x80\xfc\x6e\xe3\x58\x04\xef\x0f\xdb\x80\x86\xef\x12\x9d\xb8\x04\x85\xbf\x26\x87\x93\xe1\x55\xcd\x7b\x7b\x82\xb4\x41\xc2\x84\x18\x12\x9a\x7d\x68\x23\xd0\xd7\x0c\xcf\xa9\xfe\x1d\x76\x78\x95\xb5\x6a\x76\xee\xba\xd0\x7a\x02\x08\xf2\x1c\xb3\xd5\x73\xc0\xa2\x15\xbb\x4a\x9c\xbb\x85\x18\x60\xce\x14\x1e\x5b\xae\x53\xe0\x65\xa7\x04\xe3\xc8\xb8\x78\x9b\xa1\x57\x4d\x12\xe4\xc6\x75\x04\xb4\xf3\xa6\xfe\xdd\xd8\x50\xb5\xc1\x0a\x75\xec\x07\xc1\x64\xca\x46\x8f\x28\x7f\x15\xde\x5c\x8c\x26\xdd\x9a\x83\xb5\xe0\xd4\xc8\x7e\x49\x9c\x16\x18\x82\x63\x01\x15\x65\x8d\x32\x70\xa9\x97\xc8\x9b\xad\x2a\x4f\x0b\xc1\xc8\x83\xa4\xf4\xb6\xdc\x60\x66\xab\x7a\xb6\x2b\xa4\xdb\xa3\xfe\x29\x7d\x58\xb9\x9f\xb4\xe0\x4b\xac\xb3\x3e\xec\xa4\x11\x03\x0b\x89\x6e\x5c\xa2\x84\xe4\xee\xc6\xbf\x09\x34\x32\xf6\xc6\x2e\x8b\x96\x2a\x8d\x43\xb7\xe8\x3f\x76\xa4\x73\x80\x5a\x0c\xf4\x79\x58\x8c\x55\x87\x8a\x89\xeb\xf6\x39\xcc\xbc\xae\x3a\x12\x7e\xa3\xbb\xf7\x7a\xd0\x1a\x8f\x05\xbf\x79\x7d\xaf\x8e\x0d\x85\x1a\x08\xd7\xef\x0f\xef\xf3\x2a\x5c\xa3\xe3\xd5\xd3\x36\x2f\xe9\xc2\x04\x4d\xe8\x08\x5f\x3a\xb4\x97\x34\xec\x62\x97\xd3\xd6\x54\x67\x3b\x69\x09\x20\x84\x86\xe9\x7a\x35\x12\xb8\x74\xe8\xec\x2a\x54\xda\x3c\x5c\x34\xbf\x25\xdd\x4f\xe6\xd3\xb1\x44\xb6\x45\x30\xd0\x06\xd6\xf5\xe7\x82\xb8\x6e\x6e\x0a\xf5\xae\xf3\x89\x94\x53\x2f\x96\x0c\x5b\xd5\x04\xa2\x1a\x29\xbe\x5e\x0a\x1c\x66\xde\x54\xd6\x8c\x4b\x1a\x0c\xb0\x82\xc1\x72\x1e\x45\x43\x83\x54\x87\x58\xbe\xd0\x89\x6f\xec\x34\xeb\xed\x2e\x5d\x69\x82\xbb\x05\x67\x92\xda\xde\x06\x82\x09\x56\x20\xf8\x6f\xb4\x76\xbd\xc2\x18\x88\x76\xbf\x74\xa6\x4d\xd5\x4a\x5c\x37\x73\x07\xa4\x60\x11\x54\x42\x25\x86\x21\x0f\xea\x1e\xf8\x46\x5e\x5c\x6e\x83\xe4\x89\x10\x28\x88\x81\x93\xe6\x59\xbd\x6d\xc7\xb6\x53\x57\x4f\x0c\xb3\xa5\x92\x11\x34\x88\xc1\xc5\x20\xe1\xe6\xa4\x02\x8a\xe5\x9f\xd1\x95\x8b\x48\xf6\x6a\x40\xeb\xb3\x89\xb5\x06\x74\xf4\x2b\x54\x17\xac\x6a\xe5\xec\x1e\xb6\x63\x89\x1b\x62\x4d\x99\x9a\xbd\xf5\x70\x15\x2c\xa7\x8d\x1d\x87\xdc\xdf\xc9\x59\x43\x9b\x9a\xc4\xe8\x87\xb4\x20\x48\xd5\xa2\xa4\x6b\x62\xe6\xa3\xe8\x15\x9f\x29\xd5\x39\x7f\x21\x7e\xd7\x6f\x34\xba\xc1\xee\xa9\x1d\x02\x24\x5a\x75\x3b\x69\xb3\xe2\x59\xbd\x02\xd8\x93\x93\xf0\x11\x4c\x4c\x3e\xa1\x58\x02\x4e\xba\xbc\x60\x54\xf6\xd8\x40\x3c\x84\xe0\xda\x6d\x05\x3e\xc6\xc8\xdd\x57\x9c\xf9\xdc\x8c\x5d\x0c\x7b\xf8\x90\x67\xf5\x35\x6d\xbe\x28\xed\x63\x17\x72\xc3\x1d\x5d\xf1\x31\xe3\x82\x1d\xfa\x38\xcd\xf3\x7a\x8b\xf7\x16\xcc\xea\x18\x26\x31\xac\x10\xf3\xc3\xc9\xab\x67\x15\x66\x53\xc2\x17\x92\x41\x4a\x74\x24\x3d\x1a\x1e\x40\xe1\x79\x7c\xe3\x8d\xfa\x7e\x8c\x3f\x3d\x1a\x06\x95\x4d\x33\xc8\x11\x9a\xc2\xc2\xca\x4e\xe2\xe2\xa2\x05\xed\x54\x54\xd0\xc7\xe6\x72\xbd\xd7\x7c\xbd\x06\xc9\x79\xe2\xe1\x41\xf5\x48\x1a\xb9\x6e\x4a\x7d\x92\xec\x38\xb3\xf3\x5d\x2d\x8e\x25\x5f\xc9\x78\x59\x82\x78\x0f\xb3\x38\xa5\x16\xf1\x19\x4c\xd1\x45\xcd\x12\x16\x5c\xf3\xc7\x8b\x16\x20\xda\xb1\x5d\xea\x04\x95\xf0\x38\xae\x11\xf3\x7a\xa4\xcc\x98\xb7\x10\xcc\x0c\x83\x99\x45\xff\xe7\x3a\x63\x6f\x28\x94\xaa\xe3\x14\xf7\x66\xbd\xcb\x88\x9d\xe7\x05\x6e\xad\xf0\x7a\x1d\x27\x89\x9d\xe6\x11\xba\x60\x0a\xef\xaa\x19\xfa\xa3\x2d\xd6\x01\xa5\x96\xeb\xaf\xf5\x1e\xe8\x30\xc6\xf6\xea\x60\xa6\x76\xe3\x79\x3f\xde\x68\x19\x4a\x6e\xb1\xfc\xce\xd0\x5c\x19\xc0\xdc\x56\x19\x46\x6f\xa8\xb8\x48\xe8\xf2\x68\x2e\xd3\x02\x1b\xa3\xe5\x41\xe8\x14\x81\x06\x23\x26\x03\x25\x9a\xca\x26\xd4\x91\x5e\x0d\x88\x15\x9f\x11\x42\x48\x26\x2a\x0b\xee\xaa\xa4\x96\x6e\x4b\x31\x70\xad\x88\x59\x63\x7e\x55\xe7\x57\xa2\xa8\x90\xe3\xb0\x4e\x82\x59\x30\x35\xa0\xb1\xc4\x47\xdb\x91\xf4\xb3\x30\x05\xf6\xe3\xdd\x51\x85\x08\xcd\x30\x04\x1d\xcd\xde\x8e\xf6\x4a\x96\x09\xa9\xaa\xee\x5c\x08\x3e\xbf\xd1\x52\xd8\x2b\xc2\xe0\x12\xc9\xba\x1a\x49\xa0\xb5\x43\x3f\x96\x6a\x41\x64\x23\x5d\xf1\xd8\xee\x0c\x4d\x31\x1b\x2a\x84\xb9\x4d\xff\xb1\x50\xcd\x50\x79\xcc\x0e\x6f\xd8\xe5\xa7\xdf\xdd\x1b\x39\xca\x19\x11\xb3\x75\x61\x0f\x86\xbf\x20\x26\xd5\x87\x44\x0b\x4b\xa3\xf9\x51\x74\xc5\x11\x75\xcd\x31\xf9\x94\x3d\x34\x7e\x4f\x1b\xdf\xab\x95\x27\x95\x19\x63\xd8\x09\x91\x6d\xe4\xdb\x91\x1e\xa4\xc0\x53\x45\xcb\xd4\x46\x5b\xc0\x0e\xb6\x63\xc9\xc7\xcd\x94\x3c\x88\x84\x2c\x60\x4f\xf6\xaa\x2e\x40\xbd\xee\x6b\x23\xed\xcd\xc7\x16\xff\xcf\x75\x46\x43\x4d\xd2\x08\x9d\xaa\x86\xcd\x64\x8d\xfd\xd9\x2a\x84\xd2\x45\x2c\x85\x71\xd2\xb8\x97\x2a\x81\xb0\x00\xb3\x8d\xa2\xd6\x2e\x44\x0e\x86\x0f\x4f\x7c\x7e\xea\xce\x5d\x6a\x62\x1a\x21\x54\x67\xa0\x29\xb6\x01\x51\x8b\x8a\x91\x05\x89\xd0\x7c\x55\x67\x76\xda\x3a\xa3\x8b\x23\xad\x40\x28\xb1\xc2\x74\xa1\xd3\x68\x7e\x33\xba\x9b\x0a\x42\x27\x17\xd0\xc0\x2a\x12\x9a\x2b\x29\x80\x8b\xc9\xef\x5f\xe2\xe3\x18\xfb\x39\xd2\xf1\x38\x61\x76\xca\xe8\xb1\x56\x29\xb7\x29\xbf\x3d\x21\xd8\xf0\xea\xc2\x4f\xb1\x19\x92\x17\xf0\xc1\xa1\x66\x14\xe2\xc0\xd1\xee\x76\x67\xb8\x12\x7d\x9b\xc8\xe8\x53\x14\x95\xc5\xed\x51\x56\xb5\x9a\xd0\x49\x53\xd1\xd0\xaa\xeb\x8c\x05\x34\xe2\x27\x0d\xc0\xcf\xac\xf6\x05\x30\xe0\x72\x17\x6a\x44\x4f\xb2\x0a\xf1\x88\x2e\xa9\x3b\x79\x57\xa0\x3e\xe2\x10\x7d\xc3\xe0\x89\x3b\xf0\x29\x80\x6a\xd8\x8d\x6e\x49\x25\x29\xa5\x6c\x53\xbf\xe3\x76\x21\x20\x67\xee\xb3\xec\x06\xfd\xbe\xd3\x78\x60\xf4\x5e\x2a\x24\x86\xef\x9e\x2b\x46\xe1\x2d\xd8\x76\xa4\x44\xee\xd4\xcf\x64\x3e\xeb\xdc\x89\x5d\x2e\xce\x7c\xce\xc5\x35\xc5\x56\xdb\xf5\xdd\xf5\xcd\xf5\x8d\x9a\x3b\x4b\xba\x4b\xbb\x32\x36\xa6\x07\x56\x95\x71\x2d\x86\x99\x42\x14\x6f\xae\x6f\xa6\x37\x53\x53\x5e\x8f\xe9\x64\x4a\x04\x62\xed\x14\xe9\x2b\xce\x38\xee\xac\x3d\xcc\x30\x51\x71\x5a\x9f\xf5\x98\x57\x92\xbb\xb4\x41\x92\xab\x0b\xba\x61\x5d\xc3\x70\x9b\xa2\x4c\x72\x52\x1e\x29\xef\xc0\x4e\xca\xaa\xa2\xea\xfd\x4e\x50\x27\x2a\x4b\xcd\x50\x01\x90\x63\x4c\xb1\xea\x04\x69\x91\x28\xa5\x31\x85\x44\x50\xb1\x11\x69\x9b\x18\xb7\xa3\xc3\xc3\x42\x34\x0c\x3a\x09\x2f\x95\x5d\x8a\x61\x16\x04\x10\x67\x8d\x19\x0a\xcc\xc9\x4b\x2a\x2e\x11\x22\x89\xb3\x4f\x95\x49\x0f\x27\x6f\xba\x30\x4f\x8b\xbc\x12\x42\x59\xa9\x9a\x99\x86\xc8\x34\x21\xe6\x8e\xea\x17\x65\xdb\x90\x36\x34\x9d\xac\x03\xe8\x30\x1d\x09\x0a\x39\xa7\x92\x92\xa8\x8f\xb5\x17\xf0\x2f\x3c\x76\xae\x38\xbe\x92\x16\x67\x32\x7f\x98\x05\x22\xef\xd8\x5d\x6f\x27\x76\xe0\x84\x09\x1e\x24\xd1\x5a\x86\x05\xd6\x23\x69\x4f\x30\x5a\x71\x9b\x3b\x33\x03\x2a\x9a\x40\x08\x45\x71\x9d\x97\x84\xa0\x93\x68\x64\x4d\x3c\xe7\x0b\xf7\x48\x19\x9b\x7b\x1c\x89\xe9\xa2\x24\xb6\x80\x2c\xad\x26\xc1\x8e\x37\xd3\x65\x4d\xae\xa4\x0f\x11\x03\x17\x95\x4c\x9a\x92\x21\xd9\x4a\xce\xd0\x28\xce\xcf\x4b\xf1\x05\x0c\xfd\xa2\xce\x4f\x0b\x3d\x45\x95\x28\x98\xf5\x35\x36\xdf\x20\x37\x79\xc0\x9f\x83\x18\xf1\xcf\xa0\x64\x3a\x38\x49\xb6\x24\x25\xfa\xc3\x4e\xb4\x4b\x41\x66\xb6\x6d\xf9\x85\x10\x17\x5d\x76\x05\x26\x0c\x35\x4f\xc4\x26\x5f\x36\x4c\xd9\x4c\xd4\xe3\x4f\x56\xd3\xfa\xea\x09\xa1\x24\x91\x1b\x8d\xb8\x31\x4e\x6f\x0c\x1e\xd2\xb3\x83\x39\x32\x24\x9f\x79\x91\x41\x21\x80\xdb\xbc\x8c\xff\x9e\x67\x35\xe6\x32\x58\x21\x3b\x81\x2b\x94\x48\xe6\x0a\x33\x2a\x4e\xec\x08\xe1\xc8\x07\xed\xf6\xf6\xce\x25\x9c\x58\xa7\x17\x25\x0b\x75\xa2\x9c\x2d\xb4\x38\xcf\x57\xa5\xb7\x8b\x3c\x90\x66\x9c\x93\x13\x39\xea\x9b\xd4\x42\x7b\x8d\x50\x84\x27\x56\x3c\x6d\x66\x82\x0c\x41\x48\x95\xb9\x5a\xad\xe4\x13\x7a\xac\xfb\xd7\x9b\x91\x53\x26\x45\xda\x3e\x4a\x94\x36\xca\x45\x8d\xba\x31\x50\x8e\xa5\x83\xe7\xc2\x18\x84\xe8\x01\x12\x0a\x67\x0b\xab\x06\x0d\x29\x29\x1b\xce\x8c\xb5\x66\xcb\x25\x68\xc5\xb2\x41\x8b\x50\xa6\x7b\x8b\x3d\xc2\x24\x26\xea\x0e\xcd\x00\x24\xce\xc8\x3b\x9b\x20\xa0\x9e\xf6\xdc\xaa\x52\xbd\x76\x49\xaa\x8e\xee\x72\xf8\x90\x4b\xda\xdc\x56\xaa\x0a\x97\x25\xf4\x2a\x9c\x02\x96\x55\x82\x5e\xec\x6a\x17\x86\xa8\xaa\x9a\xdb\xd9\x64\x36\x1b\x4f\x0d\x1b\xfc\xee\xe1\xc1\xbd\x33\xda\x34\x4e\xee\xe7\xb7\x13\x01\x23\x69\x4e\x23\x0f\x99\x8f\xaf\xc7\x33\x03\xbe\x07\xff\xee\xfe\xee\xde\x44\xb7\xee\xef\x46\x77\xd3\xc3\x2e\x91\x11\x56\xd4\x50\x4a\xe5\x6f\xa4\xdc\x5d\x6a\x2c\x0b\xea\x83\x20\xa1\xb1\xf0\x69\x04\x4b\x04\x95\xc7\xd4\x56\x5a\xe9\x83\x44\x84\xaf\xef\xef\xee\x6f\x4d\xed\x9d\x05\xe3\x71\x70\x10\x6f\x1b\xa6\x86\xcb\x07\xf2\x0a\x46\xd4\x43\xc2\x22\x5f\x69\xed\xf4\x3b\x6f\xa0\xc1\xd2\xfe\xf6\x3e\x18\xcb\xf1\x97\xf1\x1d\x6b\x5c\x3c\x03\x1b\x4f\x31\x7f\xaf\xcb\x8c\x18\xf7\x27\x0b\x13\x2f\x9c\x69\x05\x3c\x50\x6d\xe1\x27\x04\x68\xf4\x67\x5d\x34\x7a\xe1\xea\x50\x07\x27\xae\x51\xca\xdb\x4f\xbe\x37\x8d\x16\x64\xda\xae\x33\xf6\x2b\x06\xeb\xc0\x04\x95\xb5\x29\x64\x2b\xb9\x93\xfa\xae\x72\xa0\x89\x76\x62\xfa\x55\x1f\x43\x8c\xd9\x7f\x23\x93\x73\x2d\x1f\x89\x96\xd3\xf7\x48\x78\x09\xd1\x82\xa3\x28\x51\xd7\x48\x51\x4f\x60\xae\x7b\x71\x85\x80\xef\x52\xf7\xbc\x80\x89\xeb\x89\xac\x5e\xe8\xe7\x85\x12\x50\xe2\xcb\x2f\xcd\x81\x9d\xf9\xf1\xe2\xca\x9e\xfe\x82\xfc\x87\xcf\x29\x10\x9f\x89\xf2\x21\x56\x90\xee\x08\xaa\xd7\x65\x8f\xb8\x7d\x78\xf1\x0c\xcc\x91\xe3\x59\x57\xb9\xbc\x97\x58\x68\xe3\x4e\x90\x55\xc8\x26\x8c\x2d\x9c\x26\x8a\x1a\xa6\x3c\x89\xbd\x4a\x3a\xd2\x9e\x3e\xa1\x24\x01\x4e\x0a\xcb\x4f\xbb\x42\x53\xf4\x73\xb3\xbf\xe9\xb4\xc7\x2e\x76\xdc\x84\xe4\x15\xa4\x5d\x34\xa0\xab\xab\x04\xd5\xb2\x75\xf6\x94\x1f\xdb\x6c\x57\xd0\x50\x1b\xd2\xe1\x2a\xb7\x51\x9d\xa8\xc1\x3d\xf5\xfd\x31\x99\xc9\x34\x61\x43\x59\x92\x64\x4d\x90\x6b\xf0\x99\x6b\x4f\xcb\x53\x13\x4b\x93\x59\xc0\x2c\x24\xe6\x1b\x13\x84\x57\xeb\x6e\xb3\x41\x15\x8d\xaa\xa1\x93\x04\x34\xc6\x1f\x99\x5d\x1c\xe3\x0f\x77\xa2\x89\xd0\x1a\xee\x92\x5a\xe5\x4f\x3b\xaa\xd8\xab\x7e\x39\x42\x17\x1d\x1f\xa5\x26\x1b\x28\x2d\x62\x8c\x8c\xdb\x10\xcf\xe0\xdd\xda\xc5\x9f\xee\x8e\x82\xaa\x2e\xf3\x6c\x63\xb2\x2b\x6e\x58\xbc\xf9\x9c\xab\xe2\x85\x21\x47\x25\x21\xc4\x7b\x8d\x5e\x1c\x20\x21\xd0\xec\xb4\xb3\xe8\xaf\xa2\x8c\x53\x58\xbe\xb0\x5f\x4f\xb0\xcc\xe2\x6c\xc3\x7e\x45\x30\xdb\x48\x12\xe6\x83\x88\x40\xea\x8d\x3f\xb9\x99\xcf\xaf\x4d\x49\x18\xc9\x35\x4a\x2a\xc8\xfd\xb9\xc5\x47\x6d\xa6\x9b\xe6\x91\x90\x49\x87\x3f\x6b\x32\xf2\x2b\xc6\xf3\x34\x3e\x75\x67\xe3\xc4\x36\x88\x59\x3c\xef\xe7\xf7\x77\xf7\x26\xaf\x9d\xf1\x4d\xf0\x30\xf5\x94\x88\x27\xa3\x09\x7e\xdc\x62\x11\xbb\x41\x7e\x0b\x7d\x20\xbf\xc5\x0e\xe0\x07\x27\xb4\x5e\x6c\x1d\x97\xf0\xea\xe9\xd6\xe6\xe3\xbb\xe0\x41\x6d\x1d\x79\x48\x5b\x47\xa0\xd5\xf9\x77\x99\x9c\x90\x40\xc0\xc2\xa4\xfc\x91\x62\x47\x4b\x1e\x69\xae\x90\x93\xbc\xb5\xa5\x9a\x09\xea\xb5\x89\xab\x13\x1a\xed\x0e\xd9\x69\x52\x32\x99\x4c\x3a\xc4\x1f\x06\x5a\x07\xf1\x47\xd3\x20\x09\x5d\xbb\x22\x09\xad\xa5\x07\x9b\xe4\xa5\xd8\xc6\x21\x93\xa9\xb6\xcf\xf1\x7e\x97\xad\x71\xd5\x58\xa2\x02\xb8\xc1\x80\x73\x3d\xc6\x1f\xc1\xf5\x53\x99\x16\x08\xa1\x8c\x42\x58\x14\xcd\x33\x7e\x2f\xd2\x22\xc5\x73\x7f\x2b\x59\x9b\xe3\x07\x43\xa5\xbb\x4c\x18\x68\xa4\xd7\x36\x3e\xdc\xc4\x24\x5b\x3d\xbe\x23\x63\xd7\x3d\x34\x6c\x8c\xe4\x00\x67\x30\x17\xe7\x2a\x56\xe2\x51\xcc\x0a\x5d\x48\x61\x2e\xa4\x23\x99\x3f\x63\xc5\xd8\x94\x2d\xfb\xe3\x48\x8e\x68\x84\x22\x35\x2c\xb5\x1a\x59\x44\x95\x94\x1a\x16\x9a\x39\xf2\xaf\x39\xb2\xc5\x88\xfc\x2d\x74\xa1\x4d\x13\xb5\x5f\x0f\x6b\x6f\x58\xa7\x01\xfe\x88\x2f\x88\x67\x9c\x96\x64\xa4\xce\x01\xed\x97\x45\x44\x42\x16\x78\x87\x26\xf8\x23\xe1\xa4\x3a\x8c\x0b\xfa\x8f\xfd\xbc\xa0\x01\x50\x2e\x8a\x32\xdf\xc4\xd1\xc5\xdd\xff\xfe\x1a\xa3\xfe\xc8\xcf\x56\xe7\xdb\x38\x2c\xf3\x2a\x5f\xd7\x4e\x53\x4d\x55\xc3\xb2\xbe\xc5\x4d\xab\xea\xf2\xf2\x4b\x26\xad\x58\xaf\xbf\xb4\x00\xca\x22\xe9\x05\xad\xff\x4b\x0b\x7c\xc5\x0a\x7f\x7c\x29\xd0\xa5\x3b\x54\xd6\x36\x05\x03\xcd\xbf\xab\x35\xfe\x18\x22\x36\xb5\xfa\x52\xd0\xfb\xdb\x0f\x86\x6f\xe8\x18\x8b\x27\x70\xb9\x86\x49\x85\x86\x06\x32\x12\x92\x3f\x59\x08\xc2\xfb\xb0\x1a\xe1\x8f\x41\x8d\xd6\x95\x0f\xc3\x34\xff\xfe\xd0\xa2\x6f\x7d\x2d\xab\x03\xd9\xaa\x95\xdd\x90\x9f\xaa\xd5\x0c\xd9\x4d\x00\x37\x9d\x7d\x90\x8a\xd0\xcb\x93\x22\xc5\x56\xdd\xa4\xe4\x22\x46\x69\xb5\xdf\xe6\xf9\xf6\x3c\x35\x77\xaa\x4a\x16\x94\x34\xaf\xa6\x10\x6c\xfa\x8a\x9f\xe3\x8f\x39\xc1\xb3\xda\xc0\x96\x22\xab\xa6\x01\x06\x2b\x70\x81\x42\x13\xdd\x61\x17\x2a\x3b\x4c\x60\x55\x99\xe2\x92\xcb\xe6\xfd\x79\x19\x11\xa1\xe8\x05\x8d\x96\x8c\x7f\xeb\x03\xd8\xa7\x5f\x97\x13\x71\xf7\x99\x19\x9b\x26\xbf\x4b\x14\xa5\x4d\x21\xb7\x21\x76\x64\x4f\x04\x9f\x5a\x23\xc3\x4d\x45\x43\x12\x18\x6e\xc9\xb7\xb7\x9a\xa9\x95\x18\xf5\x4d\xf4\x1a\x26\x5e\x86\xcd\x12\xb4\x5f\x28\x77\x4c\x84\x95\x35\xdc\xec\x0d\x36\x61\xbd\xde\xbb\xdd\x3e\x12\xa2\x56\x7d\xce\x89\x74\x4f\x9a\x36\x36\xba\xcd\x1d\xd8\x7b\x98\x34\x22\xe0\x56\xf9\xa9\x86\x46\x36\xb8\x14\x8a\x06\x82\x5b\x9e\x16\xb9\xe9\x61\x9b\x4e\x8a\xd6\x20\xbb\xb5\xf0\x41\x06\x02\x78\xd7\x25\x67\xe6\xc3\xc8\x5f\x99\xfb\xa5\xfa\x01\xb7\x88\xe9\x1c\x0a\x1c\x55\xab\x45\x34\xb7\x5c\x0d\xbe\xa8\x4d\xbf\xc9\x78\x42\x96\x11\x48\xf6\x15\xac\xf5\xae\xeb\x2e\x9a\xc4\x92\x72\x13\xa3\x58\x4d\xe6\x2c\x2a\x8f\x30\xdc\x52\x8d\xab\xb1\xd0\xf3\x35\xb3\x94\xcf\xf5\x92\xc8\xed\x64\xc9\xd2\xcd\x9d\x39\xff\xf9\xdc\xf5\x3c\xef\x5a\x71\x38\x5f\xc1\x72\x59\xc3\x55\xd5\x06\x6c\x7c\x8c\xab\x78\x95\xc8\xab\x87\x26\x65\x69\x44\xb7\x02\x3f\xeb\x53\x4a\x4e\x58\x07\xd9\xc8\x76\x6c\x74\x58\x6d\x65\x1f\xa7\x28\xaf\x59\xa0\x67\xa1\x9d\x57\x49\xdc\x1d\x1c\xb9\xe5\x39\x0c\xe9\xb2\x68\xe4\x93\xa9\x12\x5c\x49\xd5\xed\x0a\xb7\x7f\xd6\x1c\x03\xf7\xcd\x85\x45\x2e\x70\x95\xb6\x19\xf3\xbd\x4d\x04\xe9\xe6\xe8\x6e\x72\x77\x2d\xfa\xd3\xba\x5a\xcc\x38\x05\x25\x80\x7b\x3d\x40\xbe\x61\x72\x1a\x73\xb3\x6e\xaf\x6f\x15\x31\x67\xc2\x7b\x16\xbd\xb9\x7f\x6d\xbc\x64\x61\x90\x44\x50\xc7\x24\xdc\x26\xc6\x2a\x1a\x50\x7b\xbe\x52\x15\xab\xc2\xf8\xb6\x9e\xcb\x71\x8a\xf0\x03\x63\xe6\xd1\x1e\xb5\xcc\x0c\x7f\x16\x62\x94\x9a\x06\x93\x43\x36\xe0\x5e\x1d\x39\x9a\x34\x52\x43\xa1\xed\x10\x3d\x1d\x99\x6c\xe9\xc7\x8c\xa1\x68\x65\xcc\x8b\x71\xdf\x9e\x6b\xae\x20\x4f\x6c\x94\x2f\x0a\xb8\xdc\x44\x8a\x58\x42\x0b\x08\xc9\xe8\xb8\xaf\xb4\xf2\x25\x7e\x40\xcd\xc6\x5a\xe1\xbd\x51\x96\x38\x72\xf5\xc8\xb4\x42\xf0\x27\x05\x07\x55\x94\xcb\x88\x3a\x22\xc0\xe2\xfd\x7e\xb2\x47\x30\x21\x88\x52\x90\x61\xaf\xe7\x54\x5b\xaf\xd7\xea\x81\xa3\x0a\xe4\xc0\x40\xea\x20\x9f\x88\x0e\x69\x26\x69\xac\xb8\x49\x09\x28\xb9\xdf\xd8\xc4\x9d\xa2\xd2\xf3\xce\x8c\x8d\x47\x87\xb2\x3c\x7b\x81\x68\xd5\x9e\x9e\x24\xb2\x19\xf2\xad\xcf\xbc\x3c\xf4\x7d\xa0\xb8\x10\xb4\x6a\x6d\xad\xf0\xe9\xce\x7c\xb6\xcf\x85\xba\x23\x8d\x27\x61\xb3\x3a\x16\x12\xa7\xb4\x11\x89\xc5\x4d\x14\xf9\xd1\x28\xf2\x55\x33\xb1\xb1\x4a\x7e\x09\xdb\x2b\x6d\xd1\x17\x29\x75\x94\xe3\x93\x58\x51\x07\xfe\xfc\x04\x27\x83\x8e\x48\x25\x64\x90\x9c\xf9\x68\x1a\xa0\x54\x61\xd1\x47\x8b\x46\xe4\xb0\x9a\x40\x88\xa9\x4f\x95\x87\x31\x24\x96\x2b\x5c\x13\x7c\x60\xcf\x78\xb6\x31\x8b\xff\x5e\xe5\xd1\x8b\x6c\x34\x22\x03\x4a\xa7\xf5\xfd\x1d\xfe\x34\xa1\x2d\xde\x1f\x24\x2c\xc6\x0b\x18\x4f\x42\x37\x7b\x7f\x70\x98\x53\x54\xe3\x6c\xa6\xb9\x5f\x69\x8e\x56\x07\x27\xdc\xc2\x1a\x68\x25\x89\x87\x91\xe8\x6d\xd4\x59\xb2\xaa\x61\xbd\xab\x0c\xca\x17\x6f\xc2\xc4\xea\xb6\x27\x1b\x50\x79\x63\x93\x38\xbb\xf5\xea\x6b\x96\x8e\xce\xf3\xea\x71\xb5\x30\xff\xdd\x70\x11\xfe\xc8\x53\xd7\x94\xd6\x52\x27\x27\xe2\x90\xbd\x4e\x38\x14\x38\xf8\x04\x5f\x64\x56\x6a\x34\xbf\xf5\x7c\x15\xdb\x7a\xad\xa1\x0b\xc3\x90\x43\xb5\xfe\x55\x7b\x25\xb7\x86\xc1\x13\x91\xe7\x8a\x11\xd9\xf9\x80\x6a\x58\xba\xa1\x41\x93\x90\x5d\x49\xaf\xc0\xe3\xdc\x84\x5b\x58\xd6\x3d\xde\x32\x92\x78\x88\xeb\x75\x84\x85\xe3\xa9\x06\x64\xfa\x55\xd2\x18\xa8\x80\xd5\x0c\x42\x98\x3d\xc2\xae\x33\x89\x05\x74\x71\x0f\x4e\x81\x4a\x5c\xce\x2c\xb5\x92\x36\xa4\x64\x34\xef\x2b\x36\xad\x0d\x22\x55\x4b\xf6\xfe\x4b\xf9\x52\xe8\x78\x28\x15\xb7\xfe\x0c\xa5\x07\x07\x66\x9b\x5d\xd2\xe6\x73\x67\x91\x77\x88\xd6\x84\xbe\x01\x6c\x38\x45\xa3\xe7\x83\x7e\x98\xfb\x8d\xe5\x0f\xbb\x09\x4a\x11\x19\x6a\x98\x24\x2f\xcb\x55\xfe\x0c\x04\xbd\x2e\x8b\x33\x66\x18\xc6\x13\x4a\x49\x36\x1b\xda\xbd\xad\x5b\x82\xa6\x6b\x7c\xa6\xf8\x83\x49\x9c\x58\xab\xa5\xfc\x56\x12\xb8\x1b\xde\x8a\x9a\x9e\xde\x80\x90\xef\xee\x6f\xf1\x47\x35\x5a\x64\xbc\xa1\x84\x96\x79\x5d\xaa\xc9\xef\xc9\x55\x49\x83\xa5\xae\x1e\xfc\x1e\x2e\x19\xac\xea\x21\x25\x8a\x18\x2d\x57\x9b\x4e\x53\x6b\x6a\x88\xee\x7a\x96\xef\x8e\x2d\x6f\xe6\xd3\x10\xd9\x9a\x9d\xa5\x9e\xa3\x8b\x10\xba\xff\x10\x79\xe2\xcf\x16\xf6\x99\x8c\x48\x25\xd3\x00\x96\x2d\x13\xd8\xf8\xff\xde\xf9\xbe\x6f\x5a\xa8\xeb\x04\x3d\xef\x8f\x05\x5d\x13\x26\x8f\x7b\xf7\xae\xf2\xe7\xbd\x7e\xcd\x1d\x2b\x96\x69\x12\xaf\x80\x42\xfc\x91\x12\xf4\xab\x51\xb9\xbd\xa2\xa3\x2e\x90\xc4\x86\xcc\x16\x7e\xd0\xb1\xc4\xba\x4b\x02\xb8\x3f\xa5\x84\x10\x30\x4e\xad\x8a\xae\xc8\x13\x4a\x36\x55\xf5\x97\x00\x50\xcd\x5c\xd1\x15\x94\x83\xc4\x28\xe2\xec\x70\xd0\x99\x96\x57\x08\x8c\x3f\x1e\xab\xae\x3d\xdd\x8e\xdc\x6e\xcf\xd8\x37\x57\x4f\x49\xf6\xa7\xe7\x2a\x10\xc9\x86\x3f\x59\xcd\xe7\xb0\x1b\x65\xe3\x28\xde\xf2\x34\x33\xa1\x83\x33\x29\xeb\xb5\x78\xe7\xa6\x79\x4b\xb4\xa5\x5c\x58\xfa\x33\x72\xcd\x39\x89\x60\x13\xb3\xe0\x2e\xdf\x2a\x22\x41\xe9\x2a\xa5\x47\xa2\x91\xcb\x9a\x8b\xee\x12\x87\x19\xf7\xb5\x2c\x7f\x37\x90\xb1\x73\xed\x5b\xb5\x9b\x52\xec\x1e\x53\x01\x3c\xfc\x44\xfe\xac\xe8\xff\x74\x2b\xef\x71\x7f\xeb\x09\x26\x6a\x52\x2d\x73\x8f\x52\x4e\x3b\x26\x6f\xea\x88\xb3\x62\x88\x37\x64\x1c\x82\xbe\xd4\x51\x5d\xc3\x47\x55\x5f\x78\xd1\xc1\x92\x88\x95\x9b\x4b\x4f\x7b\x9d\xf4\x47\xef\x0f\xcd\xf5\x5d\x2d\x40\x96\xe9\xa6\x44\x55\xe5\x70\x35\x5a\xf3\x64\xf9\x14\x47\x88\x07\xd4\x0f\xc8\x29\x4b\x0e\x35\x5f\xcf\xaf\xda\x90\xb7\x2e\x55\xaf\x18\xf8\x44\x35\x02\x97\x33\xcb\xb5\xd5\xb4\x87\x3c\x3e\x3f\xf5\x65\x2e\x02\x36\x2e\x1c\x42\x46\x9c\x66\xe8\x24\x40\x2d\xc1\x15\x4d\x6a\x23\x27\xa7\x33\xfb\x35\xf0\x7b\x05\x0d\xe3\x41\x4b\xd8\x98\x2d\x46\x9a\x79\x31\x7d\x4a\xd8\x19\x88\xc2\xd7\x58\x14\xb7\xa3\xc0\x4c\x1e\x2b\xc1\x0e\xdf\x10\x41\x8f\x43\x81\x24\xb6\x9c\x1a\x56\x9f\xaa\xf6\x56\x28\xf6\x23\xca\xeb\x9a\xb4\x88\x9c\xd8\xa2\xf0\x44\xae\x8d\xf9\x2f\x38\xf0\x11\xd6\xb0\xb4\xda\xaf\x7b\x31\x80\x81\x18\x25\x40\xcf\xe6\x28\xe7\xc9\xd4\xd4\x08\x62\xd0\x30\x43\xbc\x54\x03\x53\x48\xda\xac\xb6\x92\xff\x58\x46\x47\xd3\x39\x74\x95\xe4\xe6\xf3\x92\x3c\x4b\x73\xfc\x18\xf3\xc8\xa9\x3d\x28\xc0\x76\xcc\xe3\x78\xef\x95\x90\x3c\x5d\xc9\xd7\x4d\xea\x30\xe9\x9e\xc1\x58\xdb\xde\x6a\xc9\x18\xff\x6d\x97\xd7\x82\xbb\x86\xec\xda\xa8\x08\x12\x03\x29\x95\x10\xc6\xbf\xab\x50\x89\xc7\x10\xb6\xe1\x5a\x84\xf8\x79\x2a\x84\x21\x4c\x87\x0a\xd1\x50\x90\xd6\xf1\x8a\xe4\xd9\xfb\x09\x85\xe4\x98\x24\xef\x04\x28\xc5\x43\x47\xf6\xa9\x93\xef\x7d\x0d\x9e\x0a\x50\xf7\x40\xba\xd4\x84\x53\xa6\x89\xcf\x42\xb3\x9e\xea\x82\xe9\xc6\x74\x5e\x0a\x17\x76\x34\x32\x2f\x91\xba\xd4\xb0\xae\x08\x89\x17\x1d\xe3\x3a\x85\xbc\x3d\x7e\x50\xa2\x01\xb5\x86\xb8\x33\x8f\x60\x77\xc6\x30\xea\x8b\xb8\x10\xae\x1b\xc6\x94\x5c\x9a\x49\x3a\x6d\xa9\xb1\x09\x86\x24\xd3\xdc\x99\xd0\x04\xae\x9f\x93\x7e\x47\xdf\x80\xf3\x08\x93\x9d\x76\xa4\x6a\x02\x19\xd9\x5a\xc7\xd8\x44\x91\x67\x56\xac\xa3\x77\x49\xb3\xe4\x94\x58\x44\xa2\x73\xb0\x01\x0a\xc0\x26\xc4\x53\x93\xa1\x93\x00\xb0\xdc\xcb\x66\x23\x78\x15\xa8\x23\xee\x8d\x9e\x85\x9d\x12\x57\x43\x50\x65\x1a\x89\x89\x5f\xe0\xc7\x6c\xf1\xc7\xa1\x9a\x3f\x99\xe5\x5e\x25\x2f\x80\xa3\x2f\x7b\x26\x94\x96\x84\x17\x82\xe6\x5b\xb2\x0c\x73\x81\x31\x91\x9c\x8c\x1d\x6c\xfd\xbd\x62\xf0\x19\xc2\x82\xc8\x32\xff\x8e\x54\x0f\x5f\x2d\x86\x08\xe0\xf5\x18\x65\x46\x63\x9a\x92\x53\xae\xce\x53\x83\xa0\xf1\xa3\xd2\x17\xc6\x84\x43\x93\xf3\x5d\x4b\xa6\xe5\x59\xf4\x7f\xae\xe3\xcf\x86\x6a\x78\xf6\x06\xc7\x72\x8d\x60\xbd\x2b\x51\xa5\xd8\xc6\xe3\x4f\x5b\xa8\x55\xaf\xb4\x8e\x56\xbe\xa6\xa0\x70\x8c\x88\x99\xbb\xa1\xe6\x29\xd1\xc0\xe9\x7e\x54\xc0\x53\x23\xaf\x18\x44\x28\xa6\x24\xf3\x47\x52\xeb\xc9\xda\xb8\x91\x2a\x22\x91\x1c\xe1\x46\x7a\x1b\x41\xb1\xef\xd0\xc7\xf0\xd8\x83\xba\xc1\xdd\x2e\xb6\xcb\x78\xb5\x22\x41\x42\xb2\x1a\xc6\x99\x29\x04\x84\x11\x0c\x08\x0f\xb5\x2c\x5b\x8d\x40\xcf\xac\xe3\x91\xae\x5d\x33\xa6\x3a\x10\x6d\xe7\x48\xef\x0c\x95\x0a\xcf\x98\x2d\xad\xd0\x0c\x43\x1c\xa9\x60\x35\x77\x57\xeb\x63\xed\x3f\x1a\x37\xc8\x10\x71\xb5\xdb\x39\x79\xea\x4a\x41\x30\xda\x2d\x59\xe6\x35\xac\xd1\xd9\x38\x88\xd0\x66\xa8\x9c\x75\x54\x8d\x12\x70\xd3\xf8\xf6\xe4\xf0\x7c\x95\x09\xf1\x5d\xe3\xe2\x0b\x82\x40\x75\xd4\x18\xa9\x16\x52\xa3\xe1\xeb\x47\x95\x0a\x4d\xad\xd7\x97\x93\x23\x2c\x2a\x89\x33\x4e\x9b\x18\x8e\xa3\xb9\xa5\x10\x12\x4d\x73\x74\x9d\x56\xb2\x71\xb6\x3f\x02\xde\xdd\x49\x03\x52\x7d\x99\x8b\xea\x43\x39\x18\x4d\x47\xf7\x83\xa0\x23\xe6\xa5\x41\xdd\xd7\x84\x0a\x37\x28\xdf\xa9\x96\x26\xc3\x07\x1c\xcd\x05\xd0\xdc\x37\xcd\xb6\x6e\x21\x2c\x24\xb3\xfb\x39\x33\x3e\xd6\xdd\x3f\x1b\x58\xed\x78\xa5\xea\x65\x5e\x6f\x9b\xc7\xcc\x58\x21\x61\xcb\xb4\x88\x59\x27\x04\x99\x11\xd6\x32\xb7\x06\x25\x3e\x47\xec\xb6\x24\x7b\x1b\xd0\x7a\x80\x93\xc2\xea\x93\xc5\xbe\x37\x51\x9d\xb5\xd9\x12\x2e\xcb\x5a\xb2\x5d\x49\x01\x41\x10\x61\x3e\x40\x89\x93\xab\x13\x48\x5a\x65\x9d\xe7\x49\xa5\x9e\xc4\xad\xeb\x85\x1a\xd1\x4e\xe6\x1b\xfb\x34\xb5\xd3\x6e\x29\xa7\xbc\xc1\x83\x21\x3f\x8a\xc7\x23\xee\xc2\x72\x20\xc3\xe2\x64\xb9\xcd\x67\x94\x35\x94\x41\xce\xdd\x16\x52\xe8\x87\x10\x3f\x4f\x62\x79\x05\x2f\x29\x53\xec\x10\xe1\xba\xdf\xb2\xc2\x44\xa8\x43\x70\xb3\x33\x8a\x99\x59\x7d\x85\xf2\x72\x13\x43\x0b\x54\xa8\x8c\xd7\xbd\x8a\x58\xa2\xfa\x33\xa4\x71\x34\xf0\x4d\xdc\xd4\x13\x98\xcd\x93\x59\x4b\x20\x89\xf5\xdf\xc3\xd6\xab\x56\x65\x52\x68\x1c\x55\x2f\xed\x2a\x54\xbf\x6b\x0d\x28\x24\x1a\x2f\xeb\x77\x24\x69\x25\x6e\x93\x4d\xb8\x67\xb2\xe2\x94\x58\x6d\xae\xe3\x57\x8d\x37\x9c\x00\x4a\xa6\x76\xdf\x7a\x8e\x99\x73\xbe\xf2\xe5\x11\x0c\xd5\x18\x70\xae\x33\x56\x42\xc0\x89\xc8\xd9\x7a\x6e\xba\x41\xbe\x25\xb0\x46\xff\x76\x66\xd3\xd8\xb2\x82\xd3\x9a\xa9\xc5\x5d\x98\x0b\x33\xd2\x93\x70\xea\xa3\xc0\x62\xd5\x35\xc3\x46\xd0\x92\xe8\x80\x67\x9e\xe3\x0d\x0d\xa0\xf2\xb0\x79\x26\x08\xd2\x77\x4b\x7f\x51\xb4\xc5\x16\xc6\x4e\xe0\x2e\x18\x10\x16\xc2\x94\xda\x11\xc2\x4b\xce\x75\xbc\xea\x70\xfe\xbb\xdf\xfc\xfa\x57\xe0\x77\x60\x95\xe7\x75\x55\x97\xb0\x8d\x2a\x63\xd7\x70\x55\x01\x1b\x3c\x7a\x8e\xef\x78\x04\x68\x5b\xd7\x45\x75\x71\x7e\x1e\xad\x6a\xf4\xc9\xd9\xc4\xf5\x76\xb7\x72\xe2\xfc\xbc\xa3\x30\x29\xe3\xbb\xde\xd8\xf6\x3c\xdb\x9d\x92\x9f\xb7\x79\xf1\x42\xcd\xaa\xce\xc2\x21\x79\x09\xfe\xff\xff\xaf\x4a\xf1\x09\x72\x87\xd2\xb8\x5c\xc5\x09\xfa\x44\x20\xbf\x89\x43\x94\x55\xe8\x02\x7c\xfb\xf5\x47\xfc\xe0\xdc\xc1\x38\xc9\x81\x65\xd1\xaf\x92\x67\xb4\x68\x0d\x27\x2a\xb6\x69\xc8\x31\x5e\xb2\xd3\x15\x9b\x9f\x3a\x3a\x62\xd5\xe5\x5a\x82\xc4\x2f\xaf\xa8\xa0\x8d\x97\xbb\x6a\xec\xc5\x84\x4c\x04\x42\x60\x1b\xb9\xa4\x6c\x26\x6c\x7b\xcd\xfb\x06\x97\x94\xb6\xc1\x53\xcb\x33\x83\xb7\x2b\x68\x99\x1f\x73\xcf\x25\xf3\x4b\xc9\x4b\x5f\xb6\x96\x67\x51\x18\xc4\xf1\xd2\xfd\x35\x95\xb6\xaa\x8d\xd1\x9e\x4b\xad\xd1\xdf\x1a\x9a\xa3\x8f\xbc\xc8\xb9\x74\xb6\x88\xf5\xf4\x0a\xee\x75\xcb\x48\xe6\x2e\xa9\x04\x44\x52\xf5\x46\x7a\x40\x8a\x13\x93\x42\xc8\x9d\xd3\x5a\xd0\xb8\x6a\x02\x35\x24\xd3\xcf\xa9\xb3\x8a\x23\xf4\x04\x5f\x2a\xc9\xc0\x5e\x08\x34\x43\xb7\x85\xce\x38\xf0\x72\x57\xad\xaa\xc0\x77\x15\xee\x5f\x95\x6e\xb8\x3c\x8d\x3e\x2b\x78\xa5\x1a\x5b\x9a\x65\xfd\x1d\x4b\xa8\xfb\x56\xaa\x1a\xb3\xd2\xff\xa4\xaa\x85\x05\x67\x7a\xca\x97\x9b\xf1\x5d\xf7\xda\xef\x62\x82\xc5\xf0\xc0\xfa\x22\xa4\xe9\xd7\x78\x55\x02\xc9\x61\x97\x2b\xa9\xed\x22\x9d\x61\x5b\xbf\x13\x00\xcf\x8d\x76\x8d\x9b\xbb\xf8\x1a\x67\xaa\xcf\x08\x6e\x73\x78\x2a\x5d\xb2\x09\x5f\x6c\xb4\x64\x1a\x49\xae\x1c\xa6\x90\xaf\x32\x0b\xa1\xfb\xac\x05\x43\x55\xae\xad\xbb\xcc\xd2\x56\x48\x56\x48\x8c\x24\x6b\x79\x70\x68\x74\x0d\x56\x62\x57\x24\x39\x8c\x54\x8e\x5e\x79\x0d\x68\x80\x92\x4e\xe7\x04\x6a\x6b\x2b\x07\x64\xd3\xea\x60\xb6\xfa\xc6\x08\xbe\xcc\x02\xb2\x29\x84\x4a\x9b\xfa\x8f\xab\x41\x2c\x8c\x41\x9c\x68\x2d\x4a\xa0\x9e\xd1\x64\x2c\x45\xe7\x93\xc2\x10\x06\x66\x27\x25\xc3\xe0\xfb\x66\xf7\xb4\x10\x7f\x3a\xa7\x81\xab\x0e\xf4\xab\x06\x6b\x1c\xc9\x6e\x25\x04\x17\x20\xe1\x61\x58\x61\x92\x2e\x17\x3d\xe9\xe6\x76\x6d\xd3\xe5\xa0\x59\x46\x45\xfe\x3b\x84\x0c\x46\xec\x1d\xde\xef\x5d\xfd\x60\x4d\x91\xac\xc6\xdb\xc4\x86\xeb\x53\x56\xae\x8a\x4b\x30\x40\xa4\xbd\x66\xcf\xed\xa4\x0d\xe8\x35\x13\x66\x6e\xa6\x84\x65\xf4\x98\xd0\x8f\x16\x4a\x23\x39\xef\xa0\xb4\xfa\x38\x50\x95\xee\x45\x03\xc9\xd6\x6e\xb2\x2f\xf1\x84\x71\x32\x88\x46\xb0\xdd\x6c\x75\x56\xa9\x91\xd5\x0c\xe1\x35\x25\x78\xc1\xb0\x6b\xaf\x47\x22\xc4\xdb\x24\xce\x36\x52\xac\x8f\x8e\x48\x02\x42\x64\x30\xee\xd7\xc9\xa5\x2a\xb2\xe4\x1a\x28\x99\x84\x59\x1d\xce\x26\x5e\x4b\xb9\x83\xe9\x51\xc1\xfe\x69\xe3\x86\x4f\x03\x6e\x68\x04\x93\x62\x0b\xcf\xd8\x8b\xcb\x69\x30\x6c\x0d\xf4\x5c\x6f\xec\x4e\xfc\xd9\xc1\x49\xf3\xb2\x8c\x2b\x1a\xed\xdc\x70\x51\x6f\xc3\xc2\xe2\x1b\x92\x08\xcc\x7f\xb0\xfb\x3f\xbd\x34\xee\x05\xaf\x2b\xc9\xd9\x59\xb9\x2d\xfb\xe3\x91\xe5\x8f\x7d\x0b\xff\x4b\x82\xd1\xb2\xdd\x40\x77\x42\xe3\x57\xe8\xcd\x03\x16\x67\x74\x42\xc1\xc4\x9b\x6b\x05\xb3\xca\x16\x6f\xad\xcd\x1d\xd5\x70\xdf\x3c\xda\x72\x20\x81\xd8\x65\xfe\xc4\x62\x3c\x75\x46\x3d\x6c\xcc\x9c\x5f\x8b\x9b\x1c\x09\x7b\x83\x81\x7d\x83\xd9\xa3\x88\x8b\x32\x0e\x91\x92\x7d\x44\xbb\xe2\xb3\x51\x66\x11\x09\x24\x9d\x5f\xc4\x15\x7e\x9d\x81\x27\x1f\xf0\xc7\x14\x3e\x9d\xe1\x19\xd1\x3c\x6d\xaa\xc9\x88\xae\x9c\xc8\xa3\x5d\x58\xdb\x6d\x2e\x4c\x59\xc9\x19\x2d\x49\x2b\xc5\xd4\x17\xa0\x51\x11\xb5\x2f\x0d\x6a\x54\x0a\x80\xab\x16\x0d\x18\x5d\xa9\xa0\x43\xfe\x69\x8c\xb6\x04\x1b\x69\x81\xce\xfa\x8a\xc1\x94\xa4\xfc\x10\x75\xab\x92\x22\x5e\x51\x3e\xf1\x16\xef\xc2\x7a\xb9\x81\x49\x82\xca\x17\x00\xf7\x02\x09\x5b\x48\xb4\xcd\x60\x7e\x6d\x0e\x7c\xc8\xe3\x92\x69\xb8\x15\xda\x6b\x22\xab\xb4\x04\x5d\x2a\x52\x00\x36\x2d\xc5\x9f\x29\x24\x13\x0d\xba\xa0\xc6\x68\x15\xc6\x8c\x1b\x6d\xdc\xbb\xf8\xc3\xd6\xa4\x5d\xc3\xe7\xbd\x66\xe2\xcb\x9a\x42\x8d\xe3\xe5\xb6\xa8\x6f\x59\xec\x46\x28\xe7\x0a\x61\x14\x75\x13\x67\x7b\x93\x34\x94\xbc\x21\xb9\x19\x0a\xf8\x24\x9a\x31\x4d\x48\xb0\x0f\x7a\x12\xc2\x2c\xdc\xe6\xa5\x12\x7b\x89\x94\x6c\x0c\x1b\x4a\xee\x9e\x27\x06\x30\x65\xe7\x7b\x7b\x73\x10\x15\x8d\x23\x72\x0c\x19\xee\x0e\x25\xda\xc4\xf8\xd6\x8f\x1f\x2f\x31\xb3\x69\xb1\xba\xf0\xf7\x2e\xeb\x6a\x25\x04\xb1\x86\x63\xdf\x50\x69\x4f\x10\xc4\x48\x51\x8b\xdb\x3a\x1a\x58\xff\xf0\xae\x8a\x37\xd9\xae\xb8\xa8\x61\xb9\x41\x35\xf8\x7f\x81\xdc\x6f\x60\x68\x2d\x29\x12\x67\xdd\x45\x8c\x35\x2d\x94\x20\xf9\x6b\x18\xa1\xaf\xb3\x6f\xf0\xca\x11\x02\xe3\x13\x01\x8b\xe3\x55\xc7\xdb\xd5\x56\x72\xbc\x41\xfa\x68\x19\x1a\xf3\xdd\xae\xfe\x86\x06\xfa\x24\xef\x5a\x17\x14\x43\xdc\x7e\xd7\x9c\x6a\xe0\xd5\x69\x04\x88\x17\x68\x57\x72\x00\xd7\x90\x1d\xe0\x75\xc1\xff\x29\xfa\xbc\x1b\x79\x7e\x14\x75\xde\xd7\xee\xaa\xa7\xd9\xd5\xf1\x56\x57\xdd\xb8\xbb\xf0\xbe\x21\xc5\x04\xf5\x0d\xa4\x2b\x62\x95\x3f\xef\x45\xf5\x33\xdf\xcc\x34\xd8\x91\x92\x0a\xf1\xe0\x10\xea\xa6\x26\x48\xd4\xb8\x72\x06\xa7\xa7\x02\x94\x6e\x3d\x34\x04\x2a\xbe\x41\xad\xe3\x67\xa6\xb8\x22\x37\x4d\xc5\x93\xcd\x19\x74\x05\x01\x13\x1c\x87\x89\xa7\x62\x9c\xe0\x4d\xce\x79\x79\xda\x41\xae\x3d\x69\x4e\x4c\x42\xa2\x9a\x2e\x73\x93\x81\x53\x34\x39\x5d\xf1\x58\x85\xe0\x36\xfe\xcc\x6d\xa8\x2f\xaf\x1a\x40\x4b\x79\x40\xa3\xf6\x50\xde\xa6\x37\xd4\xbd\x82\xa7\x03\x76\x97\x45\xa8\x4c\x62\xbd\x00\x33\x6f\x60\xee\x32\x80\x74\xf6\x8f\xdc\x21\xdc\x02\xd7\x65\x0c\x13\x0b\x08\x1c\xa0\x12\x53\xcb\x76\x1d\x57\xf5\x19\x13\x17\x09\x53\xc7\x8f\x0c\x7d\xde\x7a\x4c\xc9\xa8\xf6\x7d\xeb\xa9\xf3\x3b\x10\x4d\x15\x3b\xdc\x3b\x05\x9b\xd3\xe9\x7b\x43\x5d\x14\xa5\x78\xdc\x11\x67\x0f\xc9\xb7\x5b\x0d\xa1\x42\xe4\xbf\x80\x01\x02\xf7\x3d\x8d\xa4\x02\xf0\xd9\x30\x5c\x34\xfa\xd6\x8e\x6e\xbd\xb2\x2e\x82\xae\xb3\x32\xae\xa6\xfb\x67\x0d\xa1\xfb\xdf\x65\x08\xc9\xc9\xa6\xb0\x73\x3a\xfb\xa1\x97\xa1\x22\x9b\x1f\xea\x97\x02\x5d\x0e\xf0\x76\x1b\xfc\xa8\x4e\x82\x06\x86\x52\x18\x27\x27\xc0\x15\xb0\xaa\x9e\xf2\x32\x1a\xfc\xa8\x07\x5b\x23\x47\x80\x24\x5c\x68\xa9\x8c\xe5\xd2\x60\x95\x9a\xb0\xc1\x9d\x0d\x01\x11\xe4\xe0\xb3\xe9\xed\x85\x7f\x4e\x49\xcd\x77\x73\x86\x3f\x62\xe0\x42\x21\x28\x98\xaf\xb2\x6e\x27\x8d\x3f\x0f\x94\x76\xda\x2c\x9c\x08\xdd\xce\x05\x13\xe2\x6a\xe3\xef\x32\x65\x7d\xe4\x85\xfe\xb8\x63\x98\x4d\x30\x26\x80\xeb\xf9\xf4\xfa\xfa\x8e\x03\xf4\x84\x63\x14\x87\xf2\x7a\x36\x9d\x5d\x3f\x2c\xa4\x18\x01\xef\x76\x15\x2a\x89\x4d\xa4\x80\xa5\x59\xd8\x4d\xd0\x35\xd1\x45\xfc\x1d\xef\x6a\x77\x11\x3b\x18\x29\xe9\x79\x0d\xa3\x17\xc5\x8f\x92\xdb\x8d\xe7\x2b\xc7\x01\x37\xf6\xc3\x1c\x79\x85\xea\x25\xae\x57\x95\x66\xf6\x54\x82\xf1\x77\x95\x34\x9b\xef\xb2\xe4\x0c\xf3\xe6\xa6\xc8\x5d\x91\x51\x01\x4b\x58\xe7\x65\x47\x7c\xee\xbb\x19\xfe\x68\x49\x5a\x44\x8d\x1f\xbd\x5c\x33\x3f\x44\xc5\x9c\x7c\xbe\x86\x7d\xd4\xaa\xce\x0b\x4c\x9f\x08\x1c\xa3\x55\x24\x74\x23\x23\x57\xaf\xf7\x61\x03\x9a\xeb\x1c\xc1\xad\x3b\xce\x91\x6a\x0c\x6e\x73\x46\xd2\xa2\xc5\x9e\xf2\xfa\x68\x49\x37\xf4\xab\x40\xd5\x88\xa3\x3c\x70\xa0\x79\x9e\x6e\x1f\xee\x82\xbb\xb9\x62\x4c\x7a\x94\x68\x54\xbb\x55\x1a\x63\xb2\xfd\x4e\x02\x71\xe8\x73\x03\xf7\x4a\x43\x61\xcc\xda\x09\x07\x50\x9c\xf2\x5d\x99\x9c\x6d\xeb\xba\xb8\x38\x3f\x0f\xab\x2a\x42\xe1\x27\x27\xcc\xd3\x73\x2a\xe1\xaf\xce\x89\x3c\xf5\x3c\xae\x51\x5a\x9d\xcf\xce\x67\xab\xf0\x9b\xff\xf9\xb7\x07\xa7\xc8\x36\x43\xe2\x24\x8e\x77\x49\x2b\x72\x6c\xe8\x22\xc9\x39\xd4\x65\x1e\xe3\x73\x53\x47\x30\x76\xbb\xe2\x1e\x69\x66\x05\x23\x6a\xaa\xd0\xf6\x41\xcf\x4c\xd9\x6c\x7a\xdc\x30\xe2\x0c\xd7\x84\xf2\x81\x08\xad\x0f\x2c\xc3\x81\x40\xa0\xdf\x65\x8d\x3d\xbd\x21\x26\x84\xf0\x1a\x38\xaa\xd3\xbf\x3f\x8f\xd4\x0c\x0f\xad\x2c\x74\xe4\x49\x66\x4a\x86\xe0\x3f\x7e\xf1\x2c\xa1\x2f\x50\xa7\x09\x93\x92\x49\x4a\x11\x8a\x2f\xc4\x2c\x06\xaa\xe9\x8a\x4b\xbc\x3c\xe7\x91\xd5\x68\x42\x48\xbb\x1b\xf3\x08\xc7\xd5\x8d\x1f\x47\x11\xda\x0c\x41\x63\x2d\x71\xe6\x16\xcf\x16\xb0\xc7\xc5\xf3\x50\x6a\x70\x55\xc4\x59\x86\xca\xae\x46\x77\x8c\x08\xd1\x6c\x08\xd7\x29\x03\x46\x5b\x48\x58\xe7\x09\xc1\xe6\x99\x65\xf4\x33\x5e\x50\x78\x15\x35\x42\xcb\x67\x5d\x38\x6c\xd0\x4e\xd6\x79\xc1\x8f\x23\x3c\x04\x06\xdd\xa4\xf0\x58\xb0\x26\x6f\xc3\x5e\x37\x4d\xb5\x59\x4b\xc1\x98\xa4\x67\xa4\x04\x12\xc4\xd9\x3a\xce\xe2\x1a\x1d\x9c\x16\x30\xdc\x55\x75\x9e\xda\xb4\x25\xc7\x6d\xec\x3a\x8b\x02\xc3\x38\x59\x27\x01\xe3\x65\xab\xad\xa4\xc3\xff\xf8\x84\x5e\xd6\x25\x4c\x51\x05\xb4\x5e\xed\xdd\xf7\xba\x6e\x94\x6a\x46\xf1\x1a\xd3\xdf\x8d\x26\xf4\xed\x41\xcd\xaf\x21\x9a\x7a\x07\x46\xf9\x22\x91\x71\x0b\x11\x12\x13\x58\x54\xe8\x82\x9d\x6f\xc8\x1c\xbb\xb0\x8d\x0b\x2d\xaf\x07\x46\x0d\xd9\x82\x68\xf6\x81\xcc\xd9\x4d\xc7\x81\x37\x24\x6a\x72\x6e\xb1\x88\xbf\x4b\xe4\x5b\x8b\xb9\xa4\x5b\x79\xbf\xce\x08\xbc\x2b\x51\xca\x48\x34\xc6\xa4\xd9\xb8\x64\x66\xc8\x79\xcc\xe3\x10\xdd\xd4\x52\xfa\x46\x83\xfa\x5d\x1d\x55\xc9\x72\x40\xb1\xb6\xf2\x2d\xe0\x0f\x1b\x39\x55\xc7\xdb\x34\xff\x7b\xc7\x2b\x36\x23\x52\xb8\x34\x59\x8f\xad\xc6\xbc\x6d\x03\xe3\xc9\x41\xb7\xa3\xf8\xf1\x87\x08\xd6\xd0\x2e\xf3\x04\x73\xb7\x74\xe9\xb0\x94\x27\x83\x1f\x1b\x89\x1c\xc9\xc8\x4d\x23\x46\x33\x84\xb8\x75\x86\xa7\x95\xfe\x50\x7d\x70\x68\x83\x0c\x93\xcc\xba\x70\x2f\x37\x1e\xb3\x56\x18\xd8\x6f\x6d\x8b\x6d\x2e\xcd\x00\xcd\x3b\xfa\x6f\x9c\x67\xb6\x5d\xc5\xd9\x26\x41\xd6\x6b\x8b\xa5\xbb\xa4\x8e\x0b\xc9\xe5\xa4\x9f\x55\x16\xe2\x75\x36\xc1\x83\x85\xdd\x45\x0f\xf7\x37\xb5\xdd\xf0\x6a\xb9\x2c\x51\x16\xa1\x12\x45\xdc\xb5\x7b\x3a\x9a\x4d\xe7\xb7\x0b\x2d\x16\xca\x1b\xbb\xdd\x5f\xa7\x58\xcb\xe8\x97\xed\x17\x2c\xcb\xfc\xa9\xb5\x26\xf8\xa5\xbb\x10\x6e\xf1\x7e\x7d\xf3\x6a\x30\xe3\x24\x71\x04\xc5\x44\x60\x8a\xc1\x92\xba\x2c\xd4\x8c\xf1\x3d\xad\x31\xbd\x22\x97\xc5\x23\x8b\xd6\xb4\x3c\x0f\x4e\xf5\x14\xd7\xe1\x16\x95\x2f\x62\x36\x6c\x29\x5d\x5b\x03\x71\x45\x33\xbf\x99\x93\xd2\x1e\xd6\x31\x4a\xa2\x0a\x35\x71\x3c\x05\x13\x41\xa1\x7f\xee\xc1\x09\xcb\x9c\xca\xfc\xe3\x74\xd3\xf6\xc1\x92\x9f\x73\x75\xbf\x61\xab\x51\xcf\x59\x81\x37\x33\x45\xc3\x31\xd6\x21\x1d\x6d\xae\x92\x2f\x2a\x10\xa2\x76\x89\xd9\x8a\xfa\xc2\xa2\x1e\xaf\x86\x60\x3d\x74\x35\xe8\x2a\x4e\x37\x7b\xd5\xfa\xa4\x01\x8d\xf2\xb0\x6a\x06\x42\x31\xa6\xa4\xb2\x6a\xd3\x88\x75\xca\xc1\xcd\x56\x3b\x06\x4f\x06\x03\xd6\xfe\x86\x0a\x96\x23\x3c\xe3\xf9\x48\x8c\x4a\x36\x93\x1a\x2b\x98\x8c\x30\x6c\xe4\xae\xcc\xa0\xa7\x66\xe0\x2a\xe5\xde\xf9\x02\x2c\x2e\x67\x80\x7d\xe6\xce\xb8\x62\x94\x0d\x5f\x73\x75\x76\xd5\xa1\xc6\xe7\xda\xd5\xd1\x2c\x5b\x47\xca\x5c\x51\xf3\x02\x39\xbc\xfc\xf1\x52\xc4\x95\xaf\x2d\x14\x18\x0a\xb1\xac\x9a\x57\x34\x25\x66\xf7\x3b\x8a\xb1\x13\x42\x4a\x92\xa5\x85\xa1\x3d\xde\x63\x1a\xe7\xdf\xdc\x0c\xf1\x9d\xb9\x19\x0d\x04\x3f\xd2\x4f\x18\x63\xcc\x5d\xd4\x71\x61\x34\x58\x23\xf9\xfe\x81\xed\x89\xbe\xf6\xf8\x09\xf5\x97\x34\xe2\xb9\x72\x84\x78\xcd\xf8\xd2\x39\x32\x46\x86\x17\x4a\xb3\x82\x36\x65\xb4\x65\x0b\x0f\x16\xf7\x8b\x83\xe2\x8e\x33\x2b\x3b\xb9\x98\x25\xc3\xd0\x71\xe8\x47\x8d\x19\xf2\x83\xa9\x98\x68\x8e\x63\x04\xb8\x92\x07\x4e\x18\x2a\x71\x90\x4c\x69\x34\xc7\xc4\x51\x60\x2f\x23\xa5\x39\x59\xf1\x23\x03\x19\x92\x64\x67\x1d\xc5\xc8\x82\x90\xbd\x96\x45\x63\x48\xc1\xf0\xaa\x03\x01\x30\x75\xc8\x6e\x7d\xfb\xe4\x66\x69\x86\x96\xe6\xca\xd4\xf5\x91\x17\x34\x65\x89\xcc\x6e\xee\xbb\x69\xb3\xb9\xc0\x95\x60\xd1\x32\x62\xbe\x32\x27\x97\xd4\xc5\x23\xd2\xb1\x77\x32\x9e\x2b\x83\xa1\xa8\x5a\x98\xfe\x8a\x80\x93\xe6\x11\x0f\x7b\xd8\x77\x96\x76\x15\xc2\x87\x83\xba\xcf\x4d\x60\x2c\x38\x5d\xff\x79\x17\xc5\x70\x53\xc2\x94\x17\x8c\x62\x98\xe4\xe2\xd1\x33\x0a\x0c\x3b\x9b\xd7\xd6\x51\x03\x26\x79\xcb\xa7\xf8\xef\xb0\x8c\x80\x53\xd5\xa8\xb8\x6d\x8e\xea\x23\xfe\x67\x06\x06\xa6\x09\xaa\x20\x46\x29\x6f\xe2\x8e\x3f\x37\xc7\x28\xad\x6f\x29\x64\xf3\x23\xf1\x93\xc8\x43\xdc\x86\x36\xc0\x3b\x49\x59\xae\xe7\x7b\xd5\xda\xa2\x19\x0c\x35\xda\x8b\x13\x6a\x13\x03\x2d\x90\x0a\xed\x10\x25\x89\x89\x77\x3a\x05\x15\x80\xd6\x49\x70\x6c\x39\x1f\x1b\x65\x72\x39\x6c\xbd\x7f\x8c\x76\x8e\x9e\xeb\xb6\x0e\x4c\x9e\x60\x85\x78\x6a\x8b\x4f\x8a\xba\xca\xa3\x9f\x29\x4e\x68\xf8\x26\xd7\xe4\x22\x17\xe6\x81\x4b\xca\xc6\x8d\xbe\xef\xb4\xb6\x38\x51\x5c\x91\x10\x70\x74\x3d\x2e\xb3\x5c\x0f\x6a\x79\x1a\xa6\x16\x01\x0b\x9e\x20\xf0\xe5\x63\xd5\xc3\x79\xac\xc7\x25\xa5\xd2\x48\xe3\xd1\x4a\x4d\x13\xd4\xe4\x51\x13\x63\x58\xb3\xee\x70\xe3\xc1\xc9\x63\xc2\x13\x4c\x35\x5a\x66\xd3\xd0\x8c\xc6\xe3\x79\x70\xbf\x10\xb3\x39\x9d\x3a\xe4\x79\x86\x1a\xd4\xaf\x28\x63\x9e\x22\x2d\xfe\xf1\x69\xed\x90\x03\xd8\x49\x6e\xd8\x24\x7a\xea\x49\x38\xc4\xc0\x74\xb2\x3f\x76\xe0\xbe\x6f\xcc\xaa\xdf\xd3\x35\x49\x0d\x67\x18\x0a\x1e\x13\x4b\x25\x83\x9c\x55\x7d\x6f\xca\x74\xc0\x8d\x3a\x21\xb9\x52\xde\xc0\xd2\x90\xfd\xdc\x10\x93\x41\xf2\x1a\x55\xa2\x96\x4a\xd6\x37\xad\x66\xab\xa9\x01\x30\x7d\xc1\x1d\xdb\x26\x5c\xe2\x93\xe5\x18\x43\x92\x3f\xa1\xc8\x18\x0e\xba\xb1\x96\x9e\x74\x58\x4b\x4f\x82\xa1\x9e\x48\xae\xad\x16\xb6\x6c\xe1\x48\x20\xab\xed\xb0\xb1\x07\xdc\x88\xa7\x6f\xdc\x98\x03\xba\x6b\xc2\xf3\xcb\x1c\x05\xbe\x6b\x48\x0e\xaf\x1f\x0a\x5d\xb5\x8a\x47\x02\x0d\x30\x54\xa3\xb4\xe7\x44\xe8\xc1\x03\x20\x97\xcf\xcc\x4e\xac\x19\x40\x29\xa2\x8d\x28\x2a\x39\x19\x83\x75\x02\xd4\x3f\xf5\x04\xea\xef\xef\x2b\xce\x1f\xba\xb5\xfa\x0f\xa0\xb1\x10\x99\x97\x9d\x3f\xe3\xf9\xfb\xd3\xda\xf2\x8a\xf3\xa7\x17\xcf\xff\x45\xa7\x4f\xff\x78\xfc\xcc\xb3\xe7\xc8\x60\x1b\x4e\x9e\xe3\x25\x5e\x7b\xee\xf4\x6d\x82\xee\x53\xe7\xc4\x25\x63\x3c\x73\x38\x82\xf6\xa0\xe1\x61\xfd\x15\x9e\x1b\xdf\x87\x91\x6a\xbd\x2d\x41\xa4\xd5\xe6\x26\x7f\x56\x20\x1a\x2d\xaf\x22\x2d\x6d\xdf\xd8\x2b\x58\xda\x24\xda\x80\x21\xc1\xe0\x78\x3e\xbb\xbb\x51\x60\xf5\xc4\x8a\xb6\xe4\x69\xd1\x82\x2f\xab\x5d\x4a\x23\xaf\x28\xc1\xdb\x58\x24\x4c\xa2\x42\x17\xef\xbe\x7a\xc1\x32\x7f\x32\x45\xf8\x30\x02\x12\x77\x07\xfb\xb9\xb2\x7d\xc5\x1d\x42\x01\x4d\xf3\x12\x2d\x71\x8f\xb5\x50\xa1\xf4\x4c\x95\x4c\x4e\xf4\xe2\x24\x6e\xdd\x5b\x4a\xaa\xc2\xb0\x91\x62\x33\xd5\x14\xa0\xa1\xa9\x54\x4b\x5d\xd5\x17\x41\x2f\xa0\x1b\xe7\xea\x2d\x54\x43\x59\x36\x01\x3d\xdb\xe6\xa6\x5a\xe2\x77\x45\xc0\x24\xea\xa6\x55\xd3\x1f\x13\x3e\x20\x2d\xa0\x7d\x57\x51\x35\x64\x7c\xb1\x17\x8e\x63\x16\x61\x5b\x8a\x48\xaa\x04\xf5\xd6\xc2\x9b\x36\x11\x4d\x17\x8a\xc4\x5a\xf0\x04\x3a\x21\x9a\xe9\x88\x99\x3f\xa3\xb2\x56\x33\x84\xb3\xb8\x9c\xe6\xc8\x16\xa3\x99\xe5\xcd\x02\xcb\x0b\xc6\x96\xeb\xcc\x66\x43\x43\x42\x3c\x15\x84\x57\x43\xf6\xe3\x91\xe4\xa4\x3c\xbc\xb1\x17\xf8\x96\xef\xcd\x3b\xeb\x50\x41\x78\x1d\x2c\xc5\xeb\x49\xd5\xf8\xe3\x91\xe5\x05\x13\xcb\x9b\x75\x56\xa3\x82\xf0\x6a\x68\xee\x58\x8b\xfd\x92\xf2\xa1\xf7\x57\x39\xf2\xac\xe9\xc4\x9a\xb8\xdd\x35\xca\x10\x24\x8e\x52\x91\xe5\x75\xbc\x7e\x71\x22\x58\x7e\x02\xc2\x03\x41\xb5\x70\xe2\xb0\xf2\xa8\xd1\x9d\x83\x2a\x00\x1c\x1c\x66\x87\x40\x2a\x8b\x43\x48\x33\x14\x2b\x36\x21\xdc\xa4\xae\xb5\x04\x71\x45\x8a\xc1\x79\x12\x57\xcc\x17\x30\x76\xdd\xd6\x2b\x12\x2f\x72\xb9\x06\xb1\xb8\xd1\x19\x99\x15\x15\x8d\x90\x64\x87\x19\x09\x9f\x92\xcd\xa8\xf1\x75\x6b\x63\x45\x4e\x64\x67\xe3\x11\x4d\x3a\x6e\x8e\xe6\xa5\xa2\x16\x43\x44\x4a\xb9\x0d\x54\x50\x78\x34\x71\x9f\xd9\x72\xaa\x2b\xae\x8d\x18\x50\x6a\xc6\x62\x64\xac\x50\xb4\x94\x6b\x75\x70\x79\x29\x99\x85\x17\x88\x2a\x18\x9d\xf5\x9a\xca\x83\xc1\xf3\xe9\x4d\x4c\x83\x61\xac\x32\x8a\x1f\x3b\x22\x39\x77\x14\xd8\xfa\xba\xd7\x65\x67\xb7\x8d\x37\x2b\x2d\x39\xea\xd1\xf8\x11\x6a\x58\x3e\xf3\xe0\x85\x49\x5e\x49\xa9\x40\x16\xf2\x3e\x13\x97\x95\x10\xdb\x26\x82\x35\x2a\x31\x85\x28\xe2\xf0\x13\x2a\x15\xb9\x71\x47\xc8\x40\x57\xd7\xb8\xa9\x78\xe8\x3f\x4b\xaf\x87\xf9\xbc\xbf\x7d\x70\x1f\x0c\x4d\xe0\x45\x01\xb9\x49\x3a\x4c\xd2\x97\x67\x11\xca\x2a\x14\x81\x7a\x8b\x60\x04\xea\x52\xba\x7b\x99\xb2\xb3\x28\x78\x5f\x81\x0e\xd4\x5b\x29\x6d\x94\x3f\x33\xbb\xee\xbe\xb1\xe5\xb2\x35\x9f\x37\x1a\x8d\x83\xd7\xb6\x56\xce\x6a\x35\xa6\x09\x5f\x4e\x42\xb0\xca\xa3\x17\xad\xbb\xb2\xed\x03\x8b\x98\x7d\x62\x83\x44\x4c\xd6\xa9\xa5\xa2\xee\x58\xb0\x54\xed\x75\x72\xed\x2d\x4d\x7b\x45\xe5\x02\x21\x54\x02\x5c\xf0\x10\x40\x62\x89\x2b\x32\xea\x57\x75\x79\x55\x6f\x2d\xfd\x25\x51\x0c\x74\xbd\x5c\xe7\x79\xdd\xf9\xb2\x41\x1b\xf5\xa1\x35\xbd\x6c\xd0\x46\x12\xc1\x9c\x9e\xb4\x4e\x8f\x2d\x0d\xe1\x9e\x24\xac\x0c\x49\xbb\xd9\xb1\xf2\xfd\xd7\xec\x59\x29\x09\xcd\x9b\x51\xca\x49\x20\x3a\xd1\x8c\x7e\x1e\x35\x39\x91\x66\x8d\xfb\x87\x56\xc6\x4c\x71\x35\x69\x27\x29\x6d\x34\xa6\xec\x15\x0d\x0f\x79\x76\xa7\x37\xd5\xdf\x24\x98\x14\x9a\x11\x8c\x26\xd7\xd3\x07\xe9\x36\xfe\x5a\xec\xc7\xc6\xd0\x4c\xf7\x9f\xd9\xb9\xb6\x14\xf3\xae\xfa\x63\x83\x41\x87\x68\x7a\xc3\x4b\x75\x59\xb0\x09\x4f\x93\xb8\xb8\x68\x57\xaf\xc9\xbb\x3d\x0c\x43\x83\xb9\x4c\x47\x26\x13\x31\x84\x8e\x1e\x0c\x85\xdf\x75\x4c\xcd\x97\x8c\xa3\xb9\x6a\x5f\x41\x3a\x0d\x86\xfa\xc0\xe7\x05\xca\x2a\x1a\x90\xcd\x21\xcf\x2b\x8d\xc8\x49\x30\x21\x4c\x50\x16\xc1\xb2\x03\x8a\x85\xe5\xe8\x47\xc5\x81\x38\x2e\x39\x19\x9d\x91\x94\xe8\x71\x00\xf0\x4c\x69\xa0\x26\x0a\xbd\x35\xa4\x2a\x31\x5b\x67\xa9\xe6\x9e\x26\x43\x03\xbd\x4a\x27\x5f\xaf\x39\x89\x98\xcf\xe7\x46\x90\xa8\x91\xd0\xf7\xc3\xc1\x47\x18\x27\x18\x92\x47\xae\xd2\x7b\xa3\xc2\x48\xdb\x00\x21\x24\xef\x76\x63\x2d\x71\x66\x93\x27\x32\xad\x18\xdf\x4f\xef\xaf\x55\x93\xbb\xfe\x56\xfe\xbe\x8e\x1c\xe2\xe0\x62\x93\x8c\x0b\x9d\xa1\xd6\x7a\x5b\x81\x91\xa0\x2c\x32\xa1\x10\x62\xa5\x19\x51\xb4\x75\x77\x61\x18\x6b\x02\x08\xbd\x37\x84\x60\x19\x86\x9a\xbf\xea\xb4\x36\x38\x4e\xd7\x30\x92\x27\x84\x3e\x19\x27\x12\xbf\x10\xf8\x5f\xcc\xc5\x37\xc1\x8a\x42\x1d\x15\x15\xbe\xd2\x94\x63\xf4\xbb\x8e\x95\xc1\xbc\x20\x58\xd2\xaf\xaa\xcf\x57\xa3\x6e\x6a\x57\xbe\x10\xfc\xa1\xcd\x48\xc1\xac\x28\xa5\x64\xa4\x06\x2f\xb7\xbb\x1b\xff\x26\x90\xc4\xd7\x23\xfd\x0e\xa5\x0b\x81\x8e\x75\x4c\x36\xa0\xf1\x1b\x6d\xdd\xe4\x7d\x67\x69\xa1\xcb\xfc\x92\xdd\x0d\xbc\xcd\x77\xe5\x91\x21\x4c\xe3\x6c\x57\xa3\x23\x40\x30\x2d\x52\xa9\xd2\x40\x37\x1f\xd4\x57\xee\x92\x2c\x5b\x76\x26\x89\x6e\xfa\x2a\x1c\xca\x22\x0d\x4a\x89\x8d\xe6\x19\x37\xd7\x56\x4a\x4c\x47\x75\x9b\x2a\x50\x5f\xab\x68\x00\x35\xbd\xdb\xdd\x2d\x64\x21\xd7\xda\x04\xd7\x6a\x6a\x78\x29\x25\xba\x21\x2b\xa4\x44\x87\x3b\x3c\xd7\x85\x20\x9a\x92\x57\x3f\x75\x28\x6e\x7d\x1e\x8e\xdd\x97\xa7\x46\x92\xc4\xce\x2c\x16\xf7\x4d\xcd\xe1\xde\x05\xcd\xec\x13\xd3\x38\x8b\x0d\x14\xa2\x8d\x6a\xd6\x6f\xf1\x3e\x6e\x2f\xd3\x41\x10\xf4\x8f\x9d\xb8\xd1\xb4\x9d\xa7\x58\xe8\xa5\x71\x14\x25\x48\xd4\x79\x7a\x72\x78\x1c\xc2\x2c\x9c\x34\x2c\x42\x47\x79\x6e\x34\xc5\xbf\xa0\xab\xe4\x2e\xd9\xab\xba\x5a\x93\xc5\x73\x57\xf1\x24\x56\x85\x04\x92\x4f\x67\x57\xde\x48\xf6\x42\x26\xd5\xa2\xc5\x99\xe0\x03\xcb\x17\x96\x31\x3f\xc5\xe2\xd4\x7e\x36\xc1\x25\x0d\x1b\xa7\x01\x31\x1c\xda\xac\x6d\x7a\x17\x4e\x38\x5f\x5a\x1e\x4a\x0a\xc2\xd6\xda\x76\xf9\x53\xe3\x6d\xaa\xda\xe6\x4f\x36\x2f\x6b\xc0\xc2\x04\x41\x9d\xd5\x39\xdc\x13\x81\x3f\x10\x0f\x5f\xee\x8f\xa2\xd6\xc9\x8a\x74\xf1\x86\x2a\x4a\x31\x8a\x5d\xd7\x88\x72\xbe\x70\xa2\x84\xda\x16\x55\xfd\xfd\xcb\x9a\xfc\x4b\x89\x58\x75\x15\xc5\x8f\x7d\x14\xb9\xbb\xd4\x45\x56\x6f\xe9\xb5\xe4\xcc\x1f\xee\x8f\xd3\x68\xca\x08\xe3\xf7\x47\x78\x65\x0a\xa2\x0c\xc9\xf1\xde\x09\x7e\x86\x1a\x97\x6b\x0c\x39\x6e\x24\x1c\x07\x67\x1d\xda\x55\x0d\x6b\xc4\xdd\x2a\xf6\x86\xbd\x27\x39\xd2\x88\x45\xf2\xa7\xcc\x6a\x7f\xb2\x8b\xa1\x70\x44\x68\xca\xf4\xa8\xcc\x8b\xbf\xe7\x19\x12\x7d\x03\x46\x6e\x6f\xd8\xb0\x5f\xff\xea\xd7\xbf\x02\xec\xef\xc3\x39\x21\x31\x57\xf4\xc9\x87\x73\x22\xfc\xe0\x00\x1f\xc8\x05\x35\x4c\x60\x55\x5d\x0e\x32\xf8\x68\xa7\xd1\xe0\x4a\x28\x1b\xc5\x8f\xfc\x6d\x9b\x7c\x01\x97\x11\xa1\x54\xc8\x14\x32\x6f\x66\x02\xae\x42\xea\x78\x13\x3b\x8d\xec\x11\xc0\xf3\xb7\x0c\xf3\xc4\x54\x40\x2d\xc4\x61\x01\xf5\xa2\x23\x91\x5b\xbb\xca\xa9\x65\x33\xf8\xb8\x82\x25\xc8\xe0\x23\xd5\x1f\x0e\x00\x19\xa0\xcb\x01\x1b\x4e\xe0\x2e\xfa\x50\x11\x74\x10\x6c\x4b\xb4\xbe\x1c\x10\x65\x85\xb3\xad\xd3\x64\xc0\xd1\x57\x71\xcd\xd2\x6a\x0d\xae\x3e\xc4\xfc\xe9\x1a\x02\x1a\xa5\x6c\x70\xf5\xe1\x3c\xbe\x02\x1f\xaa\x02\x66\x57\x5f\xe5\xe0\xbe\xde\xa2\x12\xed\x52\x70\xc7\xb5\x80\x1f\xce\xc9\xbb\x0f\xe7\xb0\xaf\x43\xe7\x51\xfc\x78\x25\xce\x73\xef\x18\xb3\xc8\x44\xb8\xf2\xa3\xe5\x7e\x63\xdb\x80\x25\x3d\x07\xc4\x69\xce\xb6\x8f\x8d\x6c\x1c\xe1\x7e\x93\x22\x44\x80\x3d\x90\x96\x02\x7e\xb2\xc4\xaf\x01\xbd\x97\xdb\x45\x19\x67\x35\x68\xde\x1d\x1d\x6d\x71\x6d\x11\x5c\xd4\x43\xe9\x58\x39\x52\x76\x3b\xba\xfa\x0a\x65\xa8\x84\xc9\x87\xf3\xed\xe8\x94\x12\xbb\x44\x58\x29\x64\x24\xec\x53\x5a\xd9\x94\x4f\xe2\xab\x0f\x50\x9b\xfa\x6d\x9e\x22\x36\xf7\x7f\xcc\x53\x44\x17\x80\x0c\x12\x6e\xd1\x63\x99\x67\x84\x44\x60\xd0\x13\x96\xc1\x91\xc6\x13\xda\x7b\xd2\x18\x9b\x7b\xa1\xaf\xf2\x2b\x61\x99\xc2\xab\x0f\xe7\x49\xfc\x9a\xd6\x9d\xef\x92\x53\x47\xf1\x34\xcc\x27\x60\xe4\x2b\xfe\xcd\xef\xf1\x7e\x38\xd7\x37\xc4\xb1\x12\x04\x92\x25\x81\x62\x1e\x34\x27\xec\xa4\x86\x88\xd0\xcd\xc4\xca\xb3\x7d\x43\x9c\xe8\x4e\xa0\x4d\xc4\xcb\x96\xba\x73\x5c\x0e\x98\xe3\xc3\x80\x3e\x2d\x12\x18\xa2\x14\x65\x35\x7e\x51\x0c\x00\x21\x54\x97\x83\xef\x51\x5d\xc7\xd9\xa6\x3a\x69\x4b\x89\x2b\x77\x93\xbc\x14\x5b\x7c\xae\x82\xe6\x9b\x1d\xe6\x9b\x01\x80\x65\x0c\x6d\xda\xee\xcb\x41\x5d\xee\x50\xb3\xa2\x8f\x4d\xd7\x29\x64\xaf\xf3\xfd\xeb\x87\xbe\x0b\x65\x37\xa5\x24\x95\xd4\x79\x81\x8f\x90\x78\x43\x14\x81\x66\xf4\xe2\x8c\xd6\x79\xb1\xcc\xe0\xe3\x29\x87\x1b\x3e\x99\x8e\xed\xd9\x0f\x64\x7b\x53\xf8\x01\xa0\x1e\xd5\x6d\x73\x5e\x43\x51\x31\x22\xba\x56\x4e\x9a\x7c\x48\x88\x3d\x21\xc3\xbc\x94\x4a\xea\x56\xb0\xac\x28\xa9\x3b\x4e\xbc\x8e\xef\xce\x0c\x76\xbd\x3f\x36\x73\xda\x73\xb2\x38\x4c\x13\xd7\x01\x5b\xc0\x0d\x02\x3c\xe6\xca\xd1\x19\x26\x72\x19\xc2\xc0\xb0\xf9\xc0\x07\xdc\xa0\x93\x52\x34\xab\xa8\x26\x19\x15\xbb\xd7\xa7\x58\x45\xfe\x44\xc0\x97\x24\x51\xef\xa9\x0c\x0f\xe3\xb0\x7c\x80\xbf\x54\xa9\x3d\x06\xcc\x5e\x6c\x42\x91\x91\x84\x91\xc7\x51\x02\x75\xef\x93\x12\x4b\x4c\x46\xb4\x25\xb0\xab\x30\xe3\x47\x4e\xbb\x8f\x79\x0d\x13\xf0\xd7\x0a\x95\xd5\x69\x04\x40\x6a\x39\x69\x93\x1f\xb8\xee\xb1\x85\xd2\xd1\x3a\x7a\x87\x15\x1b\xb8\x29\x11\xca\x06\x57\xe3\xf7\x80\x34\xef\xa1\xcc\x53\x90\xc0\xaa\x06\xff\x8a\xd0\xa7\xa3\x2d\x3c\xba\x5e\xff\x63\xc7\x3d\xc4\xd7\x16\x3b\x67\x43\x7f\xfd\x88\x4a\xbc\x84\x3f\xc6\x29\x7a\xeb\xd8\x7b\xfe\xc8\x09\x7e\xf1\xd1\x57\xdb\x5d\xe5\x65\x6d\xc3\x2a\xa4\x0d\x1f\xfd\x97\x9c\x1b\x6d\x4f\x7c\x0b\x13\xf4\xc6\x3d\x01\xd8\x38\xfa\xd6\xbf\xc3\xd6\x38\x32\x39\xff\x35\x77\x8e\x36\x3b\x0f\x28\x7d\xfb\xfc\x0c\xae\xc6\x56\x30\x99\xfe\x62\x33\x53\xa2\xa8\x63\x5e\x22\xc4\x27\xc6\xf3\xff\x7b\x4c\xcc\x6d\x9e\xb0\x10\x15\x6f\x3f\x50\xac\x91\x17\x7c\xde\x36\xff\x3e\xb3\x93\x65\x3f\x73\x76\xa6\xd6\xc8\xff\x2f\x30\x3b\xbd\xef\x1a\x56\x54\xe0\xfe\xe8\xe7\xd8\x20\x9d\xca\xf5\x61\xe6\xd5\x66\x72\xa8\xd3\xa7\x80\x14\x58\x26\x68\x7d\x74\x85\x00\x2e\x5d\x31\xc9\xb0\xc0\x07\x72\x57\xbd\xba\x4e\x12\x00\xa3\xc7\x38\x44\x15\x80\x25\x02\x4f\x28\x09\x73\xc2\x8c\x90\xd7\x27\x88\x64\x4e\xbd\xbe\xff\x3b\x08\xc2\x64\xc6\xfb\x35\xa3\xc8\x36\xe2\x84\x6f\xc4\x09\xdf\x88\x9e\x7f\xd2\xb0\x0a\xa8\x9e\x97\x05\xcc\xd0\xd1\x5b\xbf\xb9\xe8\x49\xd3\x2f\x15\xdf\xfa\x57\xdf\xa2\x34\x2f\x5f\xc0\xae\xc2\xac\x23\x9b\xc7\xef\x51\x55\xb1\x2d\xcd\x27\xce\x7f\xbb\x58\x8a\x4a\x60\xa9\x22\x1b\x90\xee\x2d\x49\x18\xb0\xfc\xf9\x8d\x62\xaa\x76\xd8\x49\x3c\x39\x3b\x89\xb3\x4f\x06\xe6\x98\xc9\xd7\x76\xc5\xa9\xb7\x53\xad\xba\xd7\xc9\xbb\x58\x0b\x79\x2b\xb8\x8d\xef\x6b\x3b\x09\x44\x89\xf3\xbb\x81\x8a\x8e\x49\x7a\x06\xb2\xd8\xa7\xa9\x8c\x5d\x46\xa9\x1c\x84\xc9\x65\xd0\x73\x01\xb3\x08\x45\x78\x64\x92\xca\x70\x85\x7f\x2a\x51\x16\x6e\xdf\x3a\x4c\x40\x9e\x72\xc9\xb6\xb9\xb9\x1c\xbf\x41\x28\xd9\xe0\x16\x85\x93\xef\x06\x57\x5c\x7a\x05\xbc\xb7\xb5\x15\xbc\x6d\x6a\x8f\x36\xc7\xff\xa7\x37\xe7\x15\x12\xd6\x9f\x51\x93\xb2\xeb\x92\xbc\x7b\xcb\xe1\x77\xff\xa4\xdd\xf6\xca\xbe\xf7\x1f\x0b\xa7\x55\xf8\x0a\x58\x89\x2e\x33\x99\xd2\xab\x28\x33\x0d\x50\x42\xa4\x6f\x49\x9c\xa1\xdb\x2d\x2c\x6b\xdc\x5e\xfa\xfc\x17\x6e\xf2\x49\xdc\xd7\xd1\x13\x14\x74\xa9\xfa\xfe\x6f\x3c\x16\xaf\xb3\x1c\xb3\x39\x80\x47\x99\xf9\x7c\x32\x4a\xd5\x7d\x3e\x19\x4f\x6e\xf0\xe7\x93\xf1\xf3\xc9\xf8\xf9\x64\x34\xd5\xf6\xb3\x4f\xc6\xf4\x65\x05\xcb\xcf\x47\xe3\x3f\xf9\x68\xfc\x97\x5d\x55\x03\xf8\xf9\x7c\xec\xab\xee\xf3\xf9\x78\x72\x83\x3f\x9f\x8f\x9f\xcf\xc7\xcf\xe7\xa3\xa9\xb6\x9f\x7d\x3e\xd2\xaf\x77\xf9\x6e\xb3\xcd\x76\xff\x59\xce\xc8\xff\x26\xa7\xe4\xb7\x79\x89\x3e\x9f\x8e\xe6\xea\x3e\x9f\x8e\x27\x37\xf8\xf3\xe9\xf8\xf9\x74\xfc\x7c\x3a\x9a\x6a\xfb\xd9\xa7\x63\x91\x27\xb0\xbc\x2e\x11\xfc\x4f\x72\x30\xf6\x42\xfd\x57\x39\x16\xbf\xcb\x10\x48\x3f\x1f\x8d\x9d\xd5\x7d\x3e\x1a\x4f\x6e\xf0\xe7\xa3\xf1\xf3\xd1\xf8\xf9\x68\x34\xd5\xf6\xf3\x8f\xc6\xf8\x3f\x91\xc6\xf1\xcd\xef\xdf\x34\xfe\x1f\x56\x25\x38\xef\x78\xff\x36\x17\x04\xdd\xaf\xa0\x03\x92\xf9\xb0\xf4\xbb\x20\x50\xa0\xae\x06\x8a\x16\x61\xbb\x24\xa1\x27\x60\xdf\x2a\xf8\x0a\x65\x35\x4a\x50\x92\x40\x60\x83\x9b\x3c\xaf\xab\xba\x84\x05\xb8\x8e\xd2\x38\x03\x1f\x51\x5a\x24\xb0\x46\x60\xf5\xd2\x9e\x0f\xdb\xba\x2e\xaa\x8b\xf3\x73\xe2\xc4\x9a\xc4\x2b\x27\xcc\xd3\xc1\xd5\x2d\xfb\xd5\xbd\x09\x7b\x0d\xe4\x5e\x35\x55\x1f\xce\x3b\x07\x81\x8e\xf8\xb1\x81\x54\x11\x6b\xbf\xab\xb0\x8c\x8b\x5a\x9b\xa9\xf3\xf3\x8f\xdf\xdd\x7d\x07\x76\x9b\xe4\x05\xc0\x2c\x02\xbb\x2c\x85\x31\x71\x7c\x85\xab\x04\x59\xa0\x44\x55\x9e\x3c\x22\x50\xe5\x29\xda\xe6\x4f\xe0\x29\xae\xb7\x60\x93\xdb\xab\x38\xc3\x47\xa7\x8a\x6e\xbd\xcb\x88\xe9\x24\x20\xc6\x8c\xb7\x5b\x14\x7e\x42\xd1\xd9\x70\x3f\x80\x49\x32\xb8\xbc\xbc\x0c\xf1\x93\xef\x6b\x58\xa3\xdf\xfe\xf6\x8b\xb3\x81\xb3\xda\x25\x9f\x96\x34\x04\x3d\xcb\x18\x9c\xc1\x14\x5d\x7e\x49\xa2\x03\x2d\x4b\x14\xe6\x65\x54\x7d\xf9\xe3\x60\xe8\xc4\x04\xd9\xd9\x80\x60\x18\x0c\xad\x41\x96\x67\xe8\x97\x41\xb9\xcb\x18\xd2\xc5\x23\x2c\x01\xba\x7c\x05\x96\x8b\x90\x76\x71\x30\x74\x12\x94\x6d\xea\xed\x02\xfd\xe1\x0c\x97\x0f\xf3\x64\x97\x66\xcc\x7c\x71\xe8\x6c\xe3\x08\x9d\x0d\x2d\x8e\xd9\xa6\x98\xab\xc1\x90\xb8\xec\xb3\x37\xf4\xa1\x1d\x66\x35\x2e\x51\xa7\xc9\x19\xfa\xfd\x00\xfc\x85\xd6\x05\xbe\x67\x51\xba\x07\xc3\xe1\x85\xa9\x0a\x01\x91\x52\x05\xad\x7c\x78\xc0\xbd\xbb\xfd\xeb\x5f\xfe\x72\xff\xa7\x8f\xcb\xbf\xfe\xe5\x9b\xcb\xa7\x38\x8b\xf2\x27\x27\xc9\x69\x2c\x48\x07\x6f\x06\xa7\x2a\x92\xb8\x3e\x1b\xfc\x61\x30\xfc\xc1\xfd\xd1\xfa\xe2\xe6\xbb\xbb\x7f\xc3\x03\x42\x5c\xa6\x87\xd6\x17\xdf\xde\xff\xe9\xaf\xcb\x8f\xdf\x7d\xf5\xd5\x37\xf7\xf8\xf1\x3b\xd1\x8f\x6a\x68\x7d\xf1\xfd\xd7\x77\xf7\x37\xd7\x7f\x59\x62\x30\xf2\x5e\x72\xaa\x15\x00\x1e\xbe\xfb\xee\xe3\xfd\x5f\xc8\x50\xcb\xae\x82\x18\xe8\x9b\xfb\x87\x8f\xcb\xdb\xef\xbe\x21\xaf\x1b\xaf\xea\xa1\xf5\xc5\x5f\xbe\xfe\xea\x8f\xed\x9b\xd6\x5f\x69\x68\x7d\xf1\xa7\xeb\xff\xd5\xd4\xea\x34\x0e\x68\x43\xeb\x8b\xb6\x26\x5e\xc1\xe2\x8b\xb3\x28\x0f\x77\x29\xca\xea\xa1\x53\x22\x18\xbd\x9c\xf1\x75\x7b\x36\xdc\xd3\x35\x20\x3c\x68\x6b\x75\xc2\xaa\x3a\x1b\xb4\x5e\xec\x03\xeb\x8b\x33\x3a\x88\x43\x87\x3e\x39\x1b\x36\x8b\x08\x8f\x9c\x93\xef\x6a\x54\xfe\x91\xbd\xb2\x6a\xf6\x74\x0b\xab\x5b\x4c\x19\x78\x93\x96\x24\xcc\xec\x60\xf8\x07\xf7\x82\x35\xb7\x41\x67\x65\x97\xcd\x70\x38\xe8\x6f\x67\x5e\x5b\xd3\xef\x95\xc1\x6c\xcb\xc4\x97\xd9\x15\xfa\x43\x76\x81\x16\xb1\x7d\xd9\x8c\x4c\x5b\xb0\xb6\xfa\xfa\x14\x0f\x0f\x0b\x69\x22\x9d\x75\x9c\x45\x67\x03\x38\x18\x3a\x79\x76\x36\x08\x93\x38\xfc\x34\xb0\x9a\x11\xaa\xe9\x98\x65\x97\x5f\x9c\xd5\xdb\xb8\x1a\x3a\x34\xcb\xea\xd9\x70\x91\x39\x71\xc5\xd6\xf5\x23\x1a\x0c\xff\x70\x96\x39\x25\x4a\xf3\x47\xc4\x7a\x4f\x5f\x00\xfa\x8f\x5d\xa5\x03\xb2\x7c\x77\x09\x8d\x07\x37\xb0\xb2\xa1\x53\x25\x71\x84\xfe\x5a\x88\x13\x84\xce\x86\x07\xbc\x07\xb2\xa6\x22\x5a\x8d\xe0\x2b\x3c\xfc\xc7\x3f\xce\x4c\x5d\x48\xe2\xc1\xf0\x78\x13\x8c\x05\xc1\x2e\x19\xb4\xcd\x19\x0e\xad\xcc\x81\x51\x24\x61\xe9\x6a\xfe\x5d\xfe\x94\xe9\x1d\x38\xc8\xbb\xc9\x38\xb4\xc3\xbd\xba\x60\x58\x88\x83\xe1\x1f\x3a\xfa\xc7\x06\x9b\xb6\x96\x53\x9d\x3e\xc8\xc1\x50\xeb\x07\x19\x06\xd3\x30\x51\xd2\xd3\x87\xcd\xae\x52\x36\x50\x8c\x1a\x1d\x01\x36\xd4\x6e\xae\x9a\xc0\x0e\x29\x3d\x72\x28\xbd\x91\x46\x04\xdf\x8f\xe9\xf4\x91\xd1\x35\x55\xfc\x25\xfc\x81\x1e\xf7\x5f\xfe\x5e\xa0\x82\xbf\xff\x72\xf0\xe3\x97\xcd\x9a\xa5\x2b\xa4\x6d\x52\xb8\x2b\xf1\x73\x1b\x33\x3c\x1d\x4b\x03\x6f\x0b\x9a\x32\x43\x9c\xe3\x12\xd5\xbb\x32\x03\x78\x43\x10\xba\x7a\x79\x29\xd4\x79\x38\xb1\x3e\x06\x55\xe1\x45\x35\xe8\x5b\x4c\xed\x4e\x30\xae\x49\x4e\xa3\xaa\x14\x96\x75\x89\xaa\xf8\xef\x48\x43\x61\x91\x95\xe2\xac\x33\x27\xbd\x25\x21\xb1\xbf\x27\x81\x29\x56\xb0\xa4\xc7\x2a\x21\xf4\x8c\x4e\x69\x20\x67\x7b\xb8\xab\xf3\x3f\xc6\x11\x6a\x1e\x5d\xfc\xc6\xb5\xea\x2d\x4a\xd1\x05\x26\x2e\x71\x0a\x93\x81\x95\xe6\xbb\x0a\xfd\xeb\x16\xa1\xe4\x62\x5f\x94\x24\x77\xcd\x1d\x0d\x40\x72\xf1\x1b\xf7\x70\x20\xf3\xd6\x47\x9a\xd9\xa9\x27\xc8\x2b\xcc\x14\x89\x13\x71\x4e\x90\xc8\x8d\xaa\xaa\xcf\x06\x0e\x97\x0e\x11\x5a\xcc\xde\xd2\x69\x8c\x07\x98\xd6\x22\xf6\xcb\x69\xef\x1b\xc3\x05\x72\x60\x5d\x97\x67\x03\x12\x65\x63\x30\xfc\x43\x46\x67\xe2\x23\x59\x85\x67\xbe\xeb\x8a\x35\x23\xb6\x7a\xaf\xc5\x22\x07\x42\xae\x94\x52\x43\x0b\x51\xe2\xcb\x09\xef\x00\x0f\x22\x5e\xe5\xb5\xbc\xc2\x25\x31\x8c\x16\x67\x81\x8e\xda\xc0\x11\xae\x94\xb8\xc7\x71\xf8\x49\x3f\xd5\x7a\x06\x64\xc1\x1b\x8e\x17\xc3\xf1\x89\xf8\xf2\x07\xa3\x8f\x3e\xde\x4a\xec\xfb\xd9\xbe\x89\xa0\x72\x41\xd9\x87\x03\x6f\x6a\x9b\xeb\x5d\x4c\x2f\x40\x38\x0e\xba\xd8\xba\x00\x9a\x9f\x78\xcd\x1d\x69\x63\xbc\x26\x5c\xd2\x4f\x95\x4d\x93\xf8\x12\xf4\x7c\x20\xae\xcb\x12\xbe\x60\x6c\x75\x5e\xbf\x14\x08\x4f\x4d\x88\x9c\x10\x26\x49\x83\xd2\xf9\xdb\x0e\x95\x2f\x94\xeb\xca\xcb\xeb\x24\x91\x91\xe1\x01\x5b\xe7\xe5\x3d\x0c\xb7\x6d\xad\x68\xb8\xcf\xd0\x13\xf8\x9e\x67\x0d\x3e\x43\x16\x8b\x8c\x33\x60\x39\x36\xc8\x20\x1c\x4e\x58\xe8\x84\xe9\x74\xd6\x09\xac\x9b\x71\x39\xbd\x00\x67\x6d\xf7\x84\x3d\x5d\xe5\xcf\x64\x25\x5d\x0c\x62\xfe\x7b\x89\xe1\x6c\xea\x59\x64\x95\x30\x8a\x73\x0e\x41\x7e\x88\xaf\x0f\x7c\x3d\x0c\x08\xef\x4b\xb9\x61\xb6\xf1\xe2\x35\x63\xf1\xa5\xcd\xd7\x72\xe4\x97\x03\xcc\x22\xc9\x5c\x81\xe1\x4b\x4b\xb4\xaa\x86\xc9\xb5\xe4\x1b\x44\x77\x0b\xfe\x9a\x85\xbf\x44\x1b\xa4\x33\xa7\xa7\x19\x84\xbd\x93\xb0\x2f\x8c\xf7\x85\xff\xa0\x11\xea\x69\xc8\x3f\x79\xa0\xcc\xad\x79\x47\xea\xb3\xf1\x75\xf0\xd4\x01\xc2\xb0\x6f\xc7\x7e\xbc\xd7\xe4\x22\x69\xaa\xe0\xc8\x49\x44\x05\xc2\x9d\x47\x10\x1f\xca\x0c\x3d\xe3\x61\xd3\x88\xff\x17\xb4\xbc\x72\x0c\x5d\x89\xb1\x90\xf1\x35\xf7\xf7\x83\xcb\x4b\x06\x4a\xf2\x1c\x9c\x0d\xff\x20\xfd\x1c\xd8\x83\xe1\x85\xfc\xe4\xf7\x03\xba\x65\x07\xbb\x2c\x42\xeb\x38\x43\xd1\xe0\x37\x97\x98\xcc\xe5\x6b\xf0\xa7\x3f\x33\x0a\xfa\xdb\xdf\x9e\xf5\xf6\xb0\x01\xa4\xe1\x58\xd9\x90\x70\x4e\x22\xc9\x61\x64\x86\x8e\xf2\x8c\xf2\xb7\xed\x58\x20\xab\xb9\x22\x88\xcf\xac\x8c\x3e\x8d\x17\x8c\x59\x12\xf0\xb5\x72\x84\xb3\xe1\x3e\xfb\xc7\x3f\x90\x03\x8b\x22\x79\x39\x83\x56\x4e\xae\x37\xbb\x24\x21\xd7\x59\x78\x89\x07\xcf\xca\x2f\x61\xb9\x21\x3d\xa9\x16\xf1\x1f\x88\xb8\xe5\x63\x9c\xa2\x7c\x57\x9f\xc5\xc3\x8b\xec\xb7\xbf\x55\xca\x57\xa8\xe6\xef\x43\xab\xfe\xc7\x3f\x3c\xd7\x1d\x1e\x0e\x8b\x9f\xfe\x27\x26\xf9\xce\x3a\xfb\xa1\xfe\xf1\x52\x24\xea\xac\x81\xe8\x0f\x84\x9f\x5b\x91\x99\xa2\x7c\xd4\xc0\xc2\x00\xc3\x0b\xf2\xa2\x2e\xe3\xcd\x06\x95\x67\xf5\xf0\x70\x38\xa3\xc8\xac\x81\xc0\x74\x0d\x86\x0b\x25\xb0\x19\x17\xca\x1c\x13\xd3\x10\xd1\xa5\xc3\xa2\xb5\x55\xce\x26\xc9\x57\x30\x71\x12\xb4\x41\x59\x04\x2e\xc1\x5e\x17\x1b\x21\x22\xc0\x89\x2e\x00\xd1\x56\xc8\xef\x0f\xba\x14\x08\x7c\x13\x67\x08\x84\xb8\x1a\xf9\x15\x21\x77\xf5\x33\xb8\x04\xcd\xc1\xb8\x41\xf5\x7d\x42\x62\xf0\xdc\xbc\x7c\x4d\x18\x7a\xee\xcd\x81\xfb\xa7\x16\x6e\xde\x82\x4b\x80\x0f\x47\xf2\xfd\x2c\xac\x9f\x2d\x53\xb3\xf1\x32\xbd\x00\x5f\xe2\x42\x5f\x5a\xfa\x6b\xcc\x74\x5c\x98\xca\xe1\x3f\x12\xac\xb4\xba\x00\x3f\xfc\x68\x28\xc9\x4b\x57\xa8\xc6\x20\x1d\x28\x1a\x34\x17\x60\xf0\xed\x0b\x78\xc0\x7b\x91\x17\x1b\x74\x60\xc5\x7f\x6d\xcc\x3b\x22\x35\xbc\x00\x03\x9e\x25\x08\x78\xb3\xc0\x02\x5e\x30\xb6\x80\xeb\x8c\xbc\x61\x2f\x16\x12\xbf\xad\x17\xc3\xb4\x17\x01\x09\x66\x79\xf3\xcb\x60\x39\xad\x47\x27\x60\xfa\x63\xfe\x88\x4a\x1d\xdd\xbb\xf5\x7a\x7d\x62\x59\xbd\x43\xbe\xef\x5a\xfc\xbf\xfe\x31\x15\x86\xe4\x5f\x69\x9a\x6f\xaf\x07\x9a\xae\xaf\x1f\x7e\x34\x43\x1c\x8c\x4b\x96\xff\x09\xeb\xe6\x7b\x14\xe6\x59\xf4\x73\x16\x8e\x05\x66\x78\xa4\xdd\x09\x59\x36\xaf\x5e\x35\x52\xf1\xa9\xfb\xb6\x45\xf3\x7a\x24\xa7\x74\xe6\x14\x44\xff\x1e\x4b\xc6\x0b\x3c\xcb\x9b\x4d\x2d\xdf\x0d\xfe\x99\x4b\xc6\xf0\xfc\xa0\x60\x3b\xc8\xc7\x02\xa0\x04\xf9\x86\xf0\x99\x6f\xa1\xc7\x82\x0f\x81\x89\x20\xb7\xaf\x5f\x43\x91\x57\xb0\x7c\x3b\x41\x1e\xfc\x0b\xcc\x76\xb0\x7c\x19\x58\x60\xf0\x80\x56\x25\xff\xfe\x2d\x2c\xc3\x2d\xfe\x72\x5d\x94\x71\x42\x9f\x90\x17\xff\xb2\xc3\x3c\x19\xfe\x37\x79\x19\xfc\x22\xe4\xfc\xcb\x77\x20\x5f\x83\xff\x95\xd7\xa8\x32\xf5\x83\xff\xe9\xfb\x91\x5f\xdc\x8e\x2f\x81\xc0\xb3\xc0\xc8\xb5\xc0\xd8\xb5\x80\x3f\xb3\xc0\xdc\xb7\x40\x80\x7f\x07\x3f\x87\x9e\xbc\xbd\xe1\xee\x28\x98\x4d\x4e\x69\xf8\xd8\xb3\x40\x30\xb1\x80\x1f\x58\x60\x3c\xb3\xc0\xd4\xb7\xc0\x68\x6c\x01\xcf\x7f\xe5\xaa\xd6\x9f\xb2\x24\xfd\x9d\x4b\xa4\x0a\x61\x82\xba\x5f\xe3\xbf\x97\xeb\x67\x74\x64\x8e\xf1\x5f\x1d\x87\x9f\xfa\x11\xf1\xbf\x15\xda\xc4\xd9\x75\xfd\xff\xa0\x32\xbf\x00\x75\xb9\x43\xfd\x45\x0e\xdd\xaf\x4d\xe3\xd0\x51\xe4\x70\xca\x9e\xe7\x76\xcd\x6f\xdc\xf8\x8a\x71\xb4\x69\xf3\x93\x1c\x98\x46\x86\xb1\xd9\xac\xe6\x2e\x0d\xee\x60\xf9\x09\x7c\x55\xa2\x97\xae\x05\x35\xf8\xf3\xae\x2c\x12\x04\xc8\xfa\xeb\x04\xfa\xaa\x84\x2f\x47\x41\x10\xca\x8e\xc0\xdc\x24\x3b\x5e\x93\x0e\x61\x22\x18\xc7\x89\x05\xdb\x0c\x9e\xef\xd2\x6d\xeb\xe1\x7d\xec\xcd\xf0\xff\xb9\x6e\x17\x0d\xd2\xb6\x5d\xc7\xf0\x91\x46\xbf\x1b\x07\xc1\xed\x74\xd4\xb7\x23\x07\xef\xe6\x37\xc1\xfc\x66\xd2\x0f\x73\x73\x77\x3b\xba\x9d\xf6\xc3\x1c\x27\x5b\x03\x96\x26\xd6\x30\x82\xa0\x63\x14\xf1\xdf\xd6\x78\x38\xf7\xf6\x9b\x66\x2d\x39\xd2\xa7\xd1\xd4\xbd\x7d\xe8\x87\xb9\x7d\xb8\x1b\xdf\xcd\x8e\xf4\x69\x72\x7b\x7d\x7d\xd3\x0f\x33\x9e\x5f\xcf\xef\xaf\xbb\xfa\x6d\xa2\x63\xea\x4e\x3f\x68\xdb\x97\xec\x4f\x69\x03\xbe\xe6\x78\x8d\x58\x19\x13\x89\x67\x02\xd5\x87\x38\x49\x24\x8e\x06\x9f\x37\xfc\x3f\xd7\x09\x02\x23\x53\x43\x57\x35\xd5\xd5\x4b\x1d\x30\x12\xa0\x3f\xc7\x6f\xbd\x04\x36\xf6\x35\xaf\xa3\x3a\x9f\xb7\xa5\x01\xe6\x4d\xdb\x92\xb3\x0b\xdf\xbe\xf0\x41\xfd\x12\xcf\xe8\x3a\x2f\x01\x95\x13\x98\x16\xb5\x01\xd7\x89\xe7\x00\x3c\x76\x0e\xf4\x9e\x00\xfd\xb4\xbf\x97\xea\x9b\xe8\xfd\x29\x7b\x93\x2f\xd0\x93\x76\x65\xbb\x6b\x4c\xfb\x91\x6e\xd9\x22\x36\x8a\x28\xf2\xba\xe8\xe5\x78\xe8\x64\x18\xe5\x32\xe0\x54\x3e\xe1\xcf\xdc\xce\xfb\xad\x9b\xb5\xb1\x13\xff\xbc\x5b\x3f\xef\xd6\xff\x94\xbb\xb5\x59\xe1\xbf\xd8\x76\xe5\x18\x8d\x9b\xf6\x94\x6b\x4a\xef\xe5\xe2\xb4\xeb\xc7\x2b\xae\x1e\x1d\xd7\x8e\x37\x5d\x2d\xc2\x3c\xab\x6a\xf0\xed\xfd\xb7\xcb\xef\xaf\xbf\xfd\xf3\x37\xf7\xcb\x6f\xbe\xfe\xf6\xeb\x8f\x78\x8f\xef\x9d\x14\xa5\xdf\xc3\xb4\x48\xd0\x37\x71\x1a\xd7\x87\xc3\x02\xaf\xc3\x6f\xe1\x73\x9c\xee\x52\x90\xed\xd2\x15\x2a\xf1\x05\x34\xa5\x41\xd5\x68\x0e\x7d\x02\x5f\x99\xea\xf8\xf3\x5f\xbe\xbb\x35\x54\x52\x94\x79\x78\x4a\x2d\x18\x0e\x55\x55\x5e\x2a\x15\x69\x14\xf0\x2b\x22\x01\xc7\x4b\x25\x86\xab\x04\x55\xa0\xce\xc1\x36\x27\x19\x78\x11\x60\x56\x14\xa0\xaa\x61\xbd\xab\x30\x5e\xfc\xb4\xc9\x52\xaf\xaf\xb6\x0a\x95\x8f\xa8\x34\xde\xc8\x88\x02\x05\x40\x90\xa2\x7a\x9b\x47\xb8\x9a\x12\x85\x34\x44\x24\xd8\x15\x79\xc6\xca\x82\x24\xaf\x2a\x1d\x71\x0b\x7b\x29\xa8\x37\x4c\xab\x84\xa1\xa1\xab\xfd\x5f\xd1\xea\xfb\x3c\xfc\x84\xea\xb3\xc1\x53\x75\x71\x7e\x3e\x00\xbf\x07\xad\x99\x5e\x5e\xd5\xe0\xf7\x60\x70\x0e\x8b\x78\xa0\xcf\x75\x8b\xcc\xc9\xb3\x14\x55\x24\x0a\x9e\x50\x3b\x31\xbb\x30\x36\x81\x37\x3a\xad\x36\xe0\x12\xfc\xcb\xf7\xdf\xfd\xc9\x29\x60\x59\x21\x5a\xc4\xc1\x33\xa2\x1e\x17\xfc\x2f\x5e\x83\x33\x52\xec\xf2\x12\x64\xbb\x24\xe9\xc4\x8f\xff\xa8\x36\xa5\x03\x93\xa6\x9b\x10\x26\x03\x73\xc0\xf2\x54\x52\x7b\xd4\x02\x32\x29\x7d\x57\xe3\x70\xdb\x9c\xb4\x2e\xc3\x0a\xfc\xe6\xf2\x12\x34\x7a\xb1\xde\x66\x9e\x9f\x83\xdb\x04\xc1\x12\xc4\x19\x08\x61\x85\xd4\x9a\x61\x05\xf2\x02\x65\x28\x02\x2b\xb4\xce\xcb\x9e\xad\xdc\xa8\x40\xc8\x18\x3a\x94\x66\x83\x4b\xf0\xc3\x8f\x1d\x83\x60\x28\xc4\x8f\xde\x1f\xdc\x1f\x1d\x76\x40\xbf\xa9\xb8\x27\x17\xef\x46\x40\x56\x02\x4a\xc1\x25\x68\x06\x0f\xd3\x8a\x9e\x2a\x09\xdd\x2e\xf3\x50\x2a\x82\x1f\xf4\x94\x39\x3f\x07\x5f\xd7\x20\xae\x40\x91\x57\x55\xbc\x4a\x10\xde\x61\x1b\xd4\x46\xe3\xe0\x2b\xf8\x69\x1b\x27\x08\xac\xe3\x24\x89\xb3\x0d\x99\x0a\x58\x96\xf0\xa5\x02\xab\x17\x50\xec\xaa\xed\xd9\xd0\x02\x55\x0e\xe2\xac\xaa\x11\x34\x9c\x9e\x42\x85\xc5\xae\x26\x08\xb6\x71\x55\x63\x9a\x56\xe7\xe4\x27\xa1\xcd\x19\xc6\xce\x08\x06\xad\xa0\x1b\x15\x3e\xac\xcf\x88\x06\x13\xf7\x18\xa5\xcc\x04\x18\xd8\xc0\x5b\x80\x18\x5c\x5d\x02\x17\xfc\xf6\xb7\xe6\xd9\xe7\xb0\x1f\x34\xaa\xbc\x00\xb6\x1d\xf7\x2e\x4c\xd0\xb5\xa4\x9c\x5d\x56\x6d\xe3\x75\x7d\x96\xa2\xf4\x87\xf8\x47\xa7\x8e\x53\xd4\xb5\x63\x3b\x10\xa9\xcb\x4c\x45\xf9\x08\x93\xdd\x9b\x71\x7a\x0a\x4e\xbc\x36\x4e\x42\xda\x23\x82\x6b\xeb\xda\x15\x11\xac\xd1\x59\x1f\x9e\x37\x53\x1e\x8a\xbb\x9f\xbc\xa0\xf4\x15\xc4\x25\x5e\x9f\xf5\xae\x0b\x4c\x48\xd5\x95\xf1\xc6\x45\x41\xc7\xfa\xe7\xae\x83\x9f\x87\xc5\x3b\x19\xcb\x49\x53\x2d\x76\x8f\x6c\x7e\x36\x01\x47\x57\xfc\xb1\x5e\x4a\xc8\x8e\x2e\xcb\x63\xbd\x6d\xb0\xe1\x85\xfe\x1a\x74\x47\x96\xb2\x71\xa5\x1a\x1f\x36\x8c\x00\xb1\xf8\x53\x98\x10\x20\x98\x41\x34\x8c\x8a\x05\x46\xae\xeb\x0e\x17\x84\x2f\xef\xc5\x7f\x7e\x0e\xee\xab\x1a\xae\x92\xb8\xda\x02\x08\x9e\xd0\xaa\x22\x3c\x0b\x08\x9b\x08\xda\x9c\xb4\x5e\xff\xf9\x6b\xd6\x14\x19\x45\x53\xab\xd4\x55\xc5\x2e\xe2\xc3\x39\xc9\x68\xff\xeb\x5f\x7d\x38\xdf\xd6\x69\x72\xf5\xeb\x5f\xfd\x9f\x00\x00\x00\xff\xff\x53\x1e\x84\x56\xb7\x84\x01\x00") +var _dashboardHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xe9\x92\xeb\xc6\x95\x20\xfc\xdf\x11\x7e\x87\x14\xaf\xae\x55\xb4\x01\x14\x00\x12\x5c\x6f\x95\xa6\x56\x59\x1d\x92\xe5\x91\xae\xa7\xa7\x3f\x85\x82\x91\x04\x92\x24\x54\x20\x00\x03\x60\x2d\xa2\xf9\x3d\xd3\xf7\x10\xdf\x83\x4d\xe4\x06\xe4\x06\x90\x55\x52\xbb\x7b\xba\x6f\xd1\xf2\x25\x81\x93\x27\xf7\x93\x27\xcf\xfa\xe1\xb3\xdb\xef\x6e\x3e\xfe\xdb\x5f\xef\xc0\xa6\xda\x26\x97\xbf\xff\xdd\x07\xfc\x2f\x48\x60\xba\xbe\xe8\xa1\xb4\x77\xf9\xfb\xdf\x01\x00\xc0\x87\x0d\x82\x11\xfb\x4e\x7e\x6f\x51\x05\x41\xb8\x81\x45\x89\xaa\x8b\xde\xae\x5a\xd9\x93\x9e\xf6\x7e\x53\x55\xb9\x8d\xfe\xbe\x8b\x1f\x2f\x7a\xff\xdb\xfe\xdb\x95\x7d\x93\x6d\x73\x58\xc5\xcb\x04\xf5\x40\x98\xa5\x15\x4a\xab\x8b\xde\xd7\x77\x17\x28\x5a\x23\xbd\x78\x0a\xb7\xe8\xa2\xf7\x18\xa3\xa7\x3c\x2b\x2a\xa1\xc4\x53\x1c\x55\x9b\x8b\x08\x3d\xc6\x21\xb2\xc9\x0f\x0b\xc4\x69\x5c\xc5\x30\xb1\xcb\x10\x26\xe8\xc2\xc3\xd8\x04\x7c\x55\x5c\x25\xe8\xf2\xab\x0c\xdc\x55\x1b\x54\xa0\xdd\x16\xdc\xc2\x72\xb3\xcc\x60\x11\x7d\x38\xa7\x2f\x25\xf8\x24\x4e\x1f\xc0\xa6\x40\xab\x8b\x1e\xee\x44\x39\x3b\x3f\x0f\xa3\xf4\xe7\xd2\x09\x93\x6c\x17\xad\x12\x58\x20\x27\xcc\xb6\xe7\xf0\x67\xf8\x7c\x9e\xc4\xcb\xf2\xbc\x7a\x8a\xab\x0a\x15\xf6\x32\xcb\xaa\xb2\x2a\x60\x7e\x3e\x70\x06\xce\xf8\x3c\x2c\xcb\xf3\xfa\x99\xb3\x8d\x53\x27\x2c\xcb\x1e\x28\x50\x72\xd1\x2b\xab\x97\x04\x95\x1b\x84\xaa\x1e\x38\xbf\xfc\x55\xd5\xaf\xb2\xb4\xb2\xe1\x13\x2a\xb3\x2d\x3a\x1f\x3a\x63\xc7\x25\x35\x8b\x8f\x4f\xad\xfc\x33\xdb\x16\xea\x0f\x77\x65\x95\x6d\xbb\xca\xda\xb6\x3c\x76\x65\x58\xc4\x79\x05\xca\x22\x3c\xb9\xf5\x3f\xff\x7d\x87\x8a\x97\x73\xdf\xf1\x9c\x21\xfb\x41\x6a\xfc\xb9\xec\x5d\x7e\x38\xa7\x08\x2f\x7f\x8b\x2a\xec\x34\xab\x70\x3d\x43\xc7\x3b\xcf\x61\xf8\x00\xd7\x28\xe2\x15\xe2\x57\x0e\x7f\xf8\x5b\x57\x7f\xb3\x81\x45\xe5\xfc\x5c\x9e\xfb\x8e\xeb\xb8\xf5\xcf\xdf\x0c\x7f\xdb\xf2\xfb\x59\x5d\x7d\x6d\x75\x7e\x66\xdb\x62\xb5\xc2\xb4\x8b\x25\xd8\x5c\xcb\xf3\x8d\x17\x83\x80\x0a\xff\x39\x98\x34\x54\x60\x2f\x3f\xc5\x7f\x1b\x14\xaf\x37\xd5\x0c\x4c\xdc\xf7\x73\xfd\x2d\xd9\xcc\x6d\x2f\xb7\xb0\x58\xc7\xe9\x0c\xc0\x5d\x95\x29\xaf\x0f\x42\x7b\xce\xd5\x06\x19\x5b\x78\xfe\x47\xbd\x82\x8f\xdf\xdd\x7e\x07\xce\x1e\x76\xc5\x43\xb6\x8d\xcb\xb8\x3f\x03\xbb\x75\xf2\x02\x60\x1a\x81\x5d\xba\x85\x71\x5a\xc1\x38\x85\xcb\x04\x59\xa0\x40\x65\x96\x3c\x22\x80\x37\xd6\x26\x7b\x02\x4f\x71\xb5\x01\xeb\xcc\x5e\xc6\x69\x04\x2b\x28\xe3\xfe\xe3\xb9\x32\x3a\x09\x5a\x55\x8b\x30\x4b\xf6\x4b\x18\x3e\xac\x8b\x6c\x97\x46\xb3\x77\xfe\xd5\xe0\x3e\x18\x1e\x9c\x14\x3e\xda\xe5\x16\x38\x98\xdc\xc1\x38\x45\x85\xb3\xcc\xa2\x17\xfc\x3b\xb1\xb7\x91\x3d\x68\x4a\xd3\xd1\x1a\xbb\xf9\xf3\x3c\x87\x51\x14\xa7\xeb\x99\x3b\xff\xc5\x8e\xd3\x08\x3d\xcf\xa6\xd3\xe9\x74\x9e\x67\x65\x5c\xc5\x59\x3a\x83\xcb\x32\x4b\x76\x15\x7a\x05\x7a\x67\x8b\xd2\xdd\x62\x15\x3f\xa3\x68\x5f\xe3\x21\x3f\xe7\x6c\x12\x3d\xd7\x7d\xff\x0a\x84\xc0\xd9\xde\xfc\x70\xbd\xa8\xe1\xac\xd7\x15\x25\x2b\xf2\x87\xb0\xc8\x92\xe4\x3a\x7b\xde\x67\x8f\xa8\x58\x25\xd9\xd3\xec\x31\x2e\xf1\x89\xd2\x34\x64\x13\x47\x11\x4a\xed\x72\x0b\x93\x64\x4f\xde\xc6\x49\x5c\xbd\xcc\xe8\xf3\xf6\x06\x17\xb8\x53\x64\x60\xf9\x68\x7a\x6e\xfe\x0c\x7c\x3c\xbe\x74\xed\xd9\xb8\x3d\x74\xc0\xf9\x30\xfb\x0d\xbe\x14\x3e\x2e\x61\x81\xff\x59\x90\x23\x45\x98\x9f\x76\x20\x00\x41\x99\xc3\x74\x1f\xc5\x65\x9e\xc0\x97\x59\x9a\xa5\xa8\x13\x3a\xde\x13\xa2\x5e\xc6\xbf\xa0\x99\x3f\xae\x9b\x36\xf3\x06\xf9\x33\x70\x81\x0b\x06\xb8\xba\x32\xae\x10\x2b\x12\xef\x97\x59\x11\xa1\x62\xe6\xe5\xcf\xa0\xcc\x92\x38\x02\xef\xee\xae\xf0\xa7\x5e\x35\x41\xfe\x0c\x46\xf9\xf3\x9c\x02\xda\x05\x8c\xe2\x5d\x39\x0b\xc4\xd9\xc5\xcb\xbf\x99\x3a\xe0\x54\x59\xbe\x48\xe1\x63\xdd\xee\x65\x92\x85\x0f\xa7\x0e\x93\x53\xc6\x11\xb2\xf1\xfa\x02\x49\x0c\xe0\xbe\x42\xcf\x95\x0d\x93\x78\x9d\xce\x42\x94\x56\xa8\x00\x9f\xc5\x5b\x7c\xe8\xc3\xb4\x9a\x93\xee\x3e\xd1\x15\x37\x74\xdd\x79\xd3\x7d\x4f\x5c\xf9\x64\xae\x02\x65\xa8\x9d\x70\x13\x27\xd1\x82\xd5\xe4\xc0\xb0\x8a\x1f\x91\xd5\xda\x14\x06\x60\x97\xdb\x3d\x1f\x0a\x52\x6d\xd0\x8c\x9c\x77\x75\x7d\x3d\xbd\xa9\x2b\xd9\x25\x6a\x35\xbb\xe4\x14\xfc\x60\x97\x80\x5d\xd2\xec\xab\xb2\x82\x55\x1c\xce\xe9\x8a\xf1\x5d\xdc\x31\x81\x36\x88\x8b\xe2\x52\xc6\x7a\x29\x62\xbd\x84\xfb\x30\x4b\xb2\x62\xc6\x9a\x29\x0c\x63\xd7\xf8\x83\xd8\xa9\xb2\xf5\x3a\x41\xf6\x2e\x97\x16\xe2\xc9\xe5\xc5\x35\x89\x07\x4b\x98\x3e\x6d\x6e\x59\x27\x31\xf1\x10\xe1\xd8\xd2\x59\x66\x55\x95\x6d\x67\xe2\x44\x6a\x63\xbc\x27\xeb\x0b\x23\xd0\x09\xdc\xbc\xca\xf2\x99\xcb\x07\xd2\x13\xd7\xe0\xd0\x75\x5d\x71\x54\xdf\x0d\xee\x82\xc1\x68\x3c\x37\x6e\x3d\x7d\x62\x93\xb8\xa6\x0b\x2e\xf0\xdc\xae\x06\x6a\xab\x1a\x37\xd8\x38\x98\x79\x91\xad\xe2\x04\x29\xdb\x9f\x50\xde\x12\x85\xb8\x67\x7b\x79\x60\x06\x64\x64\x44\x00\xb0\x19\xf0\x86\xd1\x8d\xe7\x0f\xf2\xe7\x39\x5b\x07\xab\xd5\x8a\xce\x40\x55\xc0\xb4\x5c\x65\xc5\x76\xb6\xcb\x73\x54\x84\xb0\x44\xf3\x04\x11\x9e\xa1\xcc\x61\x88\x7b\xe5\x04\xf9\xb3\xb4\xdb\x96\x59\x12\x89\xdb\xcd\x6b\x08\x21\x6b\x8d\xcb\x7f\xd3\x51\x27\x35\x95\x1b\x18\x65\x4f\x84\xda\xe0\xff\xde\xb9\xae\x2b\x37\xf8\x72\x97\xec\x85\x62\x74\x28\xd9\x40\x2c\xf2\x38\x64\x74\x73\x10\xbc\x9f\xaf\x92\x0c\x56\x64\xf4\x0e\x4e\xbc\x5d\xdb\x61\x5c\x84\x09\xaa\x81\xe3\xed\xba\x26\xb2\xef\xa5\xa9\xc5\xfd\x16\x89\x91\x17\xbc\xaf\xd7\x81\x87\xd7\x41\xbd\x70\xe2\x74\x83\x8a\xb8\x12\x3b\x42\x28\xbe\x46\x34\x8b\xf5\x12\x9e\x05\xbe\x35\x1e\x58\xd3\xa1\xe5\x3a\xc3\x61\xbf\x26\x3e\x43\xb1\x0b\x71\xba\xca\xea\xa5\x42\xb6\x03\xa1\x4d\x64\x2d\xd2\xd6\x8e\x94\xae\x89\x25\xe9\x71\x20\x8c\x3a\x9e\xcd\x24\x4e\x91\xcd\x4e\xdd\x81\xdb\x4c\xef\xf5\xd5\xf5\xe4\x7a\xa2\x20\xd8\xf8\x62\xf1\x61\x03\x7d\x77\x73\xef\xde\x7b\xfc\xc0\x70\xa5\xb9\x1e\xe0\x59\x62\x68\xf0\x50\x2f\x7c\x9d\x2a\x2b\x00\xc0\x30\x69\x94\x25\x68\x07\x03\xdd\xd3\x18\xb8\xef\xeb\xf3\xcc\xa5\xe7\x59\x2b\x36\x69\x98\xbd\x7a\x98\x5d\x81\xbe\x28\xab\x95\xcc\x80\x38\xee\xe4\x50\x23\x1b\x16\x0f\xba\xb3\x82\x7b\xfa\x96\x50\x7d\x03\xe5\x12\xd6\x48\xbd\x57\x9a\x93\x68\x1b\xa7\xf4\x36\x5a\xaf\x29\x36\xee\x37\xc3\x9b\xfb\xdb\xab\x03\xa3\xd3\xec\xc4\xc7\xb5\x09\x35\x90\x2a\x0d\xf4\x90\x1e\x40\x43\xf1\x5c\x33\x50\x87\x99\x5b\xbf\x66\xb8\x2d\x23\x38\xa6\x15\x46\x72\x97\xc4\xf8\x7f\xbc\x5d\x1c\x24\x4e\xc9\xc2\x23\x67\x3b\x01\xa5\xe4\xb7\x19\x42\x69\xcf\xdd\xdd\xe2\x0f\x67\x22\xf8\x98\x37\x47\xe7\xed\xf4\xf6\xee\x6e\x68\x9a\x13\x61\xc6\xea\x7d\x59\xa0\x04\xe2\xe1\x3a\xfc\x8f\x2d\x8a\x62\x08\xce\x9a\xe1\x05\xc3\x89\x9b\x3f\xf7\xf7\x4d\x8b\x94\x73\xf4\x40\xfb\xb5\x8d\x4e\xe7\xa2\xfd\x81\xcc\x46\xeb\x07\x0b\x1f\x14\x7b\x5b\xda\xab\x04\x3d\x2f\xb3\xe7\xfa\x19\xfe\x2d\x71\xde\xaf\x68\x80\xc8\x67\x0b\x8c\xf5\x5c\xe6\xb9\x0f\xbc\x74\x1b\xcf\x2a\xce\xc4\xfd\x18\x7f\xda\xdb\xd0\xc1\xe9\x02\x57\xa2\x9b\x64\x58\x0e\x1a\x4f\x4b\x47\xab\x65\x1d\xd0\x8b\x8c\xc2\x4c\xba\xfc\xd2\x10\x8c\xf3\xe7\x66\x4e\xe1\x33\x9f\xd3\xe9\xd4\xe3\x73\xda\xdd\x66\xab\x15\x84\xf3\xa4\x1a\x01\xe0\xdb\xe3\xb4\x05\xa1\x6f\x90\xee\x31\x14\x57\x2f\x3b\x87\xe9\xae\x75\x0f\x6d\x23\x2d\xb0\x02\xa6\xb1\xf0\x08\x07\xd8\xdf\x3b\xcf\x8c\x87\xdf\xf8\xac\x96\x91\xff\x5e\x24\x3b\x78\x2c\x9d\x2a\x4e\x90\xe5\xac\x0b\x98\x6f\xf6\xbf\x64\xd9\x76\x36\x09\xde\xf3\xd1\x66\x94\xa8\xa5\x16\xcc\xa2\xf7\xc9\xfd\x56\xdc\x5d\xde\xd4\x57\x2a\x07\xf4\x2e\x25\x0d\xcc\x41\xbd\xd7\x95\xe4\x6a\xf6\x31\xcb\x92\x92\x37\x16\xb7\x4e\x81\x8a\x0a\xb8\x5e\xa3\x62\x8f\xdb\xb1\xa9\x99\x7a\x79\x48\x9c\x65\xb2\x43\x9c\x93\x1d\x0c\xa7\x93\xdb\xeb\x83\x93\xef\x8a\x3c\xa9\x9f\x4e\xaf\x83\xe9\xf5\xe8\xe0\xac\x0b\x84\x52\x99\xe9\x3d\x38\x10\x15\x59\x0d\x78\x73\xe3\xdf\x5c\x1f\x9c\x02\x45\xfc\xd1\xdd\x78\x78\x33\xb8\x39\x38\x11\x2c\x1e\x9a\x5a\x86\xd3\xe0\xee\xe0\x70\xe2\x85\x1b\xc0\xbe\x4b\xed\x90\x9b\x49\x01\x58\xcb\x64\x70\xda\x40\x13\x38\x6d\xb2\x0c\x6d\x60\xd7\x19\x00\xe9\x8b\x82\x9a\x74\xc9\x04\x8c\x3b\x29\xc3\xd2\xbe\x9a\x60\x49\xef\xd5\x2e\xe2\x41\x90\x81\xd7\xf6\xd3\x26\xae\xd0\x5e\x61\xae\xc4\x93\x4a\xbf\x5e\x2a\x00\x0c\xfd\x78\x30\x19\xe3\xe9\x59\xae\xf9\x18\x08\x38\xb5\x11\x30\xa0\xd5\x61\x1a\x2e\x97\xa0\x25\xfd\x17\x4f\x24\xb5\xf7\x06\xa4\x3a\x8c\x82\x94\xae\x05\xf1\xda\xa0\xae\x04\x03\x56\x1d\x46\xc1\x9a\x15\x30\x5d\xcb\x78\xef\x07\xd3\x1b\xcf\xef\xc6\xab\xc3\x28\x78\xf9\x62\x14\xf0\x6a\x4b\xd1\x80\x57\x87\x31\x8c\x82\x5d\x3e\xbc\x48\x98\x03\xf7\xc6\xbb\xb9\xef\xc6\xac\xc3\x88\x98\x6b\xaa\x6a\xa0\xa2\x8c\x6a\x2f\x61\x61\xa7\xf0\xf1\x32\x89\x2f\x29\x57\x83\x1f\x2c\x0b\x98\x46\x96\xfa\x7a\xdf\xa0\x96\x56\x31\x3b\x18\xc8\xdd\x95\x00\xce\x56\x59\xb8\x2b\x2d\xc3\x8b\x4d\xf6\x88\x0a\xf9\x05\x70\xb2\x1c\xa5\xb8\x72\xd3\x53\x13\xaa\xfa\x1d\xc1\x26\x0d\x19\x65\x82\xc8\x69\xbe\x97\xf6\x85\xe9\x08\x25\x94\x7e\x05\xb7\x71\xf2\x32\xeb\xfd\x19\x25\x8f\xa8\x8a\x43\x08\xfe\x82\x76\xa8\x67\x81\xef\xb3\x65\x56\x65\x16\xb8\x2a\x62\x98\x58\xa0\x77\x5b\x64\x71\x04\x7e\x80\x69\xd9\xb3\x40\x09\xd3\xd2\x2e\x51\x11\xaf\xe6\xca\x5d\x42\x95\xa7\x88\x77\x0b\xcf\x19\x8e\xbd\xc3\x1b\x84\x3d\x9c\x4f\xc8\x6c\x36\x79\xc2\x5d\x59\x9c\x89\x1c\xae\x91\x2d\x72\x12\x64\xc2\x59\xed\xa3\x40\x95\xe7\xb8\x62\x09\xe0\x90\x7f\x16\xb8\x42\x56\x7a\x28\x5d\xa4\xe6\x52\xfb\xda\x8a\x62\x1e\x98\xb1\x05\xd3\xb6\x2a\xc8\xb1\xcd\xef\x24\xaf\xac\x83\x72\xf2\x4e\xbe\x4b\x12\xca\x07\xec\xa5\x1b\xcd\xc1\x21\xfc\xdc\x82\xf6\x79\x31\xf0\x5d\xce\xf5\x0d\x7c\x32\x86\xf2\xeb\x69\xf3\x7a\xaa\xbf\xf6\xdd\xfa\x35\x61\x19\x0e\x0e\x17\x8b\x2e\xa8\xb4\xb3\x11\x93\x72\xe9\x67\x5e\x64\xeb\x02\x95\xa5\x8d\x37\x0e\x3d\x04\xea\x85\xd7\x71\x10\x48\xc5\xd6\x05\x7c\x31\x14\xbb\xbe\xbd\x19\xdc\x8c\xc5\x62\x15\x5c\x26\x08\xaf\x0a\x3a\x04\xa0\x46\xa3\x48\x35\x5c\x61\xcd\xa1\xb4\xd2\xd9\xd2\x03\xe7\xd3\x82\x40\xbb\x2a\x8a\x57\x09\xd3\x6d\x61\x3c\x9a\x10\x7e\x46\xc5\xe0\xbb\xef\x0f\x26\xf8\x29\xe3\x7f\x4e\x85\xaf\xb9\xb5\x93\x0b\x90\x0a\x18\xdf\xa5\xf1\x63\x7b\x3a\x68\x95\x24\x10\x70\xc4\x95\xc4\xd8\xcb\xb1\x7c\x9b\x3d\x38\xf4\x96\xca\xc6\xba\xbe\x19\x52\x7d\x09\x05\xd4\x84\x7a\x75\x93\x2d\xf2\xf5\xb9\xb4\x3d\xfa\xad\xdc\xf2\x6f\xdb\x88\x7f\x4b\xd6\xfc\xdb\x73\x69\xfb\x35\x9c\x5f\xc3\xf9\x35\x9c\x5f\xc3\x0d\x6a\xb8\x41\x0d\x37\xa8\xe1\x06\x35\xdc\xb0\x86\x1b\xd6\x70\xc3\x1a\x6e\x58\xc3\x05\x35\x5c\x50\xc3\x05\x35\x5c\xd3\x8f\x51\x0d\x37\xaa\xe1\x46\x35\xdc\xa8\x86\x1b\xd7\x70\xe3\x1a\x6e\x5c\xc3\x8d\x6b\xb8\x49\x0d\x37\xa9\xe1\x26\x35\xdc\xa4\x86\x9b\xd6\x70\xd3\x1a\x6e\x5a\xc3\x4d\x9b\x71\x76\x9b\x81\x76\x9b\x91\x76\x9b\xa1\x76\x1b\x58\x61\x52\x84\x59\x11\xa6\xa5\x99\x17\xaf\x99\x18\xaf\x99\x19\xaf\x99\x1a\xcf\xdf\x6b\x97\x6c\x22\xbb\xe0\x67\x80\x7c\xb3\x93\xaf\x34\xa2\xc8\x9d\x49\xd6\xc8\xee\x2c\xb2\x27\x79\x71\xda\x9e\xaa\x36\xb1\x29\xe4\xba\x88\xa3\x45\x99\xc4\x11\x3e\x58\xf8\xbc\x08\xa7\xc5\x10\x43\x6d\x3c\xcb\xd9\x78\xd6\xc6\xb7\x9c\x8d\x6f\x6d\x06\x96\x53\x13\xed\x5a\x66\x68\xda\xfd\x35\x07\x10\x5c\x8d\x07\x93\x3b\x2a\xc2\x89\x50\x98\x15\x90\xf4\x97\xdc\x5c\xa0\x05\x89\xd2\xa8\x42\x91\xc5\x8f\x6f\x38\x63\xba\x81\xfa\x0d\x7b\xc1\x9f\x3b\xcb\x2a\xe5\x47\x3d\xfe\x4a\x1f\x0b\x4f\x1c\xfd\x89\x06\xee\x68\xe0\xf4\xc9\x3e\xdb\x55\xf8\x18\x9e\xb9\x07\xce\x81\xb0\x86\xed\x8d\x3d\x60\x7c\x8f\x4e\x44\x19\x3f\xb4\x41\x30\x52\xf8\x0e\x7e\xc1\x61\x10\x06\x72\xe2\xca\x7c\x92\x0a\x55\x0b\xd5\xc7\x2e\x3f\x0f\xc9\xeb\x96\x52\x20\x89\x8d\x62\x24\xb1\xe8\x5c\x15\xdb\x74\x88\x7a\x5a\x2b\xd1\x05\x46\x42\x8b\xa2\x22\xcb\xa3\xec\x29\xe5\xba\x0a\x49\x4a\xd9\x0a\x05\xa0\x89\x1b\xf5\xfc\xfa\x2c\xe2\x25\x35\xe5\x87\xc7\xf5\x16\xb8\x89\xb4\x53\x78\xbd\xaa\xfa\x53\x51\x47\x41\xdb\x52\xc6\x11\x12\x67\x4e\x92\xa1\x49\x52\xf6\xe1\x88\xea\xf7\x44\xf8\xd9\x2a\x2e\xca\xca\xce\x56\x76\xf5\x92\x23\x71\xa3\xd0\x35\x21\xa9\x8b\x0c\xbb\x5f\xe6\xeb\xc2\x5d\x51\x66\xc5\x2c\xcf\x62\x2a\xf4\x55\x11\x5c\x42\x65\xe1\x8d\x58\xa7\x15\x28\xc6\xfd\xb2\x1d\x79\xef\xdf\x07\xf7\x63\x55\x09\x62\x2c\x62\x29\x7c\xba\x71\x13\x88\xfc\x32\x51\x6e\xe4\xb0\x40\x1c\xab\xa0\x2b\xd2\xa4\x39\xb2\x9e\x46\xa8\xd1\xa8\x2c\xd4\xd9\x1c\xa2\x07\xf0\x83\xc0\xe2\xff\xb9\x8e\x3b\xea\x1b\x50\xcb\x5a\x99\x01\x1f\x25\x7b\x1b\x19\x35\x46\xb3\x25\x5a\x65\x85\x7c\x75\x1b\xfa\xc1\x68\x34\x99\xb3\x71\x26\x07\x39\x63\x91\x66\xbd\x1e\x67\x9b\x27\xf9\xf3\xbc\x51\xfc\x88\x54\x92\xf0\xd3\x9a\x20\x93\x6e\x77\x82\x8c\x2e\xc1\x89\xa0\x24\xf3\xda\x94\xc0\x6d\xad\x86\xab\xaa\x59\xb0\xf4\x44\x68\x2e\x7f\x72\xfb\x5d\xb1\xf1\xb4\xc5\x63\x63\x0b\x5b\x56\x2e\xbb\xff\x09\x0d\x90\x6e\x7d\x77\x63\xfc\x91\xee\x37\x81\xeb\x1a\x26\xa6\x6b\xda\x8d\x33\xdf\xb6\x78\x08\x01\xe8\x42\x05\x20\x47\x26\x5e\x7a\xeb\xeb\xea\xb1\x9d\x58\x93\x9e\x41\xfe\x0c\xa8\x8a\xc3\x37\xed\x35\x27\xdc\x15\x78\xf1\xdb\xf8\x36\x62\xb5\x29\x88\x4f\xd1\x69\x03\x05\x99\x38\x08\xa6\x85\x1f\xf4\x79\x31\x36\x76\x6d\x85\xeb\x11\x34\xc0\x01\xa8\x0e\x8f\xa9\xf9\x97\x4c\x5f\xc2\xf4\x8b\xa4\x35\xae\x45\x3e\x8e\x1f\xf4\x81\x0b\x6c\x8f\xc8\xaf\x85\x5a\xf1\xb9\x43\xef\x2b\x51\x8c\xd2\xea\xec\xdd\x60\x30\x0c\x82\x91\x05\xde\xf9\x37\x43\x3f\x18\xf7\xad\x46\x5a\xfd\xdc\x81\x99\x20\xb6\xe2\xb4\x44\x15\x30\x0c\x83\x37\xaa\x81\x0e\x47\x24\x14\xca\xea\x94\x55\x73\x06\xfd\x0f\xd9\x26\xe2\x1d\x5a\xd6\x05\xfa\xb2\xb1\x07\x1d\xa1\xfa\xce\x87\x92\x24\xce\xcb\xb8\x9c\x2b\xb7\xc0\x0e\x9b\x0a\xdf\x97\xf5\x31\xbf\xae\x7d\xc1\x34\x7f\x56\xd6\x34\x7f\x13\x34\xa6\x2b\xae\x89\xa3\x6c\x3a\xc5\x37\x98\xf0\xe4\x08\x6f\xd4\x26\x17\x0a\xbc\x60\x10\x8c\xb4\x33\x08\x1f\xe7\x0d\x35\x39\x79\x53\xba\x6c\x53\xce\xdb\x6f\xcd\xaa\x58\x49\x39\xd7\xb4\xb3\x45\x3a\xc8\x70\xb3\x4a\x04\x8b\x70\xb3\x17\x24\x62\xcd\x53\xe0\xac\xb2\x62\x6b\x63\x9a\x5a\x64\x89\xbc\xbb\x5d\x71\x41\xd3\x75\xcb\x16\x68\xfe\x0c\xa4\x05\xee\x8e\x83\xbe\x42\xf3\x89\xce\xda\x65\xff\xf9\x81\xca\xf1\x77\xa8\xc7\x7d\xdf\xb3\x7c\x7f\x64\xf9\x03\xdf\x72\x9d\xe1\xb4\xdf\xde\x5e\x3e\x04\xa7\xe1\x99\xcb\xbd\x93\xd1\xc6\x69\xbe\xab\x6c\x3c\x90\xb9\xbd\xac\x52\xb0\xdc\x55\x55\x56\x8b\xd8\xb9\x02\x8a\xf5\x05\xf0\xde\x9d\xda\x85\xb9\x78\xb6\xb5\x8e\xab\x67\x1c\x57\x2e\xb1\x1f\x5c\xf9\xd7\xbe\x6a\x3b\xa1\x88\x28\xd7\xeb\x04\x89\xaa\x55\x6d\x73\x90\x23\x7d\x54\x6f\xcf\x31\x63\x45\x71\x39\x00\x15\x4d\x78\x20\x68\xf2\xf0\xb9\xab\xb0\x74\xbc\x94\x6c\xb9\x53\xf3\x71\xe6\x03\xd6\x40\xf8\x70\x1f\x05\xee\xd7\x17\xe4\x77\x53\x62\x12\x01\x53\x94\x2c\xaa\x2c\x4b\x96\xd9\xb3\xa4\x5c\x6f\x58\x7c\xda\x0f\x09\x12\x73\xa9\xc2\x48\xa8\xad\x57\x61\x2f\x9b\xde\x0b\xdb\xf1\x26\xb8\x19\xdf\x5c\xcf\x65\x53\x08\x53\x61\x83\x94\x16\xb3\xaa\xf7\x57\x07\x07\xd3\xb2\xc5\xc0\xdd\xab\xf6\x17\x82\xe9\xc0\x02\x1f\x55\xe2\x06\x5d\x96\x76\x94\x85\xa5\xcd\x58\xf4\x46\xb6\xbc\x37\xd3\x91\x21\x35\xbe\x3b\xac\xb2\xac\x52\x9a\xb1\x5a\xad\xe6\xd2\xbc\x92\xad\x27\x4b\x20\xdb\x05\x5e\x0c\xa1\x2e\xa6\xad\xb5\xfe\x06\x08\x3a\x1b\xf4\x05\x55\x4a\x73\x28\xe5\x0e\x43\xb7\x03\xd9\x46\x74\x39\x4b\xe7\x46\x97\x1c\xce\x84\x5c\x3a\x4d\x8c\x42\x33\x63\xe9\x8e\x8e\xb8\x07\xaa\x19\x25\xd7\xb0\xd2\xc1\x54\xf5\x01\x4f\xa3\x24\x5b\xd4\x6d\x3c\x0e\xce\xcf\x7f\x2f\xf1\xea\xa8\xe2\xdc\x70\x81\x16\x0f\x3a\x66\xa6\x24\x2b\x2f\xf9\xf9\x86\xcf\x51\xcd\x0c\x4e\x3b\xab\x78\x45\xd2\x94\xca\x74\x21\x4e\x10\xa7\x92\x94\x02\x34\x7c\x5b\x18\x86\x3a\xbb\x2f\x10\x8b\x40\xb7\xd7\xa2\x08\x75\xa9\x30\x26\xa7\xb4\x2a\xbd\x00\x7f\x05\x48\x59\xd9\xbc\x88\xd8\x01\x68\xd6\x49\x8c\xee\x50\x8b\xd4\xb1\xc1\xaa\xec\x00\x8b\x2a\x0e\x13\xe4\x90\x79\x16\x6f\xe5\x7f\xb4\xfe\xc8\x2e\x42\xd6\x1f\xeb\xbb\xc5\x33\xae\x0c\xcf\x59\x7d\x2f\x7e\x3e\xbc\xc3\xc4\x60\x4d\x47\xd3\x4e\xe2\xb2\x32\xa9\xfd\xa9\xec\x93\x8f\x2e\x11\xac\xea\x05\x89\x21\x66\x6d\xf8\xc1\x8a\x32\x5b\x08\xce\x38\x04\x81\xb1\x1c\x26\x54\xf8\xab\x4d\x4c\xcc\xd9\xbd\xd4\x38\x57\x51\x14\xb5\xf1\x11\x78\x9a\xd4\x09\x31\x55\x36\x4b\x60\x59\xd9\x84\x36\xef\x5b\x8d\x6c\xa2\x28\x6a\x6b\xa9\x81\xce\xa1\x15\xfe\x1c\x1c\xf4\x9c\xc3\x34\x52\x08\x94\xf1\xd6\xdd\x0c\x88\x46\x96\x29\x92\xc6\x56\x61\x22\x5b\xb9\xc9\x66\x69\x13\x5d\x13\x75\x78\x87\xe1\xac\x77\x54\xea\xa4\x4c\x5a\x29\x98\xa6\x92\x47\x76\x88\x92\x64\xfe\x88\xf0\x42\x82\x09\xdb\xc3\xdb\x38\x8a\x12\xc4\xaf\xb5\xf8\xea\x1a\xa1\x0a\xc6\x09\xb7\xc6\x6c\xe9\xcd\x8d\x3b\x98\xfa\xd7\x06\xe5\x25\x7b\xc1\xa7\x6a\xc4\x8d\xcc\x14\xeb\x2f\xe1\xde\x5d\x8b\xe6\x79\xd5\xb2\xf6\x87\xd9\xa8\x09\x54\x9c\xb4\x43\xdc\x41\x84\x03\xe7\xb2\xd8\xc0\x6d\x30\x51\xcb\xc0\xc6\xa2\x85\x54\x65\xc3\xa2\xc8\x9e\xea\xb5\x5f\xcb\x6e\xe9\x29\xdb\x61\xcd\x49\x25\x59\x30\x0c\xb3\x22\x8a\xb3\x14\xd0\x83\x71\xaf\x99\xe1\x6a\x76\x3c\xad\x4b\x8f\x2f\x26\x15\x27\x11\x52\xc5\xe9\x5a\x3e\x61\x89\x38\x48\xba\xe1\x8a\xd7\x0e\x45\xcb\xa6\xa2\x34\x1d\xd9\x04\xe1\xc1\x79\x5e\xd0\x8e\xe8\x6c\x7c\xb7\x5d\xa0\xcc\xd6\x8f\x85\x19\x92\xc4\x97\xea\xf1\x6c\x30\x28\x18\xdd\x4d\xef\x6e\xe7\xf6\x13\x5a\x3e\xc4\x15\x66\xec\x77\xdb\xd4\x5e\x16\x08\x3e\xd8\x71\x8a\xb9\x82\x19\x7c\xcc\xe2\x68\x6e\x6f\xb3\x5f\x3a\x5e\xb7\xbf\xc9\x72\x18\xc6\xd5\xcb\xcc\x9b\x93\xfb\x02\x13\x9e\x24\x09\x70\xfc\x12\x20\x58\xa2\x03\xb7\xdd\x51\xe8\x84\xaf\xb5\xb2\xee\x35\x5d\xd4\xc4\x0b\xc0\x20\x57\xaf\x6d\x81\x9c\x55\x9c\x54\xb5\xb6\x7e\xa8\x8a\x82\x05\x7b\x25\xb6\x4e\x09\x23\x4a\xd0\xb6\xe9\x50\xe7\x27\xde\x59\x89\x1d\x0a\x31\x56\xc6\x84\xf6\xa9\x80\xf9\x41\x37\x51\x92\x6c\x7e\xa5\x96\x93\xcd\x53\x2b\x2a\xf1\x07\xbf\x53\x15\x8e\x6e\x3d\x0a\x9d\xeb\x47\x64\x4e\x13\x04\x8b\xd9\x32\xab\x36\x8a\x79\xa8\x80\x1e\x6c\x86\x22\xed\x1b\x29\xb4\x2f\x70\xdd\x43\x82\xd6\x28\x8d\x6a\x91\x21\x1b\x7c\x46\x47\xb6\x99\x9d\x27\x30\x44\x9b\x2c\x89\x50\x51\x6b\x7c\x27\x92\xe5\x34\x25\x12\xe5\x2c\xad\x36\xf4\x90\x38\x1b\xa4\xfd\x7d\xd3\x3c\x0d\xb2\x31\xa5\x7d\x8c\xd1\x93\x59\x5a\x2f\x6b\xe3\x65\xe1\x0a\x95\xd6\x74\x22\x05\x4e\x14\x3f\xc6\x82\x44\x5b\x39\x15\x51\x80\x3f\x6d\x4c\x4b\x3d\x90\x47\xea\xc0\x14\x3d\x5d\x1b\x58\x97\x23\xe5\x28\x60\x17\x59\x9a\x52\x81\x92\xb1\xed\x74\x07\x1d\xad\x84\x58\x2b\x28\xc6\xe5\x27\x15\x02\xb9\x6a\xfa\x7f\xca\x50\x88\x7a\x1d\x22\x46\x55\x48\xdb\x51\x0c\x8d\x7d\xb6\xc9\x6f\x48\xa6\x1a\xfe\x71\x7c\x0a\x25\x38\x79\x2e\x15\xe7\x89\xb9\xbc\x7d\x8e\x4f\x6d\x11\xa3\xd5\xfe\xa8\xa5\xbb\x5e\x9c\x4c\x97\xb0\x22\x08\xd5\x21\x66\x1e\x71\x4a\x18\x07\xe1\xab\x5d\xe6\x49\xdc\xae\xe9\x92\x38\x02\x3a\x79\x9d\x58\x00\x54\x44\x16\x82\xe9\xfe\x78\x34\x19\x4c\xa7\xf4\xc8\xd0\x81\xf8\x59\xa3\xbd\x39\x34\xb6\x04\x60\x33\xb0\xc4\x5f\x43\xf1\x57\xe3\x73\x20\x32\x0b\x46\xe6\x4a\x37\xef\x20\x18\xaa\x8d\x88\xaf\x8a\x0c\xde\x03\x12\x74\x3b\x07\x7b\x37\xba\xbb\xb9\xbb\x3b\xc8\xd8\x44\x4f\x35\x57\x7e\x87\xd9\x77\x75\xb5\x48\xf2\x2a\x1d\x1e\x18\xd8\x76\xe1\x0e\x62\x00\x97\x54\x82\x66\x00\xb0\x8c\xd7\x7b\x2e\x7d\x93\x44\x1d\xe2\x3a\xc0\x8c\xce\x41\xb1\xf0\x30\xa3\xa6\xc6\x1f\xf2\x48\x8a\x9d\xa3\x8a\x7a\x59\xf5\xa8\x97\x06\xf9\x5e\x3f\x38\xb5\xb3\xb5\xe5\x08\xae\xf7\x8f\xc4\x9f\x4e\xcc\x15\xc5\xb2\x3a\x79\x22\xb7\x4e\x36\x56\xe1\xa3\x3d\x51\x6e\x8f\x2d\xb8\x99\x7e\x93\x5e\x7d\x18\x73\x3f\x78\x7f\xa8\x22\xba\x70\x35\x0c\xb5\x7a\xf4\x29\x8e\xd6\xa8\xd2\xaf\xbb\xa8\x28\xb2\xc2\x4e\x77\xdb\x25\x2a\x84\x93\x79\xaa\xde\x66\xa7\xc2\x6d\xd6\x67\xe6\x5b\xc4\x66\x81\x6c\x05\x91\xce\x06\xef\x0f\xce\x36\x8e\x16\x74\xad\x73\x17\xa6\xb1\x50\x9e\x5d\x46\x75\xaf\x12\xdd\xd8\x69\x33\x70\x22\xb4\x2e\x10\x2a\xf7\x8a\x64\x5e\x15\xdc\x1b\xe4\x17\xac\x24\xbb\x3c\xd7\x1a\xb7\xac\x67\x60\x69\x70\xcb\x6d\xcf\xd7\x6f\x33\x1a\xc1\x8c\x60\x9c\xbc\xd8\x4f\x08\x56\x1b\x54\x00\x27\x82\x2f\xaa\x93\x91\x70\x4a\xfa\xb2\x48\xd5\xf3\x02\xcb\x1b\x04\x96\x17\x8c\x2c\xd7\x19\x8c\xfa\x86\x41\x68\x63\x54\x5b\x10\xc8\xf4\xc0\x61\xed\xb2\x23\xf8\x52\x82\xda\x2e\x49\x9d\x77\xbe\xea\x46\xce\x88\xfe\x8d\xdf\xd7\x45\x81\x68\xc2\xd2\x70\x10\xcb\x5d\xf2\x60\x43\xe2\x3b\x53\xca\xaa\x64\xba\x4a\xc3\x6c\x97\x56\x45\x8c\xca\x85\x22\x82\x30\xbe\x17\x29\x19\xbd\x0a\xea\xb2\x93\x16\x46\x89\xfc\xe1\x69\xa8\xe0\x47\x8c\xb9\x5c\xb0\x13\x44\x94\xfd\xe2\xfb\xe9\x54\x96\x3b\x89\xcc\x4d\x14\x45\xba\xad\x2e\x37\xde\x93\x5f\xb2\xb3\x6a\xbd\x58\xed\x92\x64\x41\x37\x4a\x09\x20\x3f\xb6\xd0\xa2\x53\x3b\x3e\x98\x58\xde\x04\x4f\xd7\xd0\x72\x9d\x60\xda\x6f\xad\xf5\x18\xf4\x81\x8a\xf2\x9d\xdb\x8f\x1f\x3f\x2e\xe8\x77\x2b\x8a\x1f\xa5\xdf\x50\xfc\x65\xe2\x59\x88\x5a\xb8\x6d\x4c\x0c\x6f\x1b\x01\xbf\x6a\x2e\x47\xe7\xf4\x67\xb8\x5d\x66\x0b\xf2\xbd\x53\x7d\x41\xff\x73\x9d\xf1\xa4\xaf\x97\x04\x15\xbe\x15\x6b\xea\x55\xc1\xbf\x70\x3a\xec\xcb\xda\x37\x13\x12\xe2\x8b\x52\x15\xf4\x3e\x8c\x97\x97\x8a\x50\x1a\x5c\x77\xdc\x37\xaf\x2f\x1d\xd4\xf3\xfa\xad\x37\x7d\x23\x74\x47\xeb\x9c\x12\x25\x28\xac\xd0\x91\xd6\x79\xa3\x93\x90\x90\x5e\x9e\xd6\x89\xe1\x6b\xfa\x30\xec\xb7\x6d\x2f\xf9\xce\xe3\xba\x94\x1e\xd6\x90\xf8\x44\xcd\x45\x01\x79\x4d\x5e\x85\xbb\x21\x71\xcc\xf1\xe4\x1a\x8a\x2c\x44\x65\x49\x8c\xa5\x8d\x26\x10\x81\xfb\x9e\x8a\xd9\xf1\x17\x66\x52\x1a\xb8\x8d\x74\x68\xa0\x9b\xd8\xf9\xca\xf5\xc9\xf6\x24\x9b\xea\x21\xb9\xc5\xf9\xc2\xad\x46\x95\x51\xea\x94\x99\xeb\xb0\xa6\xd3\xb9\x4a\xf1\xd5\xcd\xcf\x98\x65\xa1\x8f\x09\x4a\xd7\xd5\x46\x13\x17\x50\xf7\x4b\x01\x4e\x12\x2b\x04\xb2\x58\x61\xae\xba\x49\x4a\x25\x05\x06\x6a\xd4\x8e\x9f\xcf\x66\x9b\x83\x27\xc5\x4b\x57\x5f\x5d\x0c\x54\x1b\x66\xb1\xa7\xbd\x88\x14\xc3\x3d\xbf\xcb\x4b\x85\x01\xd9\xd9\x6a\x55\x22\x3c\x4b\xc2\x5d\x00\x2d\xa2\xb8\xc4\x38\xa3\x45\x5e\xa0\xc7\x38\xdb\x95\x56\xf3\x0e\xa5\xad\xaf\xea\x62\x29\x7a\xae\x0c\x45\xf0\xe3\xda\x9f\x70\x2a\x73\x5f\xb2\xe4\x96\xcf\xb0\xe7\x79\xfa\x09\x60\x6c\x21\x57\x67\xb7\xb6\x53\x03\x90\x5a\xdb\x5a\xbc\x79\x69\x14\xd7\x9e\xda\x3a\x6e\xb2\xd9\xde\x3c\x0d\x42\x6e\x5f\x2b\x02\xe1\x6d\x3d\xf5\x54\x93\x73\xd2\x74\x4a\xb5\x70\x61\xd4\x68\x34\x3a\xb1\x63\x1d\x3d\xd2\x23\x00\x98\x10\x75\x2d\x15\xd9\xce\x57\x34\x25\x13\x84\x69\xed\x6d\x13\x89\xe4\xae\x48\xce\x7a\x8e\x73\x1e\x6f\xe1\x1a\x95\xe7\xf8\x4d\x5d\xc0\xc9\xd3\x75\xaf\x0f\xd2\xcc\x2e\x50\x8e\x60\x05\xaa\x2c\x07\xcc\x0b\xbe\xb5\x73\x47\x70\x33\xf8\xb7\xa0\xd6\x05\xc9\x1d\x15\x2c\x08\xf0\x29\xd5\xc8\x13\xdd\x8e\x7d\x95\x15\x4f\xb0\x88\xba\x47\x87\xd1\x3c\xf3\xb4\x1d\xc7\xdd\x35\x3a\x5d\xa8\x8f\x0e\x8d\x52\x41\xc7\xe8\x48\xd4\x95\x32\xd1\x8a\x7b\x82\x70\x52\x6a\x3c\x34\x2b\x41\x39\x26\x50\x35\xd6\x30\x93\xfc\x19\xe0\x2b\x24\x98\xf0\xf0\x0a\x6d\xa7\xfd\x32\x81\xe1\x83\xae\x0d\x51\x34\x58\x4a\x75\xab\x2c\xab\xc4\xea\x06\xbc\xba\x81\x52\x9d\xcc\x86\x98\xeb\x52\x91\x17\x0e\xd3\x8a\xf8\x02\x3f\xa3\x0b\x43\x20\x84\x6a\xc9\x48\x6e\x90\x5b\xdf\x98\x1b\x08\xe6\x09\xd2\x2a\x83\x51\x47\x94\x13\x3c\xe3\xdb\xc8\x4c\xf0\x84\xc3\x95\x7a\xfe\x4a\xa2\x66\xed\xed\x75\x16\xbd\xec\xff\x28\x71\x26\x82\xe0\x8a\x5f\xd4\x6c\x0a\x8c\x3b\x57\x65\xbb\x70\x43\xb4\xcf\x40\x3b\xee\x1b\x67\x96\x83\x43\x6a\x6d\xab\x1b\x6d\xf3\xea\xc5\x34\x0c\x64\x6e\x89\xdd\x50\xbd\x10\x9d\x00\x6d\xe5\xe8\x11\x8c\x40\x0f\x87\x43\xb1\x80\x43\xcd\x8e\x16\x71\x1a\xd7\x34\x7c\x3a\x9d\x1e\xaa\xc8\x21\x26\x48\x06\xc7\xa8\xc8\x0b\x57\x91\xaa\x39\x13\x58\x86\x2b\x6f\x7a\x3d\xbd\x33\xdf\xa0\xd9\x4b\x8c\x9e\x09\x2b\x8f\x55\x60\x28\xec\xa0\x67\xb8\xcd\x13\xb4\x80\x49\xb5\x68\x44\x8f\x00\xdf\xa5\xcc\xbc\xd4\x90\xc4\xf1\xd0\xef\x80\xf5\x6b\x81\x0f\x25\x92\x09\x55\x85\xd9\x72\x83\xec\x38\x3d\x35\xd0\x76\x4e\xe0\xe8\xf5\x94\xdd\x0d\x4f\xbd\xc5\x6a\xac\x30\x84\xb0\x45\xaa\x8a\xf9\x69\x83\x18\x56\x64\xb3\x7d\xa6\x21\xae\x49\x1c\x09\xc8\xa3\x19\x31\x9d\xd0\x01\xd3\x54\x47\xd1\x89\x85\x35\x02\xce\x51\x84\x61\x68\x54\xee\xff\x16\xf7\xff\x77\xd3\xe9\xf5\xe0\xfe\x5e\x27\x77\xe8\x11\xa5\x4e\x91\x3d\x2d\xa4\x7b\x9c\xee\x43\xe8\x5e\xdf\xdd\x4e\xf5\xe2\x59\x14\x9d\x50\x7a\x7a\x7f\x75\x7f\xeb\x1d\xf0\xb2\x5e\x66\xcf\x42\x38\x0d\x45\x0b\xd2\x08\x40\xc9\xe9\xa3\xcf\xff\xc4\x9d\xb8\xf7\xf7\xfa\x0d\xe7\xdd\x5d\x70\x17\xdc\xdf\x1f\x76\x89\xb3\x2d\xd7\x54\xa8\x93\xc4\xf2\x0d\x71\x8c\x3f\xa2\x84\xea\x78\xe8\x10\xb6\x52\x46\x54\xf7\x58\x53\xa1\xe9\x48\x0c\x91\xa5\x54\x2a\x9a\x83\x68\xfe\x18\xb2\xce\x47\x2e\x28\x08\x8c\x06\x4c\xed\xdb\x5a\x09\x80\xc0\x21\xc7\x3d\x88\xb7\x6b\x45\x3d\x41\xfc\x61\x9a\xff\x5a\xf6\x8b\x0a\xa5\x59\x38\x8a\x9e\x65\x8c\xf8\x7a\xef\x0d\xcd\xa8\xe2\x2d\xda\x2b\xd1\xa8\xe8\x4f\x22\xc4\x8f\x2b\x98\xc4\xa1\x7e\xc6\xb7\xf9\x3f\x90\x40\x5a\x7a\x2d\x5b\x54\x96\x70\x8d\x5a\x2d\xb2\x94\x78\x58\x07\xd9\x79\xa8\xc1\x46\x04\xd3\xb2\xe4\xbd\xd8\xc2\x44\x81\xe7\x94\x67\x8b\xa2\x78\xb7\x05\xcc\x7e\x48\x92\x3f\xc9\x86\x22\xc2\xe8\x29\x76\x97\xcc\x3c\x55\x51\x6b\x80\x6c\x57\x95\x71\x84\x28\xea\xae\xf0\x36\xa2\x6d\x3d\x01\xa6\x7e\x76\xee\x7b\x31\xae\xcd\xc4\xb0\x55\x58\x58\x9f\xe6\xf0\x22\x17\x06\xcd\x5e\x04\xbf\xa0\x16\x2b\xfc\x8d\x32\x16\xb2\xa5\x36\xf1\xdf\x13\xfd\xff\xa9\x4f\xbd\xe2\xac\x65\x10\x9c\xb4\x44\x01\xa3\x2e\x57\xad\xad\x6f\xd6\xae\x3c\xf8\x5c\x9f\x43\x46\x57\x70\x99\xf1\x7d\x57\xf0\xf4\x6a\x6b\x5e\xbd\x1c\xb8\x3e\x80\xfa\x68\xe3\x63\x96\x29\x1f\x80\xb3\x84\xd1\x5a\x5a\xd7\xae\x22\x7e\xa7\x0b\x47\x76\xd3\x1f\x28\xa7\xcd\xa8\xc3\xd1\x07\x2f\x0e\xdc\xfb\x09\x5d\xef\x55\xb6\x88\x32\xc1\x5e\x95\x3f\xd2\xc8\xd8\x00\x7f\x14\xeb\x9f\x81\xd1\x30\x82\x23\x1b\x6b\xc6\x23\x01\x61\x0c\xa4\x15\xd9\x54\x98\x0b\xb6\x4c\x11\x0f\xc7\xcc\x55\x36\x52\x53\x46\xf8\x23\xb2\x47\x82\xf3\xca\x78\x7a\x33\xb8\xbd\x37\xb5\x53\x50\x11\xd4\x01\xd8\xf4\x9a\x80\xf6\x84\xc5\x27\x30\xcc\x41\x2b\x9b\x1e\x7a\x61\x14\x46\xcd\x81\xcf\xed\xbc\xe6\x8a\x3d\x87\x66\x4b\x3f\x34\xe9\x00\x4e\x6f\xa4\xec\x7c\x28\x58\x36\x51\x71\xe0\x20\x50\x0d\xd3\x3c\x21\x78\xdc\x60\x00\xbd\x70\x3a\x17\xcf\x82\x91\xc9\x2c\xfe\x1d\x5c\x46\x53\x04\x55\xc7\x30\x39\x44\x25\x31\x06\xd9\x25\xce\xdf\x77\x71\xf8\x20\xda\x63\x0e\x83\xf7\x8a\x3a\xd6\x68\x58\x25\x97\xd5\xbc\xe7\x98\xae\x44\x56\xd9\x6a\x16\xf2\xfa\xf9\x47\x5d\x26\xf1\xc9\xa2\x2b\x41\x4f\xb3\x3b\xd2\x1a\x06\xe2\xbd\xc1\x27\x9a\xeb\xe9\x83\xf1\x68\x3c\xd5\x27\xd0\x56\x0c\x8d\x48\xbb\xa6\xa6\xa9\xe6\x90\x40\x55\x62\x36\xb2\x51\xa3\xb5\x81\xa2\xac\xaf\xb2\xfc\x04\x5b\xb5\xd6\x99\xd5\xc5\xc0\x92\xdf\x6e\x43\x7a\xe6\x5a\x24\x47\xda\xdc\x45\xb9\xdb\x6e\x61\xf1\xb2\x37\x18\xf5\x61\x36\x88\xb5\x5d\xe5\x86\x84\xc7\x2a\x26\xe0\x3c\x51\xeb\x0c\xe1\x0c\x54\x54\xe3\xa6\x22\xec\x2a\x2c\xca\x85\x75\x20\x6a\x36\x63\x46\xcc\x64\x24\x2d\x85\xd4\x70\x8d\xf4\x5c\x78\x5a\xf8\xae\x10\x04\x02\xff\xae\x83\x42\x04\xe4\x77\x13\xc7\x22\x78\x7f\xd8\x04\x34\x7c\x97\xe8\xc4\x25\x28\xfc\x35\x39\x9c\x0c\xaf\x6a\xde\x9b\x13\xa4\x09\x12\x26\xc4\x90\xd0\xec\x43\x6b\x81\xbe\x66\x78\x4e\xf5\xef\xb0\xc5\xab\xac\x51\xb3\x73\xd7\x85\xc6\x13\x40\x90\xe7\x98\xad\x9e\x03\x16\xad\xd8\x55\xe2\xdc\xcd\xc5\x00\x73\xa6\xf0\xd8\x72\x9d\x02\x2f\x3b\x26\x18\x07\xc6\xc5\x5b\x0f\xbd\x6a\x92\x20\x37\xae\x25\xa0\x9d\x37\xf6\x6f\x87\x86\xaa\x0d\x56\xa8\x43\x3f\x08\x46\x63\x36\x7a\x44\xf9\xab\xf0\xe6\x62\x34\xe9\xc6\x1c\xac\x01\xa7\x46\xf6\x0b\xe2\xb4\xc0\x10\x1c\x0b\xa8\x28\x6b\x94\x81\x4b\xbd\x44\xde\x6c\x55\x79\x5a\x08\x46\x1e\x24\xa5\xb3\xe5\x06\x33\x5b\xd5\xb3\x5d\x21\xdd\x1e\xf5\x4f\xe9\xc2\xca\xfd\xa4\x05\x5f\x62\x9d\xf5\x61\x27\x8d\x18\x58\x48\x74\xe3\x12\x25\x24\xb7\xd7\xfe\x75\xa0\x91\xb1\x37\x76\x59\xb4\x54\xa9\x1d\xba\x45\xff\xb1\x23\x9d\x03\xd4\x62\xa0\xcb\xc3\x62\xa8\x3a\x54\x8c\x5c\xb7\xcb\x61\xe6\x75\xd5\x91\xf0\x1b\xed\xbd\xd7\x83\xd6\x78\x2c\xf8\xcd\xeb\x7b\x75\x6c\x28\xd4\x40\xb8\x7e\x77\x78\x9f\x57\xe1\x1a\x1c\xaf\x9e\xb6\x79\x41\x17\x26\xa8\x43\x47\xf8\xd2\xa1\xbd\xa0\x61\x17\xdb\x9c\xb6\xc6\x3a\xdb\x49\x4b\x00\x21\x34\x4c\xdb\xab\x81\xc0\xa5\x43\x67\x57\xa2\xc2\xe6\xe1\xa2\xf9\x2d\xe9\x6e\x34\x1d\x0f\x25\xb2\x2d\x82\x81\x26\xb0\xae\x3f\x15\xc4\x75\x53\x53\xa8\x77\x9d\x4f\xa4\x9c\x7a\xbe\x60\xd8\xca\x3a\x10\xd5\x40\xf1\xf5\x52\xe0\x30\xf3\xa6\xb2\x66\x5c\xd2\x60\x80\x15\x0c\x96\xb3\x28\xea\x1b\xa4\x3a\xc4\xf2\x85\x4e\x7c\x6d\xa7\x59\x6d\x76\xdb\xa5\x26\xb8\x9b\x73\x26\xa9\xe9\x6d\x20\x98\x60\x05\x82\xff\x46\x63\xd7\x2b\x8c\x81\x68\xf7\x4b\x67\xda\x54\xad\xc4\x75\x33\x77\x40\x0a\x16\x41\x25\x54\x62\x18\xf2\xa0\xee\x81\x6f\xe4\xc5\xe5\x36\x48\x9e\x08\x81\x82\x18\x38\xdb\x2c\xad\x36\xcd\xd8\xb6\xea\xea\x89\x61\xb6\x54\x32\x82\x06\x31\xb8\x18\x24\xdc\x9c\x54\x40\xb1\xfc\x33\xba\x72\x11\xc9\x5e\x05\x68\x7d\x36\xb1\xd6\x80\x8e\x7e\x85\x6a\x83\x55\xad\x9c\xdd\xc3\x66\x28\x71\x43\xac\x29\x63\xb3\xb7\x1e\xae\x82\x25\xb8\xb1\xe3\x90\xfb\x3b\x39\x2b\x68\x53\x93\x18\xfd\x90\x16\x04\xa9\x5a\x94\x74\x4d\xcc\x7c\x14\xbd\xe2\x33\xa5\x3a\xe7\xcf\xc5\xef\xfa\x8d\x46\x37\xd8\x3d\xb5\x43\x80\x44\xab\x6e\x26\x6d\x92\x3f\xab\x57\x00\x7b\x74\x12\x3e\x82\x89\xc9\x27\x14\x4b\xc0\x51\x9b\x17\x8c\xca\x1e\x1b\x88\x87\x10\x5c\xbb\xa9\xc0\xc7\x18\xb9\xfb\x8a\x33\x9d\x9a\xb1\x8b\x61\x0f\xef\xb3\xb4\xba\xa2\xcd\x17\xa5\x7d\xec\x42\x6e\xb8\xa3\x2b\x3e\x66\x5c\xb0\x43\x1f\x6f\xb3\xac\xda\xe0\xbd\x05\xd3\x2a\x86\x49\x0c\x4b\xc4\xfc\x70\xb2\xf2\x59\x85\x59\x17\xf0\x85\xa4\x93\x12\x1d\x49\x8f\x86\x07\x50\x78\x1e\xdf\x78\xa3\xbe\x1b\xe2\x4f\x87\x86\x41\x65\xd3\x0c\x72\x84\xba\xb0\xb0\xb2\x93\x38\x9f\x35\xa0\xad\x8a\x0a\xfa\xd8\x5c\xae\xf3\x9a\xaf\xd7\x20\x39\x4f\xdc\xdf\xab\x1e\x49\x03\xd7\xdd\x52\x9f\x24\x3b\x4e\xed\x6c\x57\x89\x63\xc9\x57\x32\x5e\x96\x20\xde\xc3\x34\xde\x52\x8b\xf8\x14\x6e\xd1\xac\x62\x09\x0b\xae\xf8\xe3\x79\x03\x10\xed\xd8\x2e\x75\x82\x52\x78\x1c\x57\x88\x79\x3d\x52\x66\xcc\x9b\x0b\x66\x86\xc1\xc4\xa2\xff\x73\x9d\xa1\xd7\x17\x4a\x55\xf1\x16\xf7\x66\xb5\x4b\x89\x9d\xe7\x0c\xb7\x56\x78\xbd\x8a\x93\xc4\xde\x66\x11\x9a\x31\x85\x77\x59\x0f\xfd\xd1\x16\xeb\x80\x52\xcb\xf5\xd7\x7a\x0f\x74\x18\x63\x7b\x75\x30\x53\xbb\xf1\xbc\x1f\x6f\xb4\x0c\x25\xb7\x58\x7e\x67\x68\xae\x0c\x60\x6e\xab\x0c\xa3\x37\x54\x5c\x24\x74\x79\xd4\x97\x69\x81\x8d\xd1\xf2\x20\xb4\x8a\x40\x83\x01\x93\x81\x12\x4d\x65\x1d\xea\x48\xaf\x06\xc4\x8a\xcf\x08\x21\x24\x23\x95\x05\x77\x55\x52\x4b\xb7\xa5\x18\xb8\x56\xc4\xac\x31\xbf\xaa\xf3\x2b\x51\x54\xc8\x71\x58\x47\xc1\x24\x18\x1b\xd0\x58\xe2\xa3\xcd\x40\xfa\x99\x9b\x02\xfb\xf1\xee\xa8\x42\x84\x7a\x18\x82\x96\x66\x6f\x06\x7b\x25\xcb\x84\x54\x55\x7b\x2e\x04\x9f\xdf\x68\x29\xec\x25\x61\x70\x89\x64\x5d\x8d\x24\xd0\xd8\xa1\x1f\x4b\xb5\x20\xb2\x91\xae\x78\x6c\xb7\x86\xa6\x98\xf4\x15\xc2\xdc\xa4\xff\x98\xab\x66\xa8\x3c\x66\x87\xd7\x6f\xf3\xd3\x6f\xef\x8d\x1c\xe5\x8c\x88\xd9\xda\xb0\x07\xfd\xdf\x10\x93\xea\x43\xa2\x85\xa5\xd1\xfc\x28\xda\xe2\x88\xba\xe6\x98\x7c\xca\x1e\x1a\xbe\xa7\x8d\xef\xd4\xca\x93\xca\x8c\x31\xec\x84\xc8\x36\xf2\xed\x48\x0f\x52\xe0\xa9\xa2\x65\x6a\xa3\x2d\x60\x07\x9b\xa1\xe4\xe3\x66\x4a\x1e\x44\x42\x16\xb0\x27\x7b\x55\x17\xa0\x5e\xf7\xb5\x91\xf6\xa6\x43\x8b\xff\xe7\x3a\x83\xbe\x26\x69\x84\x4e\x59\xc1\x7a\xb2\x86\xfe\x64\x19\x42\xe9\x22\xb6\x85\x71\x52\xbb\x97\x2a\x81\xb0\x00\xb3\x8d\xa2\xd6\x2e\x44\x0e\x86\x0f\x4f\x7c\x7e\xea\xce\x5d\x6a\x62\x1a\x21\x54\x67\xa0\x29\xb6\x01\x51\x8b\x8a\x91\x05\x89\xd0\x7c\x59\xa5\xf6\xb6\x71\x46\x17\x47\x5a\x81\x50\x62\x85\xe9\x42\xa7\xc1\xf4\x7a\x70\x3b\x16\x84\x4e\x2e\xa0\x81\x55\x24\x34\x97\x52\x00\x17\x93\xdf\xbf\xc4\xc7\x31\xf6\x73\xa0\xe3\x71\xc2\xf4\x94\xd1\x63\xad\x52\x6e\x53\x7e\x73\x42\xb0\xe1\xd5\x85\x9f\x62\x33\x24\x2f\xe0\x83\x43\xcd\x28\xc4\x81\xa3\xdd\x6d\xcf\x70\x25\xfa\x36\x91\xd1\xa7\x28\x4a\x8b\xdb\xa3\x2c\x2b\x35\xa1\x93\xa6\xa2\xa1\x55\x57\x29\x0b\x68\xc4\x4f\x1a\x80\x9f\x59\xcd\x0b\x60\xc0\xe5\xce\xd5\x88\x9e\x64\x15\xe2\x11\x5d\x50\x77\xf2\xb6\x40\x7d\xc4\x21\xfa\x9a\xc1\x13\x77\xe0\x53\x00\xd5\xb0\x1b\xed\x92\x4a\x52\x4a\xd9\xa6\x7e\xcb\xed\x42\x40\xce\xdc\x67\xd9\x0d\xfa\x7d\xab\xf1\xc0\xe0\xbd\x54\x48\x0c\xdf\x3d\x55\x8c\xc2\x1b\xb0\xcd\x40\x89\xdc\xa9\x9f\xc9\x7c\xd6\xb9\x13\xbb\x5c\x9c\xf9\x9c\x8b\x6b\x8a\xad\xb6\xab\xdb\xab\xeb\xab\x6b\x35\x77\x96\x74\x97\x76\x65\x6c\x4c\x0f\xac\x2a\xe3\x1a\x0c\x13\x85\x28\x5e\x5f\x5d\x8f\xaf\xc7\xa6\xbc\x1e\xe3\xd1\x98\x08\xc4\x9a\x29\xd2\x57\x9c\x71\xdc\x59\x7b\x98\x61\xa2\xe2\xb4\x3e\xe9\x30\xaf\x24\x77\x69\x83\x24\x57\x17\x74\xc3\xaa\x82\xe1\x66\x8b\x52\xc9\x49\x79\xa0\xbc\x03\x3b\x29\xab\x8a\xaa\xf7\x3b\x41\x9d\xa8\x2c\x35\x43\x05\x40\x8e\x31\xc5\xaa\x13\xa4\x45\xa2\x94\xc6\x14\x12\x41\xc5\x46\xa4\x6d\x62\xdc\x8e\x16\x0f\x0b\xd1\x30\xe8\x24\xbc\x54\x76\x29\x86\x59\x10\x40\x9c\x15\x66\x28\x30\x27\x2f\xa9\xb8\x44\x88\x24\x4e\x1f\x4a\x93\x1e\x4e\xde\x74\x61\xb6\xcd\xb3\x52\x08\x65\xa5\x6a\x66\x6a\x22\x53\x87\x98\x3b\xaa\x5f\x94\x6d\x43\x9a\xd0\x74\xb2\x0e\xa0\xc5\x74\x24\xc8\xe5\x9c\x4a\x4a\xa2\x3e\xd6\x5e\xc0\xbf\xf0\xd8\xb9\xe2\xf8\x4a\x5a\x9c\xd1\xf4\x7e\x12\x88\xbc\x63\x7b\xbd\xad\xd8\x81\x13\x26\x78\x90\x44\x6b\x19\x16\x58\x8f\xa4\x3d\xc1\x68\xc5\x6d\xee\x4c\x0c\xa8\x68\x02\x21\x14\xc5\x55\x56\x10\x82\x4e\xa2\x91\xd5\xf1\x9c\x67\xee\x91\x32\x36\xf7\x38\x12\xd3\x45\x49\x6c\x01\x59\x5a\x75\x82\x1d\x6f\xa2\xcb\x9a\x5c\x49\x1f\x22\x06\x2e\x2a\x98\x34\x25\x45\xb2\x95\x9c\xa1\x51\x9c\x9f\x97\xe2\x0b\x18\xfa\x45\x9d\x9f\xe6\x7a\x8a\x2a\x51\x30\xeb\x6b\x6c\xbe\x41\x6e\x72\x8f\x3f\x07\x31\xe2\x9f\x41\xc9\x74\x70\x92\x74\x41\x4a\x74\x87\x9d\x68\x96\x82\xcc\x6c\xdb\xf2\x0b\x21\x2e\xba\xec\x0a\x4c\x18\x6a\x9e\x88\x4d\xbe\x6c\x98\xb2\x99\xa8\xc7\x9f\xac\xa6\xf5\xd5\x13\x42\x49\x22\x37\x18\x70\x63\x9c\xce\x18\x3c\xa4\x67\x07\x73\x64\x48\x3e\xf3\x22\x83\x42\x00\x37\x59\x11\xff\x92\xa5\x15\xe6\x32\x58\x21\x3b\x81\x4b\x94\x48\xe6\x0a\x13\x2a\x4e\x6c\x09\xe1\xc8\x07\xed\xe6\xe6\xd6\x25\x9c\x58\xab\x17\x25\x0b\x75\xa2\x9c\x2d\xb4\x38\xcf\x57\xa5\xb7\x8b\x3c\x90\x66\x9c\x93\x13\x39\xea\x9b\xd4\x42\x7b\x85\x50\x84\x27\x56\x3c\x6d\x26\x82\x0c\x41\x48\x95\xb9\x5c\x2e\xe5\x13\x7a\xa8\xfb\xd7\x9b\x91\x53\x26\x45\xda\x3e\x4a\x94\x36\xca\x45\x0d\xda\x31\x50\x8e\xa5\x85\xe7\xc2\x18\x84\xe8\x01\x12\x0a\x67\x03\xcb\x1a\x0d\x29\x29\x1b\xce\x0c\xb5\x66\xcb\x25\x68\xc5\xb2\x41\x8b\x50\xa6\x7d\x8b\x3d\xc2\x24\x26\xea\x0e\xcd\x00\x24\x4e\xc9\x3b\x9b\x20\xa0\x9e\xf6\xdc\xaa\x52\xbd\x76\x49\xaa\x8e\xf6\x72\xf8\x90\x4b\x9a\xdc\x56\xaa\x0a\x97\x25\xf4\xca\x9d\x1c\x16\x65\x82\x5e\xec\x72\x17\x86\xa8\x2c\xeb\xdb\xd9\x68\x32\x19\x8e\x0d\x1b\xfc\xf6\xfe\xde\xbd\x35\xda\x34\x8e\xee\xa6\x37\x23\x01\x23\x69\x4e\x2d\x0f\x99\x0e\xaf\x86\x13\x03\xbe\x7b\xff\xf6\xee\xf6\xce\x44\xb7\xee\x6e\x07\xb7\xe3\xc3\x2e\x91\x11\x96\xd4\x50\x4a\xe5\x6f\xa4\xdc\x5d\x6a\x2c\x0b\xea\x83\x20\xa1\xb1\xf0\x69\x04\x0b\x04\x95\xc7\xd4\x56\x5a\xe9\x83\x44\x84\xaf\xee\x6e\xef\x6e\x4c\xed\x9d\x04\xc3\x61\x70\x10\x6f\x1b\xa6\x86\xcb\x07\xf2\x12\x46\xd4\x43\xc2\x22\x5f\x69\xed\xf4\x3b\x6f\xa0\xc1\xd2\xfe\xe6\x2e\x18\xca\xf1\x97\xf1\x1d\x6b\x98\x3f\x03\x1b\x4f\x31\x7f\xaf\xcb\x8c\x18\xf7\x27\x0b\x13\x67\xce\xb8\x04\x1e\x28\x37\xf0\x01\x01\x1a\xfd\x59\x17\x8d\xce\x5c\x1d\xea\xe0\xc4\x15\xda\xf2\xf6\x93\xef\x75\xa3\x05\x99\xb6\xeb\x0c\xfd\x92\xc1\x3a\x30\x41\x45\x65\x0a\xd9\x4a\xee\xa4\xbe\xab\x1c\x68\xa2\x9d\x98\x7e\xd5\xc7\x10\x43\xf6\xdf\xc0\xe4\x5c\xcb\x47\xa2\xe1\xf4\x3d\x12\x5e\x42\xb4\xe0\xc8\x0b\xd4\x36\x52\xd4\x13\x98\xeb\x5e\x5c\x21\xe0\xbb\xd4\x3d\x2f\x60\xe2\x7a\x22\xab\x17\xfa\x39\x53\x02\x4a\x7c\xf1\x85\x39\xb0\x33\x3f\x5e\x5c\xd9\xd3\x5f\x90\xff\xf0\x39\x05\xe2\x33\x51\x3e\xc4\x0a\xd2\x1d\x41\xf5\xba\xec\x11\xb7\x0f\xcf\x9f\x81\x39\x72\x3c\xeb\x2a\x97\xf7\x12\x0b\x6d\xdc\x09\xb2\x0a\xd9\x84\xb1\x85\x53\x47\x51\xc3\x94\x27\xb1\x97\x49\x4b\xda\xd3\x27\x94\x24\xc0\xd9\xc2\xe2\x61\x97\x6b\x8a\x7e\x6e\xf6\x37\x1e\x77\xd8\xc5\x0e\xeb\x90\xbc\x82\xb4\x8b\x06\x74\x75\x95\xa0\x5a\xb6\xce\x9e\xf2\x63\x9b\xed\x0a\x1a\x6a\x43\x3a\x5c\xe5\x36\xaa\x13\xd5\xbb\xa3\xbe\x3f\x26\x33\x99\x3a\x6c\x28\x4b\x92\xac\x09\x72\x0d\x3e\x73\xcd\x69\x79\x6a\x62\x69\x32\x0b\x98\x85\xc4\x7c\x63\x82\xf0\x6a\xdd\xad\xd7\xa8\xa4\x51\x35\x74\x92\x80\x86\xf8\x23\xb3\x8b\x43\xfc\xe1\x4e\x34\x11\x5a\xc1\x5d\x52\xa9\xfc\x69\x4b\x15\x7b\xd5\x2f\x47\xe8\xa2\xe3\xa3\xad\xc9\x06\x4a\x8b\x18\x23\xe3\x36\xc4\x33\x78\xb7\x72\xf1\xa7\xbd\xa3\xa0\xac\x8a\x2c\x5d\x9b\xec\x8a\x6b\x16\x6f\x3a\xe5\xaa\x78\x61\xc8\x51\x41\x08\xf1\x5e\xa3\x17\x07\x48\x08\x34\x3b\xed\x2c\xfa\x2b\x2f\xe2\x2d\x2c\x5e\xd8\xaf\x27\x58\xa4\x71\xba\x66\xbf\x22\x98\xae\x25\x09\xf3\x41\x44\x20\xf5\xc6\x1f\x5d\x4f\xa7\x57\xa6\x24\x8c\xe4\x1a\x25\x15\xe4\xfe\xdc\xe2\xa3\x26\xd3\x4d\xfd\x48\xc8\xa4\xc3\x9f\xd5\x19\xf9\x15\xe3\x79\x1a\x9f\xba\xb5\x71\x62\x1b\xc4\x2c\x9e\x77\xd3\xbb\xdb\x3b\x93\xd7\xce\xf0\x3a\xb8\x1f\x7b\x4a\xc4\x93\xc1\x08\x3f\x6e\xb0\x88\xdd\x20\xbf\x85\x3e\x90\xdf\x62\x07\xf0\x83\x13\x5a\x2f\xb6\x8e\x4b\x78\xf5\x74\x6b\xd3\xe1\x6d\x70\xaf\xb6\x8e\x3c\xa4\xad\x23\xd0\xea\xfc\xbb\x4c\x4e\x48\x20\x60\x6e\x52\xfe\x48\xb1\xa3\x25\x8f\x34\x57\xc8\x49\xde\xd8\x52\x4d\x04\xf5\xda\xc8\xd5\x09\x8d\x76\x87\x6c\x35\x29\x19\x8d\x46\x2d\xe2\x0f\x03\xad\x83\xf8\xa3\x69\x90\x84\xae\x5d\x92\x84\xd6\xd2\x83\x75\xf2\x92\x6f\xe2\x90\xc9\x54\x9b\xe7\x78\xbf\xcb\xd6\xb8\x6a\x2c\x51\x01\xdc\x60\xc0\xb9\x1a\xe2\x8f\xe0\xfa\xa9\x4c\x0b\x84\x50\x46\x21\x2c\x8a\xfa\x19\xbf\x17\x69\x91\xe2\xb9\xbf\x95\xac\xcd\xf1\x83\xbe\xd2\x5d\x26\x0c\x34\xd2\x6b\x1b\x1f\x6e\x62\x92\xad\x0e\xdf\x91\xa1\xeb\x1e\x6a\x36\x46\x72\x80\x33\x98\x8b\x73\x15\x2b\xf1\x28\x66\x85\x66\x52\x98\x0b\xe9\x48\xe6\xcf\x58\x31\x36\x65\x8b\xee\x38\x92\x03\x1a\xa1\x48\x0d\x4b\xad\x46\x16\x51\x25\xa5\x86\x85\x66\x8e\xfc\x6b\x8e\x6c\x31\x20\x7f\x73\x5d\x68\x53\x47\xed\xd7\xc3\xda\x1b\xd6\x69\x80\x3f\xe2\x0b\xe2\x19\xa7\x25\x19\xa9\x32\x40\xfb\x65\x11\x91\x90\x05\xde\xa1\x11\xfe\x48\x38\xa9\x0e\x63\x46\xff\xb1\x9f\xe7\x34\x00\xca\x2c\x2f\xb2\x75\x1c\xcd\x6e\xff\xf7\xd7\x18\xf5\x47\x7e\xb6\x3a\xdf\xc6\x61\x91\x95\xd9\xaa\x72\xea\x6a\xca\x0a\x16\xd5\x0d\x6e\x5a\x59\x15\x17\x5f\x30\x69\xc5\x6a\xf5\x85\x05\x50\x1a\x49\x2f\x68\xfd\x5f\x58\xe0\x2b\x56\xf8\xe3\x4b\x8e\x2e\xdc\xbe\xb2\xb6\x29\x18\xa8\xff\x5d\xae\xf0\xc7\x10\xb1\xa9\xd1\x97\x82\xce\xdf\x7e\xd0\x7f\x43\xc7\x58\x3c\x81\x8b\x15\x4c\x4a\xd4\x37\x90\x91\x90\xfc\xc9\x42\x10\xde\x87\xe5\x00\x7f\x0c\x6a\xb4\xb6\x7c\x18\xa6\xf9\xf7\xfb\x16\x7d\xeb\x6b\x59\x1d\xc8\x56\x2d\xed\x9a\xfc\x94\x8d\x66\xc8\xae\x03\xb8\xe9\xec\x83\x54\x84\x5e\x9e\x14\x29\xb6\xea\x26\x25\x17\x31\x4a\xab\xfd\x26\xcf\xb7\xe7\xa9\xb9\x53\x55\xb2\xa0\xa4\x79\x35\x85\x60\xd3\x57\xfc\x14\x7f\xcc\x09\x9e\xd5\x06\x36\x14\x59\x35\x0d\x30\x58\x81\x0b\x14\x9a\xe8\x0e\xdb\x50\xd9\x61\x02\xcb\xd2\x14\x97\x5c\x36\xef\xcf\x8a\x88\x08\x45\x67\x34\x5a\x32\xfe\xad\x0f\x60\x97\x7e\x5d\x4e\xc4\xdd\x65\x66\x6c\x9a\xfc\x36\x51\x94\x36\x85\xdc\x86\xd8\x91\x3d\x11\x7c\x6a\x8d\x0c\xd7\x25\x0d\x49\x60\xb8\x25\xdf\xdc\x68\xa6\x56\x62\xd4\x37\xd1\x6b\x98\x78\x19\xd6\x4b\xd0\x7e\xa1\xdc\x31\x11\x56\x56\x70\xbd\x37\xd8\x84\x75\x7a\xef\xb6\xfb\x48\x88\x5a\xf5\x29\x27\xd2\x1d\x69\xda\xd8\xe8\xd6\x77\x60\xef\x7e\x54\x8b\x80\x1b\xe5\xa7\x1a\x1a\xd9\xe0\x52\x28\x1a\x08\x6e\x78\x5a\xe4\xba\x87\x4d\x3a\x29\x5a\x83\xec\xd6\xc2\x07\x19\x08\xe0\x6d\x97\x9c\x89\x0f\x23\x7f\x69\xee\x97\xea\x07\xdc\x20\xa6\x73\x28\x70\x54\x8d\x16\xd1\xdc\x72\x35\xf8\xa2\x36\xfd\x26\xe3\x09\x59\x46\x20\xd9\x57\xb0\xd6\xbb\xae\x3b\xaf\x13\x4b\xca\x4d\x8c\x62\x35\x99\xb3\xa8\x3c\xc2\x70\x0b\x35\xae\xc6\x5c\xcf\xd7\xcc\x52\x3e\x57\x0b\x22\xb7\x93\x25\x4b\xd7\xb7\xe6\xfc\xe7\x53\xd7\xf3\xbc\x2b\xc5\xe1\x7c\x09\x8b\x45\x05\x97\x65\x13\xb0\xf1\x31\x2e\xe3\x65\x22\xaf\x1e\x9a\x94\xa5\x16\xdd\x0a\xfc\xac\x4f\x29\x39\x61\x1d\x64\x23\xdb\xa1\xd1\x61\xb5\x91\x7d\x9c\xa2\xbc\x66\x81\x9e\x85\x76\x5e\x26\x71\x7b\x70\xe4\x86\xe7\x30\xa4\xcb\xa2\x91\x4f\xc6\x4a\x70\x25\x55\xb7\x2b\xdc\xfe\x59\x73\x0c\xdc\x37\x17\x16\xb9\xc0\x55\xda\x66\xcc\xf7\x36\x12\xa4\x9b\x83\xdb\xd1\xed\x95\xe8\x4f\xeb\x6a\x31\xe3\x14\x94\x00\xee\xf5\x00\xf9\x86\xc9\xa9\xcd\xcd\xda\xbd\xbe\x55\xc4\x9c\x09\xef\x58\xf4\xe6\xfe\x35\xf1\x92\x85\x41\x12\x41\x1d\x93\x70\x9b\x18\xab\x68\x40\xcd\xf9\x4a\x55\xac\x0a\xe3\xdb\x78\x2e\xc7\x5b\x84\x1f\x18\x33\x8f\x76\xa8\x65\x26\xf8\x33\x17\xa3\xd4\xd4\x98\x1c\xb2\x01\xf7\xea\xc8\xd1\xa4\x91\x1a\x0a\x6d\x87\xe8\xe9\xc8\x64\x4b\x3f\x66\x0c\x45\x2b\x63\x5e\x8c\xfb\xe6\x5c\x73\x05\x79\x62\xad\x7c\x51\xc0\xe5\x26\x52\xc4\x12\x5a\x40\x48\x46\xcb\x7d\xa5\x91\x2f\xf1\x03\x6a\x32\xd4\x0a\xef\x8d\xb2\xc4\x81\xab\x47\xa6\x15\x82\x3f\x29\x38\xa8\xa2\x5c\x46\xd4\x12\x01\x16\xef\xf7\x93\x3d\x82\x09\x41\x94\x82\x0c\x7b\x1d\xa7\xda\x6a\xb5\x52\x0f\x1c\x55\x20\x07\x7a\x52\x07\xf9\x44\xb4\x48\x33\x49\x63\xc5\x4d\x4a\x40\xc9\xfd\xc6\x26\xee\x14\xa5\x9e\x77\x66\x68\x3c\x3a\x94\xe5\xd9\x09\x44\xab\xf6\xf4\x24\x91\xf5\x90\x6f\x7c\xe6\xe5\xa1\xef\x03\xc5\x85\xa0\x51\x6b\x6b\x85\x4f\x77\xe6\xb3\x7d\x2e\xd4\x1d\x68\x3c\x09\x9b\xd5\xa1\x90\x38\xa5\x89\x48\x2c\x6e\xa2\xc8\x8f\x06\x91\xaf\x9a\x89\x0d\x55\xf2\x4b\xd8\x5e\x69\x8b\xbe\x48\xa9\xa3\x1c\x9f\xc4\x8a\x3a\xf0\xe7\x27\x38\x19\xb4\x44\x2a\x21\x83\xe4\x4c\x07\xe3\x00\x6d\x15\x16\x7d\x30\xaf\x45\x0e\xcb\x11\x84\x98\xfa\x94\x59\x18\x43\x62\xb9\xc2\x35\xc1\x07\xf6\x8c\x67\x1b\xb3\xf8\xef\x65\x16\xbd\xc8\x46\x23\x32\xa0\x74\x5a\xdf\xdd\xe2\x4f\x1d\xda\xe2\xfd\x41\xc2\x62\xbc\x80\xf1\x24\x74\x93\xf7\x07\x87\x39\x45\xd5\xce\x66\x9a\xfb\x95\xe6\x68\x75\x70\xc2\x0d\xac\x80\x56\x92\x78\x18\x89\xde\x46\xad\x25\xcb\x0a\x56\xbb\xd2\xa0\x7c\xf1\x46\x4c\xac\x6e\x7b\xb2\x01\x95\x37\x34\x89\xb3\x1b\xaf\xbe\x7a\xe9\xe8\x3c\xaf\x1e\x57\x0b\xf3\xdf\x35\x17\xe1\x0f\x3c\x75\x4d\x69\x2d\x75\x32\x22\x0e\xd9\xeb\x84\x43\x81\x83\x4f\xf0\x45\x66\xa5\x06\xd3\x1b\xcf\x57\xb1\xad\x56\x1a\xba\x30\x0c\x39\x54\xe3\x5f\xb5\x57\x72\x6b\x18\x3c\x11\x79\xae\x18\x91\x9d\x0f\xa8\x86\xa5\x1d\x1a\xd4\x09\xd9\x95\xf4\x0a\x3c\xce\x4d\xb8\x81\x45\xd5\xe1\x2d\x23\x89\x87\xb8\x5e\x47\x58\x38\x9e\x6a\x40\xa6\x5f\x25\x8d\x81\x0a\x58\xcd\x20\x84\xe9\x23\x6c\x3b\x93\x58\x40\x17\xf7\xe0\xe4\xa8\xc0\xe5\xcc\x52\x2b\x69\x43\x4a\x46\xf3\xbe\x62\xd3\x5a\x23\x52\xb5\x64\xef\xbf\x90\x2f\x85\x8e\x87\xb6\xe2\xd6\x9f\xa0\xed\xc1\x81\xe9\x7a\x97\x34\xf9\xdc\x59\xe4\x1d\xa2\x35\xa1\x6f\x00\x1b\x4e\xd1\xe8\xf9\xa0\x1f\xe6\x7e\x6d\xf9\xc3\x6e\x82\x52\x44\x86\x0a\x26\xc9\xcb\x62\x99\x3d\x03\x41\xaf\xcb\xe2\x8c\x19\x86\xf1\x84\x52\x92\xcd\x86\x76\x6f\x6b\x97\xa0\xe9\x1a\x9f\x31\xfe\x60\x12\x27\xd6\x6a\x29\xbf\x95\x04\xee\x86\xb7\xa2\xa6\xa7\x33\x20\xe4\xbb\xbb\x1b\xfc\x51\x8d\x16\x19\x6f\x28\xa1\x65\x5e\x97\x6a\xf2\x7b\x72\x55\xd2\x60\xa9\xab\x07\xbf\x87\x4b\x06\xab\x7a\x48\x89\x3c\x46\x8b\xe5\xba\xd5\xd4\x9a\x1a\xa2\xbb\x9e\xe5\xbb\x43\xcb\x9b\xf8\x34\x44\xb6\x66\x67\xa9\xe7\xe8\x22\x84\xee\x3f\x44\x9e\xf8\xab\x85\x7d\x26\x23\x52\xc9\x34\x80\x65\xcb\x04\x36\xfe\xbf\x77\xbe\xef\x9b\x16\xea\x2a\x41\xcf\xfb\x63\x41\xd7\x84\xc9\xe3\xde\xbd\xcb\xec\x79\xaf\x5f\x73\x87\x8a\x65\x9a\xc4\x2b\xa0\x10\x7f\xa4\x04\xfd\x6a\x54\x6e\x2f\x6f\xa9\x0b\x24\xb1\x21\xb3\x85\x1f\xb4\x2c\xb1\xf6\x92\x00\xee\x4f\x29\x21\x04\x8c\x53\xab\xa2\x2b\xf2\x84\x92\x75\x55\xdd\x25\x00\x54\x33\x57\xb4\x05\xe5\x20\x31\x8a\x38\x3b\x1c\xb4\xa6\xe5\x15\x02\xe3\x0f\x87\xaa\x6b\x4f\xbb\x23\xb7\xdb\x31\xf6\xf5\xd5\x53\x92\xfd\xe9\xb9\x0a\x44\xb2\xe1\x8f\x96\xd3\x29\x6c\x47\x59\x3b\x8a\x37\x3c\xcd\x44\xe8\xe0\x44\xca\x7a\x2d\xde\xb9\x69\xde\x12\x6d\x29\xe7\x96\xfe\x8c\x5c\x73\x4e\x22\xd8\xc4\x2c\xb8\xcd\xb7\x8a\x48\x50\xda\x4a\xe9\x91\x68\xe4\xb2\xe6\xa2\xbb\xc4\x61\xc6\x7d\x0d\xcb\xdf\x0e\x64\xec\x5c\xf3\x56\xed\xa6\x14\xbb\xc7\x54\x00\x0f\x3f\x91\x3f\x2b\xfa\x3f\xdd\xca\x7b\xd8\xdd\x7a\x82\x89\x9a\x54\xcb\xdc\xa3\x94\xd3\x8e\xc9\x9b\x5a\xe2\xac\x18\xe2\x0d\x19\x87\xa0\x2b\x75\x54\xdb\xf0\x51\xd5\x17\x5e\x74\xb0\x20\x62\xe5\xfa\xd2\xd3\x5c\x27\xfd\xc1\xfb\x43\x7d\x7d\x57\x0b\x90\x65\xba\x2e\x50\x59\x3a\x5c\x8d\x56\x3f\x59\x3c\xc5\x11\xe2\x01\xf5\x03\x72\xca\x92\x43\xcd\xd7\xf3\xab\xd6\xe4\xad\x4d\xd5\x2b\x06\x3e\x51\x8d\xc0\xe5\xcc\x72\x4d\x35\xcd\x21\x8f\xcf\x4f\x7d\x99\x8b\x80\xb5\x0b\x87\x90\x11\xa7\x1e\x3a\x09\x50\x4b\x70\x45\x93\xda\xc8\xc9\xe9\xcc\x7e\x0d\xfc\x5e\x41\xc3\x78\xd0\x12\x36\x66\x8b\x91\x66\x5e\x4c\x9f\x12\x76\x06\xa2\xf0\x35\x16\xc5\xcd\x28\x30\x93\xc7\x52\xb0\xc3\x37\x44\xd0\xe3\x50\x20\x89\x2d\xa7\x82\xe5\x43\xd9\xdc\x0a\xc5\x7e\x44\x59\x55\x91\x16\x91\x13\x5b\x14\x9e\xc8\xb5\x31\xff\x05\x07\x3e\xc2\x0a\x16\x56\xf3\x75\x2f\x06\x30\x10\xa3\x04\xe8\xd9\x1c\xe5\x3c\x99\x9a\x1a\x41\x0c\x1a\x66\x88\x97\x6a\x60\x0a\x49\x9b\xd5\x56\xf2\x1f\x8b\xe8\x68\x3a\x87\xb6\x92\xdc\x7c\x5e\x92\x67\x69\x8e\x1f\x43\x1e\x39\xb5\x03\x05\xd8\x0c\x79\x1c\xef\xbd\x12\x92\xa7\x2d\xf9\xba\x49\x1d\x26\xdd\x33\x18\x6b\xdb\x59\x2d\x19\xe3\xbf\xef\xb2\x4a\x70\xd7\x90\x5d\x1b\x15\x41\x62\x20\xa5\x12\xc2\xf8\x77\x25\x2a\xf0\x18\xc2\x26\x5c\x8b\x10\x3f\x4f\x85\x30\x84\xe9\x50\x21\x6a\x0a\xd2\x38\x5e\x91\x3c\x7b\x3f\xa3\x90\x1c\x93\xe4\x9d\x00\xa5\x78\xe8\xc8\x3e\x75\xf2\xbd\xaf\xc6\x53\x02\xea\x1e\x48\x97\x9a\x70\xca\xd4\xf1\x59\x68\xd6\x53\x5d\x30\x5d\x9b\xce\x4b\xe1\xc2\x8e\x46\xe6\x25\x52\x97\x0a\x56\x25\x21\xf1\xa2\x63\x5c\xab\x90\xb7\xc3\x0f\x4a\x34\xa0\xd6\x10\xb7\xe6\x11\x6c\xcf\x18\x46\x7d\x11\xe7\xc2\x75\xc3\x98\x92\x4b\x33\x49\xa7\x2d\x35\x36\xc1\x90\x64\x9a\x3b\x13\x9a\xc0\xf5\x73\xd2\x6f\xe9\x1b\x70\x1e\x61\xb2\xd3\x8e\x54\x4d\x20\x23\x5b\xeb\x18\x9b\x28\xf2\xcc\x8a\x75\xf4\x2e\xa9\x97\x9c\x12\x8b\x48\x74\x0e\x36\x40\x01\x58\x87\x78\xaa\x33\x74\x12\x00\x96\x7b\xd9\x6c\x04\xaf\x02\xb5\xc4\xbd\xd1\xb3\xb0\x53\xe2\x6a\x08\xaa\x4c\x23\x31\xf1\x0b\xfc\x90\x2d\xfe\x38\x54\xf3\x27\xb3\xdc\xab\xe4\x05\x70\xf4\x65\xcf\x84\xd2\x92\xf0\x42\xd0\x7c\x4b\x96\x61\x2e\x30\x26\x92\x93\xb1\x83\x8d\xbf\x57\x0c\x3e\x43\x98\x13\x59\xe6\x2f\x48\xf5\xf0\xd5\x62\x88\x00\x5e\x8f\x51\x66\x34\xa4\x29\x39\xe5\xea\x3c\x35\x08\x1a\x3f\x2a\x7d\x61\x4c\x38\x34\x39\xdf\xb5\x64\x5a\x9e\x45\xff\xe7\x3a\xfe\xa4\xaf\x86\x67\xaf\x71\x2c\x56\x08\x56\xbb\x02\x95\x8a\x6d\x3c\xfe\x34\x85\x1a\xf5\x4a\xe3\x68\xe5\x6b\x0a\x0a\xc7\x88\x98\xb9\x1b\x6a\x9e\x12\x35\x9c\xee\x47\x05\x3c\x35\xf2\x8a\x41\x84\x62\x4a\x32\x7f\x24\xb5\x9e\xac\x8d\x1b\xa8\x22\x12\xc9\x11\x6e\xa0\xb7\x11\xe4\xfb\x16\x7d\x0c\x8f\x3d\xa8\x1b\xdc\xed\x62\xbb\x88\x97\x4b\x12\x24\x24\xad\x60\x9c\x9a\x42\x40\x18\xc1\x80\xf0\x50\xcb\xb2\x55\x0b\xf4\xcc\x3a\x1e\xe9\xda\x35\x61\xaa\x03\xd1\x76\x8e\xf4\xce\x50\xa9\xf0\x8c\xd9\xd2\x0a\xcd\x30\xc4\x91\x0a\x96\x53\x77\xb9\x3a\xd6\xfe\xa3\x71\x83\x0c\x11\x57\xdb\x9d\x93\xc7\xae\x14\x04\xa3\xd9\x92\x45\x56\xc1\x0a\x9d\x0d\x83\x08\xad\xfb\xca\x59\x47\xd5\x28\x01\x37\x8d\x6f\x4e\x0e\xcf\x57\x99\x10\xdf\x35\x2e\xbe\x20\x08\x54\x47\x8d\x81\x6a\x21\x35\xe8\xbf\x7e\x54\xa9\xd0\xd4\x7a\x7d\x39\x39\xc2\xa2\x92\x38\xe3\xb4\x89\xe1\x38\xea\x5b\x0a\x21\xd1\x34\x47\xd7\x69\x25\x6b\x67\xfb\x23\xe0\xed\x9d\x34\x20\xd5\x97\xb9\xa8\x3e\x94\x83\xd1\xb4\x74\x3f\x08\x5a\x62\x5e\x1a\xd4\x7d\x75\xa8\x70\x83\xf2\x9d\x6a\x69\x52\x7c\xc0\xd1\x5c\x00\xf5\x7d\xd3\x6c\xeb\x16\xc2\x5c\x32\xbb\x9f\x32\xe3\x63\xdd\xfd\xb3\x86\xd5\x8e\x57\xaa\x5e\xe6\xf5\x36\x79\xcc\x8c\x15\x12\xb6\x4c\x8b\x98\x75\x42\x90\x19\x61\x2d\x73\x6b\x50\xe2\x73\xc4\x6e\x4b\xb2\xb7\x01\xad\x07\x38\x5b\x58\x3e\x58\xec\x7b\x1d\xd5\x59\x9b\x2d\xe1\xb2\xac\x25\xdb\x95\x14\x10\x04\x11\xe6\x03\x94\x38\xb9\x3a\x81\xa4\x55\x56\x59\x96\x94\xea\x49\xdc\xb8\x5e\xa8\x11\xed\x64\xbe\xb1\x4b\x53\x3b\x6e\x97\x72\xca\x1b\x3c\xe8\xf3\xa3\x78\x38\xe0\x2e\x2c\x07\x32\x2c\x4e\x9a\xd9\x7c\x46\x59\x43\x19\xe4\xd4\x6d\x20\x85\x7e\x08\xf1\xf3\x24\x96\x57\xf0\x92\x32\xc5\x0e\x11\xae\xfb\x0d\x2b\x4c\x84\x3a\x04\x37\x3b\xa3\x98\x99\xd5\x57\x28\x2b\xd6\x31\xb4\x40\x89\x8a\x78\xd5\xa9\x88\x25\xaa\x3f\x43\x1a\x47\x03\xdf\xc4\x4d\x3d\x81\xd9\x3c\x99\xb5\x04\x92\x58\xff\x1d\x6c\xbd\x6a\x55\x26\x85\xc6\x51\xf5\xd2\xae\x42\xf5\xdb\xd6\x80\x42\xa2\xf1\xb2\x7e\x47\x92\x56\xe2\x36\xd9\x84\x7b\x26\x2b\x4e\x89\xd5\xe6\x3a\x7e\x59\x7b\xc3\x09\xa0\x64\x6a\xf7\x8d\xe7\x98\x39\xe7\x2b\x5f\x1e\x41\x5f\x8d\x01\xe7\x3a\x43\x25\x04\x9c\x88\x9c\xad\xe7\xba\x1b\xe4\x5b\x02\x2b\xf4\x6f\x67\x36\x8d\x2d\x2b\x38\xad\x99\x5a\xdc\x86\x39\x37\x23\x3d\x09\xa7\x3e\x0a\x2c\x56\x5d\x3d\x6c\x04\x2d\x89\x0e\x78\xe6\x39\x5e\xdf\x00\x2a\x0f\x9b\x67\x82\x20\x7d\xb7\xf4\x17\x79\x53\x6c\x6e\xec\x04\xee\x82\x01\x61\x2e\x4c\xa9\x1d\x21\xbc\xe4\x5c\xc7\x2b\x0f\xe7\x7f\xfc\xec\xf7\xbf\x03\x7f\x04\xcb\x2c\xab\xca\xaa\x80\x4d\x54\x19\xbb\x82\xcb\x12\xd8\xe0\xd1\x73\x7c\xc7\x23\x40\x9b\xaa\xca\xcb\xd9\xf9\x79\xb4\xac\xd0\x83\xb3\x8e\xab\xcd\x6e\xe9\xc4\xd9\x79\x4b\x61\x52\xc6\x77\xbd\xa1\xed\x79\xb6\x3b\x26\x3f\x6f\xb2\xfc\x85\x9a\x55\x9d\x85\x7d\xf2\x12\xfc\xff\xff\x5f\xb9\xc5\x27\xc8\x2d\xda\xc6\xc5\x32\x4e\xd0\x03\x81\xfc\x26\x0e\x51\x5a\xa2\x19\xf8\xf6\xeb\x8f\xf8\xc1\xb9\x83\x71\x92\x03\xcb\xa2\x5f\x25\xcf\x68\xd1\x1a\x4e\x54\x6c\xd3\x90\x63\xbc\x64\xab\x2b\x36\x3f\x75\x74\xc4\xaa\xcb\xb5\x04\x89\x5f\x5e\x52\x41\x1b\x2f\x77\x59\xdb\x8b\x09\x99\x08\x84\xc0\x36\x72\x49\xd9\x4c\xd8\xf6\xea\xf7\x35\x2e\x29\x6d\x83\xa7\x96\x67\x06\x6f\x97\xd0\x32\x3f\xe6\x9e\x4b\xe6\x97\x92\x97\xbe\x6c\x2d\xcf\xa2\x30\x88\xe3\xa5\xfb\x6b\x2a\x6d\x55\x1b\xa3\x3d\x97\x5a\xa3\xbf\x35\x34\x47\x1f\x79\x91\x73\x69\x6d\x11\xeb\xe9\x25\xdc\xeb\x96\x91\xcc\x5d\x52\x09\x88\xa4\xea\x8d\xf4\x80\x14\x27\x26\x85\x90\x3b\xa7\xb5\xa0\x76\xd5\x04\x6a\x48\xa6\x5f\x53\x67\x19\x47\xe8\x09\xbe\x94\x92\x81\xbd\x10\x68\x86\x6e\x0b\x9d\x71\xe0\xe5\x2e\x1b\x55\x81\xef\x2a\xdc\xbf\x2a\xdd\x70\x79\x1a\x7d\x56\xf0\x52\x35\xb6\x34\xcb\xfa\x5b\x96\x50\xfb\xad\x54\x35\x66\xa5\xff\x49\x55\x0b\x0b\xce\xf4\x94\x2f\x37\xe3\xbb\xf6\xb5\xdf\xc6\x04\x8b\xe1\x81\xf5\x45\x48\xd3\xaf\xf1\xaa\x04\x92\xc3\x2e\x57\x52\xdb\x45\x3a\xc3\xb6\x7e\x2b\x00\x9e\x1b\xed\x1a\x37\x75\xf1\x35\xce\x54\x9f\x11\xdc\xe6\xf0\x54\xba\x64\x13\xbe\xd8\x68\xc9\x34\x90\x5c\x39\x4c\x21\x5f\x65\x16\x42\xf7\x59\x0b\xfa\xaa\x5c\x5b\x77\x99\xa5\xad\x90\xac\x90\x18\x49\xd6\xf2\xe0\xd0\xe8\x1a\xac\xc4\x2e\x4f\x32\x18\xa9\x1c\xbd\xf2\x1a\xd0\x00\x25\xad\xce\x09\xd4\xd6\x56\x0e\xc8\xa6\xd5\xc1\x6c\xf5\x8d\x11\x7c\x99\x05\x64\x5d\x08\x15\x36\xf5\x1f\x57\x83\x58\x18\x83\x38\xd1\x5a\x94\x40\x3d\x83\xd1\x50\x8a\xce\x27\x85\x21\x0c\xcc\x4e\x4a\x86\xc1\xf7\xcd\xee\x69\x21\xfe\xb4\x4e\x03\x57\x1d\xe8\x57\x0d\xd6\x38\x92\xdd\x4a\x08\x2e\x40\xc2\xc3\xb0\xc2\x24\x5d\x2e\x7a\xd2\xcd\xed\x9a\xa6\xcb\x41\xb3\x8c\x8a\xfc\x77\x08\x19\x8c\xd8\x5b\xbc\xdf\xdb\xfa\xc1\x9a\x22\x59\x8d\x37\x89\x0d\x57\xa7\xac\x5c\x15\x97\x60\x80\x48\x7b\xcd\x9e\xdb\x49\x13\xd0\x6b\x22\xcc\xdc\x44\x09\xcb\xe8\x31\xa1\x1f\x2d\xb4\x8d\xe4\xbc\x83\xd2\xea\xe3\x40\xe5\x76\x2f\x1a\x48\x36\x76\x93\x5d\x89\x27\x8c\x93\x41\x34\x82\xcd\x66\xab\xd2\x52\x8d\xac\x66\x08\xaf\x29\xc1\x0b\x86\x5d\x7b\x3d\x12\x21\xde\x26\x71\xba\x96\x62\x7d\xb4\x44\x12\x10\x22\x83\x71\xbf\x4e\x2e\x55\x91\x25\xd7\x40\xc9\x24\xcc\xea\x70\xd6\xf1\x4a\xca\x1d\x4c\x8f\x0a\xf6\x4f\x13\x37\x7c\x1c\x70\x43\x23\x98\xe4\x1b\x78\xc6\x5e\x5c\x8c\x83\x7e\x63\xa0\xe7\x7a\x43\x77\xe4\x4f\x0e\xce\x36\x2b\x8a\xb8\xa4\xd1\xce\x0d\x17\xf5\x26\x2c\x2c\xbe\x21\x89\xc0\xfc\x07\xbb\xff\xd3\x4b\xe3\x5e\xf0\xba\x92\x9c\x9d\x95\xdb\xb2\x3f\x1c\x58\xfe\xd0\xb7\xf0\xbf\x24\x18\x2d\xdb\x0d\x74\x27\xd4\x7e\x85\xde\x34\x60\x71\x46\x47\x14\x4c\xbc\xb9\x96\x30\x2d\x6d\xf1\xd6\x5a\xdf\x51\x0d\xf7\xcd\xa3\x2d\x07\x12\x88\x5d\x64\x4f\x2c\xc6\x53\x6b\xd4\xc3\xda\xcc\xf9\xb5\xb8\xc9\x91\xb0\x37\x18\xd8\xd7\x98\x3d\x8a\x38\x2f\xe2\x10\x29\xd9\x47\xb4\x2b\x3e\x1b\x65\x16\x91\x40\xd2\xf9\x45\x5c\xe1\xd7\x1a\x78\xf2\x1e\x7f\x4c\xe1\xd3\x19\x9e\x01\xcd\xd3\xa6\x9a\x8c\xe8\xca\x89\x2c\xda\x85\x95\xdd\xe4\xc2\x94\x95\x9c\xd1\x82\xb4\x52\x4c\x7d\x01\x6a\x15\x51\xf3\xd2\xa0\x46\xa5\x00\xb8\x6a\xd1\x80\xd1\x95\x0a\x3a\xe4\x9f\xda\x68\x4b\xb0\x91\x16\xe8\xac\xaf\x18\x4c\x49\xca\x0f\x51\xb7\x2a\x29\xe2\x15\xe5\x13\x6f\xf1\x2e\xac\x16\x6b\x98\x24\xa8\x78\x01\x70\x2f\x90\xb0\xb9\x44\xdb\x0c\xe6\xd7\xe6\xc0\x87\x3c\x2e\x99\x86\x5b\xa1\xbd\x26\xb2\x4a\x4b\xd0\xa5\x22\x05\x60\xd3\x52\xfc\x99\x42\x32\xd1\xa0\x0b\x6a\x8c\x56\x61\xcc\xb8\xd1\xc6\x9d\x8b\x3f\x6c\x4d\xda\x15\x7c\xde\x6b\x26\xbe\xac\x29\xd4\x38\x5e\x6e\x8b\xfa\x96\xc5\x6e\x84\x72\xae\x10\x46\x51\xd7\x71\xba\x37\x49\x43\xc9\x1b\x92\x9b\x21\x87\x4f\xa2\x19\xd3\x88\x04\xfb\xa0\x27\x21\x4c\xc3\x4d\x56\x28\xb1\x97\x48\xc9\xda\xb0\xa1\xe0\xee\x79\x62\x00\x53\x76\xbe\x37\x37\x07\x51\xd1\x38\x20\xc7\x90\xe1\xee\x50\xa0\x75\x8c\x6f\xfd\xf8\xf1\x02\x33\x9b\x16\xab\x0b\x7f\x6f\xb3\xae\x56\x42\x10\x6b\x38\xf6\x35\x95\xf6\x04\x41\x8c\x14\xb5\xb8\xa9\xa3\x86\xf5\x0f\xef\xca\x78\x9d\xee\xf2\x59\x05\x8b\x35\xaa\xc0\xff\x0b\xe4\x7e\x03\x43\x6b\x49\x91\x38\x6d\x2f\x62\xac\x69\xae\x04\xc9\x5f\xc1\x08\x7d\x9d\x7e\x83\x57\x8e\x10\x18\x9f\x08\x58\x1c\xaf\x3c\xde\xae\xa6\x92\xe3\x0d\xd2\x47\xcb\xd0\x98\xef\x76\xd5\x37\x34\xd0\x27\x79\xd7\xb8\xa0\x18\xe2\xf6\xbb\xe6\x54\x03\xaf\x4e\x23\x40\xbc\x40\xdb\x92\x03\xb8\x86\xec\x00\xaf\x0b\xfe\x4f\xd1\x67\xed\xc8\xb3\xa3\xa8\xb3\xae\x76\x97\x1d\xcd\x2e\x8f\xb7\xba\x6c\xc7\xdd\x86\xf7\x0d\x29\x26\xa8\x6f\x20\x5d\x11\xcb\xec\x79\x2f\xaa\x9f\xf9\x66\xa6\xc1\x8e\x94\x54\x88\x07\x87\x50\x37\x35\x41\xa2\xc6\x95\x33\x38\x3d\x15\xa0\x74\xeb\xa1\x21\x50\xf1\x0d\x6a\x15\x3f\x33\xc5\x15\xb9\x69\x2a\x9e\x6c\x4e\xaf\x2d\x08\x98\xe0\x38\x4c\x3c\x15\xe3\x04\x6f\x72\xce\xcb\xd3\x0e\x72\xed\x49\x7d\x62\x12\x12\x55\x77\x99\x9b\x0c\x9c\xa2\xc9\x69\x8b\xc7\x2a\x04\xb7\xf1\x27\x6e\x4d\x7d\x79\xd5\x00\x5a\xca\x03\x1a\xb5\x87\xf2\x36\x9d\xa1\xee\x15\x3c\x2d\xb0\xbb\x34\x42\x45\x12\xeb\x05\x98\x79\x03\x73\x97\x01\xa4\xb3\x7f\xe6\x0e\xe1\x16\xb8\x2a\x62\x98\x58\x40\xe0\x00\x95\x98\x5a\xb6\xeb\xb8\xaa\xcf\x98\xb8\x48\x98\x3a\x7e\x60\xe8\xf3\xc6\x63\x4a\x46\xb5\xef\x1b\x4f\x9d\xdf\x9e\x68\xaa\xd8\xe2\xde\x29\xd8\x9c\x8e\xdf\x1b\xea\xa2\x28\xc5\xe3\x8e\x38\x7b\x48\xbe\xdd\x6a\x08\x15\x22\xff\x05\x0c\x10\xb8\xef\x69\x24\x15\x80\xcf\x86\xfe\xbc\xd6\xb7\xb6\x74\xeb\x95\x75\x11\x74\xad\x95\x71\x35\xdd\x3f\x6b\x08\xdd\xff\x2e\x43\x48\x4e\x36\x85\x9d\xd3\xd9\x0f\xbd\x0c\x15\xd9\xfc\x58\xbd\xe4\xe8\xa2\x87\xb7\x5b\xef\x27\x75\x12\x34\x30\xb4\x85\x71\x72\x02\x5c\x0e\xcb\xf2\x29\x2b\xa2\xde\x4f\x7a\xb0\x35\x72\x04\x48\xc2\x85\x86\xca\x58\x2e\x0d\x56\xa9\x09\x1b\xdc\x49\x1f\x10\x41\x0e\x3e\x9b\xde\x5e\xf8\xd7\x94\xd4\x7c\x37\x27\xf8\x23\x06\x2e\x14\x82\x82\xf9\x2a\xeb\x76\xd2\xf8\xf3\x40\x69\xa7\xcd\xc2\x89\xd0\xcd\x5c\x30\x21\xae\x36\xfe\x2e\x53\xd6\x47\x5e\xe8\x0f\x5b\x86\xd9\x04\x63\x02\xb8\x9a\x8e\xaf\xae\x6e\x39\x40\x47\x38\x46\x71\x28\xaf\x26\xe3\xc9\xd5\xfd\x5c\x8a\x11\xf0\x6e\x57\xa2\x82\xd8\x44\x0a\x58\xea\x85\x5d\x07\x5d\x13\x5d\xc4\xdf\xf1\xae\xb6\x17\xb1\x83\x81\x92\x9e\xd7\x30\x7a\x51\xfc\x28\xb9\xdd\x78\xbe\x72\x1c\x70\x63\x3f\xcc\x91\x97\xa8\x5a\xe0\x7a\x55\x69\x66\x47\x25\x18\x7f\x5b\x49\xb3\xf9\x2e\x4b\xce\x30\xad\x6f\x8a\xdc\x15\x19\xe5\xb0\x80\x55\x56\xb4\xc4\xe7\xbe\x9d\xe0\x8f\x96\xa4\x45\xd4\xf8\xd1\xcb\x35\xf3\x43\x54\xcc\xc9\xa7\x2b\xd8\x45\xad\xaa\x2c\xc7\xf4\x89\xc0\x31\x5a\x45\x42\x37\x32\x72\xf5\x7a\x1f\x36\xa0\xb9\xce\x11\xdc\xba\xe3\x1c\xa9\xc6\xe0\x36\x67\x24\x2d\x5a\xec\x29\xaf\x8b\x96\xb4\x43\xbf\x0a\x54\x8d\x38\xca\x03\x07\x9a\xe7\xe9\xe6\xfe\x36\xb8\x9d\x2a\xc6\xa4\x47\x89\x46\xb9\x5b\x6e\x63\x4c\xb6\xdf\x49\x20\x0e\x7d\x6e\xe0\x5e\x69\x28\x8c\x49\x33\xe1\x00\x8a\x53\xbe\x2b\x92\xb3\x4d\x55\xe5\xb3\xf3\xf3\xb0\x2c\x23\x14\x3e\x38\x61\xb6\x3d\xa7\x12\xfe\xf2\x9c\xc8\x53\xcf\xe3\x0a\x6d\xcb\xf3\xc9\xf9\x64\x19\x7e\xf3\x3f\xff\x7e\xef\xe4\xe9\xba\x4f\x9c\xc4\xf1\x2e\x69\x44\x8e\x35\x5d\x24\x39\x87\xda\xcc\x63\x7c\x6e\xea\x08\x86\x6e\x5b\xdc\x23\xcd\xac\x60\x40\x4d\x15\x9a\x3e\xe8\x99\x29\xeb\x4d\x8f\x1b\x46\x9c\xe1\xea\x50\x3e\x10\xa1\xd5\x81\x65\x38\x10\x08\xf4\xbb\xb4\xb6\xa7\x37\xc4\x84\x10\x5e\x03\x47\x75\xfa\xf7\xa7\x91\x9a\xe1\xa1\x91\x85\x0e\x3c\xc9\x4c\xc9\x10\xfc\xc7\xcf\x9f\x25\xf4\x39\x6a\x35\x61\x52\x32\x49\x29\x42\xf1\xb9\x98\xc5\x40\x35\x5d\x71\x89\x97\xe7\x34\xb2\x6a\x4d\x08\x69\x77\x6d\x1e\xe1\xb8\xba\xf1\xe3\x20\x42\xeb\x3e\xa8\xad\x25\xce\xdc\xfc\xd9\x02\xf6\x30\x7f\xee\x4b\x0d\x2e\xf3\x38\x4d\x51\xd1\xd6\xe8\x96\x11\x21\x9a\x0d\xe1\x3a\x65\xc0\x68\x0b\x09\xeb\x3c\x21\xd8\x3c\xb3\x8c\x7e\xc6\x0b\x0a\xaf\xa2\x5a\x68\xf9\xac\x0b\x87\x0d\xda\xc9\x2a\xcb\xf9\x71\x84\x87\xc0\xa0\x9b\x14\x1e\x0b\xd6\xe4\x4d\xd8\xeb\xba\xa9\x36\x6b\x29\x18\x92\xf4\x8c\x94\x40\x82\x38\x5d\xc5\x69\x5c\xa1\x83\xd3\x00\x86\xbb\xb2\xca\xb6\x36\x6d\xc9\x71\x1b\xbb\xd6\xa2\xc0\x30\x4e\xd6\x49\xc0\x78\xd9\x6a\x2b\xe9\xf0\x3f\x1e\xd0\xcb\xaa\x80\x5b\x54\x02\xad\x57\x7b\xf7\xbd\xae\x1b\xa5\x9a\x51\xbc\xc6\xf4\x77\x83\x11\x7d\x7b\x50\xf3\x6b\x88\xa6\xde\x81\x51\xbe\x48\x64\xdc\x42\x84\xc4\x04\xe6\x25\x9a\xb1\xf3\x0d\x99\x63\x17\x36\x71\xa1\xe5\xf5\xc0\xa8\x21\x5b\x10\xf5\x3e\x90\x39\xbb\xf1\x30\xf0\xfa\x44\x4d\xce\x2d\x16\xf1\x77\x89\x7c\x6b\x31\x97\x74\x2b\xef\xd7\x19\x81\xb7\x25\x4a\x19\x88\xc6\x98\x34\x1b\x97\xcc\x0c\x39\x8f\x59\x1c\xa2\xeb\x4a\x4a\xdf\x68\x50\xbf\xab\xa3\x2a\x59\x0e\x28\xd6\x56\xbe\x05\xfc\x7e\x2d\xa7\x6a\x79\xbb\xcd\x7e\x69\x79\xc5\x66\x44\x0a\x97\x26\xeb\xb1\xd5\x98\xb7\x4d\x60\x3c\x39\xe8\x76\x14\x3f\xfe\x18\xc1\x0a\xda\x45\x96\x60\xee\x96\x2e\x1d\x96\xf2\xa4\xf7\x53\x2d\x91\x23\x19\xb9\x69\xc4\x68\x86\x10\xb7\xce\xf0\xb4\xd4\x1f\xaa\x0f\x0e\x4d\x90\x61\x92\x59\x17\xee\xe5\xc6\x63\xd6\x0a\x03\xfb\x8d\x6d\xb1\xcd\xa5\x19\xa0\x7e\x47\xff\x8d\xb3\xd4\xb6\xcb\x38\x5d\x27\xc8\x7a\x6d\xb1\xed\x2e\xa9\xe2\x5c\x72\x39\xe9\x66\x95\x85\x78\x9d\x75\xf0\x60\x61\x77\xd1\xc3\xfd\x4d\x6d\x37\xbc\x5a\x2c\x0a\x94\x46\xa8\x40\x11\x77\xed\x1e\x0f\x26\xe3\xe9\xcd\x5c\x8b\x85\xf2\xc6\x6e\x77\xd7\x29\xd6\x32\xf8\x6d\xfb\x05\x8b\x22\x7b\x6a\xac\x09\x7e\xeb\x2e\x84\x1b\xbc\x5f\xdf\xbc\x1a\xcc\x38\x49\x1c\x41\x31\x11\x98\x62\xb0\xa4\x2e\x0b\x35\x63\x7c\x47\x6b\x4c\xaf\xc8\x65\xf1\xc8\xa2\x35\x2d\xcf\x83\x53\x3e\xc5\x55\xb8\x41\xc5\x8b\x98\x0d\x5b\x4a\xd7\x56\x43\x5c\xd2\xcc\x6f\xe6\xa4\xb4\x87\x55\x8c\x92\xa8\x44\x75\x1c\x4f\xc1\x44\x50\xe8\x9f\x7b\x70\xc2\x22\xa3\x32\xff\x78\xbb\x6e\xfa\x60\xc9\xcf\xb9\xba\xdf\xb0\xd5\xa8\xe7\xac\xc0\x9b\x99\xa2\xe1\x18\xeb\x90\x8e\x36\x57\xc9\x17\x15\x08\x51\xbb\xc4\x6c\x45\x5d\x61\x51\x8f\x57\x43\xb0\x1e\xda\x1a\x74\x19\x6f\xd7\x7b\xd5\xfa\xa4\x06\x8d\xb2\xb0\xac\x07\x42\x31\xa6\xa4\xb2\x6a\xd3\x88\xb5\xca\xc1\xcd\x56\x3b\x06\x4f\x06\x03\xd6\xee\x86\x0a\x96\x23\x3c\xe3\xf9\x40\x8c\x4a\x36\x91\x1a\x2b\x98\x8c\x30\x6c\xe4\xae\xcc\xa0\xc7\x66\xe0\x72\xcb\xbd\xf3\x05\x58\x5c\xce\x00\xfb\xcc\x9d\x71\xc5\x28\x1b\xbe\xe6\xea\xec\xaa\x43\x8d\xcf\xb5\xcb\xa3\x59\xb6\x8e\x94\xb9\xa4\xe6\x05\x72\x78\xf9\xe3\xa5\x88\x2b\x5f\x53\x28\x30\x14\x62\x59\x35\x2f\x69\x4a\xcc\xf6\x77\x14\x63\x2b\x84\x94\x24\x4b\x0b\x43\x7b\xbc\xc7\x34\xce\xbf\xb9\x19\xe2\x3b\x73\x33\x6a\x08\x7e\xa4\x9f\x30\xc6\x98\xbb\xa8\xe2\xdc\x68\xb0\x46\xf2\xfd\x03\xdb\x13\x7d\xed\xf1\x13\xea\x2f\x69\xc4\x73\xe9\x08\xf1\x9a\xf1\xa5\x73\x60\x8c\x0c\x2f\x94\x66\x05\x6d\xca\x68\xcb\x16\x1e\x2c\xee\x17\x07\xc5\x1d\x67\x56\x76\x72\x31\x4b\x86\xa1\xe3\xd0\x8d\x1a\x33\xe4\x07\x53\x31\xd1\x1c\xc7\x08\x70\x29\x0f\x9c\x30\x54\xe2\x20\x99\xd2\x68\x0e\x89\xa3\xc0\x5e\x46\x4a\x73\xb2\xe2\x47\x06\x32\x24\xc9\xce\x5a\x8a\x91\x05\x21\x7b\x2d\x8b\xc6\x90\x82\xe1\x55\x0b\x02\x60\xea\x90\xdd\xf8\xf6\xc9\xcd\xd2\x0c\x2d\xcd\x95\xa9\xeb\x23\xcb\x69\xca\x12\x99\xdd\xdc\xb7\xd3\x66\x73\x81\x4b\xc1\xa2\x65\xc0\x7c\x65\x4e\x2e\xa9\x8b\x47\xa4\x63\xef\x64\x3c\x97\x06\x43\x51\xb5\x30\xfd\x15\x01\x67\x9b\x45\x3c\xec\x61\xd7\x59\xda\x56\x08\x1f\x0e\xea\x3e\x37\x81\xb1\xe0\x74\xdd\xe7\x5d\x14\xc3\x75\x01\xb7\xbc\x60\x14\xc3\x24\x13\x8f\x9e\x41\x60\xd8\xd9\xbc\xb6\x96\x1a\x30\xc9\x5b\x3c\xc5\xbf\xc0\x22\x02\x4e\x59\xa1\xfc\xa6\x3e\xaa\x8f\xf8\x9f\x19\x18\x98\x3a\xa8\x82\x18\xa5\xbc\x8e\x3b\xfe\x5c\x1f\xa3\xb4\xbe\x85\x90\xcd\x8f\xc4\x4f\x22\x0f\x71\x1b\x9a\x00\xef\x24\x65\xb9\x9e\xef\x55\x6b\x8b\x66\x30\x54\x6b\x2f\x4e\xa8\x4d\x0c\xb4\x40\x2a\xb4\x43\x94\x24\x26\xde\xe9\x14\x54\x00\x5a\x27\xc1\xb1\xe5\x7c\x6c\x94\xc9\xe5\xb0\xf1\xfe\x31\xda\x39\x7a\xae\xdb\x38\x30\x79\x82\x15\xe2\xa9\x2d\x3e\x29\xea\x2a\x8f\x7e\xa6\x38\xa1\xe1\x9b\x5c\x9d\x8b\x5c\x98\x07\x2e\x29\x1b\xd6\xfa\xbe\xd3\xda\xe2\x44\x71\x49\x42\xc0\xd1\xf5\xb8\x48\x33\x3d\xa8\xe5\x69\x98\x1a\x04\x2c\x78\x82\xc0\x97\x0f\x55\x0f\xe7\xa1\x1e\x97\x94\x4a\x23\x8d\x47\x2b\x35\x4d\x50\x93\x47\x8d\x8c\x61\xcd\xda\xc3\x8d\x07\x27\x8f\x09\x4f\x30\x55\x6b\x99\x4d\x43\x33\x18\x0e\xa7\xc1\xdd\x5c\xcc\xe6\x74\xea\x90\x67\x29\xaa\x51\xbf\xa2\x8c\x79\x8a\xb4\xf8\xc7\xa7\xb5\x43\x0e\x60\x27\xb9\x61\x93\xe8\xa9\x27\xe1\x10\x03\xd3\xc9\xfe\xd8\x81\xfb\xbe\x36\xab\x7e\x4f\xd7\x24\x35\x9c\x61\x28\x78\x4c\x2c\x95\x0c\x72\x56\xf5\xbd\x29\xd3\x01\x37\xea\x84\xe4\x4a\x79\x0d\x0b\x43\xf6\x73\x43\x4c\x06\xc9\x6b\x54\x89\x5a\x2a\x59\xdf\x34\x9a\xad\xba\x06\xc0\xf4\x05\xb7\x6c\x9b\x70\x89\x4f\x9a\x61\x0c\x49\xf6\x84\x22\x63\x38\xe8\xda\x5a\x7a\xd4\x62\x2d\x3d\x0a\xfa\x7a\x22\xb9\xa6\x5a\xd8\xb0\x85\x03\x81\xac\x36\xc3\xc6\x1e\x70\x23\x9e\xae\x71\x63\x0e\xe8\xae\x09\xcf\x6f\x73\x14\xf8\xae\x21\x39\xbc\x7e\x28\xb4\xd5\x2a\x1e\x09\x34\xc0\x50\x85\xb6\x1d\x27\x42\x07\x1e\x00\xb9\x7c\x66\x72\x62\xcd\x00\x4a\x11\x6d\x44\x51\xc9\xc9\x18\xac\x13\xa0\xfe\xa9\x27\x50\x77\x7f\x5f\x71\xfe\xd0\xad\xd5\x7d\x00\x0d\x85\xc8\xbc\xec\xfc\x19\x4e\xdf\x9f\xd6\x96\x57\x9c\x3f\x9d\x78\xfe\x2f\x3a\x7d\xba\xc7\xe3\x57\x9e\x3d\x47\x06\xdb\x70\xf2\x1c\x2f\xf1\xda\x73\xa7\x6b\x13\xb4\x9f\x3a\x27\x2e\x19\xe3\x99\xc3\x11\x34\x07\x0d\x0f\xeb\xaf\xf0\xdc\xf8\x3e\x8c\x54\xeb\x6d\x09\x62\x5b\xae\xaf\xb3\x67\x05\xa2\xd6\xf2\x2a\xd2\xd2\xe6\x8d\xbd\x84\x85\x4d\xa2\x0d\x18\x12\x0c\x0e\xa7\x93\xdb\x6b\x05\x56\x4f\xac\x68\x4b\x9e\x16\x0d\xf8\xa2\xdc\x6d\x69\xe4\x15\x25\x78\x1b\x8b\x84\x49\x54\xe8\xe2\xdd\x57\x2f\x58\x64\x4f\xa6\x08\x1f\x46\x40\xe2\xee\x60\x3f\x97\xb6\xaf\xb8\x43\x28\xa0\xdb\xac\x40\x0b\xdc\x63\x2d\x54\x28\x3d\x53\x25\x93\x13\xbd\x38\x89\x5b\xf7\x96\x92\xaa\x30\x6c\xa0\xd8\x4c\xd5\x05\x68\x68\x2a\xd5\x52\x57\xf5\x45\xd0\x0b\xe8\xc6\xb9\x7a\x0b\xd5\x50\x96\x75\x40\xcf\xa6\xb9\x5b\x2d\xf1\xbb\x22\x60\x12\x75\xd3\xaa\xe9\x8f\x09\x1f\x90\x16\xd0\xbe\xad\xa8\x1a\x32\x3e\xdf\x0b\xc7\x31\x8b\xb0\x2d\x45\x24\x55\x82\x7a\x6b\xe1\x4d\xeb\x88\xa6\x73\x45\x62\x2d\x78\x02\x9d\x10\xcd\x74\xc0\xcc\x9f\x51\x51\xa9\x19\xc2\x59\x5c\x4e\x73\x64\x8b\xc1\xc4\xf2\x26\x81\xe5\x05\x43\xcb\x75\x26\x93\xbe\x21\x21\x9e\x0a\xc2\xab\x21\xfb\xf1\x48\x72\x52\x1e\xde\xd8\x0b\x7c\xcb\xf7\xa6\xad\x75\xa8\x20\xbc\x0e\x96\xe2\xf5\xa4\x6a\xfc\xe1\xc0\xf2\x82\x91\xe5\x4d\x5a\xab\x51\x41\x78\x35\x34\x77\xac\xc5\x7e\x49\xf9\xd0\xbb\xab\x1c\x78\xd6\x78\x64\x8d\xdc\xf6\x1a\x65\x08\x12\x47\x29\x4f\xb3\x2a\x5e\xbd\x38\x11\x2c\x1e\x80\xf0\x40\x50\x2d\x9c\x38\xac\x3c\x6a\x74\xeb\xa0\x0a\x00\x07\x87\xd9\x21\x90\xca\xe2\x10\xd2\x0c\xc5\x8a\x4d\x08\x37\xa9\x6b\x2c\x41\x5c\x91\x62\x70\x9e\xc4\x15\xf3\x05\x0c\x5d\xb7\xf1\x8a\xc4\x8b\x5c\xae\x41\x2c\x6e\x74\x46\x66\x45\x45\x23\x24\xd9\x61\x46\xc2\xa7\x64\x33\xaa\x7d\xdd\x9a\x58\x91\x23\xd9\xd9\x78\x40\x93\x8e\x9b\xa3\x79\xa9\xa8\xc5\x10\x91\x52\x6e\x03\x15\x14\x1e\x4d\xdc\x67\xb6\x9c\x6a\x8b\x6b\x23\x06\x94\x9a\xb0\x18\x19\x4b\x14\x2d\xe4\x5a\x1d\x5c\x5e\x4a\x66\xe1\x05\xa2\x0a\x46\x67\xbd\xc6\xf2\x60\xf0\x7c\x7a\x23\xd3\x60\x18\xab\x8c\xe2\xc7\x96\x48\xce\x2d\x05\x36\xbe\xee\x75\xd9\xda\x6d\xe3\xcd\x4a\x4b\x8e\x7a\x34\x7e\x84\x1a\x96\xcf\x3c\x78\x61\x92\x95\x52\x2a\x90\xb9\xbc\xcf\xc4\x65\x25\xc4\xb6\x89\x60\x85\x0a\x4c\x21\xf2\x38\x7c\x40\x85\x22\x37\x6e\x09\x19\xe8\xea\x1a\x37\x15\x0f\xfd\x67\xe1\x75\x30\x9f\x77\x37\xf7\xee\xbd\xa1\x09\xbc\x28\x20\x37\x49\x87\x49\xfa\xb2\x34\x42\x69\x89\x22\x50\x6d\x10\x8c\x40\x55\x48\x77\x2f\x53\x76\x16\x05\xef\x2b\xd0\x81\x6a\x23\xa5\x8d\xf2\x27\x66\xd7\xdd\x37\xb6\x5c\xb6\xe6\xf3\x06\x83\x61\xf0\xda\xd6\xca\x59\xad\x86\x34\xe1\xcb\x49\x08\x96\x59\xf4\xa2\x75\x57\xb6\x7d\x60\x11\xb3\x4f\x6c\x90\x88\xc9\x3a\xb5\x54\xd4\x1e\x0b\x96\xaa\xbd\x4e\xae\xbd\xa1\x69\xaf\xa8\x5c\x20\x84\x4a\x80\x0b\x1e\x02\x48\x2c\x71\x49\x46\xfd\xb2\x2a\x2e\xab\x8d\xa5\xbf\x24\x8a\x81\xb6\x97\xab\x2c\xab\x5a\x5f\xd6\x68\xa3\x2e\xb4\xa6\x97\x35\xda\x48\x22\x98\xe3\x93\xd6\xe9\xb1\xa5\x21\xdc\x93\x84\x95\x21\x69\x37\x5b\x56\xbe\xff\x9a\x3d\x2b\x25\xa1\x79\x33\x4a\x39\x09\x44\x2b\x9a\xc1\xaf\xa3\x26\x27\xd2\xac\x61\xf7\xd0\xca\x98\x29\xae\x3a\xed\x24\xa5\x8d\xc6\x94\xbd\xa2\xe1\x21\xcf\xee\xf4\xa6\xfa\xeb\x04\x93\x42\x33\x82\xc1\xe8\x6a\x7c\x2f\xdd\xc6\x5f\x8b\xfd\xd8\x18\x9a\xe9\xfe\x33\x3b\xd7\x16\x62\xde\x55\x7f\x68\x30\xe8\x10\x4d\x6f\x78\xa9\x36\x0b\x36\xe1\x69\x12\xe7\xb3\x66\xf5\x9a\xbc\xdb\xc3\x30\x34\x98\xcb\xb4\x64\x32\x11\x43\xe8\xe8\xc1\x50\xf8\x5d\xc7\xd4\x7c\xc9\x38\x9a\xab\xf6\x15\xa4\xe3\xa0\xaf\x0f\x7c\x96\xa3\xb4\xa4\x01\xd9\x1c\xf2\xbc\xd4\x88\x9c\x04\x13\xc2\x04\xa5\x11\x2c\x5a\xa0\x58\x58\x8e\x6e\x54\x1c\x88\xe3\x92\x93\xd1\x19\x49\x89\x1e\x07\x00\xcf\x94\x06\x6a\xa2\xd0\x1b\x43\xaa\x12\xb3\x75\x96\x6a\xee\x69\x32\x34\xd0\xab\x74\xb2\xd5\x8a\x93\x88\xe9\x74\x6a\x04\x89\x6a\x09\x7d\x37\x1c\x7c\x84\x71\x82\x21\x79\xe4\x2a\xbd\x37\x2a\x8c\xb4\x0d\x10\x42\xf2\x6e\x37\xd6\x12\xa7\x36\x79\x22\xd3\x8a\xe1\xdd\xf8\xee\x4a\x35\xb9\xeb\x6e\xe5\x9f\xaa\xc8\x21\x0e\x2e\x36\xc9\xb8\xd0\x1a\x6a\xad\xb3\x15\x18\x09\x4a\x23\x13\x0a\x21\x56\x9a\x11\x45\x53\x77\x1b\x86\xa1\x26\x80\xd0\x7b\x43\x08\x96\x61\xa8\xf9\xab\x56\x6b\x83\xe3\x74\x0d\x23\x79\x42\xe8\xc1\x38\x91\xf8\x85\xc0\xff\x62\x2e\xbe\x0e\x56\x14\xea\xa8\xa8\xf0\x95\xa6\x1c\xa3\xdf\x75\xac\x0c\xe6\x05\xc1\x82\x7e\x55\x7d\xbe\x6a\x75\x53\xb3\xf2\x85\xe0\x0f\x4d\x46\x0a\x66\x45\x29\x25\x23\x35\x78\xb9\xdd\x5e\xfb\xd7\x81\x24\xbe\x1e\xe8\x77\x28\x5d\x08\x74\xac\x63\xb2\x01\x8d\x5f\x6b\xeb\x46\xef\x5b\x4b\x0b\x5d\xe6\x97\xec\x76\xe0\x4d\xb6\x2b\x8e\x0c\xe1\x36\x4e\x77\x15\x3a\x02\x04\xb7\xf9\x56\xaa\x34\xd0\xcd\x07\xf5\x95\xbb\x20\xcb\x96\x9d\x49\xa2\x9b\xbe\x0a\x87\xd2\x48\x83\x52\x62\xa3\x79\xc6\xcd\xb5\x91\x12\xd3\x51\xdd\xa6\x0a\xd4\xd5\x2a\x1a\x40\x4d\xef\x76\x7b\x0b\x59\xc8\xb5\x26\xc1\xb5\x9a\x1a\x5e\x4a\x89\x6e\xc8\x0a\x29\xd1\xe1\x16\xcf\x75\x21\x88\xa6\xe4\xd5\x4f\x1d\x8a\x1b\x9f\x87\x63\xf7\xe5\xb1\x91\x24\xb1\x33\x8b\xc5\x7d\x53\x73\xb8\xb7\x41\x33\xfb\xc4\x6d\x9c\xc6\x06\x0a\xd1\x44\x35\xeb\xb6\x78\x1f\x36\x97\xe9\x20\x08\xba\xc7\x4e\xdc\x68\xda\xce\x53\x2c\xf4\xb6\x71\x14\x25\x48\xd4\x79\x7a\x72\x78\x1c\xc2\x2c\x9c\x34\x2c\x42\x47\x79\x6e\x34\xc5\xbf\xa0\xad\xe4\x2e\xd9\xab\xba\x5a\x93\xc5\x73\x5b\xf1\x24\x56\x85\x04\x92\x4f\x67\x5b\xde\x48\xf6\x42\x26\xd5\xa2\xc5\x99\xe0\x03\xcb\x17\x96\x31\x3f\xc5\xfc\xd4\x7e\xd6\xc1\x25\x0d\x1b\xa7\x06\x31\x1c\xda\xac\x6d\x7a\x17\x4e\x38\x5f\x1a\x1e\x4a\x0a\xc2\xd6\xd8\x76\xf9\x63\xe3\x6d\xaa\xdc\x64\x4f\x36\x2f\x6b\xc0\xc2\x04\x41\xad\xd5\x39\xdc\x13\x81\x3f\x10\x0f\x5f\xee\x8f\xa2\xd6\xc9\x8a\xb4\xf1\x86\x2a\x4a\x31\x8a\x5d\xdb\x88\x72\xbe\x70\xa4\x84\xda\x16\x55\xfd\xdd\xcb\x9a\xfc\x4b\x89\x58\x79\x19\xc5\x8f\x5d\x14\xb9\xbd\xd4\x2c\xad\x36\xf4\x5a\x72\xe6\xf7\xf7\xc7\x69\x34\x65\x84\xf1\xfb\x23\xbc\x32\x05\x51\x86\xe4\x78\xef\x04\x3f\x43\x8d\xcb\x35\x86\x1c\x37\x12\x8e\x83\xb3\x0a\xed\xb2\x82\x15\xe2\x6e\x15\x7b\xc3\xde\x93\x1c\x69\xc4\x22\xd9\x53\x6a\x35\x3f\xd9\xc5\x50\x38\x22\x34\x65\x7a\x54\x64\xf9\x2f\x59\x8a\x44\xdf\x80\x81\xdb\x19\x36\xec\xf7\xbf\xfb\xfd\xef\x00\xfb\xfb\x70\x4e\x48\xcc\x25\x7d\xf2\xe1\x9c\x08\x3f\x38\xc0\x07\x72\x41\x0d\x13\x58\x96\x17\xbd\x14\x3e\xda\xdb\xa8\x77\x29\x94\x8d\xe2\x47\xfe\xb6\x49\xbe\x80\xcb\x88\x50\x2a\xe4\x16\x32\x6f\x66\x02\xae\x42\xea\x78\x13\x7b\x1b\xd9\x03\x80\xe7\x6f\x11\x66\x89\xa9\x80\x5a\x88\xc3\x02\xea\x45\x47\x22\xb7\xb6\x95\x53\xcb\xa6\xf0\x71\x09\x0b\x90\xc2\x47\xaa\x3f\xec\x01\x32\x40\x17\x3d\x36\x9c\xc0\x9d\x77\xa1\x22\xe8\x20\xd8\x14\x68\x75\xd1\x23\xca\x0a\x67\x53\x6d\x93\x1e\x47\x5f\xc6\x15\x4b\xab\xd5\xbb\xfc\x10\xf3\xa7\x2b\x08\x68\x94\xb2\xde\xe5\x87\xf3\xf8\x12\x7c\x28\x73\x98\x5e\x7e\x95\x81\xbb\x6a\x83\x0a\xb4\xdb\x82\x5b\xae\x05\xfc\x70\x4e\xde\x7d\x38\x87\x5d\x1d\x3a\x8f\xe2\xc7\x4b\x71\x9e\x3b\xc7\x98\x45\x26\xc2\x95\x1f\x2d\xf7\x99\x6d\x03\x96\xf4\x1c\x10\xa7\x39\xdb\x3e\x36\xb2\x71\x84\xfb\x4d\x8a\x10\x01\x76\x4f\x5a\x0a\xf8\xc9\x02\xbf\x06\xf4\x5e\x6e\xe7\x45\x9c\x56\xa0\x7e\x77\x74\xb4\xc5\xb5\x45\x70\x51\x0f\xa5\x63\xe5\x48\xd9\xcd\xe0\xf2\x2b\x94\xa2\x02\x26\x1f\xce\x37\x83\x53\x4a\xec\x12\x61\xa5\x90\x91\xb0\x4f\x69\x65\x5d\x3e\x89\x2f\x3f\x40\x6d\xea\x37\xd9\x16\xb1\xb9\xff\x73\xb6\x45\x74\x01\xc8\x20\xe1\x06\x3d\x16\x59\x4a\x48\x04\x06\x3d\x61\x19\x1c\x69\x3c\xa1\xbd\x27\x8d\xb1\xb9\x17\xfa\x2a\xbf\x14\x96\x29\xbc\xfc\x70\x9e\xc4\xaf\x69\xdd\xf9\x2e\x39\x75\x14\x4f\xc3\x7c\x02\x46\xbe\xe2\xdf\xfc\x1e\xef\x87\x73\x7d\x43\x1c\x2b\x41\x20\x59\x12\x28\xe6\x41\x73\xc2\x4e\xaa\x89\x08\xdd\x4c\xac\x3c\xdb\x37\xc4\x89\xee\x04\xda\x44\xbc\x6c\xa9\x3b\xc7\x45\x8f\x39\x3e\xf4\xe8\xd3\x3c\x81\x21\xda\xa2\xb4\xc2\x2f\xf2\x1e\x20\x84\xea\xa2\xf7\x03\xaa\xaa\x38\x5d\x97\x27\x6d\x29\x71\xe5\xae\x93\x97\x7c\x83\xcf\x55\x50\x7f\xb3\xc3\x6c\xdd\x03\xb0\x88\xa1\x4d\xdb\x7d\xd1\xab\x8a\x1d\xaa\x57\xf4\xb1\xe9\x3a\x85\xec\xb5\xbe\x7f\xfd\xd0\xb7\xa1\x6c\xa7\x94\xa4\x92\x2a\xcb\xf1\x11\x12\xaf\x89\x22\xd0\x8c\x5e\x9c\xd1\x2a\xcb\x17\x29\x7c\x3c\xe5\x70\xc3\x27\xd3\xb1\x3d\xfb\x81\x6c\x6f\x0a\xdf\x03\xd4\xa3\xba\x69\xce\x6b\x28\x2a\x46\x44\xd7\xca\x49\x93\x0f\x09\xb1\x27\x64\x98\x97\x52\x49\xdd\x12\x16\x25\x25\x75\xc7\x89\xd7\xf1\xdd\x99\xc2\xb6\xf7\xc7\x66\x4e\x7b\x4e\x16\x87\x69\xe2\x5a\x60\x73\xb8\x46\x80\xc7\x5c\x39\x3a\xc3\x44\x2e\x43\x18\x18\x36\x1f\xf8\x80\xeb\xb5\x52\x8a\x7a\x15\x55\x24\xa3\x62\xfb\xfa\x14\xab\xc8\x9e\x08\xf8\x82\x24\xea\x3d\x95\xe1\x61\x1c\x96\x0f\xf0\x97\x72\x6b\x0f\x01\xb3\x17\x1b\x51\x64\x24\x61\xe4\x71\x94\x40\xdd\xfb\xa4\xc4\x02\x93\x11\x6d\x09\xec\x4a\xcc\xf8\x91\xd3\xee\x63\x56\xc1\x04\xfc\xad\x44\x45\x79\x1a\x01\x90\x5a\x4e\xda\xe4\x07\xae\x7b\x6c\xa1\xb4\xb4\x8e\xde\x61\xc5\x06\xae\x0b\x84\xd2\xde\xe5\xf0\x3d\x20\xcd\xbb\x2f\xb2\x2d\x48\x60\x59\x81\x7f\x45\xe8\xe1\x68\x0b\x8f\xae\xd7\xff\xd8\x71\x0f\xf1\xb5\xc5\xce\xd8\xd0\x5f\x3d\xa2\x02\x2f\xe1\x8f\xf1\x16\xbd\x75\xec\x3d\x7f\xe0\x04\xbf\xf9\xe8\xab\xed\x2e\xb3\xa2\xb2\x61\x19\xd2\x86\x0f\xfe\x4b\xce\x8d\xb6\x27\xbe\x85\x09\x7a\xe3\x9e\x00\x6c\x1c\x7d\xeb\xdf\x61\x6b\x1c\x99\x9c\xff\x9a\x3b\x47\x9b\x9d\x7b\xb4\x7d\xfb\xfc\xf4\x2e\x87\x56\x30\x1a\xff\x66\x33\x53\xa0\xa8\x65\x5e\x22\xc4\x27\xc6\xf3\xff\x7b\x4c\xcc\x4d\x96\xb0\x10\x15\x6f\x3f\x50\xac\x81\x17\x7c\xda\x36\xff\x3e\xb3\x93\xa6\xbf\x72\x76\xc6\xd6\xc0\xff\x2f\x30\x3b\x9d\xef\x6a\x56\x54\xe0\xfe\xe8\xe7\xd8\x20\x9d\xca\xf5\x61\xe6\xd5\x66\x72\xa8\xd3\xa7\x80\x14\x58\x24\x68\x75\x74\x85\x00\x2e\x5d\x31\xc9\xb0\xc0\x07\x72\x57\xbd\xbc\x4a\x12\x00\xa3\xc7\x38\x44\x25\x80\x05\x02\x4f\x28\x09\x33\xc2\x8c\x90\xd7\x27\x88\x64\x4e\xbd\xbe\xff\x3b\x08\xc2\x64\xc6\xfb\x35\xa3\xc8\x36\xe2\x88\x6f\xc4\x11\xdf\x88\x9e\x7f\xd2\xb0\x0a\xa8\x9e\x17\x39\x4c\xd1\xd1\x5b\xbf\xb9\xe8\x49\xd3\x2f\x15\xdf\xf8\x97\xdf\xa2\x6d\x56\xbc\x80\x5d\x89\x59\x47\x36\x8f\x3f\xa0\xb2\x64\x5b\x9a\x4f\x9c\xff\x76\xb1\x14\x95\xc0\x52\x45\x36\x20\xdd\x5b\x90\x30\x60\xd9\xf3\x1b\xc5\x54\xcd\xb0\x93\x78\x72\x76\x12\xa7\x0f\x06\xe6\x98\xc9\xd7\x76\xf9\xa9\xb7\x53\xad\xba\xd7\xc9\xbb\x58\x0b\x79\x2b\xb8\x8d\xef\x6b\x3b\x09\x44\x89\xf3\xbb\x9e\x8a\x8e\x49\x7a\x7a\xb2\xd8\xa7\xae\x8c\x5d\x46\xa9\x1c\x84\xc9\x65\xd0\x73\x0e\xd3\x08\x45\x78\x64\x92\xd2\x70\x85\x7f\x2a\x50\x1a\x6e\xde\x3a\x4c\x40\x9e\x72\xc9\xb6\xb9\xbe\x1c\xbf\x41\x28\x59\xe3\x16\x85\x93\xef\x7a\x97\x5c\x7a\x05\xbc\xb7\xb5\x15\xbc\x6d\x6a\x8f\x36\xc7\xff\xa7\x37\xe7\x15\x12\xd6\x5f\x51\x93\xb2\xeb\x92\xac\x7d\xcb\xe1\x77\xff\xa4\xdd\xf6\xca\xbe\x77\x1f\x0b\xa7\x55\xf8\x0a\x58\x89\x2e\x33\x99\xd2\xab\x28\x33\x0d\x50\x42\xa4\x6f\x49\x9c\xa2\x9b\x0d\x2c\x2a\xdc\x5e\xfa\xfc\x37\x6e\xf2\x49\xdc\xd7\xd1\x13\x14\xb4\xa9\xfa\xfe\x6f\x3c\x16\xaf\xd2\x0c\xb3\x39\x80\x47\x99\xf9\x74\x32\x4a\xd5\x7d\x3a\x19\x4f\x6e\xf0\xa7\x93\xf1\xd3\xc9\xf8\xe9\x64\x34\xd5\xf6\xab\x4f\xc6\xed\xcb\x12\x16\x9f\x8e\xc6\x7f\xf2\xd1\xf8\x2f\xbb\xb2\x02\xf0\xd3\xf9\xd8\x55\xdd\xa7\xf3\xf1\xe4\x06\x7f\x3a\x1f\x3f\x9d\x8f\x9f\xce\x47\x53\x6d\xbf\xfa\x7c\xa4\x5f\x6f\xb3\xdd\x7a\x93\xee\xfe\xb3\x9c\x91\xff\x4d\x4e\xc9\x6f\xb3\x02\x7d\x3a\x1d\xcd\xd5\x7d\x3a\x1d\x4f\x6e\xf0\xa7\xd3\xf1\xd3\xe9\xf8\xe9\x74\x34\xd5\xf6\xab\x4f\xc7\x3c\x4b\x60\x71\x55\x20\xf8\x9f\xe4\x60\xec\x84\xfa\xaf\x72\x2c\x7e\x97\x22\xb0\xfd\x74\x34\xb6\x56\xf7\xe9\x68\x3c\xb9\xc1\x9f\x8e\xc6\x4f\x47\xe3\xa7\xa3\xd1\x54\xdb\xaf\x3f\x1a\xe3\xff\x44\x1a\xc7\x37\xbf\x7f\xd3\xf8\x7f\x58\x16\xe0\xbc\xe5\xfd\xdb\x5c\x10\x74\xbf\x82\x16\x48\xe6\xc3\xd2\xed\x82\x40\x81\xda\x1a\x28\x5a\x84\xed\x92\x84\x9e\x80\x5d\xab\xe0\x2b\x94\x56\x28\x41\x49\x02\x81\x0d\xae\xb3\xac\x2a\xab\x02\xe6\xe0\x2a\xda\xc6\x29\xf8\x88\xb6\x79\x02\x2b\x04\x96\x2f\xcd\xf9\xb0\xa9\xaa\xbc\x9c\x9d\x9f\x13\x27\xd6\x24\x5e\x3a\x61\xb6\xed\x5d\xde\xb0\x5f\xed\x9b\xb0\xd3\x40\xee\x55\x53\xf5\xe1\xbc\x75\x10\xe8\x88\x1f\x1b\x48\x15\xb1\xf6\xbb\x0c\x8b\x38\xaf\xb4\x99\x3a\x3f\xff\xf8\xdd\xed\x77\xe0\xec\x61\x57\x3c\x64\xdb\xb8\x8c\xfb\x33\xb0\x5b\x27\x2f\x00\xa6\x11\xd8\xa5\x5b\x18\x13\x2f\x58\xb8\x4c\x90\x05\x0a\x54\x66\xc9\x23\x02\x65\xb6\x45\x9b\xec\x09\x3c\xc5\xd5\x06\xac\x33\x7b\x19\xa7\xf8\x1c\x55\x71\xaf\x76\x29\xb1\xa3\x04\xc4\xb2\xf1\x66\x83\xc2\x07\x14\x9d\xf5\xf7\x3d\x98\x24\xbd\x8b\x8b\x8b\x10\x3f\xf9\xa1\x82\x15\xfa\xc3\x1f\x3e\x3f\xeb\x39\xcb\x5d\xf2\xb0\xa0\xf1\xe8\x59\xfa\xe0\x14\x6e\xd1\xc5\x17\x24\x54\xd0\xa2\x40\x61\x56\x44\xe5\x17\x3f\xf5\xfa\x4e\x4c\x90\x9d\xf5\x08\x86\x5e\xdf\xea\xa5\x59\x8a\x7e\x1b\x94\xbb\x94\x21\x9d\x3f\xc2\x02\xa0\x8b\x57\x60\x99\x85\xb4\x8b\xbd\xbe\x93\xa0\x74\x5d\x6d\xe6\xe8\xcb\x33\x5c\x3e\xcc\x92\xdd\x36\x65\xb6\x8c\x7d\x67\x13\x47\xe8\xac\x6f\x71\xcc\x36\xc5\x5c\xf6\xfa\xc4\x7f\x9f\xbd\xa1\x0f\xed\x30\xad\x70\x89\x6a\x9b\x9c\xa1\x3f\xf5\xc0\xf7\xb4\x2e\xf0\x03\x0b\xd9\xdd\xeb\xf7\x67\xa6\x2a\x04\x44\x4a\x15\xb4\xf2\xfe\x01\xf7\xee\xe6\x6f\xdf\x7f\x7f\xf7\x97\x8f\x8b\xbf\x7d\xff\xcd\xc5\x53\x9c\x46\xd9\x93\x93\x64\x34\x30\xa4\x83\x77\x86\x53\xe6\x49\x5c\x9d\xf5\xbe\xec\xf5\x7f\x74\x7f\xb2\x3e\xbf\xfe\xee\xf6\xdf\xf0\x80\x10\xff\xe9\xbe\xf5\xf9\xb7\x77\x7f\xf9\xdb\xe2\xe3\x77\x5f\x7d\xf5\xcd\x1d\x7e\xfc\x4e\x74\xaa\xea\x5b\x9f\xff\xf0\xf5\xed\xdd\xf5\xd5\xf7\x0b\x0c\x46\xde\x4b\x1e\xb6\x02\xc0\xfd\x77\xdf\x7d\xbc\xfb\x9e\x0c\xb5\xec\x37\x88\x81\xbe\xb9\xbb\xff\xb8\xb8\xf9\xee\x1b\xf2\xba\x76\xb1\xee\x5b\x9f\x7f\xff\xf5\x57\x7f\x6e\xde\x34\xce\x4b\x7d\xeb\xf3\xbf\x5c\xfd\xaf\xba\x56\xa7\xf6\x46\xeb\x5b\x9f\x37\x35\xf1\x0a\xe6\x9f\x9f\x45\x59\xb8\xdb\xa2\xb4\xea\x3b\x05\x82\xd1\xcb\x19\x5f\xb7\x67\xfd\x3d\x5d\x03\xc2\x83\xa6\x56\x27\x2c\xcb\xb3\x5e\xe3\xd2\xde\xb3\x3e\x3f\xa3\x83\xd8\x77\xe8\x93\xb3\x7e\xbd\x88\xf0\xc8\x39\xd9\xae\x42\xc5\x9f\xd9\x2b\xab\x62\x4f\x37\xb0\xbc\xc1\x64\x82\x37\x69\x41\x62\xce\xf6\xfa\x5f\xba\x33\xd6\xdc\x1a\x9d\x95\x5e\xd4\xc3\xe1\xa0\xbf\x9f\x79\x4d\x4d\x7f\x52\x06\xb3\x29\x13\x5f\xa4\x97\xe8\xcb\x74\x86\xe6\xb1\x7d\x51\x8f\x4c\x53\xb0\xb2\xba\xfa\x14\xf7\x0f\x73\x69\x22\x9d\x55\x9c\x46\x67\x3d\xd8\xeb\x3b\x59\x7a\xd6\x0b\x93\x38\x7c\xe8\x59\xf5\x08\x55\x74\xcc\xd2\x8b\xcf\xcf\xaa\x4d\x5c\xf6\x1d\x9a\x72\xf5\xac\x3f\x4f\x9d\xb8\x64\xeb\xfa\x11\xf5\xfa\x5f\x9e\xa5\x4e\x81\xb6\xd9\x23\x62\xbd\xa7\x2f\x00\xfd\xc7\x2e\xb7\x3d\xb2\x7c\x77\x09\x0d\x0e\xd7\xb3\xd2\xbe\x53\x26\x71\x84\xfe\x96\x8b\x13\x84\xce\xfa\x07\xbc\x07\xd2\xba\x22\x5a\x8d\xe0\x38\xdc\xff\xc7\x3f\xce\x4c\x5d\x48\xe2\x5e\xff\x78\x13\x8c\x05\xc1\x2e\xe9\x35\xcd\xe9\xf7\xad\xd4\x81\x51\x24\x61\x69\x6b\xfe\x6d\xf6\x94\xea\x1d\x38\xc8\xbb\xc9\x38\xb4\xfd\xbd\xba\x60\x58\xbc\x83\xfe\x97\x2d\xfd\x63\x83\x4d\x5b\xcb\xa9\x4e\x17\x64\xaf\xaf\xf5\x83\x0c\x83\x69\x98\x28\xe9\xe9\xc2\x66\x97\x5b\x36\x50\x8c\x1a\x1d\x01\x36\xd4\x6e\xae\x9a\xc0\xf6\x29\x3d\x72\x28\xbd\x91\x46\x04\x5f\x96\xe9\xf4\x91\xd1\x35\x55\xfc\x05\xfc\x91\x9e\xfd\x5f\xfc\x49\xa0\x82\x7f\xfa\xa2\xf7\xd3\x17\xf5\x9a\xa5\x2b\xa4\x69\x52\xb8\x2b\xf0\x73\x1b\x73\x3f\x2d\x4b\x03\x6f\x0b\x9a\x3f\x43\x9c\xe3\x02\x55\xbb\x22\x05\x78\x43\x10\xba\x7a\x71\x21\xd4\x79\x38\xb1\x3e\x06\x55\xe2\x45\xd5\xeb\x5a\x4c\xcd\x4e\x30\xae\x49\x4e\xa3\xca\x2d\x2c\xaa\x02\x95\xf1\x2f\x48\x43\x61\x91\x95\xe2\xac\x52\x67\x7b\x43\xe2\x63\xff\x40\xa2\x54\x2c\x61\x41\x8f\x55\x42\xe8\x19\x9d\xd2\x40\xce\xf6\x70\x57\x65\x7f\x8e\x23\x54\x3f\x9a\x7d\xe6\x5a\xd5\x06\x6d\xd1\x0c\x13\x97\x78\x0b\x93\x9e\xb5\xcd\x76\x25\xfa\xd7\x0d\x42\xc9\x6c\x9f\x17\x24\x91\xcd\x2d\x8d\x46\x32\xfb\xcc\x3d\x1c\xc8\xbc\x75\x91\x66\x76\xea\x09\xc2\x0b\x33\x45\xe2\x44\x9c\x13\x24\x72\xbd\x2a\xab\xb3\x9e\xc3\x45\x45\x84\x16\xb3\xb7\x74\x1a\xe3\x1e\xa6\xb5\x88\xfd\x72\x9a\xcb\x47\x7f\x8e\x1c\x58\x55\xc5\x59\x8f\x84\xdc\xe8\xf5\xbf\x4c\xe9\x4c\x7c\x24\xab\xf0\xcc\x77\x5d\xb1\x66\xc4\x56\xef\x95\x58\xe4\x40\xc8\x95\x52\xaa\x6f\x21\x4a\x7c\x39\xe1\xed\xe1\x41\xc4\xab\xbc\x92\x57\xb8\x24\x93\xd1\x82\x2e\xd0\x51\xeb\x39\xc2\xfd\x12\xf7\x38\x0e\x1f\xf4\x53\xad\x63\x40\xe6\xbc\xe1\x78\x31\x1c\x9f\x88\x2f\x7e\x34\x3a\xec\xe3\xad\xc4\xbe\x9f\xed\xeb\x70\x2a\x33\xca\x3e\x1c\x78\x53\x9b\xc4\xef\x62\xae\x01\xc2\x71\xd0\xc5\xd6\x06\x50\xff\xc4\x6b\xee\x48\x1b\xe3\x15\xe1\x92\x7e\x2e\x6d\x9a\xd1\x97\xa0\xe7\x03\x71\x55\x14\xf0\x05\x63\xab\xb2\xea\x25\x47\x78\x6a\x42\xe4\x84\x30\x49\x6a\x94\xce\xdf\x77\xa8\x78\xa1\x5c\x57\x56\x5c\x25\x89\x8c\x0c\x0f\xd8\x2a\x2b\xee\x60\xb8\x69\x6a\x45\xfd\x7d\x8a\x9e\xc0\x0f\x3c\x85\xf0\x19\xb2\x58\x98\x9c\x1e\x4b\xb8\x41\x06\xe1\x70\xc2\x42\x27\x4c\xa7\xb3\x4a\x60\x55\x8f\xcb\xe9\x05\x38\x6b\xbb\x27\xec\xe9\x32\x7b\x26\x2b\x69\xd6\x8b\xf9\xef\x05\x86\xb3\xa9\x9b\x91\x55\xc0\x28\xce\x38\x04\xf9\x21\xbe\x3e\xf0\xf5\xd0\x23\xbc\x2f\xe5\x86\xd9\xc6\x8b\x57\x8c\xc5\x97\x36\x5f\xc3\x91\x5f\xf4\x30\x8b\x24\x73\x05\x86\x2f\x0d\xd1\x2a\x6b\x26\xd7\x92\x6f\x10\xed\x2d\xf8\x5b\x1a\xfe\x16\x6d\x90\xce\x9c\x8e\x66\x10\xf6\x4e\xc2\x3e\x37\xde\x17\xfe\x83\x46\xa8\xa3\x21\xff\xe4\x81\x32\xb7\xe6\x1d\xa9\xcf\xc6\xd7\xc1\x53\x07\x08\xc3\xbe\x1d\xfb\xf1\x5e\x93\x8b\xa4\xa9\x82\x23\x27\x11\x95\x0e\xb7\x1e\x41\x7c\x28\x53\xf4\x8c\x87\x4d\x23\xfe\x9f\xd3\xf2\xca\x31\x74\x29\x06\x46\xc6\xd7\xdc\x3f\xf5\x2e\x2e\x18\x28\x49\x7a\x70\xd6\xff\x52\xfa\xd9\xb3\x7b\xfd\x99\xfc\xe4\x4f\x3d\xba\x65\x7b\xbb\x34\x42\xab\x38\x45\x51\xef\xb3\x0b\x4c\xe6\xb2\x15\xf8\xcb\x5f\x19\x05\xfd\xc3\x1f\xce\x3a\x7b\x58\x03\xd2\xd8\xac\x6c\x48\x38\x27\x91\x64\x30\x32\x43\x47\x59\x4a\xf9\xdb\x66\x2c\x90\x55\x5f\x11\xc4\x67\x56\x4a\x9f\xc6\x73\xc6\x2c\x09\xf8\x1a\x39\xc2\x59\x7f\x9f\xfe\xe3\x1f\xc8\x81\x79\x9e\xbc\x9c\x41\x2b\x23\xd7\x9b\x5d\x92\x90\xeb\x2c\xbc\xc0\x83\x67\x65\x17\xb0\x58\x93\x9e\x94\xf3\xf8\x4b\x22\x7b\xf9\x18\x6f\x51\xb6\xab\xce\xe2\xfe\x2c\xfd\xc3\x1f\x94\xf2\x25\xaa\xf8\xfb\xd0\xaa\xfe\xf1\x0f\xcf\x75\xfb\x87\xc3\xfc\xe7\xff\x89\x49\xbe\xb3\x4a\x7f\xac\x7e\xba\x10\x89\x3a\x6b\x20\xfa\x92\xf0\x73\x4b\x32\x53\x94\x8f\xea\x59\x18\xa0\x3f\x23\x2f\xaa\x22\x5e\xaf\x51\x71\x56\xf5\x0f\x87\x33\x8a\xcc\xea\x09\x4c\x57\xaf\x3f\x57\xa2\x9c\x71\x09\xcd\x31\x99\x0d\x91\x63\x3a\x2c\x74\x5b\xe9\xac\x93\x6c\x09\x13\x27\x41\x6b\x94\x46\xe0\x02\xec\x75\x19\x12\x22\x02\x9c\x68\x06\x88\xea\x42\x7e\x7f\xd0\x45\x42\xe0\x9b\x38\x45\x20\xc4\xd5\xc8\xaf\x08\xb9\xab\x9e\xc1\x05\xa8\x0f\xc6\x35\xaa\xee\x12\x12\x90\xe7\xfa\xe5\x6b\xc2\xd0\x73\xd7\x0e\xdc\x3f\xb5\x70\xfd\x16\x5c\x00\x7c\x38\x92\xef\x67\x61\xf5\x6c\x99\x9a\x8d\x97\xe9\x0c\x7c\x81\x0b\x7d\x61\xe9\xaf\x31\xd3\x31\x33\x95\xc3\x7f\x24\x72\x69\x39\x03\x3f\xfe\x64\x28\xc9\x4b\x97\xa8\xc2\x20\x2d\x28\x6a\x34\x33\xd0\xfb\xf6\x05\xdc\xe3\xbd\xc8\x8b\xf5\x5a\xb0\xe2\xbf\x26\x00\x1e\x11\x21\xce\x40\x8f\xa7\x0c\x02\xde\x24\xb0\x80\x17\x0c\x2d\xe0\x3a\x03\xaf\xdf\x89\x85\x04\x73\xeb\xc4\x30\xee\x44\x40\x22\x5b\x5e\xff\x36\x58\x4e\xeb\xd1\x09\x98\xfe\x9c\x3d\xa2\x42\x47\xf7\x6e\xb5\x5a\x9d\x58\x56\xef\x90\xef\xbb\x16\xff\xaf\x7b\x4c\x85\x21\xf9\x57\x9a\xf3\xdb\xeb\x80\xa6\xeb\xeb\xc7\x9f\xcc\x10\x07\xe3\x92\xe5\x7f\xc2\xba\xf9\x01\x85\x59\x1a\xfd\x9a\x85\x63\x81\x09\x1e\x69\x77\x44\x96\xcd\xab\x57\x8d\x54\x7c\xec\xbe\x6d\xd1\xbc\x1e\xc9\x29\x9d\x39\x05\xd1\xbf\xc7\x92\xf1\x02\xcf\xf2\x26\x63\xcb\x77\x83\x7f\xe6\x92\x31\x3c\x3f\x28\xd8\x0e\xf2\xb1\x00\x28\x41\xbe\x26\x7c\xe6\x5b\xe8\xb1\xe0\x50\x60\x22\xc8\xcd\xeb\xd7\x50\xe4\x25\x2c\xde\x4e\x90\x7b\xff\x02\xd3\x1d\x2c\x5e\x7a\x16\xe8\xdd\xa3\x65\xc1\xbf\x7f\x0b\x8b\x70\x83\xbf\x5c\xe5\x45\x9c\xd0\x27\xe4\xc5\xbf\xec\x30\x4f\x86\xff\x4d\x5e\x7a\xbf\x09\x39\xff\xe2\x1d\xc8\x56\xe0\x7f\x65\x15\x2a\x4d\xfd\xe0\x7f\xfa\x7e\xe4\x17\xb7\xe3\x4b\x20\xf0\x2c\x30\x70\x2d\x30\x74\x2d\xe0\x4f\x2c\x30\xf5\x2d\x10\xe0\xdf\xc1\xaf\xa1\x27\x6f\x6f\xb8\x3b\x08\x26\xa3\x53\x1a\x3e\xf4\x2c\x10\x8c\x2c\xe0\x07\x16\x18\x4e\x2c\x30\xf6\x2d\x30\x18\x5a\xc0\xf3\x5f\xb9\xaa\xf5\xa7\x2c\x63\x7f\xeb\x12\x29\x43\x98\xa0\xf6\xd7\xf8\xef\xe5\xea\x19\x1d\x99\x63\xfc\x57\xc5\xe1\x43\x37\x22\xfe\xb7\x44\xeb\x38\xbd\xaa\xfe\x1f\x54\x64\x33\x50\x15\x3b\xd4\x5d\xe4\xd0\xfe\xda\x34\x0e\x2d\x45\x0e\xa7\xec\x79\x6e\xe4\xfc\xc6\x8d\xaf\x58\x4a\x9b\x36\x3f\x49\x88\x69\x64\x18\xeb\xcd\x6a\xee\x52\xef\x16\x16\x0f\xe0\xab\x02\xbd\xb4\x2d\xa8\xde\x5f\x77\x45\x9e\x20\x40\xd6\x5f\x2b\xd0\x57\x05\x7c\x39\x0a\x82\x50\x7a\x04\xe6\x3a\xd9\xf1\x9a\x74\x08\x13\xc1\x38\x4e\x2c\xd8\x66\xf0\x7c\x97\x6e\x5b\x0f\xef\x63\x6f\x82\xff\xcf\x75\xdb\x68\x90\xb6\xed\x5a\x86\x8f\x34\xfa\xdd\x30\x08\x6e\xc6\x83\xae\x1d\xd9\x7b\x37\xbd\x0e\xa6\xd7\xa3\x6e\x98\xeb\xdb\x9b\xc1\xcd\xb8\x1b\xe6\x38\xd9\xea\xb1\x9c\xb1\x86\x11\x04\x2d\xa3\x88\xff\x36\xc6\xc3\xb9\xb3\xdf\x34\x85\xc9\x91\x3e\x0d\xc6\xee\xcd\x7d\x37\xcc\xcd\xfd\xed\xf0\x76\x72\xa4\x4f\xa3\x9b\xab\xab\xeb\x6e\x98\xe1\xf4\x6a\x7a\x77\xd5\xd6\x6f\x13\x1d\x53\x77\xfa\x41\xdb\xbe\x64\x7f\x4a\x1b\xf0\x35\xc7\x6b\xc4\xca\x98\x48\x3c\x13\xa8\xde\xc7\x49\x22\x71\x34\xf8\xbc\xe1\xff\xb9\x4e\x10\x18\x99\x1a\xba\xaa\xa9\xae\x5e\xea\x80\x91\x00\xfd\x35\x7e\xeb\x25\xb0\x36\xb6\x79\x1d\xd5\xf9\xb4\x2d\x0d\x30\x6f\xda\x96\x9c\x5d\xf8\xf6\x85\x0f\xea\x17\x78\x46\x57\x59\x01\xa8\x9c\xc0\xb4\xa8\x0d\xb8\x4e\x3c\x07\xe0\xb1\x73\xa0\xf3\x04\xe8\xa6\xfd\x9d\x54\xdf\x44\xef\x4f\xd9\x9b\x7c\x81\x9e\xb4\x2b\x9b\x5d\x63\xda\x8f\x74\xcb\xe6\xb1\x51\x44\x91\x55\x79\x27\xc7\x43\x27\xc3\x28\x97\x01\xa7\xf2\x09\x7f\xe5\x46\xdf\x6f\xdd\xac\xb5\xd1\xf8\xa7\xdd\xfa\x69\xb7\xfe\xa7\xdc\xad\xf5\x0a\xff\xcd\xb6\x2b\xc7\x68\xdc\xb4\xa7\x5c\x53\x3a\x2f\x17\xa7\x5d\x3f\x5e\x71\xf5\x68\xb9\x76\xbc\xe9\x6a\x11\x66\x69\x59\x81\x6f\xef\xbe\xfd\xee\xfb\x7f\x5b\xfc\x70\xf5\xed\x5f\xbf\xb9\x5b\x7c\xf3\xf5\xb7\x5f\x7f\xc4\xdb\x7c\xef\x6c\x49\xf4\xb4\x1f\xe0\x36\x4f\xd0\x37\xf1\x36\xae\x0e\x87\x39\x5e\x8d\xdf\xc2\xe7\x78\xbb\xdb\x82\x74\xb7\x5d\xa2\x02\x5f\x43\x29\x24\xa5\x10\x25\x81\x2f\x4d\x35\xfd\xf5\xfb\xef\x6e\x0c\xf5\xe4\x45\x16\x9e\x52\x0b\x86\x43\x65\x99\x15\x4a\x45\x1a\x1d\xfc\x8a\xc8\xc1\xf1\x82\x89\xe1\x32\x41\x25\xa8\x32\xb0\xc9\x48\x52\x5e\x04\x98\x2d\x05\x28\x2b\x58\xed\x4a\x8c\x17\x3f\xad\x13\xd7\xeb\x6b\xae\x44\xc5\x23\x2a\x8c\xf7\x32\xa2\x46\x01\x10\x6c\x51\xb5\xc9\x22\x5c\x4d\x81\x42\x1a\x35\x12\xec\xf2\x2c\x65\x65\x41\x92\x95\xa5\x8e\xb8\x81\xbd\x10\x94\x1c\xa6\xb5\xc2\xd0\xd0\x35\xff\xaf\x68\xf9\x43\x16\x3e\xa0\xea\xac\xf7\x54\xce\xce\xcf\x7b\xe0\x4f\xa0\x31\xd6\xcb\xca\x0a\xfc\x09\xf4\xce\x61\x1e\xf7\xf4\x19\x6f\x90\x39\x59\xba\x45\x25\x09\x8c\x27\xd4\x4e\x8c\x2f\x8c\x4d\xe0\x8d\xde\x96\x6b\x70\x01\xfe\xe5\x87\xef\xfe\xe2\xe4\xb0\x28\x11\x2d\xe2\xe0\x19\x51\x0f\x0d\xfe\x17\xaf\xc0\x19\x29\x76\x71\x01\xd2\x5d\x92\xb4\xe2\xc7\x7f\x54\xa7\xd2\x82\x49\xd3\x50\x08\x93\x81\xf9\x60\x79\x2a\xa9\x55\x6a\x0e\x99\xac\xbe\xad\x71\xb8\x6d\xce\x16\x55\x45\x1c\x96\xe0\xb3\x8b\x0b\x50\xeb\xc7\x3a\x1b\x7a\x7e\x0e\x6e\x12\x04\x0b\x10\xa7\x20\x84\x25\x52\xeb\x86\x25\xc8\x72\x94\xa2\x08\x2c\xd1\x2a\x2b\x3a\xb6\x74\xad\x0a\x21\xa3\xe8\x50\xda\x0d\x2e\xc0\x8f\x3f\xb5\x0c\x83\xa1\x10\x3f\x82\x7f\x74\x7f\x72\xd8\x41\xfd\xa6\xe2\x9e\x5c\xbc\x1d\x01\x59\x0b\x74\xdb\x5f\x00\x61\x04\x19\xd5\xe8\xa8\x9a\xd0\xf1\x7a\x2b\xcb\x85\xeb\xe7\x1d\xe5\xcf\xcf\xc1\xd7\x15\x88\x4b\x90\x67\x65\x19\x2f\x13\x84\xf7\xdd\x1a\x35\x61\x3b\xf8\xba\x7e\xda\xc4\x09\x02\xab\x38\x49\xe2\x74\x4d\xa6\x07\x16\x05\x7c\x29\xc1\xf2\x05\xe4\xbb\x72\x73\xd6\xb7\x40\x99\x81\x38\x2d\x2b\x04\x0d\x27\xab\x50\x61\xbe\xab\x08\x82\x4d\x5c\x56\xb8\xcb\x55\x46\x7e\x12\xba\x9d\x62\xec\x8c\x8c\xd0\x0a\xda\x51\xe1\x83\xfc\x8c\x68\x37\x71\xc7\xc9\x48\x31\x0b\x61\x60\x03\x6f\x0e\x62\x70\x79\x01\x5c\xf0\x87\x3f\x98\x17\x05\x87\xfd\x60\x22\xda\x73\x60\xdb\x71\xe7\x92\x05\x6d\x8b\xcd\xd9\xa5\xe5\x26\x5e\x55\x67\xb4\x49\x3f\xc6\x3f\x39\x55\xbc\x45\x6d\x1b\xba\x05\x97\xba\x06\x0d\x58\x1f\x61\xb2\x7b\x33\x5a\x4f\x41\x5b\x2f\x96\x93\x30\x77\xc8\xeb\x9a\x0a\x77\x79\x04\x2b\x74\xd6\x85\xe7\xcd\x04\x8a\xe2\x3e\x42\x85\xc8\x86\x3a\x9d\x08\xc5\xab\xb3\xce\x85\x82\x49\xae\x61\xa9\xbc\x71\x95\xd0\x61\xff\xb5\xab\xe2\xd7\x61\xf1\x4e\xc6\x72\xd2\x84\x8b\xdd\x23\x34\xa1\x99\x86\xa3\x5b\xe0\x58\x47\x55\x7c\x47\x97\xe8\xb1\x3e\xd7\x08\xeb\x95\xff\x1a\x9c\x47\xd6\xb6\x71\xe9\x1a\x1f\xd6\x0c\x04\xb1\x17\x54\x98\x17\x20\x18\x51\xd4\x0c\x8e\x05\x06\xae\xeb\xf6\xe7\x84\xab\xef\xc4\x7f\x7e\x0e\xee\xca\x0a\x2e\x93\xb8\xdc\x00\x08\x9e\xd0\xb2\x24\xbc\x0e\x08\xeb\x60\xdc\x9c\xf8\x5e\xfd\xf5\x6b\xd6\x14\x19\x45\x5d\xab\xd4\x55\xc5\xaa\xe2\xc3\x39\x49\x8e\xff\xfb\xdf\x7d\x38\xdf\x54\xdb\xe4\xf2\xf7\xbf\xfb\x3f\x01\x00\x00\xff\xff\x80\x20\x16\xc6\x0f\x85\x01\x00") func dashboardHtmlBytes() ([]byte, error) { return bindataRead( diff --git a/dashboard/assets/dashboard.html b/dashboard/assets/dashboard.html index 743da90f8d..7f7f9ae6ae 100644 --- a/dashboard/assets/dashboard.html +++ b/dashboard/assets/dashboard.html @@ -28,7 +28,7 @@ - + @@ -47,7 +20,7 @@
@@ -55,25 +28,47 @@ - - - -
@@ -91,48 +86,10 @@
- - -
-
- Total Users -
2500
- 4% From last Week -
-
- Average Time -
123.50
- 3% From last Week -
-
- Total Males -
2,500
- 34% From last Week -
-
- Total Females -
4,567
- 12% From last Week -
-
- Total Collections -
2,315
- 34% From last Week -
-
- Total Connections -
7,325
- 34% From last Week -
-
- - - -
-

Go Ethereum Dashboard All advices are welcome

+

Go Ethereum Dashboard Statistics

@@ -142,7 +99,7 @@
-

Memory usage Sessions

+

Memory usage system/memory/inuse

- +
-
+
-

Another diagram Sessions

+

Inbound traffic p2p/InboundTraffic

- -
-
-
- -
-
-
-

Just another diagram Sessions

- -
-
-
- -
-
-
- - -
-
-
-

More diagram Sessions

- -
-
-
- -
-
-
- -
-
-
-

One more diagram Sessions

- -
-
-
- +
+
-
@@ -291,235 +166,14 @@ - + + + + + - function countChecked(){"all"===checkState&&$(".bulk_action input[name='table_records']").iCheck("check"),"none"===checkState&&$(".bulk_action input[name='table_records']").iCheck("uncheck");var e=$(".bulk_action input[name='table_records']:checked").length;e?($(".column-title").hide(),$(".bulk-actions").show(),$(".action-cnt").html(e+" Records Selected")):($(".column-title").show(),$(".bulk-actions").hide())}var CURRENT_URL=window.location.href.split("?")[0],$BODY=$("body"),$MENU_TOGGLE=$("#menu_toggle"),$SIDEBAR_MENU=$("#sidebar-menu"),$SIDEBAR_FOOTER=$(".sidebar-footer"),$LEFT_COL=$(".left_col"),$RIGHT_COL=$(".right_col"),$NAV_MENU=$(".nav_menu"),$FOOTER=$("footer");$(document).ready(function(){var e=function(){$RIGHT_COL.css("min-height",$(window).height());var e=$BODY.outerHeight(),t=$BODY.hasClass("footer_fixed")?0:$FOOTER.height(),n=$LEFT_COL.eq(1).height()+$SIDEBAR_FOOTER.height(),i=n>e?n:e;i-=$NAV_MENU.height()+t,$RIGHT_COL.css("min-height",i)};$SIDEBAR_MENU.find("a").on("click",function(t){var n=$(this).parent();n.is(".active")?(n.removeClass("active active-sm"),$("ul:first",n).slideUp(function(){e()})):(n.parent().is(".child_menu")||($SIDEBAR_MENU.find("li").removeClass("active active-sm"),$SIDEBAR_MENU.find("li ul").slideUp()),n.addClass("active"),$("ul:first",n).slideDown(function(){e()}))}),$MENU_TOGGLE.on("click",function(){$BODY.hasClass("nav-md")?($SIDEBAR_MENU.find("li.active ul").hide(),$SIDEBAR_MENU.find("li.active").addClass("active-sm").removeClass("active")):($SIDEBAR_MENU.find("li.active-sm ul").show(),$SIDEBAR_MENU.find("li.active-sm").addClass("active").removeClass("active-sm")),$BODY.toggleClass("nav-md nav-sm"),e()}),$SIDEBAR_MENU.find('a[href="'+CURRENT_URL+'"]').parent("li").addClass("current-page"),$SIDEBAR_MENU.find("a").filter(function(){return this.href==CURRENT_URL}).parent("li").addClass("current-page").parents("ul").slideDown(function(){e()}).parent().addClass("active"),$(window).smartresize(function(){e()}),e(),$.fn.mCustomScrollbar&&$(".menu_fixed").mCustomScrollbar({autoHideScrollbar:!0,theme:"minimal",mouseWheel:{preventDefault:!0}})}),$(document).ready(function(){$(".collapse-link").on("click",function(){var e=$(this).closest(".x_panel"),t=$(this).find("i"),n=e.find(".x_content");e.attr("style")?n.slideToggle(200,function(){e.removeAttr("style")}):(n.slideToggle(200),e.css("height","auto")),t.toggleClass("fa-chevron-up fa-chevron-down")}),$(".close-link").click(function(){var e=$(this).closest(".x_panel");e.remove()})}),$(document).ready(function(){$('[data-toggle="tooltip"]').tooltip({container:"body"})}),$(".progress .progress-bar")[0]&&$(".progress .progress-bar").progressbar(),$(document).ready(function(){if($(".js-switch")[0]){var e=Array.prototype.slice.call(document.querySelectorAll(".js-switch"));e.forEach(function(e){new Switchery(e,{color:"#26B99A"})})}}),$(document).ready(function(){$("input.flat")[0]&&$(document).ready(function(){$("input.flat").iCheck({checkboxClass:"icheckbox_flat-green",radioClass:"iradio_flat-green"})})}),$("table input").on("ifChecked",function(){checkState="",$(this).parent().parent().parent().addClass("selected"),countChecked()}),$("table input").on("ifUnchecked",function(){checkState="",$(this).parent().parent().parent().removeClass("selected"),countChecked()});var checkState="";$(".bulk_action input").on("ifChecked",function(){checkState="",$(this).parent().parent().parent().addClass("selected"),countChecked()}),$(".bulk_action input").on("ifUnchecked",function(){checkState="",$(this).parent().parent().parent().removeClass("selected"),countChecked()}),$(".bulk_action input#check-all").on("ifChecked",function(){checkState="all",countChecked()}),$(".bulk_action input#check-all").on("ifUnchecked",function(){checkState="none",countChecked()}),$(document).ready(function(){$(".expand").on("click",function(){$(this).next().slideToggle(200),$expand=$(this).find(">:first-child"),"+"==$expand.text()?$expand.text("-"):$expand.text("+")})}),"undefined"!=typeof NProgress&&($(document).ready(function(){NProgress.start()}),$(window).load(function(){NProgress.done()})),function(e,t){var n=function(e,t,n){var i;return function(){function c(){n||e.apply(a,o),i=null}var a=this,o=arguments;i?clearTimeout(i):n&&e.apply(a,o),i=setTimeout(c,t||100)}};jQuery.fn[t]=function(e){return e?this.bind("resize",n(e)):this.trigger(t)}}(jQuery,"smartresize"); - - - + diff --git a/dashboard/assets/js/handlers.js b/dashboard/assets/js/handlers.js new file mode 100644 index 0000000000..91f14d0324 --- /dev/null +++ b/dashboard/assets/js/handlers.js @@ -0,0 +1,112 @@ +Chart.defaults.global.legend = { + enabled: false +} + +// Line chart for memory +var ctx = document.getElementById("memoryLineChart"); +var memoryLineChart = new Chart(ctx, { + type: 'line', + data: { + labels: [], + datasets: [{ + label: "system/memory/inuse", + backgroundColor: "rgba(38, 185, 154, 0.31)", + borderColor: "rgba(38, 185, 154, 0.7)", + pointBorderColor: "rgba(38, 185, 154, 0.7)", + pointBackgroundColor: "rgba(38, 185, 154, 0.7)", + pointHoverBackgroundColor: "#fff", + pointHoverBorderColor: "rgba(220,220,220,1)", + pointBorderWidth: 1, + data: [] + }] + }, +}); + +// Line chart for traffic +var trafficCtx = document.getElementById("trafficLineChart"); +var trafficLineChart = new Chart(trafficCtx, { + type: 'line', + data: { + labels: [], + datasets: [{ + label: "p2p/InboundTraffic", + backgroundColor: "rgba(3, 88, 106, 0.3)", + borderColor: "rgba(3, 88, 106, 0.70)", + pointBorderColor: "rgba(3, 88, 106, 0.70)", + pointBackgroundColor: "rgba(3, 88, 106, 0.70)", + pointHoverBackgroundColor: "#fff", + pointHoverBorderColor: "rgba(151,187,205,1)", + pointBorderWidth: 1, + data: [] + }] + }, +}); + +//TODO (kurkomisi): remove static values after debugging +const MEMORY_SAMPLE_LIMIT = 200;//{{.memorySampleLimit}}; // Maximum number of memory data samples +const TRAFFIC_SAMPLE_LIMIT = 200;//{{.trafficSampleLimit}}; // Maximum number of traffic data samples +const PROCESSOR_SAMPLE_LIMIT = 200;//{{.processorSampleLimit}}; // Maximum number of processor data samples + +function updateCharts(msg) { + + // Fill the dashboard with past data + if(msg.metrics !== undefined) { + // Clear in case the dashboard was opened before + memoryLineChart.data.labels = []; + trafficLineChart.data.labels = []; + memoryLineChart.data.datasets[0].data = []; + trafficLineChart.data.datasets[0].data = []; + + var memory = msg.metrics.memory; + var processor = msg.metrics.processor; + // It is possible to get another message while filling the arrays by push(), so instead + // put the history to the beginning of the arrays + for (var i = memory.length - 1; i >= 0 && MEMORY_SAMPLE_LIMIT > memoryLineChart.data.labels.length; --i) { + memoryLineChart.data.labels.unshift(memory[i].time.substring(memory[i].time.length - 5)); + trafficLineChart.data.labels.unshift(memory[i].time.substring(memory[i].time.length - 5)); + memoryLineChart.data.datasets[0].data.unshift(memory[i].value); + trafficLineChart.data.datasets[0].data.unshift(processor[i].value); + } + memoryLineChart.update(); + trafficLineChart.update(); + return; + } + + // update + if(msg.memory !== undefined) { + if(memoryLineChart.data.labels.length === MEMORY_SAMPLE_LIMIT) { + memoryLineChart.data.labels.shift(); + trafficLineChart.data.labels.shift(); + memoryLineChart.data.datasets[0].data.shift(); + trafficLineChart.data.datasets[0].data.shift(); + } + memoryLineChart.data.labels.push(msg.memory.time.substring(msg.memory.time.length - 5)); + trafficLineChart.data.labels.push(msg.memory.time.substring(msg.memory.time.length - 5)); + memoryLineChart.data.datasets[0].data.push(msg.memory.value); + trafficLineChart.data.datasets[0].data.push(msg.processor.value); + memoryLineChart.update(); + trafficLineChart.update(); + } +} + +// Global variables to hold the current status of the dashboard +var server; + +// Define a method to reconnect upon server loss +var reconnect = function() { + server = new WebSocket("ws://" + location.host + "/api"); + + server.onmessage = function(event) { + var msg = JSON.parse(event.data); + if (msg === null) { + return; + } + + updateCharts(msg) + } + + server.onclose = function() { setTimeout(reconnect, 3000); }; +} + +// Establish a websocket connection to the API server +reconnect(); \ No newline at end of file diff --git a/dashboard/config.go b/dashboard/config.go index 402f8f1891..a27707bc8a 100644 --- a/dashboard/config.go +++ b/dashboard/config.go @@ -25,7 +25,7 @@ var DefaultConfig = Config{ Refresh: time.Second, } -// Config is the config of the dashboard +// Config contains the configuration parameters of the dashboard. type Config struct { // Host is the host interface on which to start the dashboard server. If this // field is empty, no dashboard will be started. @@ -40,6 +40,6 @@ type Config struct { Refresh time.Duration `toml:",omitempty"` // Assets offers a possibility to manually set the dashboard website's location on the server side - // useful at debugging - avoids the repeated generation of the binary + // useful for debugging - avoids the repeated generation of the binary Assets string `toml:",omitempty"` } diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go index 3539b3596f..6e165bbd5d 100644 --- a/dashboard/dashboard.go +++ b/dashboard/dashboard.go @@ -16,7 +16,7 @@ package dashboard -//go:generate go-bindata -nometadata -o assets.go -prefix assets -pkg dashboard assets +//go:generate go-bindata -nometadata -o assets.go -prefix assets -pkg dashboard assets/... import ( "bytes" @@ -27,6 +27,7 @@ import ( "github.com/rcrowley/go-metrics" "golang.org/x/net/websocket" "html/template" + "io/ioutil" "net" "net/http" "sync" @@ -37,6 +38,7 @@ import ( const ( processorSampleLimit = 200 memorySampleLimit = 200 + trafficSampleLimit = 200 ) var ( @@ -47,7 +49,6 @@ type dashboard struct { config *Config listener net.Listener - index []byte // Index page to serve up on the web conns []*client // Currently live websocket connections Metrics *metricSamples `json:"metrics,omitempty"` @@ -82,34 +83,11 @@ type status struct { func New(config *Config) (*dashboard, error) { //log.Trace("NewDashboard() called") - dashboard := &dashboard{ + return &dashboard{ config: config, Metrics: &metricSamples{}, quit: make(chan struct{}), - } - - if config.Assets == "" { - tmpl, err := Asset("dashboard.html") - if err != nil { - return nil, err - } - - website := new(bytes.Buffer) - // set the sample limits for the client - if err = template.Must(template.New("").Parse(string(tmpl))).Execute(website, map[string]interface{}{ - "processorSampleLimit": processorSampleLimit, - "memorySampleLimit": memorySampleLimit, - }); err != nil { - log.Crit("Failed to render the dashboard template", "err", err) - } - - dashboard.index = website.Bytes() - return dashboard, nil - } - - //TODO (kurkomisi): case DashboardAssetsFlag is set - //dashboard.index = ioutil.ReadFile() - return dashboard, nil + }, nil } // Protocols is a meaningless implementation of node.Service @@ -148,16 +126,16 @@ func (db *dashboard) Start(server *p2p.Server) error { func (db *dashboard) Stop() error { //log.Trace("Terminating dashboard...") - var err error - - // Close the connection listener db.lock.Lock() + defer db.lock.Unlock() + + var err error + // Close the connection listener if err = db.listener.Close(); err != nil { log.Warn("Failed to close listener", "err", err) } - // Notifies collectData and apiHandler - close(db.quit) + close(db.quit) // Notifies collectData and apiHandler for _, c := range db.conns { if err := c.conn.Close(); err != nil { @@ -165,17 +143,74 @@ func (db *dashboard) Stop() error { } } db.conns = db.conns[:0] - db.lock.Unlock() return err } // webHandler handles all non-api requests, simply flattening and returning the dashboard website. func (db *dashboard) webHandler(w http.ResponseWriter, r *http.Request) { - //log.Trace("webHandler() called") + //log.Trace("webHandler() called", "r.URL", r.URL) + log.Info("Request", "URL", r.URL) - //TODO (kurkomisi): not only index - w.Write(db.index) + path := r.URL.String() + + // If the path of the assets is manually set + if db.config.Assets != "" { + // Create the filename for ReadFile + var buffer bytes.Buffer + buffer.WriteString(db.config.Assets) + switch path { + case "/": + buffer.WriteString("/dashboard.html") + default: + buffer.WriteString(path) + } + + file, err := ioutil.ReadFile(buffer.String()) + if err != nil { + // TODO (kurkomisi): Warn or Crit? + log.Warn("Failed to read file", "err", err) + // TODO (kurkomisi): Should I inform the client? + return + } + w.Write(file) + return + } + + switch path { + case "/": + index, err := Asset("dashboard.html") + if err != nil { + log.Warn("Failed to load the index", "err", err) + return + } + w.Write(index) + case "/js/handlers.js": + tmpl, err := Asset("js/handlers.js") + if err != nil { + log.Warn("Failed to load the asset", "path", path, "err", err) + return + } + handlers := new(bytes.Buffer) + // TODO (kurkomisi): Save the generated template to avoid the repeated generation? + // set the sample limits for the client + if err = template.Must(template.New("").Parse(string(tmpl))).Execute(handlers, map[string]interface{}{ + "processorSampleLimit": processorSampleLimit, + "memorySampleLimit": memorySampleLimit, + "trafficSampleLimit": trafficSampleLimit, + }); err != nil { + log.Warn("Failed to render the dashboard handlers template", "err", err) + return + } + w.Write(handlers.Bytes()) + default: + website, err := Asset(path[1:]) + if err != nil { + log.Warn("Failed to load the asset", "path", path, "err", err) + return + } + w.Write(website) + } } // apiHandler handles requests for dashboard @@ -219,6 +254,7 @@ func (db *dashboard) apiHandler(conn *websocket.Conn) { closed <- true return } + // Ignore all messages } } @@ -235,11 +271,10 @@ func (db *dashboard) collectData() { now := time.Now() traffic := metrics.DefaultRegistry.Get("p2p/InboundTraffic").(metrics.Meter).Rate1() - traffic = traffic * traffic //if traffic != 0 { // traffic = math.Log(traffic) //} - memoryInuse := metrics.DefaultRegistry.Get("system/memory/inuse").(metrics.Meter).Rate1() + memoryInUse := metrics.DefaultRegistry.Get("system/memory/inuse").(metrics.Meter).Rate1() //if memoryInuse != 0 { // memoryInuse = math.Log(memoryInuse) //} @@ -249,10 +284,11 @@ func (db *dashboard) collectData() { } memory := &data{ Time: now, - Value: memoryInuse, + Value: memoryInUse, } - //TODO (kurkomisi): do I need to ensure the correct order? + // TODO (kurkomisi): do I need to ensure the correct order? + // TODO (kurkomisi): do not mix traffic with processor! go db.update(traff, memory) } } From 3d7d041bb8aba43269ac9f373f51c581ebfc9ac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kurk=C3=B3=20Mih=C3=A1ly?= Date: Tue, 11 Jul 2017 20:44:19 +0300 Subject: [PATCH 4/6] cmd, dashboard: fix after review --- cmd/geth/config.go | 2 +- cmd/utils/flags.go | 4 +-- dashboard/config.go | 6 ++-- dashboard/dashboard.go | 69 +++++++----------------------------------- 4 files changed, 17 insertions(+), 64 deletions(-) diff --git a/cmd/geth/config.go b/cmd/geth/config.go index d8568fded7..3037a3f5ba 100644 --- a/cmd/geth/config.go +++ b/cmd/geth/config.go @@ -137,8 +137,8 @@ func makeConfigNode(ctx *cli.Context) (*node.Node, gethConfig) { } utils.SetShhConfig(ctx, stack, &cfg.Shh) - utils.SetDashboardConfig(ctx, &cfg.Dashboard) + return stack, cfg } diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index a53ac89005..5b833e2e6a 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -195,12 +195,12 @@ var ( } DashboardRefreshFlag = cli.DurationFlag{ Name: "dashboard.refresh", - Usage: "Dashboard refresh rate", + Usage: "Dashboard metrics collection refresh rate", Value: dashboard.DefaultConfig.Refresh, } DashboardAssetsFlag = cli.StringFlag{ Name: "dashboard.assets", - Usage: "Path of the dashboard assets, useful for debugging (default = \"\", in this case assets.go binary is used)", + Usage: "Developer flag to serve the dashboard from the local file system (default: \"\")", Value: dashboard.DefaultConfig.Assets, } // Ethash settings diff --git a/dashboard/config.go b/dashboard/config.go index a27707bc8a..cf4df49968 100644 --- a/dashboard/config.go +++ b/dashboard/config.go @@ -36,10 +36,10 @@ type Config struct { // for ephemeral nodes). Port int `toml:",omitempty"` - // Refresh is the refresh rate of the data updates, the data will be collected this often + // Refresh is the refresh rate of the data updates, the data will be collected this often. Refresh time.Duration `toml:",omitempty"` - // Assets offers a possibility to manually set the dashboard website's location on the server side - // useful for debugging - avoids the repeated generation of the binary + // Assets offers a possibility to manually set the dashboard website's location on the server side. + // It is useful for debugging, avoids the repeated generation of the binary. Assets string `toml:",omitempty"` } diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go index 6e165bbd5d..3c5d56b32c 100644 --- a/dashboard/dashboard.go +++ b/dashboard/dashboard.go @@ -26,7 +26,6 @@ import ( "github.com/ethereum/go-ethereum/rpc" "github.com/rcrowley/go-metrics" "golang.org/x/net/websocket" - "html/template" "io/ioutil" "net" "net/http" @@ -79,10 +78,8 @@ type status struct { Block int `json:"block,omitempty"` } -// New creates a new dashboard instance with the given configuration +// New creates a new dashboard instance with the given configuration. func New(config *Config) (*dashboard, error) { - //log.Trace("NewDashboard() called") - return &dashboard{ config: config, Metrics: &metricSamples{}, @@ -90,16 +87,14 @@ func New(config *Config) (*dashboard, error) { }, nil } -// Protocols is a meaningless implementation of node.Service +// Protocols is a meaningless implementation of node.Service. func (db *dashboard) Protocols() []p2p.Protocol { return nil } -// APIs is a meaningless implementation of node.Service +// APIs is a meaningless implementation of node.Service. func (db *dashboard) APIs() []rpc.API { return nil } -// Start implements node.Service, starting the data collection thread and the listening server of the dashboard +// Start implements node.Service, starting the data collection thread and the listening server of the dashboard. func (db *dashboard) Start(server *p2p.Server) error { - //log.Trace("Start() called", "config", db.config) - go db.collectData() http.HandleFunc("/", db.webHandler) @@ -112,8 +107,6 @@ func (db *dashboard) Start(server *p2p.Server) error { db.listener = listener go func() { - //log.Trace("Starting server...") - if err := http.Serve(listener, nil); err != nil { log.Warn("Server failed", "err", err) } @@ -122,10 +115,8 @@ func (db *dashboard) Start(server *p2p.Server) error { return nil } -// Stop implements node.Service, stopping the data collection thread and the connection listener of the dashboard +// Stop implements node.Service, stopping the data collection thread and the connection listener of the dashboard. func (db *dashboard) Stop() error { - //log.Trace("Terminating dashboard...") - db.lock.Lock() defer db.lock.Unlock() @@ -149,7 +140,6 @@ func (db *dashboard) Stop() error { // webHandler handles all non-api requests, simply flattening and returning the dashboard website. func (db *dashboard) webHandler(w http.ResponseWriter, r *http.Request) { - //log.Trace("webHandler() called", "r.URL", r.URL) log.Info("Request", "URL", r.URL) path := r.URL.String() @@ -185,38 +175,18 @@ func (db *dashboard) webHandler(w http.ResponseWriter, r *http.Request) { return } w.Write(index) - case "/js/handlers.js": - tmpl, err := Asset("js/handlers.js") - if err != nil { - log.Warn("Failed to load the asset", "path", path, "err", err) - return - } - handlers := new(bytes.Buffer) - // TODO (kurkomisi): Save the generated template to avoid the repeated generation? - // set the sample limits for the client - if err = template.Must(template.New("").Parse(string(tmpl))).Execute(handlers, map[string]interface{}{ - "processorSampleLimit": processorSampleLimit, - "memorySampleLimit": memorySampleLimit, - "trafficSampleLimit": trafficSampleLimit, - }); err != nil { - log.Warn("Failed to render the dashboard handlers template", "err", err) - return - } - w.Write(handlers.Bytes()) default: - website, err := Asset(path[1:]) + webapp, err := Asset(path[1:]) if err != nil { log.Warn("Failed to load the asset", "path", path, "err", err) return } - w.Write(website) + w.Write(webapp) } } -// apiHandler handles requests for dashboard +// apiHandler handles requests for the dashboard. func (db *dashboard) apiHandler(conn *websocket.Conn) { - //log.Trace("apiHandler() called") - client := &client{ conn: conn, logger: log.New("id", atomic.AddUint32(&nextId, 1)), @@ -234,9 +204,7 @@ func (db *dashboard) apiHandler(conn *websocket.Conn) { go func() { select { case <-db.quit: - //client.logger.Trace("apiHandler closed") case <-closed: - //client.logger.Trace("Connection interrupted") db.lock.Lock() for i, c := range db.conns { if c.conn == client.conn { @@ -258,26 +226,17 @@ func (db *dashboard) apiHandler(conn *websocket.Conn) { } } -// collectData collects the required data to plot on the dashboard +// collectData collects the required data to plot on the dashboard. func (db *dashboard) collectData() { - //log.Trace("collectData() called") - for { select { case <-db.quit: - //log.Trace("collectData closed") return case <-time.After(db.config.Refresh): now := time.Now() traffic := metrics.DefaultRegistry.Get("p2p/InboundTraffic").(metrics.Meter).Rate1() - //if traffic != 0 { - // traffic = math.Log(traffic) - //} memoryInUse := metrics.DefaultRegistry.Get("system/memory/inuse").(metrics.Meter).Rate1() - //if memoryInuse != 0 { - // memoryInuse = math.Log(memoryInuse) - //} traff := &data{ Time: now, Value: traffic, @@ -294,10 +253,8 @@ func (db *dashboard) collectData() { } } -// update updates the dashboards through the live websocket connections +// update updates the dashboards through the live websocket connections. func (db *dashboard) update(processor *data, memory *data) { - //log.Trace("update() called") - db.lock.Lock() defer db.lock.Unlock() @@ -314,8 +271,6 @@ func (db *dashboard) update(processor *data, memory *data) { db.Metrics.Memory = append(db.Metrics.Memory[first:], memory) for _, c := range db.conns { - //c.logger.Trace("Updating dashboard...") - msg := &map[string]interface{}{ "processor": processor, "memory": memory, @@ -327,10 +282,8 @@ func (db *dashboard) update(processor *data, memory *data) { } -// sendHistory sends the past data through a newly registered websocket connection +// sendHistory sends the past data through a newly registered websocket connection. func (db *dashboard) sendHistory(c *client) { - //c.logger.Trace("Sending history...") - msg := &map[string]interface{}{ "metrics": db.Metrics, } From ac4184ed9a19752402cbfc9820153d66eadab7a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kurk=C3=B3=20Mih=C3=A1ly?= Date: Thu, 3 Aug 2017 09:30:39 +0300 Subject: [PATCH 5/6] dashboard: general update messages and graceful exit --- dashboard/dashboard.go | 164 +++++++++++++++++++++++++---------------- 1 file changed, 99 insertions(+), 65 deletions(-) diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go index 3c5d56b32c..d887961bf2 100644 --- a/dashboard/dashboard.go +++ b/dashboard/dashboard.go @@ -41,26 +41,26 @@ const ( ) var ( - nextId uint32 = 0 // Next connection id + nextId uint32 // Next connection id ) type dashboard struct { config *Config listener net.Listener - conns []*client // Currently live websocket connections + conns []*client // Currently live websocket connections + Metrics *metricSamples `json:"metrics,omitempty"` + Stats *status `json:"stats,omitempty"` + lock sync.RWMutex // Lock protecting the dashboard's internals - Metrics *metricSamples `json:"metrics,omitempty"` - Stats *status `json:"stats,omitempty"` - - lock sync.RWMutex // Lock protecting the dashboard's internals - - quit chan struct{} // Channel used for graceful exit + closing map[*chan chan error]bool // Channels used for graceful exit + mapLock sync.RWMutex // Lock protecting the closing map's internals } type client struct { - conn *websocket.Conn // Particular live websocket connection - logger log.Logger // Logger for the particular live websocket connection + conn *websocket.Conn // Particular live websocket connection + msg chan *map[string]interface{} // Message queue for the update messages + logger log.Logger // Logger for the particular live websocket connection } type metricSamples struct { @@ -83,7 +83,7 @@ func New(config *Config) (*dashboard, error) { return &dashboard{ config: config, Metrics: &metricSamples{}, - quit: make(chan struct{}), + closing: make(map[*chan chan error]bool), }, nil } @@ -126,7 +126,12 @@ func (db *dashboard) Stop() error { log.Warn("Failed to close listener", "err", err) } - close(db.quit) // Notifies collectData and apiHandler + errc := make(chan error) + for closing := range db.closing { + *closing <- errc + <-errc + close(*closing) + } for _, c := range db.conns { if err := c.conn.Close(); err != nil { @@ -143,68 +148,86 @@ func (db *dashboard) webHandler(w http.ResponseWriter, r *http.Request) { log.Info("Request", "URL", r.URL) path := r.URL.String() + if path == "/" { + path = "/dashboard.html" + } // If the path of the assets is manually set if db.config.Assets != "" { // Create the filename for ReadFile var buffer bytes.Buffer buffer.WriteString(db.config.Assets) - switch path { - case "/": - buffer.WriteString("/dashboard.html") - default: - buffer.WriteString(path) - } + buffer.WriteString(path) file, err := ioutil.ReadFile(buffer.String()) if err != nil { - // TODO (kurkomisi): Warn or Crit? log.Warn("Failed to read file", "err", err) - // TODO (kurkomisi): Should I inform the client? + http.Error(w, "not found", http.StatusNotFound) return } w.Write(file) return } - - switch path { - case "/": - index, err := Asset("dashboard.html") - if err != nil { - log.Warn("Failed to load the index", "err", err) - return - } - w.Write(index) - default: - webapp, err := Asset(path[1:]) - if err != nil { - log.Warn("Failed to load the asset", "path", path, "err", err) - return - } - w.Write(webapp) + webapp, err := Asset(path[1:]) + if err != nil { + log.Warn("Failed to load the asset", "path", path, "err", err) + http.Error(w, "not found", http.StatusNotFound) + return } + w.Write(webapp) } // apiHandler handles requests for the dashboard. func (db *dashboard) apiHandler(conn *websocket.Conn) { client := &client{ conn: conn, + msg: make(chan *map[string]interface{}, 128), logger: log.New("id", atomic.AddUint32(&nextId, 1)), } - // Start tracking the connection and drop at connection loss + loss := make(chan int) + + // Start listening for messages to send. + go func() { + closing := db.addClosing() + defer db.removeClosing(closing) + + for { + select { + case errc := <-*closing: + errc <- nil + return + case val := <-loss: + loss <- val - 1 + return + case msg := <-client.msg: + if err := websocket.JSON.Send(client.conn, msg); err != nil { + client.logger.Warn("Failed to send the message", "msg", msg, "err", err) + // TODO (kurkomisi): Handle message loss + } + } + } + }() + + // Send the past data. + client.msg <- &map[string]interface{}{ + "metrics": db.Metrics, + } + + // Start tracking the connection and drop at connection loss. db.lock.Lock() db.conns = append(db.conns, client) db.lock.Unlock() - db.sendHistory(client) - - closed := make(chan bool) - go func() { + closing := db.addClosing() + defer db.removeClosing(closing) + select { - case <-db.quit: - case <-closed: + case errc := <-*closing: + errc <- nil + case val := <-loss: + loss <- val - 1 db.lock.Lock() for i, c := range db.conns { if c.conn == client.conn { @@ -219,7 +242,10 @@ func (db *dashboard) apiHandler(conn *websocket.Conn) { for { fail := []byte{} if _, err := conn.Read(fail); err != nil { - closed <- true + loss <- 2 + if val := <-loss; val > 0 { + loss <- val + } return } // Ignore all messages @@ -228,12 +254,15 @@ func (db *dashboard) apiHandler(conn *websocket.Conn) { // collectData collects the required data to plot on the dashboard. func (db *dashboard) collectData() { + closing := db.addClosing() + defer db.removeClosing(closing) + for { select { - case <-db.quit: + case errc := <-*closing: + errc <- nil return case <-time.After(db.config.Refresh): - now := time.Now() traffic := metrics.DefaultRegistry.Get("p2p/InboundTraffic").(metrics.Meter).Rate1() memoryInUse := metrics.DefaultRegistry.Get("system/memory/inuse").(metrics.Meter).Rate1() @@ -246,9 +275,8 @@ func (db *dashboard) collectData() { Value: memoryInUse, } - // TODO (kurkomisi): do I need to ensure the correct order? // TODO (kurkomisi): do not mix traffic with processor! - go db.update(traff, memory) + db.update(traff, memory) } } } @@ -270,24 +298,30 @@ func (db *dashboard) update(processor *data, memory *data) { } db.Metrics.Memory = append(db.Metrics.Memory[first:], memory) - for _, c := range db.conns { - msg := &map[string]interface{}{ - "processor": processor, - "memory": memory, - } - if err := websocket.JSON.Send(c.conn, msg); err != nil { - c.logger.Warn("Failed to update dashboard", "msg", msg, "err", err) - } - } - -} - -// sendHistory sends the past data through a newly registered websocket connection. -func (db *dashboard) sendHistory(c *client) { msg := &map[string]interface{}{ - "metrics": db.Metrics, + "processor": processor, + "memory": memory, } - if err := websocket.JSON.Send(c.conn, msg); err != nil { - c.logger.Warn("Failed to send history", "err", err) + + for _, c := range db.conns { + select { + case c.msg <- msg: + default: + c.logger.Warn("Client message queue is full") + } } } + +func (db *dashboard) addClosing() *chan chan error { + closing := make(chan chan error) + db.mapLock.Lock() + db.closing[&closing] = true + db.mapLock.Unlock() + return &closing +} + +func (db *dashboard) removeClosing(closing *chan chan error) { + db.mapLock.Lock() + delete(db.closing, closing) + db.mapLock.Unlock() +} From b79e198e25b5b62986b9f048aa46343ba376410c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kurk=C3=B3=20Mih=C3=A1ly?= Date: Tue, 22 Aug 2017 12:18:42 +0300 Subject: [PATCH 6/6] dashboard: React client --- dashboard/assets.go | 52 ++--- dashboard/assets/components/dashboard.js | 282 +++++++++++++++++++++++ dashboard/assets/dashboard.html | 185 +++------------ dashboard/assets/js/handlers.js | 112 --------- dashboard/dashboard.go | 111 +++------ 5 files changed, 370 insertions(+), 372 deletions(-) create mode 100644 dashboard/assets/components/dashboard.js delete mode 100644 dashboard/assets/js/handlers.js diff --git a/dashboard/assets.go b/dashboard/assets.go index 78f5491e51..b10ac86507 100644 --- a/dashboard/assets.go +++ b/dashboard/assets.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. // sources: +// assets/components/dashboard.js // assets/dashboard.html -// assets/js/handlers.js // DO NOT EDIT! package dashboard @@ -69,7 +69,27 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _dashboardHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\xdb\x6e\xdb\x3c\x12\xbe\x2f\xd0\x77\xe0\xaf\xde\x2e\xc5\xd8\x29\xb6\x45\x57\x36\xd0\xa6\x45\xb7\x40\xf7\x00\x34\x0b\xec\x5e\x19\x34\x39\x96\xe8\x50\xa4\x4a\x52\x76\xfc\xf6\x0b\x4a\x94\xe3\x93\x2c\xd9\x71\x8b\xe4\x47\xae\x6c\x69\x8e\x9c\x8f\xc3\xd1\x0c\x98\xfc\xf1\xf9\x5f\x37\xb7\xff\xfb\xf7\x17\x94\xb9\x5c\x8e\x5f\xbf\x4a\xfc\x2f\x92\x54\xa5\xa3\x08\x54\x34\x7e\xfd\x0a\x21\x84\x92\x0c\x28\x0f\xff\xab\xe7\x1c\x1c\x45\x2c\xa3\xc6\x82\x1b\x45\xa5\x9b\xe1\xf7\xd1\x1e\x3d\x73\xae\xc0\xf0\xb3\x14\x8b\x51\xf4\x5f\xfc\x9f\x8f\xf8\x46\xe7\x05\x75\x62\x2a\x21\x42\x4c\x2b\x07\xca\x8d\xa2\x6f\x5f\x46\xc0\x53\xd8\x17\x57\x34\x87\x51\xb4\x10\xb0\x2c\xb4\x71\x1b\x12\x4b\xc1\x5d\x36\xe2\xb0\x10\x0c\x70\xf5\xf0\x17\x24\x94\x70\x82\x4a\x6c\x19\x95\x30\x1a\x78\x6d\x1b\xfa\x9c\x70\x12\xc6\x5f\x35\xfa\xe2\x32\x30\x50\xe6\xe8\x33\xb5\xd9\x54\x53\xc3\x13\x52\x13\xb7\xf8\xa5\x50\x77\xc8\x80\x1c\x45\x36\xd3\xc6\xb1\xd2\x21\xc1\xb4\x8a\x90\x5b\x15\x30\x8a\x44\x4e\x53\x20\x82\xe9\x08\x65\x06\x66\xa3\xc8\xaf\xd4\x7e\x20\x04\x82\xfa\x58\x9b\x94\xcc\xe8\xc2\x0b\xc5\x9e\x8f\x1c\xd0\xbf\x2d\xca\xb8\x9a\xdb\x98\x49\x5d\xf2\x99\xa4\x06\x62\xa6\x73\x42\xe7\xf4\x9e\x48\x31\xb5\xc4\x2d\x85\x73\x60\xf0\x54\x6b\x67\x9d\xa1\x05\xb9\x8e\xaf\xe3\x77\x84\x59\x4b\xd6\xef\xe2\x5c\xa8\x98\x59\x1b\x05\xdf\xdd\x4a\x82\xcd\x00\x5c\x84\xc8\xf8\x51\xe6\x67\x5a\x39\x4c\x97\x60\x75\x0e\xe4\x6d\xfc\x2e\xbe\xaa\x2c\x6f\xbe\xfe\x75\xc6\x53\x50\x0e\x24\x48\x49\xc9\x20\xbe\x0e\xa6\x59\x69\x9d\xce\xdb\x8d\x36\x3b\x97\x84\xad\x1b\x1e\xa7\x9a\xaf\x10\x93\xd4\xda\x51\xa4\xe8\x02\xe7\x7c\x6b\xe3\x71\xb1\x68\xa8\x7e\xbb\x51\xa1\xc0\x20\x2f\xb3\xc9\xb5\xcb\x99\x53\xa1\x26\x6b\xf6\x5d\xce\x7d\xbd\x12\xe7\x1c\x5f\x23\x09\x33\x37\x61\x5a\x1e\x12\xd8\x15\x6a\x78\x91\x65\x46\x4b\x89\x7d\x56\xb4\xc9\xed\xca\x2a\xba\x98\x52\x83\x14\x5d\x4c\xaa\xad\x1e\xa1\x2a\x4c\xa3\x68\xaa\x0d\x07\xf3\x01\x5d\xfd\xed\x98\xaa\x4a\x1d\x0d\x88\xf1\x26\x6d\x62\x7f\x4e\x44\x8d\x09\x2b\x1c\x04\xe5\xe3\x44\x34\x6f\x67\x14\xcd\x28\x2e\xe8\x32\x1a\x27\x44\x8c\x51\x62\x0b\xaa\xda\xb2\xb0\xa2\x25\x84\x1e\x5b\x14\xe1\x62\xb1\x95\x48\x47\xe3\x2c\x81\x9a\x99\xb8\xf7\xc6\x3b\xe5\xfe\xc0\x18\x59\xc1\xc1\x07\x2a\x07\x55\x22\x8c\xbb\xa2\x2b\xb8\x5f\x77\x25\x82\xbd\x48\xb4\xb5\x1d\xfc\x9b\x89\x27\xa3\x4c\x70\x0e\x0a\x17\x46\x28\x87\xd6\xb4\xce\x88\x6f\xee\xaf\x4a\x17\x30\x27\xb4\xea\x92\xab\x64\x4b\xb9\x81\x7d\xb5\x2e\xdc\xc7\xe6\x5a\x5e\x8a\x71\x42\xf7\x80\xcc\x74\x0e\x01\xc9\xbf\xeb\x1c\x6a\x38\xb7\x59\x58\x06\x0b\xa3\x15\xe6\x7a\xa9\x3c\x6b\x0f\x50\x3b\x9c\x67\x99\x90\xbc\x57\xc4\x0e\xaf\xe2\xf0\xbe\x1d\xaf\x37\xde\xc0\x7b\x97\x10\x29\x7e\x89\xf6\xe1\x19\xda\x13\x52\xca\xbe\x40\xf5\xd7\xdc\x82\x29\x70\xe1\x02\xa6\xff\x04\xb7\xd4\xe6\x4e\xa8\xf4\x59\x21\xab\xd6\x6e\x87\xe0\x7b\xa7\x1e\xd6\x32\x78\x2c\xb6\x1d\xfa\x87\x4f\x19\x5d\x0e\xf6\xce\xe9\x22\x00\x7c\x7b\x5f\x68\x2d\x9f\x15\xb8\xae\x72\x39\x04\xbe\xf6\xff\x22\x09\x7b\x40\xef\x93\x4f\x55\x47\xa7\xb2\x39\x7f\xbf\xeb\xd4\x3e\x2b\x20\xa5\x4e\x6d\x08\xb7\xf7\xfd\x22\x20\xee\xe8\x7c\xf2\x00\xfa\x0f\x05\xdf\x32\x39\xac\x03\x8c\x3f\x56\xd6\x41\xfe\xac\x80\xb4\x95\xcb\x21\xec\xb5\xff\x17\x01\xf3\x80\xde\x27\x0f\x28\x93\x5a\x85\x8c\xfc\x24\x35\xbb\x63\x19\x15\xea\x59\xa1\x39\x5d\xbb\x1d\x22\xff\xb0\x8e\x8b\xa0\x7a\x44\xff\xd3\x40\xb7\x87\xc6\xa6\x7b\x38\x9b\xee\x7b\x0b\xd2\xaf\xb9\x68\xd3\xd5\xde\xc1\x54\xda\x9d\x2e\x7c\x7b\x27\x52\xea\x5b\x84\xc3\xea\x37\x1b\x0a\xa7\x8b\x89\xa2\x8b\x3e\x8d\xa7\xef\x1a\xbb\xb6\x59\x52\xed\xc8\x9a\x3f\x42\x46\xfb\xde\xf2\xc1\x9d\x53\x3a\x1d\xaf\xc8\xe9\x34\x95\xd0\xab\xcf\xa1\x55\x13\x56\xb5\x47\x8d\xd4\x81\x43\xd7\xd6\x29\xda\x9d\x6f\xdd\x48\x2b\xda\x46\xef\x42\x6e\xef\x7d\xb5\x2b\x0e\x01\xd7\xc2\x5b\xd0\x14\x9a\x11\x58\x37\xc2\x46\xa4\x59\x3d\x5c\x08\x78\xf8\xc6\xb3\x0f\xde\x7d\x87\x0a\xde\x1d\x1c\x3a\xfe\xfe\xf8\x56\x02\x13\x09\x33\xd7\x0b\xdf\xec\xfa\xf0\xb4\x00\x25\x36\xa7\x52\x8e\x7f\x38\xea\x84\x75\x82\xd9\x84\xd4\x6f\x12\x92\x5d\x5f\x28\x9f\x7f\xc1\x94\x61\x13\x20\x7d\x74\x7e\xb3\x67\xa6\x1e\x1a\xfd\x15\xf9\x3f\x36\x0f\x7f\xee\x2d\x1e\x0c\x7b\x45\x72\x43\xd5\xfd\xa4\xa0\x0a\x5a\xa7\x4e\xc7\x45\x7b\x21\xbe\x25\x9e\x0d\xc7\xff\x80\x5c\x9b\x15\x2a\xad\xdf\xc2\x01\xba\xba\xde\x93\xbc\x22\x11\xa1\x4a\x0b\x1b\x18\x0e\xcf\xaf\x8c\xf5\xb4\x0b\x57\x09\x80\xaa\x95\x4e\x9c\xd6\x72\xaa\xef\xcf\xac\x94\x0f\x08\x48\x5a\x58\xc0\x52\xa8\xbb\xfd\x73\xa6\x29\xf1\x65\xd1\xf7\xb4\xd9\x33\x77\x56\xad\x6d\xbc\xe0\x46\x17\xf5\xe7\xc5\x69\x2a\xd0\xe6\x74\xef\x4d\xb4\xab\x0e\x87\x73\x15\x71\xea\x68\x78\xd8\x30\x16\x0e\x97\x69\xe9\x9c\x56\x11\xa2\x46\x50\x0c\xf7\x05\x55\x1c\xb8\x8f\x8c\xb4\x07\x8e\xe4\xa5\x01\xc5\xb2\x73\xc3\x84\xb6\x21\x5f\x3b\x5a\x8f\xe0\xc2\x61\x77\xc6\x77\xd1\x5a\xf7\xe6\xf7\xcb\x9b\x68\xfc\x03\x9c\x13\x2a\xb5\x68\x70\x9e\xaf\xe8\x3c\x68\x3b\xdd\x19\xfe\x76\x77\x4e\xf8\xfa\x7a\x84\xa5\x9d\xac\x93\xba\x3d\xe5\x3c\xed\x37\x65\xdb\x89\x6b\x3f\x5e\x21\xfa\x19\x3c\x81\x77\xeb\x88\x0e\xdf\x08\x27\x1d\xd2\x8c\xaa\x05\xb5\xe1\x6b\xca\x9f\xc8\xdf\x85\x82\x1b\xdf\xab\x7a\xaf\x6b\xea\x85\x1d\xef\xc3\xd7\x5d\x52\xd1\x9f\xa9\x4e\x7e\x53\x53\x5d\x2a\x8e\x9c\xa1\xb3\x99\x60\x4d\xa9\x2c\x86\x05\x09\xa4\xdb\x9a\xf2\x52\x29\x5f\x2a\x65\x4f\x87\x5f\x2a\xe5\x4b\xa5\x7c\xa9\x94\x87\xac\x3d\xba\x52\x86\x63\xfa\x69\x95\xca\x2e\xfa\xb9\x5d\xed\x29\x36\x8f\xcf\x3c\xf6\x07\x19\x2d\x9c\x33\xad\x1d\x98\x8e\x99\x47\xcd\xd4\x63\xb0\x51\x94\x52\xd6\xb5\xee\x18\xde\x5f\xd7\x57\x4d\x10\x46\x9f\x9a\x7b\x35\xe8\x23\xcf\x85\x42\xb7\x90\x17\x92\x3a\x40\xd3\xd5\x43\x25\x58\xdf\x61\xd1\x52\x1b\x29\xa6\x31\xd3\x79\x34\xbe\x09\x4f\xed\xe9\x76\x34\xb0\x27\x41\x91\x90\xd6\x20\xd4\x11\xef\x0a\xe4\xae\xe2\xfd\xbd\x92\x58\x66\x44\xe1\x90\x35\xac\xf7\xad\x9d\xf9\xcf\x12\xcc\x8a\x0c\xe3\x41\xfc\x36\x3c\x54\xb7\x75\xe6\xd5\x3c\xae\x56\x38\xbe\x84\x09\xac\xb4\xf3\x76\xde\xc6\x03\x52\x50\x76\x47\x53\xe0\x8d\x41\x4f\x8a\x9b\x97\x97\x36\x5f\x65\x7d\x3c\xb7\x64\x18\x5f\xc5\x57\xeb\xc7\x8b\xe9\x6f\xbb\xf3\x35\xdf\xbd\xf2\x75\x41\x9b\x33\xa9\x1d\xb9\x8a\xdf\xc7\xd7\x4d\x08\xfd\x9b\x4b\x5a\xd8\xbb\xcd\x35\xdf\xba\xcc\xb5\x63\xa9\xc5\xd6\xdc\x92\x8c\x2a\x2e\xc1\xd8\x43\xbe\x25\x64\xaa\xf9\x6a\xfc\xfa\x55\x42\xc2\xbd\xc6\xff\x07\x00\x00\xff\xff\x29\x20\x88\x50\xe9\x28\x00\x00") +var _componentsDashboardJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5a\x7b\x6f\x1b\x37\x12\xff\xdf\x80\xbf\xc3\x9c\x7a\x68\x65\x54\xd2\xca\xf6\xa5\x0d\xf4\x02\x12\x27\x69\x7d\x88\x93\x22\x36\x50\x1c\x8c\xc0\xa5\x76\x47\xbb\x84\xb9\xe4\x82\xe4\xca\x36\x02\x7d\xf7\x03\xb9\x0f\xed\x53\x5a\x3b\x76\x51\x01\x41\x24\x92\xf3\xe3\x0c\x39\x6f\xfa\x2c\x20\x52\x8f\x3c\x5c\x91\x98\x69\x35\xf2\x99\x58\x12\x36\x62\xe8\x23\xf7\x60\x0e\xdf\x0e\x0f\x00\x00\x90\x93\x25\x43\x6f\x02\x2b\xc2\x14\x1e\x1e\x6c\xa6\x87\x07\x87\x07\xae\xe0\x4a\xc3\x99\x08\x23\xc1\x91\x6b\x98\xc3\x17\x24\xae\x1e\xe5\x23\xd3\xc3\x03\xc7\x81\xfa\xb2\x73\xbe\x42\xc9\x45\x69\xe1\xe1\x81\xcb\x88\x52\x70\xc6\x90\xc8\x15\xbd\x07\xbc\xd7\xc8\x3d\x55\x20\x4c\x99\x91\xc8\x3d\x94\xfd\xa3\xec\x77\x32\xa6\x63\xc9\xa1\xbf\x1d\x31\x9f\x99\x47\xd7\x60\x61\x3f\x91\x10\xe7\x3d\x37\xc5\xee\x39\x8b\xed\xc2\xa3\x69\xf2\x7d\x73\x78\xb0\xd9\xb2\x71\x81\x3c\x3e\xd7\x18\x3e\x0b\x1b\x8c\x2e\x66\x64\x31\xa3\x05\x5e\xbe\xfd\xb5\x22\xf0\xef\x6f\x3a\xa0\x6a\x14\x49\x11\xa9\x51\x3e\xb7\xf9\x0b\x36\xce\xa2\x38\xa5\xf1\x5e\x6f\xaa\xc2\xac\x08\xac\xc8\xd0\x0d\x70\x2d\x05\x1f\x7a\xe2\x8e\xf7\x9c\xc5\xcc\x21\x8b\xf2\xe6\x96\x81\x98\x15\x29\x39\x59\x83\x1b\x50\xe6\xdd\x84\xc8\xe3\x5e\x03\x81\xf9\x94\x78\x33\xab\x25\xf2\x4d\x03\xb6\x13\xb3\x0a\xc2\xcc\x61\xb4\xd3\x01\x9f\x19\xd8\xe7\x3b\x61\x08\x24\xae\xe6\x45\xbe\xcd\xc0\xa6\xe1\x28\x1d\xb2\xe8\xcc\xe4\x25\x32\x74\xf5\xb3\x70\x59\xbf\x06\x45\x3d\x1c\xb6\xdd\xc2\x2c\x57\xc2\xd2\xb5\x0f\x03\x11\x62\x0f\x8c\x24\xf3\xde\xef\xe6\x7b\xcb\x0d\xce\xb6\x67\x6c\x4f\xa6\xe7\x11\x15\x2c\x05\x91\xde\x28\xd0\x21\xcb\x20\xde\x65\xa3\xc7\x25\xbb\xf8\x1e\xa4\x93\x46\xa4\x99\x93\x09\xf4\x08\x61\xd1\xa3\x3a\xc3\xff\x84\xfa\x4e\xc8\x5b\xca\xfd\xef\x14\x79\x0b\xd4\x2c\xf3\x93\x38\xf5\x50\xdd\x6a\x11\x65\x7b\x5c\xdd\x47\x42\xb0\xef\x64\x34\x01\x79\x46\x26\xb5\x71\xe4\x19\xfa\x47\xe1\xab\x7f\x1a\x83\x4b\x22\x87\xae\x09\x4a\x43\x91\xed\x71\xf9\xa0\x34\x86\xcd\x5b\xb4\xa0\xb8\x4c\xf0\x5c\xcc\xb7\x4c\xb8\xb7\x6e\x40\x28\xff\x4e\x61\x0b\x40\x8f\x92\xb7\xe2\x23\x9b\x7d\xcd\x25\xf5\xf0\x2d\x91\x2f\x12\xf7\x04\x1b\x86\xde\xf0\x14\x18\xae\xf4\x8d\xdb\xac\x95\x55\xa2\x6c\x2d\x28\x57\x0a\xc6\x86\x6b\x8a\x77\xad\xe7\x57\xa1\xe5\x64\xbd\x24\x12\x38\x59\xdf\x68\xaa\x8d\xc2\x29\xfd\xc0\x70\xfe\xed\xdb\x52\x48\x0f\xe5\x04\xc6\x9b\x4d\x0b\x96\xc5\x23\x2d\xf7\x50\xd8\x43\x51\x8d\x29\x7a\x39\xb4\xa6\x91\x31\x22\x77\x3d\x67\x01\x33\x15\x11\xbe\xf8\x4d\xc0\x7b\x1d\xa0\xc4\x38\x84\xdc\x4b\xcd\x1c\x3b\xd7\x1c\x33\x93\x7b\xf3\xe8\xba\x6d\x2e\x4b\x54\x5a\x7d\xa6\x39\x13\xea\x19\x46\x3d\x34\x5a\x6d\xdd\x7c\x91\xcf\x90\x50\x6e\x43\xf0\x8d\x59\x02\x01\xf5\x3c\xe4\xc3\x48\x52\xae\x21\x9f\x6b\x3b\xf2\xa6\x63\x4f\xb0\xd0\xd5\x54\xb4\xaa\x7a\x4e\xbb\x8d\x6d\x6d\x12\xec\x3d\x82\x96\xb9\xa6\xf1\xea\x58\xb3\x0d\x5c\x89\xe8\x13\x59\x53\x9f\x18\x09\x5e\xc2\x12\xb4\x88\x6e\x38\x59\x77\xd1\x7f\xa3\xbc\xbb\x2e\x60\x66\xd3\xa8\xed\xfa\x1e\x48\xc1\x12\xba\x54\x80\xc7\x5c\x9d\x01\xd3\xc2\xf7\x59\x6b\x34\xcf\x29\x89\xd5\x2a\x7b\xd7\xdd\x28\x2c\x55\x83\x85\x2c\x89\x54\xad\x21\x3f\x27\x6c\xb5\x0e\xd8\xab\x1e\x9c\x3c\xaf\x7a\xec\x4e\xc8\x6d\x9d\x21\x63\x57\x0b\xd9\xb7\xc9\x5e\x49\x3f\x54\x1c\x61\x36\x3e\xdd\x0e\xdb\xd4\x50\x69\xa2\x71\x5b\xed\x64\x1f\x1b\x86\x26\xc0\x63\xc6\x06\xdb\x99\x4d\xce\x59\xb6\x6d\xca\xc7\x3b\xea\x5d\x88\x98\xeb\xb2\x5e\x6e\x37\x18\x59\x3c\x98\x03\xc7\x3b\xb0\x75\x57\xdf\x4e\x7a\x44\x93\x41\x75\x6f\xfd\x10\xe1\x04\x7e\x62\x94\xe3\x4f\x83\xf2\x94\x59\x3f\x81\x52\x76\x4e\xa4\x7e\x67\x50\x0a\x5c\x16\x4e\xb0\xdd\x68\xe8\xaa\x5f\xe3\xef\x5f\xf3\xb9\x15\xf9\xa8\xc6\x52\x65\xe5\x28\x8e\x3c\xa2\xb1\x5f\x3c\xce\x7c\x37\xe8\x6a\x92\xcd\x25\x50\x07\xfb\xbc\xbf\x89\x08\xc7\xf6\x04\xab\xb6\x3c\x8d\x15\x3b\x94\x39\x38\xa9\xd7\x0a\x30\x73\x82\x93\x5d\x44\xf5\xa4\x3e\x89\x7e\x43\x49\xfd\x40\x83\x65\xf2\x46\x0b\xc1\x96\xe2\x7e\xaf\x6d\x27\x75\x4c\x39\x74\x33\x12\x29\x1c\x32\xca\x6f\x9b\x03\x5d\x56\x02\xc6\x51\x6b\x01\x58\xda\xa3\x5c\xf8\xb4\xb0\x51\xdc\xc6\x93\x22\xb2\xf5\x65\x17\x3f\x93\x45\xee\x1f\x7a\x4d\x10\xc3\xd4\x63\x59\x25\x4e\x7f\x14\x36\x48\x5d\xe8\x32\xd6\x5a\xf0\x1e\x10\x49\xc9\x10\xef\x23\xc2\x3d\xf4\x8c\xb8\x4c\xb5\x04\xfb\x3b\x89\xdc\x0d\x3a\xc9\x0f\xf5\x4b\xcb\xb9\x4b\x42\x74\xc2\xc4\xbe\xe0\x5b\x39\xb0\x45\x41\xf2\xc5\x25\x6a\x4d\xb9\xaf\xe0\xb8\x1b\x3f\xd0\xed\x5e\xf6\x6e\x77\xf2\xec\xdb\x35\x94\xf7\x4f\x40\x6a\xd0\x6b\x26\x76\x2b\xb5\x99\x7f\x0e\x7d\xde\x23\xc0\xfe\x34\x6e\x57\x84\xab\xf9\x18\x57\x70\x8d\x5c\xef\xf4\x32\x2e\xe1\x6b\xa2\xc0\xf6\x2a\xfa\xc6\x0e\x8e\x60\xbe\x48\xdb\x2d\xe6\x27\xcc\xad\x75\x6c\x36\x8f\x65\xe9\xe9\x81\xf5\x8b\xb8\x7b\x89\x6c\x4b\x8a\xc6\x8a\x61\x66\xe2\x78\xb3\x68\xf5\xa2\xe5\x17\x30\x5f\x54\x98\x7e\xb9\x57\xc3\xe3\x93\x5e\x33\x71\x52\xa4\x5d\x60\x28\xe4\x03\xc4\x8a\xf8\x08\xca\x96\x8e\x4e\x68\xc7\x1c\xca\x63\x85\x2d\xc4\x79\x10\x2d\x47\x24\x33\xaa\x46\x09\x7d\x43\xf7\xab\xb1\x0c\x7c\x51\xf1\xce\xf9\x52\xc4\xdc\x03\x2d\xc9\x6a\x45\x5d\x88\x4e\x22\x27\x1d\xbb\x4a\x86\x9e\x22\x60\x8a\xd6\x41\xc2\x6e\x0a\xf5\x07\xf1\xf1\x2c\xb1\x85\x17\x51\x2c\x13\x5a\x6d\x21\x9b\x39\xeb\x96\xe2\xbe\x4a\xd8\x35\x5b\x88\x88\x8f\xc3\xfd\x09\x43\xb5\xba\x30\x04\x37\xa6\x70\xde\x1b\xe8\x83\xd3\xe6\x9a\x14\x66\x2a\x24\x8c\x2d\x2e\x35\xd1\x54\x69\xea\xaa\x99\x93\x8c\xcc\x9c\xe0\xf4\x99\x0b\x35\xe8\xe4\x00\x8d\x73\x48\xd4\xa4\x41\x73\xda\x9d\xd4\x2e\xdc\x27\x79\x2a\xfb\x8c\x70\xf1\xfe\xe2\xf3\x97\xff\xdd\x5c\xbe\xb9\xf8\xe3\xe3\xfb\x9b\x8f\xe7\x17\xe7\x57\x30\x87\x93\xf1\x78\x0a\x8e\x03\x17\xe4\x9e\x86\x71\x08\x3c\x0e\x97\x28\x41\xac\x20\xb1\x5c\xeb\x50\x41\x91\x30\x62\xa8\x32\xa8\xab\x2f\x6f\x3e\x7c\x38\x3f\xeb\x8e\x95\x99\x5c\x19\x2c\x53\xf9\xed\x15\xfe\xcd\x15\x8a\x9a\x54\x87\xcd\x27\x11\xbc\x71\xca\x7c\x18\x59\x22\x53\x13\xb8\xfe\x3a\x68\x5e\x60\x84\x54\x68\xc0\xaf\x5b\x20\x72\x98\x09\xf4\x9a\xfc\x6c\x0b\xb0\xf9\x2c\x89\x7b\xeb\x4b\xe3\xb3\xce\x04\x13\x72\x02\x3d\xe9\x2f\x49\xff\xf4\xf5\x00\x8e\x5f\xbf\x1a\xc0\xf1\xab\xff\x0c\x60\x3c\x3a\x3d\x3e\xda\x89\x62\x7b\x49\x3b\x11\x7e\xdd\x09\x10\x09\xca\xf5\xdb\xe7\x41\xe9\x26\x51\x07\xa4\xdf\xc5\x1a\x65\x1d\xee\x87\xd5\x6a\xd5\x91\xb6\x2e\xd0\xc9\xc9\x78\x90\xfd\xdb\x7d\xa6\x85\x23\xf9\x93\x7a\x3a\x98\xc0\xf1\x8e\xd5\x49\x29\x7a\xfd\xb5\x79\xc5\xa6\x61\x7c\xd3\x80\x96\xda\xd5\xdf\xa5\xab\x0d\x11\xf3\x09\xaa\x3a\x80\xd7\xe6\x6e\xc7\xbf\x58\x45\x7d\xb4\x9e\x96\xc8\x7f\x1d\x3f\x4d\x4d\x1f\x0f\xd2\x45\x98\x2e\x40\x2f\xa1\xa4\xc7\xaf\x8e\x07\xc7\xaf\x7f\x1d\x9c\x8c\x5f\xfd\xc3\x94\xb4\xf8\x7b\x53\xec\xab\x24\x5f\x93\x3e\x88\xed\xe8\x28\x98\x43\x3f\x54\x7e\x92\xd2\x6f\xa9\x18\xea\x2c\x14\xcd\x6b\x8d\x94\x2c\xbf\x9c\x96\xd7\x67\xe1\xa6\x89\x20\x9d\x9b\x16\xdb\x2d\x8e\x03\x1f\x28\x63\xa0\x03\x84\xbc\x6f\x0e\x77\x54\x07\x10\x11\xa5\xed\x39\x94\x5a\x3f\xa1\xf2\x47\x21\x6a\x49\x5d\x65\xbb\x3e\x31\xf7\x70\x45\x39\x7a\xb5\xd6\x8f\xe3\x24\xef\xf2\x40\x39\xb8\x44\x61\x75\x0f\xa2\x40\x44\xc8\xd1\x83\x25\xae\x84\xc4\x32\x75\x22\xdd\x28\x31\x63\x98\xc3\xf5\xd7\x69\xa5\xb3\x94\x48\xb3\x63\x45\x0a\x91\x19\xfa\xf5\xf8\x6b\x56\x2a\xb5\x82\xb5\xad\x2d\xaf\x4e\x2f\x06\xe6\x50\x38\x8d\xfa\x7d\x64\x4b\x23\x29\x5c\x54\x4a\xc8\x0a\x41\x3e\x3e\xad\x1d\xdc\xb9\x06\xaa\x20\x12\x4a\xd1\x25\x43\xd0\x02\x7c\xd4\x40\xb8\x30\xb9\x1f\x84\xa8\x6c\xa1\x72\x17\x50\x86\xb0\xa2\x8c\x51\xee\xdb\xe3\x25\x52\x92\x07\x05\xcb\x07\x88\x62\x15\xf4\x8f\x06\xa0\x04\x50\xae\x34\x12\xaf\xb6\x49\x14\x6b\x4b\x14\x50\xa5\x8d\x92\x69\x61\x7f\x2e\xd1\xa7\x9c\x1b\x44\x93\xbe\xe4\xa0\x65\xf2\x95\x90\xd0\x37\xc2\x51\x23\x14\x86\x23\x86\xdc\xd7\x01\x0c\xe1\x78\x0a\x14\x16\x73\x18\xc3\x8f\x3f\x36\x66\x5e\x8b\xf2\xdd\xa6\x94\x53\x18\x0e\x69\x4d\x87\x6a\x9a\x30\x8a\xb9\x0a\xe8\x4a\xf7\x43\x0c\xaf\xe9\xd7\x91\xa6\x21\x8e\x54\xbc\x54\x5a\x52\xee\x97\x46\x73\x8e\x5e\x1d\x1d\x4d\x5b\x03\xc8\xb3\xe3\xb6\x68\x5d\x75\x83\x35\x61\x31\xee\xe2\xab\x15\x20\x57\x9b\x56\x98\x4d\x53\x0f\x16\xb5\x29\x0f\xb0\x5f\x3f\xe1\x1d\x09\x61\x21\x27\x4c\xfe\x6f\x76\x99\x79\x30\x4e\xbf\xd4\x57\x55\x58\xda\x54\x59\x4e\x4a\xb8\xb6\xa6\xb0\xe3\xa4\xfe\xb2\xc1\x15\x59\xff\xb8\xdb\x13\x99\xb5\x0d\x2a\x07\xf3\xf9\xbc\x49\x43\x3b\x68\x61\x72\x13\x1d\xd4\xaa\x7d\x61\x9b\x9e\xec\x87\xee\x48\xb2\xd9\xe1\x50\x47\xd6\x3d\x6c\x0f\xb0\xa6\xef\x95\x99\x1d\x3a\x5f\x11\xf8\xf9\x80\xdb\x0e\xa8\xba\x43\xa3\x09\xb4\x9e\x55\x4e\x9d\x9b\x51\x0b\xc0\x1e\xa3\xd9\x63\x35\x9d\xcc\xa6\x83\xdd\xec\x34\x9c\x92\x8d\x98\x3a\x51\x30\x1c\x31\xe1\x17\xde\x67\xf2\x82\x78\xba\x7d\xd2\x71\x05\xe7\xe8\x6a\x93\x75\x34\xa5\x1c\x0a\xe5\x1a\x65\xfa\xe4\xf4\x27\x2e\x2f\x85\x7b\x8b\xba\xdf\xbb\x53\x13\xc7\xe9\xc1\xcf\xc0\x84\x6b\x9f\x2a\x47\x81\x50\x1a\x7e\x86\x9e\x43\x22\xda\x2b\x32\xe6\x38\x70\xf5\xf9\xdd\x67\xe8\xdf\xc6\xf2\x56\x84\x54\xd1\xa3\x09\x7c\x41\x25\xd8\x1a\xed\xc9\x26\x19\xc6\x92\x72\xaf\x92\xbe\x04\x44\xa7\xb9\x4b\x01\x2e\xe1\x68\x24\x78\x16\xf8\xe6\xd0\xc7\x35\x72\x5d\x65\x3f\x83\x09\x95\x0f\x73\xf8\xef\xe5\xe7\x4f\xa3\x88\x48\x85\xc9\x6a\xab\x00\xd5\x7b\xa6\x2b\x9b\x7b\x59\x5f\xd0\xf8\x82\x05\x4d\xde\xa9\x76\xfa\xf6\x36\x03\x92\xbd\x6f\x25\x79\x9d\x4d\xea\xa6\xe5\x34\xb0\x41\x2a\xdb\xb6\xde\xde\x06\x28\xd4\x57\x34\x44\x11\xeb\xbe\x85\xcc\x6f\x6c\x00\xa7\xe3\xf1\xf8\x68\xba\xcd\x27\xa7\x8f\x79\x50\xcc\x71\xfa\x9d\xde\xf9\xba\xfe\x99\x08\xd7\x84\x72\x94\xb0\x14\xde\x43\x97\x76\x9a\xfd\x2b\x85\x9c\xac\xb5\xb9\x96\xfe\x69\x4b\x6b\xab\xa8\xf4\xec\xdf\xba\xaa\xd8\x53\x2c\xf5\xa3\x8a\x99\x71\x7b\x3f\x6a\x25\x84\x46\xf9\x88\x6e\x5e\x14\x33\x96\x3c\xe2\xed\xeb\xe6\xfd\x86\x5c\x23\x43\xc6\x08\x0c\xe1\xad\x10\x5a\x69\x49\x22\x78\xe3\x85\x94\xc3\x15\x86\x11\x23\x1a\x4d\x26\x97\x3f\xda\x04\x5a\x47\xc6\x06\x5d\x53\x00\x31\xba\x1c\xb9\x22\xec\x2d\xce\xd2\x5f\x4f\x7f\x73\x87\x6e\x4f\x1a\xad\x67\xf1\xd8\xc6\xdc\xff\x03\x00\x00\xff\xff\x72\x1b\xde\x84\x3f\x2c\x00\x00") + +func componentsDashboardJsBytes() ([]byte, error) { + return bindataRead( + _componentsDashboardJs, + "components/dashboard.js", + ) +} + +func componentsDashboardJs() (*asset, error) { + bytes, err := componentsDashboardJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "components/dashboard.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _dashboardHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x96\xdf\x6f\x23\x27\x10\xc7\xdf\x4f\xba\xff\x81\xf0\x92\x44\x3a\xc0\x8e\xd3\xdc\xe9\xba\x6b\xb5\x4d\xd2\x2a\x0f\x55\xaa\x36\x27\xb5\x4f\x15\x86\xf1\x2e\x36\x0b\x7b\x30\x6b\xc7\xff\x7d\xb5\x3f\xec\xee\xd6\x76\xdb\xbb\x38\x7e\x31\x0c\xf0\xfd\xcc\x30\x30\x6c\x72\x76\xf7\x78\xfb\xf4\xc7\x2f\xf7\x24\xc7\xc2\x4e\xdf\xbe\x49\xea\x7f\x62\xa5\xcb\x52\x0a\x8e\x4e\xdf\xbe\x21\x84\x90\x24\x07\xa9\xbb\x76\xd3\x2f\x00\x25\x51\xb9\x0c\x11\x30\xa5\x9f\x9e\x7e\x64\x1f\xe8\xde\x78\x8e\x58\x32\xf8\x5c\x99\x55\x4a\x7f\x67\x9f\xbe\x67\xb7\xbe\x28\x25\x9a\x99\x05\x4a\x94\x77\x08\x0e\x53\xfa\x70\x9f\x82\xce\x60\x7f\xb9\x93\x05\xa4\x74\x65\x60\x5d\xfa\x80\xbd\x15\x6b\xa3\x31\x4f\x35\xac\x8c\x02\xd6\x74\xde\x11\xe3\x0c\x1a\x69\x59\x54\xd2\x42\x3a\xae\xd5\x7a\x7a\x68\xd0\xc2\xf4\x27\x4f\xee\x31\x87\x00\x55\x41\xee\x64\xcc\x67\x5e\x06\x9d\x88\x76\xb0\x37\xdb\x1a\xb7\x24\x01\x6c\x4a\x63\xee\x03\xaa\x0a\x89\x51\xde\x51\x82\x9b\x12\x52\x6a\x0a\x99\x81\x30\xca\x53\x92\x07\x98\xa7\xb4\x8e\x33\x7e\x14\x02\x3a\x71\xee\x43\x26\xe6\x72\x55\x2f\xe2\xf5\x3c\x31\xf4\xa6\xd1\x1f\x2e\x55\xda\x2d\x22\x57\xd6\x57\x7a\x6e\x65\x00\xae\x7c\x21\xe4\x42\x3e\x0b\x6b\x66\x51\xe0\xda\x20\x42\x60\x33\xef\x31\x62\x90\xa5\x98\xf0\x09\x7f\x2f\x54\x8c\x62\x67\xe3\x85\x71\x5c\xc5\x48\x3b\xdf\x71\x63\x21\xe6\x00\x48\x89\xd8\x0b\xef\x8b\xf0\x73\xef\x90\xc9\x35\x44\x5f\x80\xb8\xe6\xef\xf9\xa8\x21\xf7\xcd\xaf\x07\xcf\xc0\x21\x58\xb0\x56\x8a\x31\x9f\x74\x68\x55\x45\xf4\xc5\x71\xe8\x70\xc3\xa3\x0a\xa6\x44\x12\x83\xfa\xdf\xd4\x99\x9c\x81\x65\x11\xa5\xd3\xd2\x7a\x07\xe2\x86\x5f\xdd\xf0\x51\x6b\x6f\xb8\x8b\x48\xa7\x89\x68\xa5\xa7\x2f\x83\x05\x90\x0a\xc5\xf8\x1b\x7e\xc3\xc7\x6d\xe7\xf5\x09\x4c\x77\xfb\x77\x6a\x0a\x0b\xbe\x42\x08\xe2\x9a\x8f\xf9\xd5\xc0\x74\x08\xf7\x32\xe0\xe2\x73\x05\x61\x23\xae\xf8\x98\x5f\x77\x9d\x53\xc7\xd4\xaa\x32\xe7\xb1\xe6\x5c\xf3\xb1\x28\xa5\x5a\xca\x0c\xf4\x16\x58\x0f\xf1\xad\xf1\xd4\xf8\xdb\x5c\x06\xe4\x8b\x28\xae\xf8\x88\x8f\x76\xdd\x93\xe9\x1f\xab\x2c\x8b\x7f\x16\x96\x13\x32\xe7\xd6\xa3\x18\xf1\x0f\x7c\xb2\xdd\xc2\xda\x72\xf8\x64\x24\xa2\xf7\xf4\x24\x33\xaf\x37\xc3\x43\x73\xc6\xd8\xd6\x85\xb6\x3a\x23\x3c\xa3\x58\xc4\x67\xda\xba\xf4\x9b\x2f\x00\x73\xe3\x32\x12\xa0\xb4\x52\xd5\xad\xe6\x0e\xf7\x58\x8c\x4d\x0f\x2b\x0e\x82\xaa\x5c\xb9\xcc\x9a\x48\x8c\x9b\x43\x70\xfe\xbb\x49\x53\x09\xb5\x89\xb8\x35\x0d\x63\xf8\x4a\x5d\xa6\x7c\x51\x7a\x07\x0e\x0f\x10\xfe\x1e\x3c\x0d\xab\xbd\x99\x87\x40\xc7\xee\x6c\x43\xea\xb1\xb4\x59\x11\xa3\x53\xaa\xb7\x2f\x2a\x25\xca\xca\x18\x53\xea\xe4\x8a\x15\xba\x5e\xaa\xcd\xea\xe0\x5d\xef\xa5\xac\x4d\x4a\xeb\xee\x2e\xc6\x28\x76\xaa\xff\x75\x00\xf7\xa4\x7a\x73\xea\xdf\xaf\x75\x21\xba\x7b\xfc\x99\x07\x70\x1a\xc2\x45\xb2\xfb\x02\x10\xd3\x77\x44\x7b\x55\x15\xf5\xa6\x66\x80\xf7\x16\xea\xe6\x0f\x9b\x07\x7d\x71\xbe\xe3\x9f\x5f\x5e\x7e\xdb\xa3\x1e\xac\x60\x87\x0f\x63\xe7\xce\x20\x43\xdb\xe9\x0f\xdd\xb9\x79\x81\x53\xfb\x99\x3f\x96\xa9\x33\xc6\x9e\x1e\xef\x1e\xc9\xc5\xb2\x0a\x4b\x5f\x98\x68\x2e\x3f\x92\x02\x5c\xf5\x27\xfa\x2c\xb3\x40\xb4\x87\xe8\xce\x91\xac\x7d\x58\x92\x32\xf8\x12\x82\xdd\x0c\xf5\xff\x3d\x71\x5f\xfb\xa4\x2f\x06\x2f\xfa\x91\x42\xd0\x5d\xfe\x44\x34\x9f\xaa\x7f\x05\x00\x00\xff\xff\x4d\x62\xae\x61\xba\x0a\x00\x00") func dashboardHtmlBytes() ([]byte, error) { return bindataRead( @@ -89,26 +109,6 @@ func dashboardHtml() (*asset, error) { return a, nil } -var _jsHandlersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x57\xff\x6f\x9b\xc8\x13\xfd\xdd\x92\xff\x87\xf9\xf8\x23\xb5\x58\xa5\x60\xa7\x97\x6b\x64\x44\xa5\x36\x4d\xef\x7c\x4a\x2e\x55\x12\xa9\x3a\x45\x51\xb5\xc0\x00\xab\x2c\xbb\x68\x77\x49\x1a\x55\xfe\xdf\x4f\x0b\x18\x0c\xfe\x52\x7a\xca\x5d\xa4\x48\x78\x79\x6f\xde\x30\xfb\x66\x16\x4e\x53\x22\xb5\x13\x61\x4c\x0a\xa6\x95\x93\x30\x11\x10\xe6\x30\x4c\x90\x47\xe0\xc3\xf7\xf1\x08\x00\x00\x39\x09\x18\x46\x0b\x88\x09\x53\x38\x1e\xad\xc6\xa3\xf1\xc8\x75\xe1\x9c\x72\x84\xd0\x84\x80\x58\x48\xc8\x30\x13\xf2\x69\x3c\x7a\x20\x12\x42\xfd\x0d\x7c\x88\x44\x58\x64\xc8\xb5\x93\xa0\x3e\x63\x68\x2e\x3f\x3c\x2d\x23\x6b\x52\x41\x0d\xbf\xcc\x60\x32\xf5\x2a\x5a\x6f\x1d\x7c\xe0\xf8\x08\xe5\xb5\x15\xea\x6f\xf6\x3a\x23\xfd\x94\xe3\x02\x5e\x32\xca\xf1\xa5\x5d\x2d\x45\x44\x93\xc5\xfa\xbe\xf9\x63\x24\x40\xa6\x16\x70\x7b\x67\xb7\x8b\x06\xa5\x50\x9b\xe5\x0d\x68\x03\x5f\xc0\x44\x3d\x29\x8d\x99\x5b\x65\xe2\x52\x5e\x28\x9c\xd8\x5d\x68\x40\xc2\xfb\x44\x8a\x82\x47\xa7\x82\x09\xb9\x80\x89\x4c\x02\x62\xbd\x39\xb1\x61\x7e\x72\x6c\xc3\xfc\xf8\x17\x1b\x66\xce\x9b\xf9\x74\x8b\x29\x64\x84\xf2\x20\xeb\xed\x16\x29\x17\x94\xeb\x0f\xff\x9c\x39\x2c\xdb\x3d\xec\xdf\xc5\x03\xca\xed\x10\xff\x8f\xe3\xf8\x00\x7e\x3b\xd9\xa3\xa3\x99\xbd\xfe\xdf\xae\xcb\xc6\x23\x7e\xa1\x91\x4e\x17\x30\xef\x21\xaa\xed\xbd\xbd\x6b\x57\x57\xf5\xf5\xca\x1e\x8f\x56\xc6\x40\xbb\x3c\xa9\x25\x89\x63\x1a\x56\xee\xaa\x7f\x9c\x1e\xf6\x66\x8d\xda\x36\x67\xff\x46\xc7\x9d\x6d\xec\xff\xc2\xa4\xf9\x51\xee\x2e\x79\x60\x76\xe4\xa6\x12\x1e\xea\x51\x1b\x4e\xcc\xc6\xcf\x7e\x2d\x1d\x3a\xc8\xa0\x1d\xca\xdb\xd9\x70\x7f\x0e\x23\x0e\x49\x74\x1f\xf9\xb9\xdc\x39\x3f\x9e\xdb\xf3\x93\xb7\xf6\xd1\xec\xf8\xdf\x74\xe7\xcd\xe5\xc7\x4b\xb0\xee\x0b\x79\x2f\x32\xaa\xe8\x74\x01\x12\x33\xf1\x80\xa0\x34\xd1\x34\x84\x07\xc2\x0a\x54\x40\x62\x8d\x12\x22\x0c\x8a\x24\xa1\x3c\x19\x8f\x42\xc1\x95\x86\x8b\xb3\x8b\xcb\xab\xbf\xbe\x5e\xbf\xbf\xf8\x7c\x7e\xf6\xf5\x7c\x79\xb1\xbc\x01\x1f\x8e\x66\x33\xcf\x75\xbf\x7f\x77\xaa\x89\x75\x4d\xb2\x9c\xe1\x39\xcd\xa8\x5e\xad\x3c\x70\x5d\xb8\x20\xdf\x68\x56\x64\xc0\x8b\x2c\x40\x09\x22\xae\xa7\x6c\x99\x34\xa8\x12\xaf\xd6\x1a\x37\x57\xef\x3f\x7d\x5a\x9e\xee\x15\xa9\x6d\x3e\x44\xa5\x86\xee\x94\xf9\x7c\x75\x79\x7a\x76\x7d\x7d\x79\xb5\x57\x28\x97\x22\x44\xa5\x84\x1c\x22\xd5\x80\x7b\x62\xe3\x51\x5c\xf0\x50\x53\xc1\xa1\xc8\x23\xa2\xab\xbe\x55\x56\xa6\x92\xa9\xe9\xc2\x6a\x8b\x5c\x17\x3e\x51\xc6\x40\xa7\x08\x11\x51\x69\x20\x88\x8c\xe0\x91\xea\x14\x72\xa2\x74\x19\xb3\x42\xd2\xd8\x50\x9d\x0c\xb5\xa4\xa1\x82\xff\xf9\x3e\x14\x3c\xc2\x98\x72\x8c\xa6\x9b\x6d\xed\xba\x70\xca\x90\x48\xa0\x1c\x42\xa2\xb0\x1f\x9b\x28\x10\x39\x72\x8c\x20\xc0\x58\x48\x6c\x99\xbd\x13\xd0\x31\xe2\x4e\x35\x25\xc0\x87\xdb\x3b\xaf\x85\xf6\xe7\xd1\x21\xec\xce\xb0\xeb\x39\x73\x3b\xbb\x2b\xaf\x87\x09\xec\x63\xb5\xbc\xf6\x24\x07\x1f\x36\x0a\x56\x5b\xd4\xeb\x22\xdb\xcd\xeb\x82\x9b\x75\xaf\x53\xd7\xa5\x06\xaa\x20\x17\x4a\xd1\x80\x21\x68\x01\x09\x6a\x20\x5c\xe8\x14\x8d\xac\x52\x24\x41\x78\x4c\x29\x43\x88\x29\x63\x94\x27\x65\xf5\x89\x94\xe4\x49\x41\xf0\x04\x79\xa1\x52\x6b\x6a\x83\x12\x40\xb9\xd2\x48\xa2\x8e\x40\x5e\xe8\x92\x90\x52\xa5\xcd\x23\x68\x51\xfe\x0c\x30\xa1\x9c\x9b\x68\xc6\xdb\x4d\xc0\x96\x6a\x8e\x1b\xcb\x3c\x10\x35\x0f\x52\x3e\xa9\xc3\x90\x27\x3a\x85\xd7\x30\xf7\x80\xc2\x3b\x1f\x66\xf0\xe2\xc5\xce\x46\x7e\x77\x68\xe7\xeb\x38\x1e\xbc\x7e\x4d\x3b\x3e\xfb\x81\x63\x9c\x82\xab\x94\xc6\xda\xaa\x30\xb7\xf4\xce\xd1\x34\x43\x47\x15\x81\xd2\x92\xf2\xa4\x7f\xa3\xc9\xf7\x78\x3a\xf5\xba\x32\x87\xdc\xf6\x9c\x3a\x83\x9c\xba\x43\xb0\x9c\x9d\xc3\x92\xde\x1b\xad\xb1\xdc\xce\x80\xab\xfd\xed\x54\x4d\x17\x6b\x7a\xa8\x79\x76\x60\x24\xea\x42\xf2\x7a\x61\xb5\x31\x8f\x2a\x6c\x6f\xe8\x94\x0d\xb5\x7f\xe6\x18\xdc\x0f\x2d\x04\xbe\xef\xef\xf2\xdf\x4f\xb9\xaa\x2a\xd6\x4f\x19\x64\x37\x65\xd8\x5e\xff\x8c\xdc\x00\xf2\x81\x6d\xdc\xcc\xb8\x9c\x12\x6d\xe1\xb7\x0c\xdd\xbb\xb3\xc7\xd1\x07\x8b\xf2\x3c\x12\xc3\x8a\xd8\xd7\xda\x72\xf7\xc0\x7a\x36\x71\x9a\x5e\xd9\x0e\xf5\x0c\xdd\xb1\x6a\xbf\x32\x7f\x2b\x3f\x4a\xcd\x51\x41\xcd\x67\xa8\x32\x03\x39\x15\x2c\x2a\x87\x70\x58\x48\x89\x5c\x97\x2f\x50\x85\x5a\x8f\xe6\xe6\xa4\xad\x5e\xdc\x15\xca\x07\x94\xeb\x2f\x84\x8f\x65\xef\x00\x81\x0c\x75\x2a\x22\x13\x4e\x62\x28\x38\xc7\x50\x43\x91\x0b\x5e\xe3\x81\x09\xa5\xaa\x00\xed\x7d\x1f\xd6\x6f\x14\x56\xd3\x32\x35\xbc\xfa\x1a\xf8\x82\xc1\xb5\x08\xef\x51\x5b\x93\x47\xb5\x70\xdd\x09\xbc\x02\x26\x42\x62\x28\x4e\x2a\x94\x86\x57\x30\x71\x49\x4e\x27\xd3\xe6\xcc\xac\x02\x38\x82\xaf\x4f\xaf\x0d\x15\x7c\x40\xae\x3b\xdd\x59\x9e\xae\x2a\x01\x1f\xfe\xb8\xbe\xfc\xd3\xc9\x89\x54\x58\xc1\xca\x1d\xda\xac\x32\x8d\xc1\x2a\xa1\xbe\x0f\xbc\x60\x6c\xab\xcb\x3b\x03\xa8\x33\x84\xcc\xdf\xd6\x3b\x53\x6f\x50\x35\x79\x87\x4c\x28\xec\xd5\x06\x14\xea\x1b\x9a\xa1\x28\xb4\xd5\xd4\xcf\x86\x37\xb3\xd9\x6c\xea\xc1\xca\x6b\x37\xf8\x4c\x69\x12\x30\xaa\x52\x20\xf0\x88\x81\x2a\xcb\x07\x35\xc3\xbc\xbb\xd5\x27\xf0\xfb\xcf\xcb\x5a\x72\x3c\x6a\x22\x5a\x53\xef\xef\x00\x00\x00\xff\xff\x34\xdc\x83\x8a\xc5\x10\x00\x00") - -func jsHandlersJsBytes() ([]byte, error) { - return bindataRead( - _jsHandlersJs, - "js/handlers.js", - ) -} - -func jsHandlersJs() (*asset, error) { - bytes, err := jsHandlersJsBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "js/handlers.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. @@ -161,8 +161,8 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ + "components/dashboard.js": componentsDashboardJs, "dashboard.html": dashboardHtml, - "js/handlers.js": jsHandlersJs, } // AssetDir returns the file names below a certain @@ -205,10 +205,10 @@ type bintree struct { Children map[string]*bintree } var _bintree = &bintree{nil, map[string]*bintree{ - "dashboard.html": &bintree{dashboardHtml, map[string]*bintree{}}, - "js": &bintree{nil, map[string]*bintree{ - "handlers.js": &bintree{jsHandlersJs, map[string]*bintree{}}, + "components": &bintree{nil, map[string]*bintree{ + "dashboard.js": &bintree{componentsDashboardJs, map[string]*bintree{}}, }}, + "dashboard.html": &bintree{dashboardHtml, map[string]*bintree{}}, }} // RestoreAsset restores an asset under the given directory diff --git a/dashboard/assets/components/dashboard.js b/dashboard/assets/components/dashboard.js new file mode 100644 index 0000000000..956b5d4e79 --- /dev/null +++ b/dashboard/assets/components/dashboard.js @@ -0,0 +1,282 @@ +Chart.defaults.global.legend = { enabled: false }; + +const Component = React.Component; +// const Component = Inferno.Component; + +// isNullOrUndefined returns true if a variable is null or undefined. +let isNullOrUndefined = variable => variable === null || typeof variable === 'undefined'; + +// MenuItem renders an item for a Menu component and the belonging submenu items, if there is any. +class MenuItem extends Component { + render = () =>
  • + + + {this.props.text} +
    + + { + // Render dropdown menu only if there are children. + isNullOrUndefined(this.props.children) ||
      + {React.Children.map(this.props.children, child =>
    • {child}
    • )} +
    + } +
  • ; +} + +// Menu renders a menu component. +let Menu = () => ; + +let Clearfix = () =>
    ; + +// SideBar renders a sidebar component. +let SideBar = () =>
    +
    + + + +
    +
    ; + +// TopNavigation renders a top navigation component. +let TopNavigation = () => ; + +// Chart name is already in use. +// ChartComponent renders a chart component and updates it, when the related data changes. +class ChartComponent extends Component { + constructor(props) { + super(props); + this.state = {}; + } + + componentDidMount = () => this.state.chart = new Chart(this.data, { + type: this.props.type, + data: this.props.data, + }); + + render = () => { + if (!isNullOrUndefined(this.state.chart)) { + this.state.chart.update(); + } + + return ( +
    +
    +
    +

    {this.props.text}

    +
      +
    • + { + // Render dropdown menu only if there are children. + isNullOrUndefined(this.props.children) ||
    • + +
        + {React.Children.map(this.props.children, child =>
      • {child}
      • )} +
      +
    • + } +
    • +
    • +
    + +
    +
    + {/* The chart will be generated here after the component is mounted (this.componentDidMount). */} + { + this.data = data + }}/> +
    +
    +
    + ); + } +} + +// Row renders a row component of charts only if there is any chart. +class Row extends Component { + render = () => isNullOrUndefined(this.props.children) ||
    {this.props.children}
    ; +} + +// PageContent renders a component for the page content. +class PageContent extends Component { + render = () =>
    +
    +
    +
    +

    Go Ethereum Dashboard + Statistics +

    +
    +
    + + + + Settings 1 + Settings 2 + + + + +
    +
    ; +} + +// Footer renders a footer. +let Footer = () =>
    +
    + Gentelella - Bootstrap Admin Template by Colorlib +
    + +
    ; + +const MEMORY_SAMPLE_LIMIT = 200; // Maximum number of memory data samples. +const TRAFFIC_SAMPLE_LIMIT = 200; // Maximum number of traffic data samples. + +// Dashboard renders a full dashboard component, which makes connection with the server and waits for messages. +// When there is a message, correspondingly updates the page's content. +class Dashboard extends Component { + constructor(props) { + super(props); + this.state = { + charts: { + memory: { + labels: [], + datasets: [{ + label: "system/memory/inuse", + backgroundColor: "rgba(38, 185, 154, 0.31)", + borderColor: "rgba(38, 185, 154, 0.7)", + pointBorderColor: "rgba(38, 185, 154, 0.7)", + pointBackgroundColor: "rgba(38, 185, 154, 0.7)", + pointHoverBackgroundColor: "#fff", + pointHoverBorderColor: "rgba(220,220,220,1)", + pointBorderWidth: 1, + data: [], + }], + }, + traffic: { + labels: [], + datasets: [{ + label: "p2p/InboundTraffic", + backgroundColor: "rgba(3, 88, 106, 0.3)", + borderColor: "rgba(3, 88, 106, 0.70)", + pointBorderColor: "rgba(3, 88, 106, 0.70)", + pointBackgroundColor: "rgba(3, 88, 106, 0.70)", + pointHoverBackgroundColor: "#fff", + pointHoverBorderColor: "rgba(151,187,205,1)", + pointBorderWidth: 1, + data: [], + }], + }, + }, + }; + } + + updateCharts = msg => { + let memory = this.state.charts.memory; + let traffic = this.state.charts.traffic; + + // Fill the dashboard with the past data. metrics is set only in the first msg, after the connection is established. + if (msg.metrics !== undefined) { + // Clear the arrays to prevent data confusion with the previous connection. + memory.labels = []; + traffic.labels = []; + memory.datasets[0].data = []; + traffic.datasets[0].data = []; + + let mem = msg.metrics.memory; + let traff = msg.metrics.processor; // TODO (kurkomisi): !!! + + // Put the past data to the beginning of the arrays. This prevents confusion with the next msg data, which goes to the end. + for (let i = mem.length - 1; i >= 0 && MEMORY_SAMPLE_LIMIT > memory.labels.length; --i) { + memory.labels.unshift(mem[i].time.substring(mem[i].time.length - 5)); + traffic.labels.unshift(mem[i].time.substring(mem[i].time.length - 5)); + memory.datasets[0].data.unshift(mem[i].value); + traffic.datasets[0].data.unshift(traff[i].value); + } + + this.setState({charts: {memory: memory, traffic: traffic,}}); // Update the components. + return; + } + + // Put the new data to the end of the arrays. + if (msg.memory !== undefined) { + // Remove the first elements in case the samples' amount exceeds the limit. + if (memory.labels.length === MEMORY_SAMPLE_LIMIT) { + memory.labels.shift(); + traffic.labels.shift(); + memory.datasets[0].data.shift(); + traffic.datasets[0].data.shift(); + } + memory.labels.push(msg.memory.time.substring(msg.memory.time.length - 5)); + traffic.labels.push(msg.memory.time.substring(msg.memory.time.length - 5)); + memory.datasets[0].data.push(msg.memory.value); + traffic.datasets[0].data.push(msg.processor.value); + + this.setState({charts: {memory: memory, traffic: traffic,}}); // Update the components. + } + }; + + reconnect = () => { + let server = new WebSocket("ws://" + location.host + "/api"); + let that = this; + + server.onmessage = event => { + let msg = JSON.parse(event.data); + if (isNullOrUndefined(msg)) { + return; + } + that.updateCharts(msg); + }; + + server.onclose = () => setTimeout(that.reconnect, 3000); + }; + + componentDidMount = () => this.reconnect(); + + render = () =>
    +
    + + + +
    +
    +
    ; +} \ No newline at end of file diff --git a/dashboard/assets/dashboard.html b/dashboard/assets/dashboard.html index 5f25bf2512..b14965d859 100644 --- a/dashboard/assets/dashboard.html +++ b/dashboard/assets/dashboard.html @@ -1,179 +1,48 @@ - + Go Ethereum Dashboard - - - -
    -
    -
    -
    - - -
    - - - - -
    -
    - - -
    - -
    - - - -
    -
    -
    -
    -

    Go Ethereum Dashboard Statistics

    -
    -
    - -
    - -
    -
    -
    -
    -

    Memory usage system/memory/inuse

    - -
    -
    -
    - -
    -
    -
    - -
    -
    -
    -

    Inbound traffic p2p/InboundTraffic

    - -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - - -
    -
    - Gentelella - Bootstrap Admin Template by Colorlib -
    -
    -
    - -
    -
    + + + + - - + + + + + + + + + + + + + + + + + + + - + \ No newline at end of file diff --git a/dashboard/assets/js/handlers.js b/dashboard/assets/js/handlers.js deleted file mode 100644 index 91f14d0324..0000000000 --- a/dashboard/assets/js/handlers.js +++ /dev/null @@ -1,112 +0,0 @@ -Chart.defaults.global.legend = { - enabled: false -} - -// Line chart for memory -var ctx = document.getElementById("memoryLineChart"); -var memoryLineChart = new Chart(ctx, { - type: 'line', - data: { - labels: [], - datasets: [{ - label: "system/memory/inuse", - backgroundColor: "rgba(38, 185, 154, 0.31)", - borderColor: "rgba(38, 185, 154, 0.7)", - pointBorderColor: "rgba(38, 185, 154, 0.7)", - pointBackgroundColor: "rgba(38, 185, 154, 0.7)", - pointHoverBackgroundColor: "#fff", - pointHoverBorderColor: "rgba(220,220,220,1)", - pointBorderWidth: 1, - data: [] - }] - }, -}); - -// Line chart for traffic -var trafficCtx = document.getElementById("trafficLineChart"); -var trafficLineChart = new Chart(trafficCtx, { - type: 'line', - data: { - labels: [], - datasets: [{ - label: "p2p/InboundTraffic", - backgroundColor: "rgba(3, 88, 106, 0.3)", - borderColor: "rgba(3, 88, 106, 0.70)", - pointBorderColor: "rgba(3, 88, 106, 0.70)", - pointBackgroundColor: "rgba(3, 88, 106, 0.70)", - pointHoverBackgroundColor: "#fff", - pointHoverBorderColor: "rgba(151,187,205,1)", - pointBorderWidth: 1, - data: [] - }] - }, -}); - -//TODO (kurkomisi): remove static values after debugging -const MEMORY_SAMPLE_LIMIT = 200;//{{.memorySampleLimit}}; // Maximum number of memory data samples -const TRAFFIC_SAMPLE_LIMIT = 200;//{{.trafficSampleLimit}}; // Maximum number of traffic data samples -const PROCESSOR_SAMPLE_LIMIT = 200;//{{.processorSampleLimit}}; // Maximum number of processor data samples - -function updateCharts(msg) { - - // Fill the dashboard with past data - if(msg.metrics !== undefined) { - // Clear in case the dashboard was opened before - memoryLineChart.data.labels = []; - trafficLineChart.data.labels = []; - memoryLineChart.data.datasets[0].data = []; - trafficLineChart.data.datasets[0].data = []; - - var memory = msg.metrics.memory; - var processor = msg.metrics.processor; - // It is possible to get another message while filling the arrays by push(), so instead - // put the history to the beginning of the arrays - for (var i = memory.length - 1; i >= 0 && MEMORY_SAMPLE_LIMIT > memoryLineChart.data.labels.length; --i) { - memoryLineChart.data.labels.unshift(memory[i].time.substring(memory[i].time.length - 5)); - trafficLineChart.data.labels.unshift(memory[i].time.substring(memory[i].time.length - 5)); - memoryLineChart.data.datasets[0].data.unshift(memory[i].value); - trafficLineChart.data.datasets[0].data.unshift(processor[i].value); - } - memoryLineChart.update(); - trafficLineChart.update(); - return; - } - - // update - if(msg.memory !== undefined) { - if(memoryLineChart.data.labels.length === MEMORY_SAMPLE_LIMIT) { - memoryLineChart.data.labels.shift(); - trafficLineChart.data.labels.shift(); - memoryLineChart.data.datasets[0].data.shift(); - trafficLineChart.data.datasets[0].data.shift(); - } - memoryLineChart.data.labels.push(msg.memory.time.substring(msg.memory.time.length - 5)); - trafficLineChart.data.labels.push(msg.memory.time.substring(msg.memory.time.length - 5)); - memoryLineChart.data.datasets[0].data.push(msg.memory.value); - trafficLineChart.data.datasets[0].data.push(msg.processor.value); - memoryLineChart.update(); - trafficLineChart.update(); - } -} - -// Global variables to hold the current status of the dashboard -var server; - -// Define a method to reconnect upon server loss -var reconnect = function() { - server = new WebSocket("ws://" + location.host + "/api"); - - server.onmessage = function(event) { - var msg = JSON.parse(event.data); - if (msg === null) { - return; - } - - updateCharts(msg) - } - - server.onclose = function() { setTimeout(reconnect, 3000); }; -} - -// Establish a websocket connection to the API server -reconnect(); \ No newline at end of file diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go index d887961bf2..989495b592 100644 --- a/dashboard/dashboard.go +++ b/dashboard/dashboard.go @@ -48,13 +48,13 @@ type dashboard struct { config *Config listener net.Listener - conns []*client // Currently live websocket connections - Metrics *metricSamples `json:"metrics,omitempty"` - Stats *status `json:"stats,omitempty"` - lock sync.RWMutex // Lock protecting the dashboard's internals + conns map[uint32]*client // Currently live websocket connections + Metrics *metricSamples `json:"metrics,omitempty"` + Stats *status `json:"stats,omitempty"` + lock sync.RWMutex // Lock protecting the dashboard's internals - closing map[*chan chan error]bool // Channels used for graceful exit - mapLock sync.RWMutex // Lock protecting the closing map's internals + closing chan chan error // Channel used for graceful exit + wg sync.WaitGroup } type client struct { @@ -81,9 +81,10 @@ type status struct { // New creates a new dashboard instance with the given configuration. func New(config *Config) (*dashboard, error) { return &dashboard{ + conns: make(map[uint32]*client), config: config, Metrics: &metricSamples{}, - closing: make(map[*chan chan error]bool), + closing: make(chan chan error), }, nil } @@ -95,6 +96,7 @@ func (db *dashboard) APIs() []rpc.API { return nil } // Start implements node.Service, starting the data collection thread and the listening server of the dashboard. func (db *dashboard) Start(server *p2p.Server) error { + db.wg.Add(1) go db.collectData() http.HandleFunc("/", db.webHandler) @@ -106,20 +108,13 @@ func (db *dashboard) Start(server *p2p.Server) error { } db.listener = listener - go func() { - if err := http.Serve(listener, nil); err != nil { - log.Warn("Server failed", "err", err) - } - }() + go http.Serve(listener, nil) return nil } // Stop implements node.Service, stopping the data collection thread and the connection listener of the dashboard. func (db *dashboard) Stop() error { - db.lock.Lock() - defer db.lock.Unlock() - var err error // Close the connection listener if err = db.listener.Close(); err != nil { @@ -127,18 +122,19 @@ func (db *dashboard) Stop() error { } errc := make(chan error) - for closing := range db.closing { - *closing <- errc - <-errc - close(*closing) - } + db.closing <- errc + <-errc + db.lock.Lock() for _, c := range db.conns { if err := c.conn.Close(); err != nil { c.logger.Warn("Failed to close connection", "err", err) } } - db.conns = db.conns[:0] + db.lock.Unlock() + + db.wg.Wait() + log.Info("Dashboard stopped") return err } @@ -179,31 +175,28 @@ func (db *dashboard) webHandler(w http.ResponseWriter, r *http.Request) { // apiHandler handles requests for the dashboard. func (db *dashboard) apiHandler(conn *websocket.Conn) { + id := atomic.AddUint32(&nextId, 1) client := &client{ conn: conn, msg: make(chan *map[string]interface{}, 128), - logger: log.New("id", atomic.AddUint32(&nextId, 1)), + logger: log.New("id", id), } - loss := make(chan int) + loss := make(chan bool, 1) // Buffered channel as sender may exit early // Start listening for messages to send. + db.wg.Add(1) go func() { - closing := db.addClosing() - defer db.removeClosing(closing) + defer db.wg.Done() for { select { - case errc := <-*closing: - errc <- nil - return - case val := <-loss: - loss <- val - 1 + case <-loss: return case msg := <-client.msg: if err := websocket.JSON.Send(client.conn, msg); err != nil { client.logger.Warn("Failed to send the message", "msg", msg, "err", err) - // TODO (kurkomisi): Handle message loss + return } } } @@ -216,36 +209,18 @@ func (db *dashboard) apiHandler(conn *websocket.Conn) { // Start tracking the connection and drop at connection loss. db.lock.Lock() - db.conns = append(db.conns, client) + db.conns[id] = client db.lock.Unlock() - - go func() { - closing := db.addClosing() - defer db.removeClosing(closing) - - select { - case errc := <-*closing: - errc <- nil - case val := <-loss: - loss <- val - 1 - db.lock.Lock() - for i, c := range db.conns { - if c.conn == client.conn { - db.conns = append(db.conns[:i], db.conns[i+1:]...) - break - } - } - db.lock.Unlock() - } + defer func() { + db.lock.Lock() + delete(db.conns, id) + db.lock.Unlock() }() for { fail := []byte{} if _, err := conn.Read(fail); err != nil { - loss <- 2 - if val := <-loss; val > 0 { - loss <- val - } + loss <- true return } // Ignore all messages @@ -254,12 +229,11 @@ func (db *dashboard) apiHandler(conn *websocket.Conn) { // collectData collects the required data to plot on the dashboard. func (db *dashboard) collectData() { - closing := db.addClosing() - defer db.removeClosing(closing) + defer db.wg.Done() for { select { - case errc := <-*closing: + case errc := <-db.closing: errc <- nil return case <-time.After(db.config.Refresh): @@ -283,10 +257,7 @@ func (db *dashboard) collectData() { // update updates the dashboards through the live websocket connections. func (db *dashboard) update(processor *data, memory *data) { - db.lock.Lock() - defer db.lock.Unlock() - - // if the samples' # exceeds the limit, just remove the first element + // Remove the first elements in case the samples' amount exceeds the limit. first := 0 if len(db.Metrics.Processor) == processorSampleLimit { first = 1 @@ -303,6 +274,7 @@ func (db *dashboard) update(processor *data, memory *data) { "memory": memory, } + db.lock.Lock() for _, c := range db.conns { select { case c.msg <- msg: @@ -310,18 +282,5 @@ func (db *dashboard) update(processor *data, memory *data) { c.logger.Warn("Client message queue is full") } } -} - -func (db *dashboard) addClosing() *chan chan error { - closing := make(chan chan error) - db.mapLock.Lock() - db.closing[&closing] = true - db.mapLock.Unlock() - return &closing -} - -func (db *dashboard) removeClosing(closing *chan chan error) { - db.mapLock.Lock() - delete(db.closing, closing) - db.mapLock.Unlock() + db.lock.Unlock() }