Go Ethereum Dashboard All advices are welcome
+Memory usage Sessions
+ + +Another diagram Sessions
+ + +Just another diagram Sessions
+ + +More diagram Sessions
+ + +One more diagram Sessions
+ + ++
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 5ab6047e83..a1cf269417 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", @@ -997,6 +1023,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 @@ -1019,6 +1053,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 @@ + + +
+ + + + +